]> git.saurik.com Git - wxWidgets.git/blame - wxPython/src/mac/_windows.py
reSWIGged
[wxWidgets.git] / wxPython / src / mac / _windows.py
CommitLineData
1bd55598 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
4import _windows_
1bd55598
RD
5import new
6new_instancemethod = new.instancemethod
36ed4f51 7def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
1bd55598 8 if (name == "thisown"): return self.this.own(value)
36ed4f51 9 if (name == "this"):
1bd55598
RD
10 if type(value).__name__ == 'PySwigObject':
11 self.__dict__[name] = value
36ed4f51
RD
12 return
13 method = class_type.__swig_setmethods__.get(name,None)
14 if method: return method(self,value)
1bd55598 15 if (not static) or hasattr(self,name):
36ed4f51
RD
16 self.__dict__[name] = value
17 else:
18 raise AttributeError("You cannot add attributes to %s" % self)
19
20def _swig_setattr(self,class_type,name,value):
21 return _swig_setattr_nondynamic(self,class_type,name,value,0)
22
23def _swig_getattr(self,class_type,name):
1bd55598 24 if (name == "thisown"): return self.this.own()
36ed4f51
RD
25 method = class_type.__swig_getmethods__.get(name,None)
26 if method: return method(self)
27 raise AttributeError,name
28
1bd55598
RD
29def _swig_repr(self):
30 try: strthis = "proxy of " + self.this.__repr__()
31 except: strthis = ""
32 return "<%s.%s; %s >" % (self.__class__.__module__, self.__class__.__name__, strthis,)
33
36ed4f51
RD
34import types
35try:
36 _object = types.ObjectType
37 _newclass = 1
38except AttributeError:
39 class _object : pass
40 _newclass = 0
41del types
42
43
44def _swig_setattr_nondynamic_method(set):
45 def set_attr(self,name,value):
1bd55598
RD
46 if (name == "thisown"): return self.this.own(value)
47 if hasattr(self,name) or (name == "this"):
36ed4f51
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
54import _core
55wx = _core
d55e5bfc
RD
56#---------------------------------------------------------------------------
57
58class Panel(_core.Window):
36ed4f51 59 """Proxy of C++ Panel class"""
1bd55598
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 """
1bd55598 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
01ac03ba
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
5cbf236d
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
15817c7e
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
a5ee0656
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
15817c7e 102 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
111def PrePanel(*args, **kwargs):
112 """PrePanel() -> Panel"""
113 val = _windows_.new_PrePanel(*args, **kwargs)
d55e5bfc
RD
114 return val
115
f20a2e1f 116def Panel_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 117 """
f20a2e1f
RD
118 Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
119
15817c7e
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
a5ee0656
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
15817c7e 127 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
128 the returned font. See `wx.Window.SetWindowVariant` for more about
129 this.
f20a2e1f 130 """
1bd55598 131 return _windows_.Panel_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 132
d55e5bfc
RD
133#---------------------------------------------------------------------------
134
135class ScrolledWindow(Panel):
36ed4f51 136 """Proxy of C++ ScrolledWindow class"""
1bd55598
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 """
1bd55598 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
01ac03ba
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
15817c7e
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
a5ee0656
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
15817c7e 274 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
283def PreScrolledWindow(*args, **kwargs):
284 """PreScrolledWindow() -> ScrolledWindow"""
285 val = _windows_.new_PreScrolledWindow(*args, **kwargs)
d55e5bfc
RD
286 return val
287
f20a2e1f 288def ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 289 """
f20a2e1f
RD
290 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
291
15817c7e
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
a5ee0656
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
15817c7e 299 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
300 the returned font. See `wx.Window.SetWindowVariant` for more about
301 this.
f20a2e1f 302 """
1bd55598 303 return _windows_.ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 304
d55e5bfc
RD
305#---------------------------------------------------------------------------
306
307STAY_ON_TOP = _windows_.STAY_ON_TOP
308ICONIZE = _windows_.ICONIZE
309MINIMIZE = _windows_.MINIMIZE
310MAXIMIZE = _windows_.MAXIMIZE
311CLOSE_BOX = _windows_.CLOSE_BOX
312THICK_FRAME = _windows_.THICK_FRAME
313SYSTEM_MENU = _windows_.SYSTEM_MENU
314MINIMIZE_BOX = _windows_.MINIMIZE_BOX
315MAXIMIZE_BOX = _windows_.MAXIMIZE_BOX
316TINY_CAPTION_HORIZ = _windows_.TINY_CAPTION_HORIZ
317TINY_CAPTION_VERT = _windows_.TINY_CAPTION_VERT
318RESIZE_BOX = _windows_.RESIZE_BOX
319RESIZE_BORDER = _windows_.RESIZE_BORDER
320DIALOG_NO_PARENT = _windows_.DIALOG_NO_PARENT
321DEFAULT_FRAME_STYLE = _windows_.DEFAULT_FRAME_STYLE
322DEFAULT_DIALOG_STYLE = _windows_.DEFAULT_DIALOG_STYLE
323FRAME_TOOL_WINDOW = _windows_.FRAME_TOOL_WINDOW
324FRAME_FLOAT_ON_PARENT = _windows_.FRAME_FLOAT_ON_PARENT
325FRAME_NO_WINDOW_MENU = _windows_.FRAME_NO_WINDOW_MENU
326FRAME_NO_TASKBAR = _windows_.FRAME_NO_TASKBAR
327FRAME_SHAPED = _windows_.FRAME_SHAPED
b411df4a 328FRAME_DRAWER = _windows_.FRAME_DRAWER
f491ed97
RD
329FRAME_EX_METAL = _windows_.FRAME_EX_METAL
330DIALOG_EX_METAL = _windows_.DIALOG_EX_METAL
d55e5bfc
RD
331DIALOG_MODAL = _windows_.DIALOG_MODAL
332DIALOG_MODELESS = _windows_.DIALOG_MODELESS
333USER_COLOURS = _windows_.USER_COLOURS
334NO_3D = _windows_.NO_3D
335FULLSCREEN_NOMENUBAR = _windows_.FULLSCREEN_NOMENUBAR
336FULLSCREEN_NOTOOLBAR = _windows_.FULLSCREEN_NOTOOLBAR
337FULLSCREEN_NOSTATUSBAR = _windows_.FULLSCREEN_NOSTATUSBAR
338FULLSCREEN_NOBORDER = _windows_.FULLSCREEN_NOBORDER
339FULLSCREEN_NOCAPTION = _windows_.FULLSCREEN_NOCAPTION
340FULLSCREEN_ALL = _windows_.FULLSCREEN_ALL
341TOPLEVEL_EX_DIALOG = _windows_.TOPLEVEL_EX_DIALOG
c370783e
RD
342USER_ATTENTION_INFO = _windows_.USER_ATTENTION_INFO
343USER_ATTENTION_ERROR = _windows_.USER_ATTENTION_ERROR
d55e5bfc 344class TopLevelWindow(_core.Window):
36ed4f51 345 """Proxy of C++ TopLevelWindow class"""
1bd55598
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
2131d850
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):
943e8dfd 394 """SetTitle(self, String title)"""
d55e5bfc
RD
395 return _windows_.TopLevelWindow_SetTitle(*args, **kwargs)
396
397 def GetTitle(*args, **kwargs):
943e8dfd 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
c370783e
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
d55e5bfc
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
431cvar = _windows_.cvar
432FrameNameStr = cvar.FrameNameStr
433DialogNameStr = cvar.DialogNameStr
434StatusLineNameStr = cvar.StatusLineNameStr
435ToolBarNameStr = cvar.ToolBarNameStr
436
437#---------------------------------------------------------------------------
438
439class Frame(TopLevelWindow):
36ed4f51 440 """Proxy of C++ Frame class"""
1bd55598
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 """
bfddbb17
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 """
1bd55598 449 _windows_.Frame_swiginit(self,_windows_.new_Frame(*args, **kwargs))
d55e5bfc
RD
450 self._setOORInfo(self)
451
452 def Create(*args, **kwargs):
453 """
bfddbb17
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):
36ed4f51 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
15817c7e
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
a5ee0656
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
15817c7e 547 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
556def PreFrame(*args, **kwargs):
557 """PreFrame() -> Frame"""
558 val = _windows_.new_PreFrame(*args, **kwargs)
d55e5bfc
RD
559 return val
560
f20a2e1f 561def Frame_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 562 """
f20a2e1f
RD
563 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
564
15817c7e
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
a5ee0656
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
15817c7e 572 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
573 the returned font. See `wx.Window.SetWindowVariant` for more about
574 this.
f20a2e1f 575 """
1bd55598 576 return _windows_.Frame_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 577
d55e5bfc
RD
578#---------------------------------------------------------------------------
579
580class Dialog(TopLevelWindow):
36ed4f51 581 """Proxy of C++ Dialog class"""
1bd55598
RD
582 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
583 __repr__ = _swig_repr
32fe5131 584 ButtonSizerFlags = _windows_.Dialog_ButtonSizerFlags
1bd55598 585 def __init__(self, *args, **kwargs):
d55e5bfc 586 """
bfddbb17
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 """
1bd55598 591 _windows_.Dialog_swiginit(self,_windows_.new_Dialog(*args, **kwargs))
d55e5bfc
RD
592 self._setOORInfo(self)
593
594 def Create(*args, **kwargs):
595 """
bfddbb17
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):
32fe5131 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
15817c7e
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
a5ee0656
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
15817c7e 661 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
670def PreDialog(*args, **kwargs):
671 """PreDialog() -> Dialog"""
672 val = _windows_.new_PreDialog(*args, **kwargs)
d55e5bfc
RD
673 return val
674
f20a2e1f 675def Dialog_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 676 """
f20a2e1f
RD
677 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
678
15817c7e
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
a5ee0656
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
15817c7e 686 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
687 the returned font. See `wx.Window.SetWindowVariant` for more about
688 this.
f20a2e1f 689 """
1bd55598 690 return _windows_.Dialog_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 691
d55e5bfc
RD
692#---------------------------------------------------------------------------
693
694class MiniFrame(Frame):
36ed4f51 695 """Proxy of C++ MiniFrame class"""
1bd55598
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 """
bfddbb17
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 """
1bd55598 704 _windows_.MiniFrame_swiginit(self,_windows_.new_MiniFrame(*args, **kwargs))
d55e5bfc
RD
705 self._setOORInfo(self)
706
707 def Create(*args, **kwargs):
708 """
bfddbb17
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
717def PreMiniFrame(*args, **kwargs):
718 """PreMiniFrame() -> MiniFrame"""
719 val = _windows_.new_PreMiniFrame(*args, **kwargs)
d55e5bfc
RD
720 return val
721
722#---------------------------------------------------------------------------
723
724SPLASH_CENTRE_ON_PARENT = _windows_.SPLASH_CENTRE_ON_PARENT
725SPLASH_CENTRE_ON_SCREEN = _windows_.SPLASH_CENTRE_ON_SCREEN
726SPLASH_NO_CENTRE = _windows_.SPLASH_NO_CENTRE
727SPLASH_TIMEOUT = _windows_.SPLASH_TIMEOUT
728SPLASH_NO_TIMEOUT = _windows_.SPLASH_NO_TIMEOUT
729class SplashScreenWindow(_core.Window):
36ed4f51 730 """Proxy of C++ SplashScreenWindow class"""
1bd55598
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 """
1bd55598 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
751class SplashScreen(Frame):
36ed4f51 752 """Proxy of C++ SplashScreen class"""
1bd55598
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,
bfddbb17 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 """
1bd55598 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
780SB_NORMAL = _windows_.SB_NORMAL
781SB_FLAT = _windows_.SB_FLAT
782SB_RAISED = _windows_.SB_RAISED
d55e5bfc 783class StatusBar(_core.Window):
36ed4f51 784 """Proxy of C++ StatusBar class"""
1bd55598
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 """
1bd55598 792 _windows_.StatusBar_swiginit(self,_windows_.new_StatusBar(*args, **kwargs))
d55e5bfc
RD
793 self._setOORInfo(self)
794
795 def Create(*args, **kwargs):
bfddbb17 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):
36ed4f51 824 """SetStatusWidths(self, int widths)"""
d55e5bfc
RD
825 return _windows_.StatusBar_SetStatusWidths(*args, **kwargs)
826
03837c5c 827 def SetStatusStyles(*args, **kwargs):
36ed4f51 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
15817c7e
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
a5ee0656
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
15817c7e 858 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
867def PreStatusBar(*args, **kwargs):
868 """PreStatusBar() -> StatusBar"""
869 val = _windows_.new_PreStatusBar(*args, **kwargs)
d55e5bfc
RD
870 return val
871
f20a2e1f 872def StatusBar_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 873 """
f20a2e1f
RD
874 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
875
15817c7e
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
a5ee0656
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
15817c7e 883 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
884 the returned font. See `wx.Window.SetWindowVariant` for more about
885 this.
f20a2e1f 886 """
1bd55598 887 return _windows_.StatusBar_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 888
d55e5bfc
RD
889#---------------------------------------------------------------------------
890
891SP_NOBORDER = _windows_.SP_NOBORDER
892SP_NOSASH = _windows_.SP_NOSASH
893SP_PERMIT_UNSPLIT = _windows_.SP_PERMIT_UNSPLIT
894SP_LIVE_UPDATE = _windows_.SP_LIVE_UPDATE
895SP_3DSASH = _windows_.SP_3DSASH
896SP_3DBORDER = _windows_.SP_3DBORDER
897SP_NO_XP_THEME = _windows_.SP_NO_XP_THEME
898SP_BORDER = _windows_.SP_BORDER
899SP_3D = _windows_.SP_3D
900SPLIT_HORIZONTAL = _windows_.SPLIT_HORIZONTAL
901SPLIT_VERTICAL = _windows_.SPLIT_VERTICAL
902SPLIT_DRAG_NONE = _windows_.SPLIT_DRAG_NONE
903SPLIT_DRAG_DRAGGING = _windows_.SPLIT_DRAG_DRAGGING
904SPLIT_DRAG_LEFT_DOWN = _windows_.SPLIT_DRAG_LEFT_DOWN
905class SplitterWindow(_core.Window):
906 """
15817c7e
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 """
1bd55598
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']
1bd55598 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
15817c7e
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
15817c7e
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
15817c7e
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
15817c7e
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
15817c7e
RD
1032 Causes any pending sizing of the sash and child panes to take place
1033 immediately.
d55e5bfc 1034
15817c7e
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
6e0de3df 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
15817c7e
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
5cbf236d
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
15817c7e
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
15817c7e
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
a5ee0656
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
15817c7e 1181 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
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
1189SplitterNameStr = cvar.SplitterNameStr
1190
1191def 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 1200def SplitterWindow_GetClassDefaultAttributes(*args, **kwargs):
1bd55598 1201 """
f20a2e1f
RD
1202 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1203
15817c7e
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
a5ee0656
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
15817c7e 1211 ignore under other platforms. Under Mac, it will change the size of
a5ee0656
RD
1212 the returned font. See `wx.Window.SetWindowVariant` for more about
1213 this.
f20a2e1f 1214 """
1bd55598 1215 return _windows_.SplitterWindow_GetClassDefaultAttributes(*args, **kwargs)
f20a2e1f 1216
d55e5bfc
RD
1217class SplitterEvent(_core.NotifyEvent):
1218 """This class represents the events generated by a splitter control."""
1bd55598
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 """
2131d850 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 """
1bd55598 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
15817c7e
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
15817c7e
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
15817c7e
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
1279wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1280wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1281wxEVT_COMMAND_SPLITTER_DOUBLECLICKED = _windows_.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1282wxEVT_COMMAND_SPLITTER_UNSPLIT = _windows_.wxEVT_COMMAND_SPLITTER_UNSPLIT
1283EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 1 )
1284EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 1 )
1285EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 1 )
1286EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
1287EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED
1288
1289#---------------------------------------------------------------------------
1290
1291SASH_DRAG_NONE = _windows_.SASH_DRAG_NONE
1292SASH_DRAG_DRAGGING = _windows_.SASH_DRAG_DRAGGING
1293SASH_DRAG_LEFT_DOWN = _windows_.SASH_DRAG_LEFT_DOWN
1294SW_NOBORDER = _windows_.SW_NOBORDER
1295SW_BORDER = _windows_.SW_BORDER
1296SW_3DSASH = _windows_.SW_3DSASH
1297SW_3DBORDER = _windows_.SW_3DBORDER
1298SW_3D = _windows_.SW_3D
1299SASH_TOP = _windows_.SASH_TOP
1300SASH_RIGHT = _windows_.SASH_RIGHT
1301SASH_BOTTOM = _windows_.SASH_BOTTOM
1302SASH_LEFT = _windows_.SASH_LEFT
1303SASH_NONE = _windows_.SASH_NONE
1304class SashWindow(_core.Window):
36ed4f51 1305 """Proxy of C++ SashWindow class"""
1bd55598
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 """
bfddbb17
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 """
1bd55598 1314 _windows_.SashWindow_swiginit(self,_windows_.new_SashWindow(*args, **kwargs))
d55e5bfc
RD
1315 self._setOORInfo(self)
1316
1317 def Create(*args, **kwargs):
1318 """
bfddbb17
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
1402SashNameStr = cvar.SashNameStr
1403SashLayoutNameStr = cvar.SashLayoutNameStr
1404
1405def PreSashWindow(*args, **kwargs):
1406 """PreSashWindow() -> SashWindow"""
1407 val = _windows_.new_PreSashWindow(*args, **kwargs)
d55e5bfc
RD
1408 return val
1409
1410SASH_STATUS_OK = _windows_.SASH_STATUS_OK
1411SASH_STATUS_OUT_OF_RANGE = _windows_.SASH_STATUS_OUT_OF_RANGE
1412class SashEvent(_core.CommandEvent):
36ed4f51 1413 """Proxy of C++ SashEvent class"""
1bd55598
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"""
1bd55598 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
1445wxEVT_SASH_DRAGGED = _windows_.wxEVT_SASH_DRAGGED
1446EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 1 )
1447EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 2 )
1448
1449#---------------------------------------------------------------------------
1450
1451LAYOUT_HORIZONTAL = _windows_.LAYOUT_HORIZONTAL
1452LAYOUT_VERTICAL = _windows_.LAYOUT_VERTICAL
1453LAYOUT_NONE = _windows_.LAYOUT_NONE
1454LAYOUT_TOP = _windows_.LAYOUT_TOP
1455LAYOUT_LEFT = _windows_.LAYOUT_LEFT
1456LAYOUT_RIGHT = _windows_.LAYOUT_RIGHT
1457LAYOUT_BOTTOM = _windows_.LAYOUT_BOTTOM
1458LAYOUT_LENGTH_Y = _windows_.LAYOUT_LENGTH_Y
1459LAYOUT_LENGTH_X = _windows_.LAYOUT_LENGTH_X
1460LAYOUT_MRU_LENGTH = _windows_.LAYOUT_MRU_LENGTH
1461LAYOUT_QUERY = _windows_.LAYOUT_QUERY
1462wxEVT_QUERY_LAYOUT_INFO = _windows_.wxEVT_QUERY_LAYOUT_INFO
1463wxEVT_CALCULATE_LAYOUT = _windows_.wxEVT_CALCULATE_LAYOUT
1464class QueryLayoutInfoEvent(_core.Event):
36ed4f51 1465 """Proxy of C++ QueryLayoutInfoEvent class"""
1bd55598
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"""
1bd55598 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
1513class CalculateLayoutEvent(_core.Event):
36ed4f51 1514 """Proxy of C++ CalculateLayoutEvent class"""
1bd55598
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"""
1bd55598 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
1538EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
1539EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
1540
1541class SashLayoutWindow(SashWindow):
36ed4f51 1542 """Proxy of C++ SashLayoutWindow class"""
1bd55598
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 """
bfddbb17
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 """
1bd55598 1551 _windows_.SashLayoutWindow_swiginit(self,_windows_.new_SashLayoutWindow(*args, **kwargs))
d55e5bfc
RD
1552 self._setOORInfo(self)
1553
1554 def Create(*args, **kwargs):
1555 """
bfddbb17
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
1584def PreSashLayoutWindow(*args, **kwargs):
1585 """PreSashLayoutWindow() -> SashLayoutWindow"""
1586 val = _windows_.new_PreSashLayoutWindow(*args, **kwargs)
d55e5bfc
RD
1587 return val
1588
1589class LayoutAlgorithm(_core.Object):
36ed4f51 1590 """Proxy of C++ LayoutAlgorithm class"""
1bd55598
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"""
1bd55598
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
1612class PopupWindow(_core.Window):
36ed4f51 1613 """Proxy of C++ PopupWindow class"""
1bd55598
RD
1614 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1615 __repr__ = _swig_repr
1616 def __init__(self, *args, **kwargs):
d55e5bfc 1617 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1bd55598 1618 _windows_.PopupWindow_swiginit(self,_windows_.new_PopupWindow(*args, **kwargs))
2131d850 1619_windows_.PopupWindow_swigregister(PopupWindow)
d55e5bfc
RD
1620
1621def PrePopupWindow(*args, **kwargs):
1622 """PrePopupWindow() -> PopupWindow"""
1623 val = _windows_.new_PrePopupWindow(*args, **kwargs)
d55e5bfc
RD
1624 return val
1625
1626class PopupTransientWindow(PopupWindow):
36ed4f51 1627 """Proxy of C++ PopupTransientWindow class"""
1bd55598
RD
1628 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1629 __repr__ = _swig_repr
1630 def __init__(self, *args, **kwargs):
d55e5bfc 1631 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1bd55598 1632 _windows_.PopupTransientWindow_swiginit(self,_windows_.new_PopupTransientWindow(*args, **kwargs))
2131d850 1633_windows_.PopupTransientWindow_swigregister(PopupTransientWindow)
d55e5bfc
RD
1634
1635def PrePopupTransientWindow(*args, **kwargs):
1636 """PrePopupTransientWindow() -> PopupTransientWindow"""
1637 val = _windows_.new_PrePopupTransientWindow(*args, **kwargs)
d55e5bfc
RD
1638 return val
1639
1640#---------------------------------------------------------------------------
1641
1642class TipWindow(Frame):
36ed4f51 1643 """Proxy of C++ TipWindow class"""
1bd55598
RD
1644 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1645 __repr__ = _swig_repr
1646 def __init__(self, *args, **kwargs):
d55e5bfc 1647 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1bd55598 1648 _windows_.TipWindow_swiginit(self,_windows_.new_TipWindow(*args, **kwargs))
d55e5bfc
RD
1649 self._setOORInfo(self)
1650
1651 def SetBoundingRect(*args, **kwargs):
1652 """SetBoundingRect(self, Rect rectBound)"""
1653 return _windows_.TipWindow_SetBoundingRect(*args, **kwargs)
1654
1655 def Close(*args, **kwargs):
36ed4f51
RD
1656 """
1657 Close(self)
1658
1659 This function simply generates a EVT_CLOSE event whose handler usually
1660 tries to close the window. It doesn't close the window itself,
1661 however. If force is False (the default) then the window's close
1662 handler will be allowed to veto the destruction of the window.
1663 """
d55e5bfc
RD
1664 return _windows_.TipWindow_Close(*args, **kwargs)
1665
2131d850 1666_windows_.TipWindow_swigregister(TipWindow)
d55e5bfc
RD
1667
1668#---------------------------------------------------------------------------
1669
1670class VScrolledWindow(Panel):
36ed4f51 1671 """Proxy of C++ VScrolledWindow class"""
1bd55598
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
RD
1675 """
1676 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1677 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1678 """
1bd55598 1679 _windows_.VScrolledWindow_swiginit(self,_windows_.new_VScrolledWindow(*args, **kwargs))
d55e5bfc
RD
1680 self._setOORInfo(self); self._setCallbackInfo(self, VScrolledWindow)
1681
1682 def _setCallbackInfo(*args, **kwargs):
1683 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1684 return _windows_.VScrolledWindow__setCallbackInfo(*args, **kwargs)
1685
1686 def Create(*args, **kwargs):
1687 """
1688 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1689 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1690 """
1691 return _windows_.VScrolledWindow_Create(*args, **kwargs)
1692
1693 def SetLineCount(*args, **kwargs):
1694 """SetLineCount(self, size_t count)"""
1695 return _windows_.VScrolledWindow_SetLineCount(*args, **kwargs)
1696
1697 def ScrollToLine(*args, **kwargs):
1698 """ScrollToLine(self, size_t line) -> bool"""
1699 return _windows_.VScrolledWindow_ScrollToLine(*args, **kwargs)
1700
d55e5bfc
RD
1701 def RefreshLine(*args, **kwargs):
1702 """RefreshLine(self, size_t line)"""
1703 return _windows_.VScrolledWindow_RefreshLine(*args, **kwargs)
1704
1705 def RefreshLines(*args, **kwargs):
1706 """RefreshLines(self, size_t from, size_t to)"""
1707 return _windows_.VScrolledWindow_RefreshLines(*args, **kwargs)
1708
03ee685a
RD
1709 def HitTestXY(*args, **kwargs):
1710 """
1711 HitTestXY(self, int x, int y) -> int
1712
1713 Test where the given (in client coords) point lies
1714 """
1715 return _windows_.VScrolledWindow_HitTestXY(*args, **kwargs)
d55e5bfc
RD
1716
1717 def HitTest(*args, **kwargs):
03ee685a
RD
1718 """
1719 HitTest(self, Point pt) -> int
1720
1721 Test where the given (in client coords) point lies
1722 """
d55e5bfc
RD
1723 return _windows_.VScrolledWindow_HitTest(*args, **kwargs)
1724
1725 def RefreshAll(*args, **kwargs):
1726 """RefreshAll(self)"""
1727 return _windows_.VScrolledWindow_RefreshAll(*args, **kwargs)
1728
1729 def GetLineCount(*args, **kwargs):
1730 """GetLineCount(self) -> size_t"""
1731 return _windows_.VScrolledWindow_GetLineCount(*args, **kwargs)
1732
7993762b
RD
1733 def GetVisibleBegin(*args, **kwargs):
1734 """GetVisibleBegin(self) -> size_t"""
1735 return _windows_.VScrolledWindow_GetVisibleBegin(*args, **kwargs)
1736
1737 def GetVisibleEnd(*args, **kwargs):
1738 """GetVisibleEnd(self) -> size_t"""
1739 return _windows_.VScrolledWindow_GetVisibleEnd(*args, **kwargs)
1740
1741 def IsVisible(*args, **kwargs):
1742 """IsVisible(self, size_t line) -> bool"""
1743 return _windows_.VScrolledWindow_IsVisible(*args, **kwargs)
1744
d55e5bfc
RD
1745 def GetFirstVisibleLine(*args, **kwargs):
1746 """GetFirstVisibleLine(self) -> size_t"""
1747 return _windows_.VScrolledWindow_GetFirstVisibleLine(*args, **kwargs)
1748
1749 def GetLastVisibleLine(*args, **kwargs):
1750 """GetLastVisibleLine(self) -> size_t"""
1751 return _windows_.VScrolledWindow_GetLastVisibleLine(*args, **kwargs)
1752
1bd55598
RD
1753 def FindFirstFromBottom(*args, **kwargs):
1754 """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t"""
1755 return _windows_.VScrolledWindow_FindFirstFromBottom(*args, **kwargs)
d55e5bfc 1756
1bd55598
RD
1757 def GetLinesHeight(*args, **kwargs):
1758 """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int"""
1759 return _windows_.VScrolledWindow_GetLinesHeight(*args, **kwargs)
1760
2131d850 1761_windows_.VScrolledWindow_swigregister(VScrolledWindow)
d55e5bfc
RD
1762
1763def PreVScrolledWindow(*args, **kwargs):
1764 """PreVScrolledWindow() -> VScrolledWindow"""
1765 val = _windows_.new_PreVScrolledWindow(*args, **kwargs)
d55e5bfc
RD
1766 return val
1767
1768class VListBox(VScrolledWindow):
36ed4f51 1769 """Proxy of C++ VListBox class"""
1bd55598
RD
1770 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1771 __repr__ = _swig_repr
1772 def __init__(self, *args, **kwargs):
d55e5bfc
RD
1773 """
1774 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1775 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1776 """
1bd55598 1777 _windows_.VListBox_swiginit(self,_windows_.new_VListBox(*args, **kwargs))
d55e5bfc
RD
1778 self._setOORInfo(self);self._setCallbackInfo(self, VListBox)
1779
1780 def _setCallbackInfo(*args, **kwargs):
1781 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1782 return _windows_.VListBox__setCallbackInfo(*args, **kwargs)
1783
1784 def Create(*args, **kwargs):
1785 """
1786 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1787 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1788 """
1789 return _windows_.VListBox_Create(*args, **kwargs)
1790
1791 def GetItemCount(*args, **kwargs):
1792 """GetItemCount(self) -> size_t"""
1793 return _windows_.VListBox_GetItemCount(*args, **kwargs)
1794
1795 def HasMultipleSelection(*args, **kwargs):
1796 """HasMultipleSelection(self) -> bool"""
1797 return _windows_.VListBox_HasMultipleSelection(*args, **kwargs)
1798
1799 def GetSelection(*args, **kwargs):
1800 """GetSelection(self) -> int"""
1801 return _windows_.VListBox_GetSelection(*args, **kwargs)
1802
1803 def IsCurrent(*args, **kwargs):
1804 """IsCurrent(self, size_t item) -> bool"""
1805 return _windows_.VListBox_IsCurrent(*args, **kwargs)
1806
1807 def IsSelected(*args, **kwargs):
1808 """IsSelected(self, size_t item) -> bool"""
1809 return _windows_.VListBox_IsSelected(*args, **kwargs)
1810
1811 def GetSelectedCount(*args, **kwargs):
1812 """GetSelectedCount(self) -> size_t"""
1813 return _windows_.VListBox_GetSelectedCount(*args, **kwargs)
1814
1815 def GetFirstSelected(*args, **kwargs):
09c21d3b 1816 """GetFirstSelected(self) -> PyObject"""
d55e5bfc
RD
1817 return _windows_.VListBox_GetFirstSelected(*args, **kwargs)
1818
1819 def GetNextSelected(*args, **kwargs):
09c21d3b 1820 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
d55e5bfc
RD
1821 return _windows_.VListBox_GetNextSelected(*args, **kwargs)
1822
1823 def GetMargins(*args, **kwargs):
1824 """GetMargins(self) -> Point"""
1825 return _windows_.VListBox_GetMargins(*args, **kwargs)
1826
1827 def GetSelectionBackground(*args, **kwargs):
1828 """GetSelectionBackground(self) -> Colour"""
1829 return _windows_.VListBox_GetSelectionBackground(*args, **kwargs)
1830
1831 def SetItemCount(*args, **kwargs):
1832 """SetItemCount(self, size_t count)"""
1833 return _windows_.VListBox_SetItemCount(*args, **kwargs)
1834
1835 def Clear(*args, **kwargs):
1836 """Clear(self)"""
1837 return _windows_.VListBox_Clear(*args, **kwargs)
1838
1839 def SetSelection(*args, **kwargs):
1840 """SetSelection(self, int selection)"""
1841 return _windows_.VListBox_SetSelection(*args, **kwargs)
1842
1843 def Select(*args, **kwargs):
1844 """Select(self, size_t item, bool select=True) -> bool"""
1845 return _windows_.VListBox_Select(*args, **kwargs)
1846
1847 def SelectRange(*args, **kwargs):
1848 """SelectRange(self, size_t from, size_t to) -> bool"""
1849 return _windows_.VListBox_SelectRange(*args, **kwargs)
1850
1851 def Toggle(*args, **kwargs):
1852 """Toggle(self, size_t item)"""
1853 return _windows_.VListBox_Toggle(*args, **kwargs)
1854
1855 def SelectAll(*args, **kwargs):
1856 """SelectAll(self) -> bool"""
1857 return _windows_.VListBox_SelectAll(*args, **kwargs)
1858
1859 def DeselectAll(*args, **kwargs):
1860 """DeselectAll(self) -> bool"""
1861 return _windows_.VListBox_DeselectAll(*args, **kwargs)
1862
1863 def SetMargins(*args, **kwargs):
1864 """SetMargins(self, Point pt)"""
1865 return _windows_.VListBox_SetMargins(*args, **kwargs)
1866
1867 def SetMarginsXY(*args, **kwargs):
1868 """SetMarginsXY(self, int x, int y)"""
1869 return _windows_.VListBox_SetMarginsXY(*args, **kwargs)
1870
1871 def SetSelectionBackground(*args, **kwargs):
1872 """SetSelectionBackground(self, Colour col)"""
1873 return _windows_.VListBox_SetSelectionBackground(*args, **kwargs)
1874
1c71765a
RD
1875 def OnDrawSeparator(*args, **kwargs):
1876 """OnDrawSeparator(self, DC dc, Rect rect, size_t n)"""
1877 return _windows_.VListBox_OnDrawSeparator(*args, **kwargs)
1878
1879 def OnDrawBackground(*args, **kwargs):
1880 """OnDrawBackground(self, DC dc, Rect rect, size_t n)"""
1881 return _windows_.VListBox_OnDrawBackground(*args, **kwargs)
1882
2131d850 1883_windows_.VListBox_swigregister(VListBox)
d55e5bfc
RD
1884VListBoxNameStr = cvar.VListBoxNameStr
1885
1886def PreVListBox(*args, **kwargs):
1887 """PreVListBox() -> VListBox"""
1888 val = _windows_.new_PreVListBox(*args, **kwargs)
d55e5bfc
RD
1889 return val
1890
1891class HtmlListBox(VListBox):
36ed4f51 1892 """Proxy of C++ HtmlListBox class"""
1bd55598
RD
1893 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1894 __repr__ = _swig_repr
1895 def __init__(self, *args, **kwargs):
d55e5bfc
RD
1896 """
1897 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1898 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1899 """
1bd55598 1900 _windows_.HtmlListBox_swiginit(self,_windows_.new_HtmlListBox(*args, **kwargs))
d55e5bfc
RD
1901 self._setOORInfo(self);self._setCallbackInfo(self, HtmlListBox)
1902
1903 def _setCallbackInfo(*args, **kwargs):
1904 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1905 return _windows_.HtmlListBox__setCallbackInfo(*args, **kwargs)
1906
1907 def Create(*args, **kwargs):
1908 """
1909 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1910 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1911 """
1912 return _windows_.HtmlListBox_Create(*args, **kwargs)
1913
d55e5bfc
RD
1914 def SetItemCount(*args, **kwargs):
1915 """SetItemCount(self, size_t count)"""
1916 return _windows_.HtmlListBox_SetItemCount(*args, **kwargs)
1917
d6c14a4c
RD
1918 def GetFileSystem(*args, **kwargs):
1919 """GetFileSystem(self) -> FileSystem"""
1920 return _windows_.HtmlListBox_GetFileSystem(*args, **kwargs)
1921
e9d6f3a4
RD
1922 def OnLinkClicked(*args, **kwargs):
1923 """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)"""
1924 return _windows_.HtmlListBox_OnLinkClicked(*args, **kwargs)
1925
2131d850 1926_windows_.HtmlListBox_swigregister(HtmlListBox)
d55e5bfc
RD
1927
1928def PreHtmlListBox(*args, **kwargs):
1929 """PreHtmlListBox() -> HtmlListBox"""
1930 val = _windows_.new_PreHtmlListBox(*args, **kwargs)
d55e5bfc
RD
1931 return val
1932
1933#---------------------------------------------------------------------------
1934
1935class TaskBarIcon(_core.EvtHandler):
36ed4f51 1936 """Proxy of C++ TaskBarIcon class"""
1bd55598
RD
1937 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1938 __repr__ = _swig_repr
1939 def __init__(self, *args, **kwargs):
d55e5bfc 1940 """__init__(self) -> TaskBarIcon"""
1bd55598 1941 _windows_.TaskBarIcon_swiginit(self,_windows_.new_TaskBarIcon(*args, **kwargs))
5e483524
RD
1942 self._setCallbackInfo(self, TaskBarIcon, 0)
1943
1bd55598
RD
1944 __swig_destroy__ = _windows_.delete_TaskBarIcon
1945 __del__ = lambda self : None;
5e483524
RD
1946 def _setCallbackInfo(*args, **kwargs):
1947 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
1948 return _windows_.TaskBarIcon__setCallbackInfo(*args, **kwargs)
d55e5bfc
RD
1949
1950 def Destroy(*args, **kwargs):
1951 """
1952 Destroy(self)
1953
1954 Deletes the C++ object this Python object is a proxy for.
1955 """
7e08d4ef
RD
1956 val = _windows_.TaskBarIcon_Destroy(*args, **kwargs)
1957 args[0].thisown = 0
1958 return val
d55e5bfc 1959
b411df4a
RD
1960 def IsOk(*args, **kwargs):
1961 """IsOk(self) -> bool"""
1962 return _windows_.TaskBarIcon_IsOk(*args, **kwargs)
1963
1964 def __nonzero__(self): return self.IsOk()
1965 def IsIconInstalled(*args, **kwargs):
1966 """IsIconInstalled(self) -> bool"""
1967 return _windows_.TaskBarIcon_IsIconInstalled(*args, **kwargs)
1968
1969 def SetIcon(*args, **kwargs):
1970 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
1971 return _windows_.TaskBarIcon_SetIcon(*args, **kwargs)
1972
1973 def RemoveIcon(*args, **kwargs):
1974 """RemoveIcon(self) -> bool"""
1975 return _windows_.TaskBarIcon_RemoveIcon(*args, **kwargs)
1976
1977 def PopupMenu(*args, **kwargs):
1978 """PopupMenu(self, Menu menu) -> bool"""
1979 return _windows_.TaskBarIcon_PopupMenu(*args, **kwargs)
1980
2131d850 1981_windows_.TaskBarIcon_swigregister(TaskBarIcon)
d55e5bfc
RD
1982
1983class TaskBarIconEvent(_core.Event):
36ed4f51 1984 """Proxy of C++ TaskBarIconEvent class"""
1bd55598
RD
1985 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
1986 __repr__ = _swig_repr
1987 def __init__(self, *args, **kwargs):
2131d850 1988 """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
1bd55598 1989 _windows_.TaskBarIconEvent_swiginit(self,_windows_.new_TaskBarIconEvent(*args, **kwargs))
2131d850 1990_windows_.TaskBarIconEvent_swigregister(TaskBarIconEvent)
d55e5bfc
RD
1991
1992wxEVT_TASKBAR_MOVE = _windows_.wxEVT_TASKBAR_MOVE
1993wxEVT_TASKBAR_LEFT_DOWN = _windows_.wxEVT_TASKBAR_LEFT_DOWN
1994wxEVT_TASKBAR_LEFT_UP = _windows_.wxEVT_TASKBAR_LEFT_UP
1995wxEVT_TASKBAR_RIGHT_DOWN = _windows_.wxEVT_TASKBAR_RIGHT_DOWN
1996wxEVT_TASKBAR_RIGHT_UP = _windows_.wxEVT_TASKBAR_RIGHT_UP
1997wxEVT_TASKBAR_LEFT_DCLICK = _windows_.wxEVT_TASKBAR_LEFT_DCLICK
1998wxEVT_TASKBAR_RIGHT_DCLICK = _windows_.wxEVT_TASKBAR_RIGHT_DCLICK
1999EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
2000EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
2001EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
2002EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
2003EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
2004EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
2005EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
2006
2007#---------------------------------------------------------------------------
2008
2009class ColourData(_core.Object):
d6c14a4c
RD
2010 """
2011 This class holds a variety of information related to the colour
2012 chooser dialog, used to transfer settings and results to and from the
2013 `wx.ColourDialog`.
2014 """
1bd55598
RD
2015 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2016 __repr__ = _swig_repr
2017 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2018 """
2019 __init__(self) -> ColourData
2020
2021 Constructor, sets default values.
2022 """
1bd55598
RD
2023 _windows_.ColourData_swiginit(self,_windows_.new_ColourData(*args, **kwargs))
2024 __swig_destroy__ = _windows_.delete_ColourData
2025 __del__ = lambda self : None;
d55e5bfc
RD
2026 def GetChooseFull(*args, **kwargs):
2027 """
2028 GetChooseFull(self) -> bool
2029
d6c14a4c
RD
2030 Under Windows, determines whether the Windows colour dialog will
2031 display the full dialog with custom colour selection controls. Has no
2032 meaning under other platforms. The default value is true.
d55e5bfc
RD
2033 """
2034 return _windows_.ColourData_GetChooseFull(*args, **kwargs)
2035
2036 def GetColour(*args, **kwargs):
2037 """
2038 GetColour(self) -> Colour
2039
2040 Gets the colour (pre)selected by the dialog.
2041 """
2042 return _windows_.ColourData_GetColour(*args, **kwargs)
2043
2044 def GetCustomColour(*args, **kwargs):
2045 """
2046 GetCustomColour(self, int i) -> Colour
2047
d6c14a4c
RD
2048 Gets the i'th custom colour associated with the colour dialog. i
2049 should be an integer between 0 and 15. The default custom colours are
bfddbb17 2050 all invalid colours.
d55e5bfc
RD
2051 """
2052 return _windows_.ColourData_GetCustomColour(*args, **kwargs)
2053
2054 def SetChooseFull(*args, **kwargs):
2055 """
2056 SetChooseFull(self, int flag)
2057
d6c14a4c
RD
2058 Under Windows, tells the Windows colour dialog to display the full
2059 dialog with custom colour selection controls. Under other platforms,
2060 has no effect. The default value is true.
d55e5bfc
RD
2061 """
2062 return _windows_.ColourData_SetChooseFull(*args, **kwargs)
2063
2064 def SetColour(*args, **kwargs):
2065 """
2066 SetColour(self, Colour colour)
2067
d6c14a4c
RD
2068 Sets the default colour for the colour dialog. The default colour is
2069 black.
d55e5bfc
RD
2070 """
2071 return _windows_.ColourData_SetColour(*args, **kwargs)
2072
2073 def SetCustomColour(*args, **kwargs):
2074 """
2075 SetCustomColour(self, int i, Colour colour)
2076
d6c14a4c 2077 Sets the i'th custom colour for the colour dialog. i should be an
bfddbb17 2078 integer between 0 and 15. The default custom colours are all invalid colours.
d55e5bfc
RD
2079 """
2080 return _windows_.ColourData_SetCustomColour(*args, **kwargs)
2081
2131d850 2082_windows_.ColourData_swigregister(ColourData)
d55e5bfc
RD
2083FileSelectorPromptStr = cvar.FileSelectorPromptStr
2084DirSelectorPromptStr = cvar.DirSelectorPromptStr
2085DirDialogNameStr = cvar.DirDialogNameStr
2086FileSelectorDefaultWildcardStr = cvar.FileSelectorDefaultWildcardStr
2087GetTextFromUserPromptStr = cvar.GetTextFromUserPromptStr
2088MessageBoxCaptionStr = cvar.MessageBoxCaptionStr
2089
2090class ColourDialog(Dialog):
2091 """This class represents the colour chooser dialog."""
1bd55598
RD
2092 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2093 __repr__ = _swig_repr
2094 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2095 """
2096 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2097
d6c14a4c
RD
2098 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2099 which will be copied to the colour dialog's internal ColourData
2100 instance.
d55e5bfc 2101 """
1bd55598 2102 _windows_.ColourDialog_swiginit(self,_windows_.new_ColourDialog(*args, **kwargs))
d55e5bfc
RD
2103 self._setOORInfo(self)
2104
2105 def GetColourData(*args, **kwargs):
2106 """
2107 GetColourData(self) -> ColourData
2108
d6c14a4c 2109 Returns a reference to the `wx.ColourData` used by the dialog.
d55e5bfc
RD
2110 """
2111 return _windows_.ColourDialog_GetColourData(*args, **kwargs)
2112
2131d850 2113_windows_.ColourDialog_swigregister(ColourDialog)
d55e5bfc 2114
32fe5131
RD
2115
2116def GetColourFromUser(*args, **kwargs):
1bd55598 2117 """
32fe5131
RD
2118 GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour,
2119 String caption=EmptyString) -> Colour
2120 """
1bd55598 2121 return _windows_.GetColourFromUser(*args, **kwargs)
704eda0c
RD
2122DD_NEW_DIR_BUTTON = _windows_.DD_NEW_DIR_BUTTON
2123DD_DEFAULT_STYLE = _windows_.DD_DEFAULT_STYLE
2124DD_CHANGE_DIR = _windows_.DD_CHANGE_DIR
d55e5bfc 2125class DirDialog(Dialog):
d6c14a4c
RD
2126 """
2127 wx.DirDialog allows the user to select a directory by browising the
2128 file system.
d6c14a4c 2129 """
1bd55598
RD
2130 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2131 __repr__ = _swig_repr
2132 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2133 """
2134 __init__(self, Window parent, String message=DirSelectorPromptStr,
704eda0c 2135 String defaultPath=EmptyString, long style=DD_DEFAULT_STYLE,
d55e5bfc
RD
2136 Point pos=DefaultPosition, Size size=DefaultSize,
2137 String name=DirDialogNameStr) -> DirDialog
2138
2139 Constructor. Use ShowModal method to show the dialog.
2140 """
1bd55598 2141 _windows_.DirDialog_swiginit(self,_windows_.new_DirDialog(*args, **kwargs))
d55e5bfc
RD
2142 self._setOORInfo(self)
2143
2144 def GetPath(*args, **kwargs):
2145 """
2146 GetPath(self) -> String
2147
2148 Returns the default or user-selected path.
2149 """
2150 return _windows_.DirDialog_GetPath(*args, **kwargs)
2151
2152 def GetMessage(*args, **kwargs):
2153 """
2154 GetMessage(self) -> String
2155
2156 Returns the message that will be displayed on the dialog.
2157 """
2158 return _windows_.DirDialog_GetMessage(*args, **kwargs)
2159
d55e5bfc
RD
2160 def SetMessage(*args, **kwargs):
2161 """
2162 SetMessage(self, String message)
2163
2164 Sets the message that will be displayed on the dialog.
2165 """
2166 return _windows_.DirDialog_SetMessage(*args, **kwargs)
2167
2168 def SetPath(*args, **kwargs):
2169 """
2170 SetPath(self, String path)
2171
2172 Sets the default path.
2173 """
2174 return _windows_.DirDialog_SetPath(*args, **kwargs)
2175
2131d850 2176_windows_.DirDialog_swigregister(DirDialog)
d55e5bfc 2177
704eda0c
RD
2178OPEN = _windows_.OPEN
2179SAVE = _windows_.SAVE
2180OVERWRITE_PROMPT = _windows_.OVERWRITE_PROMPT
2181FILE_MUST_EXIST = _windows_.FILE_MUST_EXIST
2182MULTIPLE = _windows_.MULTIPLE
2183CHANGE_DIR = _windows_.CHANGE_DIR
b02396e8 2184HIDE_READONLY = _windows_.HIDE_READONLY
704eda0c
RD
2185FD_OPEN = _windows_.FD_OPEN
2186FD_SAVE = _windows_.FD_SAVE
2187FD_OVERWRITE_PROMPT = _windows_.FD_OVERWRITE_PROMPT
2188FD_FILE_MUST_EXIST = _windows_.FD_FILE_MUST_EXIST
2189FD_MULTIPLE = _windows_.FD_MULTIPLE
2190FD_CHANGE_DIR = _windows_.FD_CHANGE_DIR
2191FD_DEFAULT_STYLE = _windows_.FD_DEFAULT_STYLE
d55e5bfc 2192class FileDialog(Dialog):
d6c14a4c
RD
2193 """
2194 wx.FileDialog allows the user to select one or more files from the
2195 filesystem.
d6c14a4c 2196 """
1bd55598
RD
2197 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2198 __repr__ = _swig_repr
2199 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2200 """
2201 __init__(self, Window parent, String message=FileSelectorPromptStr,
2202 String defaultDir=EmptyString, String defaultFile=EmptyString,
2203 String wildcard=FileSelectorDefaultWildcardStr,
704eda0c
RD
2204 long style=FD_DEFAULT_STYLE,
2205 Point pos=DefaultPosition) -> FileDialog
d55e5bfc
RD
2206
2207 Constructor. Use ShowModal method to show the dialog.
2208 """
1bd55598 2209 _windows_.FileDialog_swiginit(self,_windows_.new_FileDialog(*args, **kwargs))
d55e5bfc
RD
2210 self._setOORInfo(self)
2211
2212 def SetMessage(*args, **kwargs):
2213 """
2214 SetMessage(self, String message)
2215
2216 Sets the message that will be displayed on the dialog.
2217 """
2218 return _windows_.FileDialog_SetMessage(*args, **kwargs)
2219
2220 def SetPath(*args, **kwargs):
2221 """
2222 SetPath(self, String path)
2223
d6c14a4c
RD
2224 Sets the path (the combined directory and filename that will be
2225 returned when the dialog is dismissed).
d55e5bfc
RD
2226 """
2227 return _windows_.FileDialog_SetPath(*args, **kwargs)
2228
2229 def SetDirectory(*args, **kwargs):
2230 """
2231 SetDirectory(self, String dir)
2232
2233 Sets the default directory.
2234 """
2235 return _windows_.FileDialog_SetDirectory(*args, **kwargs)
2236
2237 def SetFilename(*args, **kwargs):
2238 """
2239 SetFilename(self, String name)
2240
2241 Sets the default filename.
2242 """
2243 return _windows_.FileDialog_SetFilename(*args, **kwargs)
2244
2245 def SetWildcard(*args, **kwargs):
2246 """
2247 SetWildcard(self, String wildCard)
2248
d6c14a4c
RD
2249 Sets the wildcard, which can contain multiple file types, for
2250 example::
2251
d55e5bfc 2252 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
d6c14a4c 2253
d55e5bfc
RD
2254 """
2255 return _windows_.FileDialog_SetWildcard(*args, **kwargs)
2256
d55e5bfc
RD
2257 def SetFilterIndex(*args, **kwargs):
2258 """
2259 SetFilterIndex(self, int filterIndex)
2260
2261 Sets the default filter index, starting from zero.
2262 """
2263 return _windows_.FileDialog_SetFilterIndex(*args, **kwargs)
2264
2265 def GetMessage(*args, **kwargs):
2266 """
2267 GetMessage(self) -> String
2268
2269 Returns the message that will be displayed on the dialog.
2270 """
2271 return _windows_.FileDialog_GetMessage(*args, **kwargs)
2272
2273 def GetPath(*args, **kwargs):
2274 """
2275 GetPath(self) -> String
2276
2277 Returns the full path (directory and filename) of the selected file.
2278 """
2279 return _windows_.FileDialog_GetPath(*args, **kwargs)
2280
2281 def GetDirectory(*args, **kwargs):
2282 """
2283 GetDirectory(self) -> String
2284
2285 Returns the default directory.
2286 """
2287 return _windows_.FileDialog_GetDirectory(*args, **kwargs)
2288
2289 def GetFilename(*args, **kwargs):
2290 """
2291 GetFilename(self) -> String
2292
2293 Returns the default filename.
2294 """
2295 return _windows_.FileDialog_GetFilename(*args, **kwargs)
2296
2297 def GetWildcard(*args, **kwargs):
2298 """
2299 GetWildcard(self) -> String
2300
2301 Returns the file dialog wildcard.
2302 """
2303 return _windows_.FileDialog_GetWildcard(*args, **kwargs)
2304
d55e5bfc
RD
2305 def GetFilterIndex(*args, **kwargs):
2306 """
2307 GetFilterIndex(self) -> int
2308
2309 Returns the index into the list of filters supplied, optionally, in
2310 the wildcard parameter. Before the dialog is shown, this is the index
d6c14a4c
RD
2311 which will be used when the dialog is first displayed. After the
2312 dialog is shown, this is the index selected by the user.
d55e5bfc
RD
2313 """
2314 return _windows_.FileDialog_GetFilterIndex(*args, **kwargs)
2315
2316 def GetFilenames(*args, **kwargs):
2317 """
2318 GetFilenames(self) -> PyObject
2319
d6c14a4c
RD
2320 Returns a list of filenames chosen in the dialog. This function
2321 should only be used with the dialogs which have wx.MULTIPLE style, use
d55e5bfc
RD
2322 GetFilename for the others.
2323 """
2324 return _windows_.FileDialog_GetFilenames(*args, **kwargs)
2325
2326 def GetPaths(*args, **kwargs):
2327 """
2328 GetPaths(self) -> PyObject
2329
2330 Fills the array paths with the full paths of the files chosen. This
d6c14a4c
RD
2331 function should only be used with the dialogs which have wx.MULTIPLE
2332 style, use GetPath for the others.
d55e5bfc
RD
2333 """
2334 return _windows_.FileDialog_GetPaths(*args, **kwargs)
2335
2131d850 2336_windows_.FileDialog_swigregister(FileDialog)
d55e5bfc
RD
2337
2338CHOICEDLG_STYLE = _windows_.CHOICEDLG_STYLE
2339class MultiChoiceDialog(Dialog):
2340 """A simple dialog with a multi selection listbox."""
1bd55598
RD
2341 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2342 __repr__ = _swig_repr
2343 def __init__(self, *args, **kwargs):
d55e5bfc 2344 """
034e3677 2345 __init__(self, Window parent, String message, String caption,
5dce5a9a 2346 List choices=EmptyList, long style=CHOICEDLG_STYLE,
d55e5bfc
RD
2347 Point pos=DefaultPosition) -> MultiChoiceDialog
2348
034e3677
RD
2349 Constructor. Use the `ShowModal` method to show the dialog.
2350
2351 :param parent: The parent window.
2352 :param message: Text to display above the list of selections.
2353 :param caption: Text to use in the title bar of the dialog.
2354 :param choices: A list of strings or unicode objects that the
2355 user is allowed to choose from.
2356 :param style: Styles to apply to the dialog. The default value is
2357 equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
2358 :param pos: Where to position the dialog (not used on Windows)
2359
2360
d55e5bfc 2361 """
1bd55598 2362 _windows_.MultiChoiceDialog_swiginit(self,_windows_.new_MultiChoiceDialog(*args, **kwargs))
d55e5bfc
RD
2363 self._setOORInfo(self)
2364
2365 def SetSelections(*args, **kwargs):
a001823c
RD
2366 """
2367 SetSelections(List selections)
2368
2369 Specify the items in the list that should be selected, using a list of
034e3677
RD
2370 integers. The list should specify the indexes of the items that
2371 should be selected.
a001823c 2372 """
d55e5bfc
RD
2373 return _windows_.MultiChoiceDialog_SetSelections(*args, **kwargs)
2374
2375 def GetSelections(*args, **kwargs):
2376 """
2377 GetSelections() -> [selections]
2378
2379 Returns a list of integers representing the items that are selected.
034e3677 2380 If an item is selected then its index will appear in the list.
d55e5bfc
RD
2381 """
2382 return _windows_.MultiChoiceDialog_GetSelections(*args, **kwargs)
2383
2131d850 2384_windows_.MultiChoiceDialog_swigregister(MultiChoiceDialog)
d55e5bfc
RD
2385
2386class SingleChoiceDialog(Dialog):
2387 """A simple dialog with a single selection listbox."""
1bd55598
RD
2388 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2389 __repr__ = _swig_repr
2390 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2391 """
2392 __init__(Window parent, String message, String caption,
5dce5a9a 2393 List choices=EmptyList, long style=CHOICEDLG_STYLE,
d55e5bfc
RD
2394 Point pos=DefaultPosition) -> SingleChoiceDialog
2395
2396 Constructor. Use ShowModal method to show the dialog.
2397 """
1bd55598 2398 _windows_.SingleChoiceDialog_swiginit(self,_windows_.new_SingleChoiceDialog(*args, **kwargs))
d55e5bfc
RD
2399 self._setOORInfo(self)
2400
2401 def GetSelection(*args, **kwargs):
2402 """
2403 GetSelection(self) -> int
2404
2405 Get the index of teh currently selected item.
2406 """
2407 return _windows_.SingleChoiceDialog_GetSelection(*args, **kwargs)
2408
2409 def GetStringSelection(*args, **kwargs):
2410 """
2411 GetStringSelection(self) -> String
2412
2413 Returns the string value of the currently selected item
2414 """
2415 return _windows_.SingleChoiceDialog_GetStringSelection(*args, **kwargs)
2416
2417 def SetSelection(*args, **kwargs):
2418 """
2419 SetSelection(self, int sel)
2420
2421 Set the current selected item to sel
2422 """
2423 return _windows_.SingleChoiceDialog_SetSelection(*args, **kwargs)
2424
2131d850 2425_windows_.SingleChoiceDialog_swigregister(SingleChoiceDialog)
d55e5bfc 2426
03e46024 2427TextEntryDialogStyle = _windows_.TextEntryDialogStyle
d55e5bfc
RD
2428class TextEntryDialog(Dialog):
2429 """A dialog with text control, [ok] and [cancel] buttons"""
1bd55598
RD
2430 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2431 __repr__ = _swig_repr
2432 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2433 """
2434 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2435 String defaultValue=EmptyString,
03e46024 2436 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
d55e5bfc
RD
2437
2438 Constructor. Use ShowModal method to show the dialog.
2439 """
1bd55598 2440 _windows_.TextEntryDialog_swiginit(self,_windows_.new_TextEntryDialog(*args, **kwargs))
d55e5bfc
RD
2441 self._setOORInfo(self)
2442
2443 def GetValue(*args, **kwargs):
2444 """
2445 GetValue(self) -> String
2446
2447 Returns the text that the user has entered if the user has pressed OK,
2448 or the original value if the user has pressed Cancel.
2449 """
2450 return _windows_.TextEntryDialog_GetValue(*args, **kwargs)
2451
2452 def SetValue(*args, **kwargs):
2453 """
2454 SetValue(self, String value)
2455
2456 Sets the default text value.
2457 """
2458 return _windows_.TextEntryDialog_SetValue(*args, **kwargs)
2459
2131d850 2460_windows_.TextEntryDialog_swigregister(TextEntryDialog)
d55e5bfc 2461
070c48b4 2462class PasswordEntryDialog(TextEntryDialog):
36ed4f51 2463 """Proxy of C++ PasswordEntryDialog class"""
1bd55598
RD
2464 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2465 __repr__ = _swig_repr
2466 def __init__(self, *args, **kwargs):
070c48b4
RD
2467 """
2468 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2469 String value=EmptyString,
03e46024 2470 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
070c48b4 2471 """
1bd55598 2472 _windows_.PasswordEntryDialog_swiginit(self,_windows_.new_PasswordEntryDialog(*args, **kwargs))
2131d850 2473_windows_.PasswordEntryDialog_swigregister(PasswordEntryDialog)
070c48b4
RD
2474GetPasswordFromUserPromptStr = cvar.GetPasswordFromUserPromptStr
2475
27e45892
RD
2476class NumberEntryDialog(Dialog):
2477 """A dialog with spin control, ok and cancel buttons."""
2478 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2479 __repr__ = _swig_repr
2480 def __init__(self, *args, **kwargs):
2481 """
2482 __init__(self, Window parent, String message, String prompt, String caption,
2483 long value, long min, long max, Point pos=DefaultPosition) -> NumberEntryDialog
2484
2485 Constructor. Use ShowModal method to show the dialog.
2486 """
2487 _windows_.NumberEntryDialog_swiginit(self,_windows_.new_NumberEntryDialog(*args, **kwargs))
2488 self._setOORInfo(self)
2489
2490 def GetValue(*args, **kwargs):
2491 """GetValue(self) -> long"""
2492 return _windows_.NumberEntryDialog_GetValue(*args, **kwargs)
2493
2494_windows_.NumberEntryDialog_swigregister(NumberEntryDialog)
2495
d55e5bfc 2496class FontData(_core.Object):
d6c14a4c
RD
2497 """
2498 This class holds a variety of information related to font dialogs and
2499 is used to transfer settings to and results from a `wx.FontDialog`.
2500 """
1bd55598
RD
2501 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2502 __repr__ = _swig_repr
2503 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2504 """
2505 __init__(self) -> FontData
2506
d6c14a4c
RD
2507 This class holds a variety of information related to font dialogs and
2508 is used to transfer settings to and results from a `wx.FontDialog`.
d55e5bfc 2509 """
1bd55598
RD
2510 _windows_.FontData_swiginit(self,_windows_.new_FontData(*args, **kwargs))
2511 __swig_destroy__ = _windows_.delete_FontData
2512 __del__ = lambda self : None;
d55e5bfc
RD
2513 def EnableEffects(*args, **kwargs):
2514 """
2515 EnableEffects(self, bool enable)
2516
d6c14a4c
RD
2517 Enables or disables 'effects' under MS Windows only. This refers to
2518 the controls for manipulating colour, strikeout and underline
d55e5bfc
RD
2519 properties. The default value is true.
2520 """
2521 return _windows_.FontData_EnableEffects(*args, **kwargs)
2522
2523 def GetAllowSymbols(*args, **kwargs):
2524 """
2525 GetAllowSymbols(self) -> bool
2526
d6c14a4c
RD
2527 Under MS Windows, returns a flag determining whether symbol fonts can
2528 be selected. Has no effect on other platforms. The default value is
2529 true.
d55e5bfc
RD
2530 """
2531 return _windows_.FontData_GetAllowSymbols(*args, **kwargs)
2532
2533 def GetColour(*args, **kwargs):
2534 """
2535 GetColour(self) -> Colour
2536
d6c14a4c
RD
2537 Gets the colour associated with the font dialog. The default value is
2538 black.
d55e5bfc
RD
2539 """
2540 return _windows_.FontData_GetColour(*args, **kwargs)
2541
2542 def GetChosenFont(*args, **kwargs):
2543 """
2544 GetChosenFont(self) -> Font
2545
2546 Gets the font chosen by the user.
2547 """
2548 return _windows_.FontData_GetChosenFont(*args, **kwargs)
2549
2550 def GetEnableEffects(*args, **kwargs):
2551 """
2552 GetEnableEffects(self) -> bool
2553
2554 Determines whether 'effects' are enabled under Windows.
2555 """
2556 return _windows_.FontData_GetEnableEffects(*args, **kwargs)
2557
2558 def GetInitialFont(*args, **kwargs):
2559 """
2560 GetInitialFont(self) -> Font
2561
d6c14a4c
RD
2562 Gets the font that will be initially used by the font dialog. This
2563 should have previously been set by the application.
d55e5bfc
RD
2564 """
2565 return _windows_.FontData_GetInitialFont(*args, **kwargs)
2566
2567 def GetShowHelp(*args, **kwargs):
2568 """
2569 GetShowHelp(self) -> bool
2570
d6c14a4c
RD
2571 Returns true if the Help button will be shown (Windows only). The
2572 default value is false.
d55e5bfc
RD
2573 """
2574 return _windows_.FontData_GetShowHelp(*args, **kwargs)
2575
2576 def SetAllowSymbols(*args, **kwargs):
2577 """
2578 SetAllowSymbols(self, bool allowSymbols)
2579
d6c14a4c
RD
2580 Under MS Windows, determines whether symbol fonts can be selected. Has
2581 no effect on other platforms. The default value is true.
d55e5bfc
RD
2582 """
2583 return _windows_.FontData_SetAllowSymbols(*args, **kwargs)
2584
2585 def SetChosenFont(*args, **kwargs):
2586 """
2587 SetChosenFont(self, Font font)
2588
d6c14a4c
RD
2589 Sets the font that will be returned to the user (normally for internal
2590 use only).
d55e5bfc
RD
2591 """
2592 return _windows_.FontData_SetChosenFont(*args, **kwargs)
2593
2594 def SetColour(*args, **kwargs):
2595 """
2596 SetColour(self, Colour colour)
2597
d6c14a4c
RD
2598 Sets the colour that will be used for the font foreground colour. The
2599 default colour is black.
d55e5bfc
RD
2600 """
2601 return _windows_.FontData_SetColour(*args, **kwargs)
2602
2603 def SetInitialFont(*args, **kwargs):
2604 """
2605 SetInitialFont(self, Font font)
2606
2607 Sets the font that will be initially used by the font dialog.
2608 """
2609 return _windows_.FontData_SetInitialFont(*args, **kwargs)
2610
2611 def SetRange(*args, **kwargs):
2612 """
2613 SetRange(self, int min, int max)
2614
d6c14a4c
RD
2615 Sets the valid range for the font point size (Windows only). The
2616 default is 0, 0 (unrestricted range).
d55e5bfc
RD
2617 """
2618 return _windows_.FontData_SetRange(*args, **kwargs)
2619
2620 def SetShowHelp(*args, **kwargs):
2621 """
2622 SetShowHelp(self, bool showHelp)
2623
d6c14a4c
RD
2624 Determines whether the Help button will be displayed in the font
2625 dialog (Windows only). The default value is false.
d55e5bfc
RD
2626 """
2627 return _windows_.FontData_SetShowHelp(*args, **kwargs)
2628
2131d850 2629_windows_.FontData_swigregister(FontData)
d55e5bfc
RD
2630
2631class FontDialog(Dialog):
d6c14a4c
RD
2632 """
2633 wx.FontDialog allows the user to select a system font and its attributes.
2634
2635 :see: `wx.FontData`
2636
2637 """
1bd55598
RD
2638 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2639 __repr__ = _swig_repr
2640 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2641 """
2642 __init__(self, Window parent, FontData data) -> FontDialog
2643
d6c14a4c
RD
2644 Constructor. Pass a parent window and the `wx.FontData` object to be
2645 used to initialize the dialog controls. Call `ShowModal` to display
2646 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2647 results with via the `wx.FontData` returned by `GetFontData`.
d55e5bfc 2648 """
1bd55598 2649 _windows_.FontDialog_swiginit(self,_windows_.new_FontDialog(*args, **kwargs))
d55e5bfc
RD
2650 self._setOORInfo(self)
2651
2652 def GetFontData(*args, **kwargs):
2653 """
2654 GetFontData(self) -> FontData
2655
d6c14a4c
RD
2656 Returns a reference to the internal `wx.FontData` used by the
2657 wx.FontDialog.
d55e5bfc
RD
2658 """
2659 return _windows_.FontDialog_GetFontData(*args, **kwargs)
2660
2131d850 2661_windows_.FontDialog_swigregister(FontDialog)
d55e5bfc 2662
32fe5131
RD
2663
2664def GetFontFromUser(*args, **kwargs):
1bd55598
RD
2665 """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font"""
2666 return _windows_.GetFontFromUser(*args, **kwargs)
d55e5bfc
RD
2667class MessageDialog(Dialog):
2668 """
d6c14a4c
RD
2669 This class provides a simple dialog that shows a single or multi-line
2670 message, with a choice of OK, Yes, No and/or Cancel buttons.
d55e5bfc 2671 """
1bd55598
RD
2672 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2673 __repr__ = _swig_repr
2674 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2675 """
2676 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2677 long style=wxOK|wxCANCEL|wxCENTRE,
2678 Point pos=DefaultPosition) -> MessageDialog
2679
d6c14a4c 2680 Constructor, use `ShowModal` to display the dialog.
d55e5bfc 2681 """
1bd55598 2682 _windows_.MessageDialog_swiginit(self,_windows_.new_MessageDialog(*args, **kwargs))
d55e5bfc
RD
2683 self._setOORInfo(self)
2684
2131d850 2685_windows_.MessageDialog_swigregister(MessageDialog)
d55e5bfc
RD
2686
2687class ProgressDialog(Frame):
2688 """
d6c14a4c
RD
2689 A dialog that shows a short message and a progress bar. Optionally, it
2690 can display an ABORT button.
d55e5bfc 2691 """
1bd55598
RD
2692 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2693 __repr__ = _swig_repr
2694 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2695 """
2696 __init__(self, String title, String message, int maximum=100, Window parent=None,
2697 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2698
d6c14a4c
RD
2699 Constructor. Creates the dialog, displays it and disables user input
2700 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2701 parent window only.
d55e5bfc 2702 """
1bd55598 2703 _windows_.ProgressDialog_swiginit(self,_windows_.new_ProgressDialog(*args, **kwargs))
d55e5bfc
RD
2704 self._setOORInfo(self)
2705
2706 def Update(*args, **kwargs):
2707 """
2131d850 2708 Update(self, int value, String newmsg) --> (continue, skip)
d55e5bfc 2709
d6c14a4c 2710 Updates the dialog, setting the progress bar to the new value and, if
6923d0a9
RD
2711 given changes the message above it. The value given should be less
2712 than or equal to the maximum value given to the constructor and the
2131d850
RD
2713 dialog is closed if it is equal to the maximum. Returns a tuple of
2714 boolean values, ``(continue, skip)`` where ``continue`` is ``True``
2715 unless the Cancel button has been pressed, and ``skip`` is ``False``
2716 unless the Skip button (if any) has been pressed.
2717
2718 If the ``continue`` return value is ``false``, the application can either
2719 immediately destroy the dialog or ask the user for confirmation, and if the
2720 abort is not confirmed the dialog may be resumed with `Resume` function.
d55e5bfc 2721
d55e5bfc
RD
2722 """
2723 return _windows_.ProgressDialog_Update(*args, **kwargs)
2724
2725 def Resume(*args, **kwargs):
2726 """
2727 Resume(self)
2728
d6c14a4c
RD
2729 Can be used to continue with the dialog, after the user had chosen to
2730 abort.
d55e5bfc
RD
2731 """
2732 return _windows_.ProgressDialog_Resume(*args, **kwargs)
2733
2131d850 2734_windows_.ProgressDialog_swigregister(ProgressDialog)
d55e5bfc
RD
2735
2736FR_DOWN = _windows_.FR_DOWN
2737FR_WHOLEWORD = _windows_.FR_WHOLEWORD
2738FR_MATCHCASE = _windows_.FR_MATCHCASE
2739FR_REPLACEDIALOG = _windows_.FR_REPLACEDIALOG
2740FR_NOUPDOWN = _windows_.FR_NOUPDOWN
2741FR_NOMATCHCASE = _windows_.FR_NOMATCHCASE
2742FR_NOWHOLEWORD = _windows_.FR_NOWHOLEWORD
2743wxEVT_COMMAND_FIND = _windows_.wxEVT_COMMAND_FIND
2744wxEVT_COMMAND_FIND_NEXT = _windows_.wxEVT_COMMAND_FIND_NEXT
2745wxEVT_COMMAND_FIND_REPLACE = _windows_.wxEVT_COMMAND_FIND_REPLACE
2746wxEVT_COMMAND_FIND_REPLACE_ALL = _windows_.wxEVT_COMMAND_FIND_REPLACE_ALL
2747wxEVT_COMMAND_FIND_CLOSE = _windows_.wxEVT_COMMAND_FIND_CLOSE
2748EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 )
2749EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 )
2750EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 )
2751EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 )
2752EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 )
2753
2754# For backwards compatibility. Should they be removed?
704eda0c 2755EVT_COMMAND_FIND = EVT_FIND
d55e5bfc
RD
2756EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
2757EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
2758EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
704eda0c 2759EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
d55e5bfc
RD
2760
2761class FindDialogEvent(_core.CommandEvent):
2762 """Events for the FindReplaceDialog"""
1bd55598
RD
2763 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2764 __repr__ = _swig_repr
2765 def __init__(self, *args, **kwargs):
d55e5bfc 2766 """
2131d850 2767 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
d55e5bfc
RD
2768
2769 Events for the FindReplaceDialog
2770 """
1bd55598 2771 _windows_.FindDialogEvent_swiginit(self,_windows_.new_FindDialogEvent(*args, **kwargs))
d55e5bfc
RD
2772 def GetFlags(*args, **kwargs):
2773 """
2774 GetFlags(self) -> int
2775
2776 Get the currently selected flags: this is the combination of
2777 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2778 """
2779 return _windows_.FindDialogEvent_GetFlags(*args, **kwargs)
2780
2781 def GetFindString(*args, **kwargs):
2782 """
2783 GetFindString(self) -> String
2784
2785 Return the string to find (never empty).
2786 """
2787 return _windows_.FindDialogEvent_GetFindString(*args, **kwargs)
2788
2789 def GetReplaceString(*args, **kwargs):
2790 """
2791 GetReplaceString(self) -> String
2792
d6c14a4c
RD
2793 Return the string to replace the search string with (only for replace
2794 and replace all events).
d55e5bfc
RD
2795 """
2796 return _windows_.FindDialogEvent_GetReplaceString(*args, **kwargs)
2797
2798 def GetDialog(*args, **kwargs):
2799 """
2800 GetDialog(self) -> FindReplaceDialog
2801
2802 Return the pointer to the dialog which generated this event.
2803 """
2804 return _windows_.FindDialogEvent_GetDialog(*args, **kwargs)
2805
2806 def SetFlags(*args, **kwargs):
2807 """SetFlags(self, int flags)"""
2808 return _windows_.FindDialogEvent_SetFlags(*args, **kwargs)
2809
2810 def SetFindString(*args, **kwargs):
2811 """SetFindString(self, String str)"""
2812 return _windows_.FindDialogEvent_SetFindString(*args, **kwargs)
2813
2814 def SetReplaceString(*args, **kwargs):
2815 """SetReplaceString(self, String str)"""
2816 return _windows_.FindDialogEvent_SetReplaceString(*args, **kwargs)
2817
2131d850 2818_windows_.FindDialogEvent_swigregister(FindDialogEvent)
d55e5bfc
RD
2819
2820class FindReplaceData(_core.Object):
2821 """
d6c14a4c
RD
2822 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2823 to initialize the dialog with the default values and will keep the
2824 last values from the dialog when it is closed. It is also updated each
2825 time a `wx.FindDialogEvent` is generated so instead of using the
2826 `wx.FindDialogEvent` methods you can also directly query this object.
d55e5bfc 2827
d6c14a4c
RD
2828 Note that all SetXXX() methods may only be called before showing the
2829 dialog and calling them has no effect later.
d55e5bfc 2830 """
1bd55598
RD
2831 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2832 __repr__ = _swig_repr
2833 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2834 """
2835 __init__(self, int flags=0) -> FindReplaceData
2836
2837 Constuctor initializes the flags to default value (0).
2838 """
1bd55598
RD
2839 _windows_.FindReplaceData_swiginit(self,_windows_.new_FindReplaceData(*args, **kwargs))
2840 __swig_destroy__ = _windows_.delete_FindReplaceData
2841 __del__ = lambda self : None;
d55e5bfc
RD
2842 def GetFindString(*args, **kwargs):
2843 """
2844 GetFindString(self) -> String
2845
2846 Get the string to find.
2847 """
2848 return _windows_.FindReplaceData_GetFindString(*args, **kwargs)
2849
2850 def GetReplaceString(*args, **kwargs):
2851 """
2852 GetReplaceString(self) -> String
2853
2854 Get the replacement string.
2855 """
2856 return _windows_.FindReplaceData_GetReplaceString(*args, **kwargs)
2857
2858 def GetFlags(*args, **kwargs):
2859 """
2860 GetFlags(self) -> int
2861
2862 Get the combination of flag values.
2863 """
2864 return _windows_.FindReplaceData_GetFlags(*args, **kwargs)
2865
2866 def SetFlags(*args, **kwargs):
2867 """
2868 SetFlags(self, int flags)
2869
2870 Set the flags to use to initialize the controls of the dialog.
2871 """
2872 return _windows_.FindReplaceData_SetFlags(*args, **kwargs)
2873
2874 def SetFindString(*args, **kwargs):
2875 """
2876 SetFindString(self, String str)
2877
2878 Set the string to find (used as initial value by the dialog).
2879 """
2880 return _windows_.FindReplaceData_SetFindString(*args, **kwargs)
2881
2882 def SetReplaceString(*args, **kwargs):
2883 """
2884 SetReplaceString(self, String str)
2885
2886 Set the replacement string (used as initial value by the dialog).
2887 """
2888 return _windows_.FindReplaceData_SetReplaceString(*args, **kwargs)
2889
2131d850 2890_windows_.FindReplaceData_swigregister(FindReplaceData)
d55e5bfc
RD
2891
2892class FindReplaceDialog(Dialog):
2893 """
d6c14a4c
RD
2894 wx.FindReplaceDialog is a standard modeless dialog which is used to
2895 allow the user to search for some text (and possibly replace it with
2896 something else). The actual searching is supposed to be done in the
2897 owner window which is the parent of this dialog. Note that it means
2898 that unlike for the other standard dialogs this one must have a parent
2899 window. Also note that there is no way to use this dialog in a modal
2900 way; it is always, by design and implementation, modeless.
d55e5bfc 2901 """
1bd55598
RD
2902 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2903 __repr__ = _swig_repr
2904 def __init__(self, *args, **kwargs):
d55e5bfc
RD
2905 """
2906 __init__(self, Window parent, FindReplaceData data, String title,
2907 int style=0) -> FindReplaceDialog
2908
2909 Create a FindReplaceDialog. The parent and data parameters must be
2910 non-None. Use Show to display the dialog.
2911 """
1bd55598 2912 _windows_.FindReplaceDialog_swiginit(self,_windows_.new_FindReplaceDialog(*args, **kwargs))
d55e5bfc
RD
2913 self._setOORInfo(self)
2914
2915 def Create(*args, **kwargs):
2916 """
2917 Create(self, Window parent, FindReplaceData data, String title,
2918 int style=0) -> bool
2919
2920 Create the dialog, for 2-phase create.
2921 """
2922 return _windows_.FindReplaceDialog_Create(*args, **kwargs)
2923
2924 def GetData(*args, **kwargs):
2925 """
2926 GetData(self) -> FindReplaceData
2927
2928 Get the FindReplaceData object used by this dialog.
2929 """
2930 return _windows_.FindReplaceDialog_GetData(*args, **kwargs)
2931
2932 def SetData(*args, **kwargs):
2933 """
2934 SetData(self, FindReplaceData data)
2935
2936 Set the FindReplaceData object used by this dialog.
2937 """
2938 return _windows_.FindReplaceDialog_SetData(*args, **kwargs)
2939
2131d850 2940_windows_.FindReplaceDialog_swigregister(FindReplaceDialog)
d55e5bfc
RD
2941
2942def PreFindReplaceDialog(*args, **kwargs):
2943 """
2944 PreFindReplaceDialog() -> FindReplaceDialog
2945
2946 Precreate a FindReplaceDialog for 2-phase creation
2947 """
2948 val = _windows_.new_PreFindReplaceDialog(*args, **kwargs)
d55e5bfc
RD
2949 return val
2950
2951#---------------------------------------------------------------------------
2952
2953IDM_WINDOWTILE = _windows_.IDM_WINDOWTILE
2954IDM_WINDOWTILEHOR = _windows_.IDM_WINDOWTILEHOR
2955IDM_WINDOWCASCADE = _windows_.IDM_WINDOWCASCADE
2956IDM_WINDOWICONS = _windows_.IDM_WINDOWICONS
2957IDM_WINDOWNEXT = _windows_.IDM_WINDOWNEXT
2958IDM_WINDOWTILEVERT = _windows_.IDM_WINDOWTILEVERT
24d7cbea 2959IDM_WINDOWPREV = _windows_.IDM_WINDOWPREV
d55e5bfc
RD
2960FIRST_MDI_CHILD = _windows_.FIRST_MDI_CHILD
2961LAST_MDI_CHILD = _windows_.LAST_MDI_CHILD
2962class MDIParentFrame(Frame):
36ed4f51 2963 """Proxy of C++ MDIParentFrame class"""
1bd55598
RD
2964 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
2965 __repr__ = _swig_repr
2966 def __init__(self, *args, **kwargs):
d55e5bfc 2967 """
bfddbb17
RD
2968 __init__(self, Window parent, int id=-1, String title=EmptyString,
2969 Point pos=DefaultPosition, Size size=DefaultSize,
2970 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
d55e5bfc
RD
2971 String name=FrameNameStr) -> MDIParentFrame
2972 """
1bd55598 2973 _windows_.MDIParentFrame_swiginit(self,_windows_.new_MDIParentFrame(*args, **kwargs))
d55e5bfc
RD
2974 self._setOORInfo(self)
2975
2976 def Create(*args, **kwargs):
2977 """
bfddbb17
RD
2978 Create(self, Window parent, int id=-1, String title=EmptyString,
2979 Point pos=DefaultPosition, Size size=DefaultSize,
2980 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
d55e5bfc
RD
2981 String name=FrameNameStr) -> bool
2982 """
2983 return _windows_.MDIParentFrame_Create(*args, **kwargs)
2984
2985 def ActivateNext(*args, **kwargs):
2986 """ActivateNext(self)"""
2987 return _windows_.MDIParentFrame_ActivateNext(*args, **kwargs)
2988
2989 def ActivatePrevious(*args, **kwargs):
2990 """ActivatePrevious(self)"""
2991 return _windows_.MDIParentFrame_ActivatePrevious(*args, **kwargs)
2992
2993 def ArrangeIcons(*args, **kwargs):
2994 """ArrangeIcons(self)"""
2995 return _windows_.MDIParentFrame_ArrangeIcons(*args, **kwargs)
2996
2997 def Cascade(*args, **kwargs):
2998 """Cascade(self)"""
2999 return _windows_.MDIParentFrame_Cascade(*args, **kwargs)
3000
3001 def GetActiveChild(*args, **kwargs):
3002 """GetActiveChild(self) -> MDIChildFrame"""
3003 return _windows_.MDIParentFrame_GetActiveChild(*args, **kwargs)
3004
3005 def GetClientWindow(*args, **kwargs):
3006 """GetClientWindow(self) -> MDIClientWindow"""
3007 return _windows_.MDIParentFrame_GetClientWindow(*args, **kwargs)
3008
3009 def GetToolBar(*args, **kwargs):
3010 """GetToolBar(self) -> Window"""
3011 return _windows_.MDIParentFrame_GetToolBar(*args, **kwargs)
3012
3013 def Tile(*args, **kwargs):
3837a853 3014 """Tile(self, int orient=HORIZONTAL)"""
d55e5bfc
RD
3015 return _windows_.MDIParentFrame_Tile(*args, **kwargs)
3016
2131d850 3017_windows_.MDIParentFrame_swigregister(MDIParentFrame)
d55e5bfc
RD
3018
3019def PreMDIParentFrame(*args, **kwargs):
3020 """PreMDIParentFrame() -> MDIParentFrame"""
3021 val = _windows_.new_PreMDIParentFrame(*args, **kwargs)
d55e5bfc
RD
3022 return val
3023
3024class MDIChildFrame(Frame):
36ed4f51 3025 """Proxy of C++ MDIChildFrame class"""
1bd55598
RD
3026 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3027 __repr__ = _swig_repr
3028 def __init__(self, *args, **kwargs):
d55e5bfc 3029 """
bfddbb17
RD
3030 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3031 Point pos=DefaultPosition, Size size=DefaultSize,
3032 long style=DEFAULT_FRAME_STYLE,
d55e5bfc
RD
3033 String name=FrameNameStr) -> MDIChildFrame
3034 """
1bd55598 3035 _windows_.MDIChildFrame_swiginit(self,_windows_.new_MDIChildFrame(*args, **kwargs))
d55e5bfc
RD
3036 self._setOORInfo(self)
3037
3038 def Create(*args, **kwargs):
3039 """
bfddbb17
RD
3040 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3041 Point pos=DefaultPosition, Size size=DefaultSize,
3042 long style=DEFAULT_FRAME_STYLE,
d55e5bfc
RD
3043 String name=FrameNameStr) -> bool
3044 """
3045 return _windows_.MDIChildFrame_Create(*args, **kwargs)
3046
3047 def Activate(*args, **kwargs):
3048 """Activate(self)"""
3049 return _windows_.MDIChildFrame_Activate(*args, **kwargs)
3050
2131d850 3051_windows_.MDIChildFrame_swigregister(MDIChildFrame)
d55e5bfc
RD
3052
3053def PreMDIChildFrame(*args, **kwargs):
3054 """PreMDIChildFrame() -> MDIChildFrame"""
3055 val = _windows_.new_PreMDIChildFrame(*args, **kwargs)
d55e5bfc
RD
3056 return val
3057
3058class MDIClientWindow(_core.Window):
36ed4f51 3059 """Proxy of C++ MDIClientWindow class"""
1bd55598
RD
3060 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3061 __repr__ = _swig_repr
3062 def __init__(self, *args, **kwargs):
d55e5bfc 3063 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
1bd55598 3064 _windows_.MDIClientWindow_swiginit(self,_windows_.new_MDIClientWindow(*args, **kwargs))
d55e5bfc
RD
3065 self._setOORInfo(self)
3066
3067 def Create(*args, **kwargs):
3068 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3069 return _windows_.MDIClientWindow_Create(*args, **kwargs)
3070
2131d850 3071_windows_.MDIClientWindow_swigregister(MDIClientWindow)
d55e5bfc
RD
3072
3073def PreMDIClientWindow(*args, **kwargs):
3074 """PreMDIClientWindow() -> MDIClientWindow"""
3075 val = _windows_.new_PreMDIClientWindow(*args, **kwargs)
d55e5bfc
RD
3076 return val
3077
3078#---------------------------------------------------------------------------
3079
3080class PyWindow(_core.Window):
36ed4f51 3081 """Proxy of C++ PyWindow class"""
1bd55598
RD
3082 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3083 __repr__ = _swig_repr
3084 def __init__(self, *args, **kwargs):
d55e5bfc 3085 """
bfddbb17
RD
3086 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3087 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
d55e5bfc 3088 """
1bd55598 3089 _windows_.PyWindow_swiginit(self,_windows_.new_PyWindow(*args, **kwargs))
d55e5bfc
RD
3090 self._setOORInfo(self); self._setCallbackInfo(self, PyWindow)
3091
3092 def _setCallbackInfo(*args, **kwargs):
3093 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3094 return _windows_.PyWindow__setCallbackInfo(*args, **kwargs)
3095
a5ee0656
RD
3096 def SetBestSize(*args, **kwargs):
3097 """SetBestSize(self, Size size)"""
3098 return _windows_.PyWindow_SetBestSize(*args, **kwargs)
3099
976dbff5
RD
3100 def DoEraseBackground(*args, **kwargs):
3101 """DoEraseBackground(self, DC dc) -> bool"""
3102 return _windows_.PyWindow_DoEraseBackground(*args, **kwargs)
3103
7f7aa166
RD
3104 def DoMoveWindow(*args, **kwargs):
3105 """DoMoveWindow(self, int x, int y, int width, int height)"""
3106 return _windows_.PyWindow_DoMoveWindow(*args, **kwargs)
d55e5bfc 3107
7f7aa166
RD
3108 def DoSetSize(*args, **kwargs):
3109 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3110 return _windows_.PyWindow_DoSetSize(*args, **kwargs)
d55e5bfc 3111
7f7aa166
RD
3112 def DoSetClientSize(*args, **kwargs):
3113 """DoSetClientSize(self, int width, int height)"""
3114 return _windows_.PyWindow_DoSetClientSize(*args, **kwargs)
d55e5bfc 3115
7f7aa166
RD
3116 def DoSetVirtualSize(*args, **kwargs):
3117 """DoSetVirtualSize(self, int x, int y)"""
3118 return _windows_.PyWindow_DoSetVirtualSize(*args, **kwargs)
d55e5bfc 3119
7f7aa166
RD
3120 def DoGetSize(*args, **kwargs):
3121 """DoGetSize() -> (width, height)"""
3122 return _windows_.PyWindow_DoGetSize(*args, **kwargs)
d55e5bfc 3123
7f7aa166
RD
3124 def DoGetClientSize(*args, **kwargs):
3125 """DoGetClientSize() -> (width, height)"""
3126 return _windows_.PyWindow_DoGetClientSize(*args, **kwargs)
d55e5bfc 3127
7f7aa166
RD
3128 def DoGetPosition(*args, **kwargs):
3129 """DoGetPosition() -> (x,y)"""
3130 return _windows_.PyWindow_DoGetPosition(*args, **kwargs)
d55e5bfc 3131
7f7aa166
RD
3132 def DoGetVirtualSize(*args, **kwargs):
3133 """DoGetVirtualSize(self) -> Size"""
3134 return _windows_.PyWindow_DoGetVirtualSize(*args, **kwargs)
d55e5bfc 3135
7f7aa166
RD
3136 def DoGetBestSize(*args, **kwargs):
3137 """DoGetBestSize(self) -> Size"""
3138 return _windows_.PyWindow_DoGetBestSize(*args, **kwargs)
d55e5bfc 3139
7f7aa166
RD
3140 def GetDefaultAttributes(*args, **kwargs):
3141 """GetDefaultAttributes(self) -> VisualAttributes"""
3142 return _windows_.PyWindow_GetDefaultAttributes(*args, **kwargs)
3143
3144 def OnInternalIdle(*args, **kwargs):
3145 """OnInternalIdle(self)"""
3146 return _windows_.PyWindow_OnInternalIdle(*args, **kwargs)
3147
3148 def base_DoMoveWindow(*args, **kw):
3149 return PyWindow.DoMoveWindow(*args, **kw)
3150 base_DoMoveWindow = wx._deprecated(base_DoMoveWindow,
3151 "Please use PyWindow.DoMoveWindow instead.")
3152
3153 def base_DoSetSize(*args, **kw):
3154 return PyWindow.DoSetSize(*args, **kw)
3155 base_DoSetSize = wx._deprecated(base_DoSetSize,
3156 "Please use PyWindow.DoSetSize instead.")
d55e5bfc 3157
7f7aa166
RD
3158 def base_DoSetClientSize(*args, **kw):
3159 return PyWindow.DoSetClientSize(*args, **kw)
3160 base_DoSetClientSize = wx._deprecated(base_DoSetClientSize,
3161 "Please use PyWindow.DoSetClientSize instead.")
d55e5bfc 3162
7f7aa166
RD
3163 def base_DoSetVirtualSize(*args, **kw):
3164 return PyWindow.DoSetVirtualSize(*args, **kw)
3165 base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize,
3166 "Please use PyWindow.DoSetVirtualSize instead.")
d55e5bfc 3167
7f7aa166
RD
3168 def base_DoGetSize(*args, **kw):
3169 return PyWindow.DoGetSize(*args, **kw)
3170 base_DoGetSize = wx._deprecated(base_DoGetSize,
3171 "Please use PyWindow.DoGetSize instead.")
d55e5bfc 3172
7f7aa166
RD
3173 def base_DoGetClientSize(*args, **kw):
3174 return PyWindow.DoGetClientSize(*args, **kw)
3175 base_DoGetClientSize = wx._deprecated(base_DoGetClientSize,
3176 "Please use PyWindow.DoGetClientSize instead.")
d55e5bfc 3177
7f7aa166
RD
3178 def base_DoGetPosition(*args, **kw):
3179 return PyWindow.DoGetPosition(*args, **kw)
3180 base_DoGetPosition = wx._deprecated(base_DoGetPosition,
3181 "Please use PyWindow.DoGetPosition instead.")
d55e5bfc 3182
7f7aa166
RD
3183 def base_DoGetVirtualSize(*args, **kw):
3184 return PyWindow.DoGetVirtualSize(*args, **kw)
3185 base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize,
3186 "Please use PyWindow.DoGetVirtualSize instead.")
d55e5bfc 3187
7f7aa166
RD
3188 def base_DoGetBestSize(*args, **kw):
3189 return PyWindow.DoGetBestSize(*args, **kw)
3190 base_DoGetBestSize = wx._deprecated(base_DoGetBestSize,
3191 "Please use PyWindow.DoGetBestSize instead.")
d55e5bfc 3192
7f7aa166
RD
3193 def base_InitDialog(*args, **kw):
3194 return PyWindow.InitDialog(*args, **kw)
3195 base_InitDialog = wx._deprecated(base_InitDialog,
3196 "Please use PyWindow.InitDialog instead.")
d55e5bfc 3197
7f7aa166
RD
3198 def base_TransferDataToWindow(*args, **kw):
3199 return PyWindow.TransferDataToWindow(*args, **kw)
3200 base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow,
3201 "Please use PyWindow.TransferDataToWindow instead.")
d55e5bfc 3202
7f7aa166
RD
3203 def base_TransferDataFromWindow(*args, **kw):
3204 return PyWindow.TransferDataFromWindow(*args, **kw)
3205 base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow,
3206 "Please use PyWindow.TransferDataFromWindow instead.")
a5ee0656 3207
7f7aa166
RD
3208 def base_Validate(*args, **kw):
3209 return PyWindow.Validate(*args, **kw)
3210 base_Validate = wx._deprecated(base_Validate,
3211 "Please use PyWindow.Validate instead.")
3212
3213 def base_AcceptsFocus(*args, **kw):
3214 return PyWindow.AcceptsFocus(*args, **kw)
3215 base_AcceptsFocus = wx._deprecated(base_AcceptsFocus,
3216 "Please use PyWindow.AcceptsFocus instead.")
3217
3218 def base_AcceptsFocusFromKeyboard(*args, **kw):
3219 return PyWindow.AcceptsFocusFromKeyboard(*args, **kw)
3220 base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard,
3221 "Please use PyWindow.AcceptsFocusFromKeyboard instead.")
3222
3223 def base_GetMaxSize(*args, **kw):
3224 return PyWindow.GetMaxSize(*args, **kw)
3225 base_GetMaxSize = wx._deprecated(base_GetMaxSize,
3226 "Please use PyWindow.GetMaxSize instead.")
3227
3228 def base_AddChild(*args, **kw):
3229 return PyWindow.AddChild(*args, **kw)
3230 base_AddChild = wx._deprecated(base_AddChild,
3231 "Please use PyWindow.AddChild instead.")
3232
3233 def base_RemoveChild(*args, **kw):
3234 return PyWindow.RemoveChild(*args, **kw)
3235 base_RemoveChild = wx._deprecated(base_RemoveChild,
3236 "Please use PyWindow.RemoveChild instead.")
3237
3238 def base_ShouldInheritColours(*args, **kw):
3239 return PyWindow.ShouldInheritColours(*args, **kw)
3240 base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours,
3241 "Please use PyWindow.ShouldInheritColours instead.")
3242
3243 def base_GetDefaultAttributes(*args, **kw):
3244 return PyWindow.GetDefaultAttributes(*args, **kw)
3245 base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes,
3246 "Please use PyWindow.GetDefaultAttributes instead.")
3247
3248 def base_OnInternalIdle(*args, **kw):
3249 return PyWindow.OnInternalIdle(*args, **kw)
3250 base_OnInternalIdle = wx._deprecated(base_OnInternalIdle,
3251 "Please use PyWindow.OnInternalIdle instead.")
8d38bd1d 3252
2131d850 3253_windows_.PyWindow_swigregister(PyWindow)
d55e5bfc
RD
3254
3255def PrePyWindow(*args, **kwargs):
3256 """PrePyWindow() -> PyWindow"""
3257 val = _windows_.new_PrePyWindow(*args, **kwargs)
d55e5bfc
RD
3258 return val
3259
3260class PyPanel(Panel):
36ed4f51 3261 """Proxy of C++ PyPanel class"""
1bd55598
RD
3262 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3263 __repr__ = _swig_repr
3264 def __init__(self, *args, **kwargs):
d55e5bfc 3265 """
bfddbb17
RD
3266 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3267 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
d55e5bfc 3268 """
1bd55598 3269 _windows_.PyPanel_swiginit(self,_windows_.new_PyPanel(*args, **kwargs))
d55e5bfc
RD
3270 self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)
3271
3272 def _setCallbackInfo(*args, **kwargs):
3273 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3274 return _windows_.PyPanel__setCallbackInfo(*args, **kwargs)
3275
a5ee0656
RD
3276 def SetBestSize(*args, **kwargs):
3277 """SetBestSize(self, Size size)"""
3278 return _windows_.PyPanel_SetBestSize(*args, **kwargs)
3279
976dbff5
RD
3280 def DoEraseBackground(*args, **kwargs):
3281 """DoEraseBackground(self, DC dc) -> bool"""
3282 return _windows_.PyPanel_DoEraseBackground(*args, **kwargs)
3283
7f7aa166
RD
3284 def DoMoveWindow(*args, **kwargs):
3285 """DoMoveWindow(self, int x, int y, int width, int height)"""
3286 return _windows_.PyPanel_DoMoveWindow(*args, **kwargs)
3287
3288 def DoSetSize(*args, **kwargs):
3289 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3290 return _windows_.PyPanel_DoSetSize(*args, **kwargs)
3291
3292 def DoSetClientSize(*args, **kwargs):
3293 """DoSetClientSize(self, int width, int height)"""
3294 return _windows_.PyPanel_DoSetClientSize(*args, **kwargs)
3295
3296 def DoSetVirtualSize(*args, **kwargs):
3297 """DoSetVirtualSize(self, int x, int y)"""
3298 return _windows_.PyPanel_DoSetVirtualSize(*args, **kwargs)
3299
3300 def DoGetSize(*args, **kwargs):
3301 """DoGetSize() -> (width, height)"""
3302 return _windows_.PyPanel_DoGetSize(*args, **kwargs)
3303
3304 def DoGetClientSize(*args, **kwargs):
3305 """DoGetClientSize() -> (width, height)"""
3306 return _windows_.PyPanel_DoGetClientSize(*args, **kwargs)
3307
3308 def DoGetPosition(*args, **kwargs):
3309 """DoGetPosition() -> (x,y)"""
3310 return _windows_.PyPanel_DoGetPosition(*args, **kwargs)
3311
3312 def DoGetVirtualSize(*args, **kwargs):
3313 """DoGetVirtualSize(self) -> Size"""
3314 return _windows_.PyPanel_DoGetVirtualSize(*args, **kwargs)
3315
3316 def DoGetBestSize(*args, **kwargs):
3317 """DoGetBestSize(self) -> Size"""
3318 return _windows_.PyPanel_DoGetBestSize(*args, **kwargs)
3319
7f7aa166
RD
3320 def GetDefaultAttributes(*args, **kwargs):
3321 """GetDefaultAttributes(self) -> VisualAttributes"""
3322 return _windows_.PyPanel_GetDefaultAttributes(*args, **kwargs)
d55e5bfc 3323
7f7aa166
RD
3324 def OnInternalIdle(*args, **kwargs):
3325 """OnInternalIdle(self)"""
3326 return _windows_.PyPanel_OnInternalIdle(*args, **kwargs)
d55e5bfc 3327
7f7aa166
RD
3328 def base_DoMoveWindow(*args, **kw):
3329 return PyPanel.DoMoveWindow(*args, **kw)
3330 base_DoMoveWindow = wx._deprecated(base_DoMoveWindow,
3331 "Please use PyPanel.DoMoveWindow instead.")
d55e5bfc 3332
7f7aa166
RD
3333 def base_DoSetSize(*args, **kw):
3334 return PyPanel.DoSetSize(*args, **kw)
3335 base_DoSetSize = wx._deprecated(base_DoSetSize,
3336 "Please use PyPanel.DoSetSize instead.")
d55e5bfc 3337
7f7aa166
RD
3338 def base_DoSetClientSize(*args, **kw):
3339 return PyPanel.DoSetClientSize(*args, **kw)
3340 base_DoSetClientSize = wx._deprecated(base_DoSetClientSize,
3341 "Please use PyPanel.DoSetClientSize instead.")
d55e5bfc 3342
7f7aa166
RD
3343 def base_DoSetVirtualSize(*args, **kw):
3344 return PyPanel.DoSetVirtualSize(*args, **kw)
3345 base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize,
3346 "Please use PyPanel.DoSetVirtualSize instead.")
d55e5bfc 3347
7f7aa166
RD
3348 def base_DoGetSize(*args, **kw):
3349 return PyPanel.DoGetSize(*args, **kw)
3350 base_DoGetSize = wx._deprecated(base_DoGetSize,
3351 "Please use PyPanel.DoGetSize instead.")
d55e5bfc 3352
7f7aa166
RD
3353 def base_DoGetClientSize(*args, **kw):
3354 return PyPanel.DoGetClientSize(*args, **kw)
3355 base_DoGetClientSize = wx._deprecated(base_DoGetClientSize,
3356 "Please use PyPanel.DoGetClientSize instead.")
d55e5bfc 3357
7f7aa166
RD
3358 def base_DoGetPosition(*args, **kw):
3359 return PyPanel.DoGetPosition(*args, **kw)
3360 base_DoGetPosition = wx._deprecated(base_DoGetPosition,
3361 "Please use PyPanel.DoGetPosition instead.")
d55e5bfc 3362
7f7aa166
RD
3363 def base_DoGetVirtualSize(*args, **kw):
3364 return PyPanel.DoGetVirtualSize(*args, **kw)
3365 base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize,
3366 "Please use PyPanel.DoGetVirtualSize instead.")
d55e5bfc 3367
7f7aa166
RD
3368 def base_DoGetBestSize(*args, **kw):
3369 return PyPanel.DoGetBestSize(*args, **kw)
3370 base_DoGetBestSize = wx._deprecated(base_DoGetBestSize,
3371 "Please use PyPanel.DoGetBestSize instead.")
d55e5bfc 3372
7f7aa166
RD
3373 def base_InitDialog(*args, **kw):
3374 return PyPanel.InitDialog(*args, **kw)
3375 base_InitDialog = wx._deprecated(base_InitDialog,
3376 "Please use PyPanel.InitDialog instead.")
d55e5bfc 3377
7f7aa166
RD
3378 def base_TransferDataToWindow(*args, **kw):
3379 return PyPanel.TransferDataToWindow(*args, **kw)
3380 base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow,
3381 "Please use PyPanel.TransferDataToWindow instead.")
d55e5bfc 3382
7f7aa166
RD
3383 def base_TransferDataFromWindow(*args, **kw):
3384 return PyPanel.TransferDataFromWindow(*args, **kw)
3385 base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow,
3386 "Please use PyPanel.TransferDataFromWindow instead.")
d55e5bfc 3387
7f7aa166
RD
3388 def base_Validate(*args, **kw):
3389 return PyPanel.Validate(*args, **kw)
3390 base_Validate = wx._deprecated(base_Validate,
3391 "Please use PyPanel.Validate instead.")
a5ee0656 3392
7f7aa166
RD
3393 def base_AcceptsFocus(*args, **kw):
3394 return PyPanel.AcceptsFocus(*args, **kw)
3395 base_AcceptsFocus = wx._deprecated(base_AcceptsFocus,
3396 "Please use PyPanel.AcceptsFocus instead.")
3397
3398 def base_AcceptsFocusFromKeyboard(*args, **kw):
3399 return PyPanel.AcceptsFocusFromKeyboard(*args, **kw)
3400 base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard,
3401 "Please use PyPanel.AcceptsFocusFromKeyboard instead.")
3402
3403 def base_GetMaxSize(*args, **kw):
3404 return PyPanel.GetMaxSize(*args, **kw)
3405 base_GetMaxSize = wx._deprecated(base_GetMaxSize,
3406 "Please use PyPanel.GetMaxSize instead.")
3407
3408 def base_AddChild(*args, **kw):
3409 return PyPanel.AddChild(*args, **kw)
3410 base_AddChild = wx._deprecated(base_AddChild,
3411 "Please use PyPanel.AddChild instead.")
3412
3413 def base_RemoveChild(*args, **kw):
3414 return PyPanel.RemoveChild(*args, **kw)
3415 base_RemoveChild = wx._deprecated(base_RemoveChild,
3416 "Please use PyPanel.RemoveChild instead.")
3417
3418 def base_ShouldInheritColours(*args, **kw):
3419 return PyPanel.ShouldInheritColours(*args, **kw)
3420 base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours,
3421 "Please use PyPanel.ShouldInheritColours instead.")
3422
3423 def base_GetDefaultAttributes(*args, **kw):
3424 return PyPanel.GetDefaultAttributes(*args, **kw)
3425 base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes,
3426 "Please use PyPanel.GetDefaultAttributes instead.")
3427
3428 def base_OnInternalIdle(*args, **kw):
3429 return PyPanel.OnInternalIdle(*args, **kw)
3430 base_OnInternalIdle = wx._deprecated(base_OnInternalIdle,
3431 "Please use PyPanel.OnInternalIdle instead.")
8d38bd1d 3432
2131d850 3433_windows_.PyPanel_swigregister(PyPanel)
d55e5bfc
RD
3434
3435def PrePyPanel(*args, **kwargs):
3436 """PrePyPanel() -> PyPanel"""
3437 val = _windows_.new_PrePyPanel(*args, **kwargs)
d55e5bfc
RD
3438 return val
3439
3440class PyScrolledWindow(ScrolledWindow):
36ed4f51 3441 """Proxy of C++ PyScrolledWindow class"""
1bd55598
RD
3442 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3443 __repr__ = _swig_repr
3444 def __init__(self, *args, **kwargs):
d55e5bfc 3445 """
bfddbb17
RD
3446 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3447 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
d55e5bfc 3448 """
1bd55598 3449 _windows_.PyScrolledWindow_swiginit(self,_windows_.new_PyScrolledWindow(*args, **kwargs))
a01da36a 3450 self._setOORInfo(self); self._setCallbackInfo(self, PyScrolledWindow)
d55e5bfc
RD
3451
3452 def _setCallbackInfo(*args, **kwargs):
3453 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3454 return _windows_.PyScrolledWindow__setCallbackInfo(*args, **kwargs)
3455
a5ee0656
RD
3456 def SetBestSize(*args, **kwargs):
3457 """SetBestSize(self, Size size)"""
3458 return _windows_.PyScrolledWindow_SetBestSize(*args, **kwargs)
3459
976dbff5
RD
3460 def DoEraseBackground(*args, **kwargs):
3461 """DoEraseBackground(self, DC dc) -> bool"""
3462 return _windows_.PyScrolledWindow_DoEraseBackground(*args, **kwargs)
3463
7f7aa166
RD
3464 def DoMoveWindow(*args, **kwargs):
3465 """DoMoveWindow(self, int x, int y, int width, int height)"""
3466 return _windows_.PyScrolledWindow_DoMoveWindow(*args, **kwargs)
3467
3468 def DoSetSize(*args, **kwargs):
3469 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3470 return _windows_.PyScrolledWindow_DoSetSize(*args, **kwargs)
3471
3472 def DoSetClientSize(*args, **kwargs):
3473 """DoSetClientSize(self, int width, int height)"""
3474 return _windows_.PyScrolledWindow_DoSetClientSize(*args, **kwargs)
3475
3476 def DoSetVirtualSize(*args, **kwargs):
3477 """DoSetVirtualSize(self, int x, int y)"""
3478 return _windows_.PyScrolledWindow_DoSetVirtualSize(*args, **kwargs)
d55e5bfc 3479
7f7aa166
RD
3480 def DoGetSize(*args, **kwargs):
3481 """DoGetSize() -> (width, height)"""
3482 return _windows_.PyScrolledWindow_DoGetSize(*args, **kwargs)
d55e5bfc 3483
7f7aa166
RD
3484 def DoGetClientSize(*args, **kwargs):
3485 """DoGetClientSize() -> (width, height)"""
3486 return _windows_.PyScrolledWindow_DoGetClientSize(*args, **kwargs)
d55e5bfc 3487
7f7aa166
RD
3488 def DoGetPosition(*args, **kwargs):
3489 """DoGetPosition() -> (x,y)"""
3490 return _windows_.PyScrolledWindow_DoGetPosition(*args, **kwargs)
d55e5bfc 3491
7f7aa166
RD
3492 def DoGetVirtualSize(*args, **kwargs):
3493 """DoGetVirtualSize(self) -> Size"""
3494 return _windows_.PyScrolledWindow_DoGetVirtualSize(*args, **kwargs)
d55e5bfc 3495
7f7aa166
RD
3496 def DoGetBestSize(*args, **kwargs):
3497 """DoGetBestSize(self) -> Size"""
3498 return _windows_.PyScrolledWindow_DoGetBestSize(*args, **kwargs)
d55e5bfc 3499
7f7aa166
RD
3500 def GetDefaultAttributes(*args, **kwargs):
3501 """GetDefaultAttributes(self) -> VisualAttributes"""
3502 return _windows_.PyScrolledWindow_GetDefaultAttributes(*args, **kwargs)
d55e5bfc 3503
7f7aa166
RD
3504 def OnInternalIdle(*args, **kwargs):
3505 """OnInternalIdle(self)"""
3506 return _windows_.PyScrolledWindow_OnInternalIdle(*args, **kwargs)
d55e5bfc 3507
7f7aa166
RD
3508 def base_DoMoveWindow(*args, **kw):
3509 return PyScrolledWindow.DoMoveWindow(*args, **kw)
3510 base_DoMoveWindow = wx._deprecated(base_DoMoveWindow,
3511 "Please use PyScrolledWindow.DoMoveWindow instead.")
d55e5bfc 3512
7f7aa166
RD
3513 def base_DoSetSize(*args, **kw):
3514 return PyScrolledWindow.DoSetSize(*args, **kw)
3515 base_DoSetSize = wx._deprecated(base_DoSetSize,
3516 "Please use PyScrolledWindow.DoSetSize instead.")
d55e5bfc 3517
7f7aa166
RD
3518 def base_DoSetClientSize(*args, **kw):
3519 return PyScrolledWindow.DoSetClientSize(*args, **kw)
3520 base_DoSetClientSize = wx._deprecated(base_DoSetClientSize,
3521 "Please use PyScrolledWindow.DoSetClientSize instead.")
d55e5bfc 3522
7f7aa166
RD
3523 def base_DoSetVirtualSize(*args, **kw):
3524 return PyScrolledWindow.DoSetVirtualSize(*args, **kw)
3525 base_DoSetVirtualSize = wx._deprecated(base_DoSetVirtualSize,
3526 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
d55e5bfc 3527
7f7aa166
RD
3528 def base_DoGetSize(*args, **kw):
3529 return PyScrolledWindow.DoGetSize(*args, **kw)
3530 base_DoGetSize = wx._deprecated(base_DoGetSize,
3531 "Please use PyScrolledWindow.DoGetSize instead.")
d55e5bfc 3532
7f7aa166
RD
3533 def base_DoGetClientSize(*args, **kw):
3534 return PyScrolledWindow.DoGetClientSize(*args, **kw)
3535 base_DoGetClientSize = wx._deprecated(base_DoGetClientSize,
3536 "Please use PyScrolledWindow.DoGetClientSize instead.")
d55e5bfc 3537
7f7aa166
RD
3538 def base_DoGetPosition(*args, **kw):
3539 return PyScrolledWindow.DoGetPosition(*args, **kw)
3540 base_DoGetPosition = wx._deprecated(base_DoGetPosition,
3541 "Please use PyScrolledWindow.DoGetPosition instead.")
d55e5bfc 3542
7f7aa166
RD
3543 def base_DoGetVirtualSize(*args, **kw):
3544 return PyScrolledWindow.DoGetVirtualSize(*args, **kw)
3545 base_DoGetVirtualSize = wx._deprecated(base_DoGetVirtualSize,
3546 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
d55e5bfc 3547
7f7aa166
RD
3548 def base_DoGetBestSize(*args, **kw):
3549 return PyScrolledWindow.DoGetBestSize(*args, **kw)
3550 base_DoGetBestSize = wx._deprecated(base_DoGetBestSize,
3551 "Please use PyScrolledWindow.DoGetBestSize instead.")
a5ee0656 3552
7f7aa166
RD
3553 def base_InitDialog(*args, **kw):
3554 return PyScrolledWindow.InitDialog(*args, **kw)
3555 base_InitDialog = wx._deprecated(base_InitDialog,
3556 "Please use PyScrolledWindow.InitDialog instead.")
3557
3558 def base_TransferDataToWindow(*args, **kw):
3559 return PyScrolledWindow.TransferDataToWindow(*args, **kw)
3560 base_TransferDataToWindow = wx._deprecated(base_TransferDataToWindow,
3561 "Please use PyScrolledWindow.TransferDataToWindow instead.")
3562
3563 def base_TransferDataFromWindow(*args, **kw):
3564 return PyScrolledWindow.TransferDataFromWindow(*args, **kw)
3565 base_TransferDataFromWindow = wx._deprecated(base_TransferDataFromWindow,
3566 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
3567
3568 def base_Validate(*args, **kw):
3569 return PyScrolledWindow.Validate(*args, **kw)
3570 base_Validate = wx._deprecated(base_Validate,
3571 "Please use PyScrolledWindow.Validate instead.")
3572
3573 def base_AcceptsFocus(*args, **kw):
3574 return PyScrolledWindow.AcceptsFocus(*args, **kw)
3575 base_AcceptsFocus = wx._deprecated(base_AcceptsFocus,
3576 "Please use PyScrolledWindow.AcceptsFocus instead.")
3577
3578 def base_AcceptsFocusFromKeyboard(*args, **kw):
3579 return PyScrolledWindow.AcceptsFocusFromKeyboard(*args, **kw)
3580 base_AcceptsFocusFromKeyboard = wx._deprecated(base_AcceptsFocusFromKeyboard,
3581 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
3582
3583 def base_GetMaxSize(*args, **kw):
3584 return PyScrolledWindow.GetMaxSize(*args, **kw)
3585 base_GetMaxSize = wx._deprecated(base_GetMaxSize,
3586 "Please use PyScrolledWindow.GetMaxSize instead.")
3587
3588 def base_AddChild(*args, **kw):
3589 return PyScrolledWindow.AddChild(*args, **kw)
3590 base_AddChild = wx._deprecated(base_AddChild,
3591 "Please use PyScrolledWindow.AddChild instead.")
3592
3593 def base_RemoveChild(*args, **kw):
3594 return PyScrolledWindow.RemoveChild(*args, **kw)
3595 base_RemoveChild = wx._deprecated(base_RemoveChild,
3596 "Please use PyScrolledWindow.RemoveChild instead.")
3597
3598 def base_ShouldInheritColours(*args, **kw):
3599 return PyScrolledWindow.ShouldInheritColours(*args, **kw)
3600 base_ShouldInheritColours = wx._deprecated(base_ShouldInheritColours,
3601 "Please use PyScrolledWindow.ShouldInheritColours instead.")
3602
3603 def base_GetDefaultAttributes(*args, **kw):
3604 return PyScrolledWindow.GetDefaultAttributes(*args, **kw)
3605 base_GetDefaultAttributes = wx._deprecated(base_GetDefaultAttributes,
3606 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
3607
3608 def base_OnInternalIdle(*args, **kw):
3609 return PyScrolledWindow.OnInternalIdle(*args, **kw)
3610 base_OnInternalIdle = wx._deprecated(base_OnInternalIdle,
3611 "Please use PyScrolledWindow.OnInternalIdle instead.")
8d38bd1d 3612
2131d850 3613_windows_.PyScrolledWindow_swigregister(PyScrolledWindow)
d55e5bfc
RD
3614
3615def PrePyScrolledWindow(*args, **kwargs):
3616 """PrePyScrolledWindow() -> PyScrolledWindow"""
3617 val = _windows_.new_PrePyScrolledWindow(*args, **kwargs)
d55e5bfc
RD
3618 return val
3619
3620#---------------------------------------------------------------------------
3621
3622PRINT_MODE_NONE = _windows_.PRINT_MODE_NONE
3623PRINT_MODE_PREVIEW = _windows_.PRINT_MODE_PREVIEW
3624PRINT_MODE_FILE = _windows_.PRINT_MODE_FILE
3625PRINT_MODE_PRINTER = _windows_.PRINT_MODE_PRINTER
3626PRINT_MODE_STREAM = _windows_.PRINT_MODE_STREAM
b411df4a
RD
3627PRINTBIN_DEFAULT = _windows_.PRINTBIN_DEFAULT
3628PRINTBIN_ONLYONE = _windows_.PRINTBIN_ONLYONE
3629PRINTBIN_LOWER = _windows_.PRINTBIN_LOWER
3630PRINTBIN_MIDDLE = _windows_.PRINTBIN_MIDDLE
3631PRINTBIN_MANUAL = _windows_.PRINTBIN_MANUAL
3632PRINTBIN_ENVELOPE = _windows_.PRINTBIN_ENVELOPE
3633PRINTBIN_ENVMANUAL = _windows_.PRINTBIN_ENVMANUAL
3634PRINTBIN_AUTO = _windows_.PRINTBIN_AUTO
3635PRINTBIN_TRACTOR = _windows_.PRINTBIN_TRACTOR
3636PRINTBIN_SMALLFMT = _windows_.PRINTBIN_SMALLFMT
3637PRINTBIN_LARGEFMT = _windows_.PRINTBIN_LARGEFMT
3638PRINTBIN_LARGECAPACITY = _windows_.PRINTBIN_LARGECAPACITY
3639PRINTBIN_CASSETTE = _windows_.PRINTBIN_CASSETTE
3640PRINTBIN_FORMSOURCE = _windows_.PRINTBIN_FORMSOURCE
3641PRINTBIN_USER = _windows_.PRINTBIN_USER
d55e5bfc 3642class PrintData(_core.Object):
36ed4f51 3643 """Proxy of C++ PrintData class"""
1bd55598
RD
3644 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3645 __repr__ = _swig_repr
3646 def __init__(self, *args):
09c21d3b
RD
3647 """
3648 __init__(self) -> PrintData
3649 __init__(self, PrintData data) -> PrintData
3650 """
1bd55598
RD
3651 _windows_.PrintData_swiginit(self,_windows_.new_PrintData(*args))
3652 __swig_destroy__ = _windows_.delete_PrintData
3653 __del__ = lambda self : None;
d55e5bfc
RD
3654 def GetNoCopies(*args, **kwargs):
3655 """GetNoCopies(self) -> int"""
3656 return _windows_.PrintData_GetNoCopies(*args, **kwargs)
3657
3658 def GetCollate(*args, **kwargs):
3659 """GetCollate(self) -> bool"""
3660 return _windows_.PrintData_GetCollate(*args, **kwargs)
3661
3662 def GetOrientation(*args, **kwargs):
3663 """GetOrientation(self) -> int"""
3664 return _windows_.PrintData_GetOrientation(*args, **kwargs)
3665
3666 def Ok(*args, **kwargs):
3667 """Ok(self) -> bool"""
3668 return _windows_.PrintData_Ok(*args, **kwargs)
3669
3670 def GetPrinterName(*args, **kwargs):
3671 """GetPrinterName(self) -> String"""
3672 return _windows_.PrintData_GetPrinterName(*args, **kwargs)
3673
3674 def GetColour(*args, **kwargs):
3675 """GetColour(self) -> bool"""
3676 return _windows_.PrintData_GetColour(*args, **kwargs)
3677
3678 def GetDuplex(*args, **kwargs):
3679 """GetDuplex(self) -> int"""
3680 return _windows_.PrintData_GetDuplex(*args, **kwargs)
3681
3682 def GetPaperId(*args, **kwargs):
3683 """GetPaperId(self) -> int"""
3684 return _windows_.PrintData_GetPaperId(*args, **kwargs)
3685
3686 def GetPaperSize(*args, **kwargs):
3687 """GetPaperSize(self) -> Size"""
3688 return _windows_.PrintData_GetPaperSize(*args, **kwargs)
3689
3690 def GetQuality(*args, **kwargs):
3691 """GetQuality(self) -> int"""
3692 return _windows_.PrintData_GetQuality(*args, **kwargs)
3693
b411df4a
RD
3694 def GetBin(*args, **kwargs):
3695 """GetBin(self) -> int"""
3696 return _windows_.PrintData_GetBin(*args, **kwargs)
3697
070c48b4
RD
3698 def GetPrintMode(*args, **kwargs):
3699 """GetPrintMode(self) -> int"""
3700 return _windows_.PrintData_GetPrintMode(*args, **kwargs)
3701
d55e5bfc
RD
3702 def SetNoCopies(*args, **kwargs):
3703 """SetNoCopies(self, int v)"""
3704 return _windows_.PrintData_SetNoCopies(*args, **kwargs)
3705
3706 def SetCollate(*args, **kwargs):
3707 """SetCollate(self, bool flag)"""
3708 return _windows_.PrintData_SetCollate(*args, **kwargs)
3709
3710 def SetOrientation(*args, **kwargs):
3711 """SetOrientation(self, int orient)"""
3712 return _windows_.PrintData_SetOrientation(*args, **kwargs)
3713
3714 def SetPrinterName(*args, **kwargs):
3715 """SetPrinterName(self, String name)"""
3716 return _windows_.PrintData_SetPrinterName(*args, **kwargs)
3717
3718 def SetColour(*args, **kwargs):
3719 """SetColour(self, bool colour)"""
3720 return _windows_.PrintData_SetColour(*args, **kwargs)
3721
3722 def SetDuplex(*args, **kwargs):
3723 """SetDuplex(self, int duplex)"""
3724 return _windows_.PrintData_SetDuplex(*args, **kwargs)
3725
3726 def SetPaperId(*args, **kwargs):
3727 """SetPaperId(self, int sizeId)"""
3728 return _windows_.PrintData_SetPaperId(*args, **kwargs)
3729
3730 def SetPaperSize(*args, **kwargs):
3731 """SetPaperSize(self, Size sz)"""
3732 return _windows_.PrintData_SetPaperSize(*args, **kwargs)
3733
3734 def SetQuality(*args, **kwargs):
3735 """SetQuality(self, int quality)"""
3736 return _windows_.PrintData_SetQuality(*args, **kwargs)
3737
b411df4a
RD
3738 def SetBin(*args, **kwargs):
3739 """SetBin(self, int bin)"""
3740 return _windows_.PrintData_SetBin(*args, **kwargs)
3741
070c48b4
RD
3742 def SetPrintMode(*args, **kwargs):
3743 """SetPrintMode(self, int printMode)"""
3744 return _windows_.PrintData_SetPrintMode(*args, **kwargs)
3745
3746 def GetFilename(*args, **kwargs):
3747 """GetFilename(self) -> String"""
3748 return _windows_.PrintData_GetFilename(*args, **kwargs)
3749
3750 def SetFilename(*args, **kwargs):
3751 """SetFilename(self, String filename)"""
3752 return _windows_.PrintData_SetFilename(*args, **kwargs)
3753
3754 def __nonzero__(self): return self.Ok()
7fbf8399
RD
3755 def GetPrivData(*args, **kwargs):
3756 """GetPrivData(self) -> PyObject"""
3757 return _windows_.PrintData_GetPrivData(*args, **kwargs)
3758
3759 def SetPrivData(*args, **kwargs):
3760 """SetPrivData(self, PyObject data)"""
3761 return _windows_.PrintData_SetPrivData(*args, **kwargs)
3762
2131d850 3763_windows_.PrintData_swigregister(PrintData)
d55e5bfc
RD
3764PrintoutTitleStr = cvar.PrintoutTitleStr
3765PreviewCanvasNameStr = cvar.PreviewCanvasNameStr
3766
3767class PageSetupDialogData(_core.Object):
36ed4f51 3768 """Proxy of C++ PageSetupDialogData class"""
1bd55598
RD
3769 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3770 __repr__ = _swig_repr
3771 def __init__(self, *args):
09c21d3b
RD
3772 """
3773 __init__(self) -> PageSetupDialogData
3774 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
fef4c27a 3775 __init__(self, PrintData data) -> PageSetupDialogData
09c21d3b 3776 """
1bd55598
RD
3777 _windows_.PageSetupDialogData_swiginit(self,_windows_.new_PageSetupDialogData(*args))
3778 __swig_destroy__ = _windows_.delete_PageSetupDialogData
3779 __del__ = lambda self : None;
d55e5bfc
RD
3780 def EnableHelp(*args, **kwargs):
3781 """EnableHelp(self, bool flag)"""
3782 return _windows_.PageSetupDialogData_EnableHelp(*args, **kwargs)
3783
3784 def EnableMargins(*args, **kwargs):
3785 """EnableMargins(self, bool flag)"""
3786 return _windows_.PageSetupDialogData_EnableMargins(*args, **kwargs)
3787
3788 def EnableOrientation(*args, **kwargs):
3789 """EnableOrientation(self, bool flag)"""
3790 return _windows_.PageSetupDialogData_EnableOrientation(*args, **kwargs)
3791
3792 def EnablePaper(*args, **kwargs):
3793 """EnablePaper(self, bool flag)"""
3794 return _windows_.PageSetupDialogData_EnablePaper(*args, **kwargs)
3795
3796 def EnablePrinter(*args, **kwargs):
3797 """EnablePrinter(self, bool flag)"""
3798 return _windows_.PageSetupDialogData_EnablePrinter(*args, **kwargs)
3799
3800 def GetDefaultMinMargins(*args, **kwargs):
3801 """GetDefaultMinMargins(self) -> bool"""
3802 return _windows_.PageSetupDialogData_GetDefaultMinMargins(*args, **kwargs)
3803
3804 def GetEnableMargins(*args, **kwargs):
3805 """GetEnableMargins(self) -> bool"""
3806 return _windows_.PageSetupDialogData_GetEnableMargins(*args, **kwargs)
3807
3808 def GetEnableOrientation(*args, **kwargs):
3809 """GetEnableOrientation(self) -> bool"""
3810 return _windows_.PageSetupDialogData_GetEnableOrientation(*args, **kwargs)
3811
3812 def GetEnablePaper(*args, **kwargs):
3813 """GetEnablePaper(self) -> bool"""
3814 return _windows_.PageSetupDialogData_GetEnablePaper(*args, **kwargs)
3815
3816 def GetEnablePrinter(*args, **kwargs):
3817 """GetEnablePrinter(self) -> bool"""
3818 return _windows_.PageSetupDialogData_GetEnablePrinter(*args, **kwargs)
3819
3820 def GetEnableHelp(*args, **kwargs):
3821 """GetEnableHelp(self) -> bool"""
3822 return _windows_.PageSetupDialogData_GetEnableHelp(*args, **kwargs)
3823
3824 def GetDefaultInfo(*args, **kwargs):
3825 """GetDefaultInfo(self) -> bool"""
3826 return _windows_.PageSetupDialogData_GetDefaultInfo(*args, **kwargs)
3827
3828 def GetMarginTopLeft(*args, **kwargs):
3829 """GetMarginTopLeft(self) -> Point"""
3830 return _windows_.PageSetupDialogData_GetMarginTopLeft(*args, **kwargs)
3831
3832 def GetMarginBottomRight(*args, **kwargs):
3833 """GetMarginBottomRight(self) -> Point"""
3834 return _windows_.PageSetupDialogData_GetMarginBottomRight(*args, **kwargs)
3835
3836 def GetMinMarginTopLeft(*args, **kwargs):
3837 """GetMinMarginTopLeft(self) -> Point"""
3838 return _windows_.PageSetupDialogData_GetMinMarginTopLeft(*args, **kwargs)
3839
3840 def GetMinMarginBottomRight(*args, **kwargs):
3841 """GetMinMarginBottomRight(self) -> Point"""
3842 return _windows_.PageSetupDialogData_GetMinMarginBottomRight(*args, **kwargs)
3843
3844 def GetPaperId(*args, **kwargs):
3845 """GetPaperId(self) -> int"""
3846 return _windows_.PageSetupDialogData_GetPaperId(*args, **kwargs)
3847
3848 def GetPaperSize(*args, **kwargs):
3849 """GetPaperSize(self) -> Size"""
3850 return _windows_.PageSetupDialogData_GetPaperSize(*args, **kwargs)
3851
3852 def GetPrintData(*args, **kwargs):
3853 """GetPrintData(self) -> PrintData"""
3854 return _windows_.PageSetupDialogData_GetPrintData(*args, **kwargs)
3855
3856 def Ok(*args, **kwargs):
3857 """Ok(self) -> bool"""
3858 return _windows_.PageSetupDialogData_Ok(*args, **kwargs)
3859
3860 def SetDefaultInfo(*args, **kwargs):
3861 """SetDefaultInfo(self, bool flag)"""
3862 return _windows_.PageSetupDialogData_SetDefaultInfo(*args, **kwargs)
3863
3864 def SetDefaultMinMargins(*args, **kwargs):
3865 """SetDefaultMinMargins(self, bool flag)"""
3866 return _windows_.PageSetupDialogData_SetDefaultMinMargins(*args, **kwargs)
3867
3868 def SetMarginTopLeft(*args, **kwargs):
3869 """SetMarginTopLeft(self, Point pt)"""
3870 return _windows_.PageSetupDialogData_SetMarginTopLeft(*args, **kwargs)
3871
3872 def SetMarginBottomRight(*args, **kwargs):
3873 """SetMarginBottomRight(self, Point pt)"""
3874 return _windows_.PageSetupDialogData_SetMarginBottomRight(*args, **kwargs)
3875
3876 def SetMinMarginTopLeft(*args, **kwargs):
3877 """SetMinMarginTopLeft(self, Point pt)"""
3878 return _windows_.PageSetupDialogData_SetMinMarginTopLeft(*args, **kwargs)
3879
3880 def SetMinMarginBottomRight(*args, **kwargs):
3881 """SetMinMarginBottomRight(self, Point pt)"""
3882 return _windows_.PageSetupDialogData_SetMinMarginBottomRight(*args, **kwargs)
3883
3884 def SetPaperId(*args, **kwargs):
3885 """SetPaperId(self, int id)"""
3886 return _windows_.PageSetupDialogData_SetPaperId(*args, **kwargs)
3887
3888 def SetPaperSize(*args, **kwargs):
3889 """SetPaperSize(self, Size size)"""
3890 return _windows_.PageSetupDialogData_SetPaperSize(*args, **kwargs)
3891
3892 def SetPrintData(*args, **kwargs):
3893 """SetPrintData(self, PrintData printData)"""
3894 return _windows_.PageSetupDialogData_SetPrintData(*args, **kwargs)
3895
fef4c27a
RD
3896 def CalculateIdFromPaperSize(*args, **kwargs):
3897 """CalculateIdFromPaperSize(self)"""
3898 return _windows_.PageSetupDialogData_CalculateIdFromPaperSize(*args, **kwargs)
3899
3900 def CalculatePaperSizeFromId(*args, **kwargs):
3901 """CalculatePaperSizeFromId(self)"""
3902 return _windows_.PageSetupDialogData_CalculatePaperSizeFromId(*args, **kwargs)
3903
d55e5bfc 3904 def __nonzero__(self): return self.Ok()
2131d850 3905_windows_.PageSetupDialogData_swigregister(PageSetupDialogData)
d55e5bfc 3906
6e0de3df 3907class PageSetupDialog(_core.Object):
36ed4f51 3908 """Proxy of C++ PageSetupDialog class"""
1bd55598
RD
3909 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3910 __repr__ = _swig_repr
3911 def __init__(self, *args, **kwargs):
d55e5bfc 3912 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
1bd55598 3913 _windows_.PageSetupDialog_swiginit(self,_windows_.new_PageSetupDialog(*args, **kwargs))
06810ecf
RD
3914 __swig_destroy__ = _windows_.delete_PageSetupDialog
3915 __del__ = lambda self : None;
d55e5bfc
RD
3916 def GetPageSetupData(*args, **kwargs):
3917 """GetPageSetupData(self) -> PageSetupDialogData"""
3918 return _windows_.PageSetupDialog_GetPageSetupData(*args, **kwargs)
3919
6e0de3df
RD
3920 def GetPageSetupDialogData(*args, **kwargs):
3921 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
3922 return _windows_.PageSetupDialog_GetPageSetupDialogData(*args, **kwargs)
3923
d55e5bfc
RD
3924 def ShowModal(*args, **kwargs):
3925 """ShowModal(self) -> int"""
3926 return _windows_.PageSetupDialog_ShowModal(*args, **kwargs)
3927
06810ecf 3928 def Destroy(self): pass
2131d850 3929_windows_.PageSetupDialog_swigregister(PageSetupDialog)
d55e5bfc
RD
3930
3931class PrintDialogData(_core.Object):
36ed4f51 3932 """Proxy of C++ PrintDialogData class"""
1bd55598
RD
3933 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
3934 __repr__ = _swig_repr
3935 def __init__(self, *args):
d55e5bfc
RD
3936 """
3937 __init__(self) -> PrintDialogData
3938 __init__(self, PrintData printData) -> PrintDialogData
fef4c27a 3939 __init__(self, PrintDialogData printData) -> PrintDialogData
d55e5bfc 3940 """
1bd55598
RD
3941 _windows_.PrintDialogData_swiginit(self,_windows_.new_PrintDialogData(*args))
3942 __swig_destroy__ = _windows_.delete_PrintDialogData
3943 __del__ = lambda self : None;
d55e5bfc
RD
3944 def GetFromPage(*args, **kwargs):
3945 """GetFromPage(self) -> int"""
3946 return _windows_.PrintDialogData_GetFromPage(*args, **kwargs)
3947
3948 def GetToPage(*args, **kwargs):
3949 """GetToPage(self) -> int"""
3950 return _windows_.PrintDialogData_GetToPage(*args, **kwargs)
3951
3952 def GetMinPage(*args, **kwargs):
3953 """GetMinPage(self) -> int"""
3954 return _windows_.PrintDialogData_GetMinPage(*args, **kwargs)
3955
3956 def GetMaxPage(*args, **kwargs):
3957 """GetMaxPage(self) -> int"""
3958 return _windows_.PrintDialogData_GetMaxPage(*args, **kwargs)
3959
3960 def GetNoCopies(*args, **kwargs):
3961 """GetNoCopies(self) -> int"""
3962 return _windows_.PrintDialogData_GetNoCopies(*args, **kwargs)
3963
3964 def GetAllPages(*args, **kwargs):
3965 """GetAllPages(self) -> bool"""
3966 return _windows_.PrintDialogData_GetAllPages(*args, **kwargs)
3967
3968 def GetSelection(*args, **kwargs):
3969 """GetSelection(self) -> bool"""
3970 return _windows_.PrintDialogData_GetSelection(*args, **kwargs)
3971
3972 def GetCollate(*args, **kwargs):
3973 """GetCollate(self) -> bool"""
3974 return _windows_.PrintDialogData_GetCollate(*args, **kwargs)
3975
3976 def GetPrintToFile(*args, **kwargs):
3977 """GetPrintToFile(self) -> bool"""
3978 return _windows_.PrintDialogData_GetPrintToFile(*args, **kwargs)
3979
d55e5bfc
RD
3980 def SetFromPage(*args, **kwargs):
3981 """SetFromPage(self, int v)"""
3982 return _windows_.PrintDialogData_SetFromPage(*args, **kwargs)
3983
3984 def SetToPage(*args, **kwargs):
3985 """SetToPage(self, int v)"""
3986 return _windows_.PrintDialogData_SetToPage(*args, **kwargs)
3987
3988 def SetMinPage(*args, **kwargs):
3989 """SetMinPage(self, int v)"""
3990 return _windows_.PrintDialogData_SetMinPage(*args, **kwargs)
3991
3992 def SetMaxPage(*args, **kwargs):
3993 """SetMaxPage(self, int v)"""
3994 return _windows_.PrintDialogData_SetMaxPage(*args, **kwargs)
3995
3996 def SetNoCopies(*args, **kwargs):
3997 """SetNoCopies(self, int v)"""
3998 return _windows_.PrintDialogData_SetNoCopies(*args, **kwargs)
3999
4000 def SetAllPages(*args, **kwargs):
4001 """SetAllPages(self, bool flag)"""
4002 return _windows_.PrintDialogData_SetAllPages(*args, **kwargs)
4003
4004 def SetSelection(*args, **kwargs):
4005 """SetSelection(self, bool flag)"""
4006 return _windows_.PrintDialogData_SetSelection(*args, **kwargs)
4007
4008 def SetCollate(*args, **kwargs):
4009 """SetCollate(self, bool flag)"""
4010 return _windows_.PrintDialogData_SetCollate(*args, **kwargs)
4011
4012 def SetPrintToFile(*args, **kwargs):
4013 """SetPrintToFile(self, bool flag)"""
4014 return _windows_.PrintDialogData_SetPrintToFile(*args, **kwargs)
4015
d55e5bfc
RD
4016 def EnablePrintToFile(*args, **kwargs):
4017 """EnablePrintToFile(self, bool flag)"""
4018 return _windows_.PrintDialogData_EnablePrintToFile(*args, **kwargs)
4019
4020 def EnableSelection(*args, **kwargs):
4021 """EnableSelection(self, bool flag)"""
4022 return _windows_.PrintDialogData_EnableSelection(*args, **kwargs)
4023
4024 def EnablePageNumbers(*args, **kwargs):
4025 """EnablePageNumbers(self, bool flag)"""
4026 return _windows_.PrintDialogData_EnablePageNumbers(*args, **kwargs)
4027
4028 def EnableHelp(*args, **kwargs):
4029 """EnableHelp(self, bool flag)"""
4030 return _windows_.PrintDialogData_EnableHelp(*args, **kwargs)
4031
4032 def GetEnablePrintToFile(*args, **kwargs):
4033 """GetEnablePrintToFile(self) -> bool"""
4034 return _windows_.PrintDialogData_GetEnablePrintToFile(*args, **kwargs)
4035
4036 def GetEnableSelection(*args, **kwargs):
4037 """GetEnableSelection(self) -> bool"""
4038 return _windows_.PrintDialogData_GetEnableSelection(*args, **kwargs)
4039
4040 def GetEnablePageNumbers(*args, **kwargs):
4041 """GetEnablePageNumbers(self) -> bool"""
4042 return _windows_.PrintDialogData_GetEnablePageNumbers(*args, **kwargs)
4043
4044 def GetEnableHelp(*args, **kwargs):
4045 """GetEnableHelp(self) -> bool"""
4046 return _windows_.PrintDialogData_GetEnableHelp(*args, **kwargs)
4047
4048 def Ok(*args, **kwargs):
4049 """Ok(self) -> bool"""
4050 return _windows_.PrintDialogData_Ok(*args, **kwargs)
4051
4052 def GetPrintData(*args, **kwargs):
4053 """GetPrintData(self) -> PrintData"""
4054 return _windows_.PrintDialogData_GetPrintData(*args, **kwargs)
4055
4056 def SetPrintData(*args, **kwargs):
4057 """SetPrintData(self, PrintData printData)"""
4058 return _windows_.PrintDialogData_SetPrintData(*args, **kwargs)
4059
4060 def __nonzero__(self): return self.Ok()
2131d850 4061_windows_.PrintDialogData_swigregister(PrintDialogData)
d55e5bfc 4062
070c48b4 4063class PrintDialog(_core.Object):
36ed4f51 4064 """Proxy of C++ PrintDialog class"""
1bd55598
RD
4065 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4066 __repr__ = _swig_repr
4067 def __init__(self, *args, **kwargs):
d55e5bfc 4068 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
1bd55598 4069 _windows_.PrintDialog_swiginit(self,_windows_.new_PrintDialog(*args, **kwargs))
06810ecf
RD
4070 __swig_destroy__ = _windows_.delete_PrintDialog
4071 __del__ = lambda self : None;
070c48b4
RD
4072 def ShowModal(*args, **kwargs):
4073 """ShowModal(self) -> int"""
4074 return _windows_.PrintDialog_ShowModal(*args, **kwargs)
d55e5bfc
RD
4075
4076 def GetPrintDialogData(*args, **kwargs):
4077 """GetPrintDialogData(self) -> PrintDialogData"""
4078 return _windows_.PrintDialog_GetPrintDialogData(*args, **kwargs)
4079
070c48b4
RD
4080 def GetPrintData(*args, **kwargs):
4081 """GetPrintData(self) -> PrintData"""
4082 return _windows_.PrintDialog_GetPrintData(*args, **kwargs)
4083
d55e5bfc
RD
4084 def GetPrintDC(*args, **kwargs):
4085 """GetPrintDC(self) -> DC"""
4086 return _windows_.PrintDialog_GetPrintDC(*args, **kwargs)
4087
06810ecf 4088 def Destroy(self): pass
2131d850 4089_windows_.PrintDialog_swigregister(PrintDialog)
d55e5bfc
RD
4090
4091PRINTER_NO_ERROR = _windows_.PRINTER_NO_ERROR
4092PRINTER_CANCELLED = _windows_.PRINTER_CANCELLED
4093PRINTER_ERROR = _windows_.PRINTER_ERROR
4094class Printer(_core.Object):
36ed4f51 4095 """Proxy of C++ Printer class"""
1bd55598
RD
4096 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4097 __repr__ = _swig_repr
4098 def __init__(self, *args, **kwargs):
d55e5bfc 4099 """__init__(self, PrintDialogData data=None) -> Printer"""
1bd55598
RD
4100 _windows_.Printer_swiginit(self,_windows_.new_Printer(*args, **kwargs))
4101 __swig_destroy__ = _windows_.delete_Printer
4102 __del__ = lambda self : None;
d55e5bfc 4103 def CreateAbortWindow(*args, **kwargs):
070c48b4 4104 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
d55e5bfc
RD
4105 return _windows_.Printer_CreateAbortWindow(*args, **kwargs)
4106
070c48b4
RD
4107 def ReportError(*args, **kwargs):
4108 """ReportError(self, Window parent, Printout printout, String message)"""
4109 return _windows_.Printer_ReportError(*args, **kwargs)
4110
4111 def Setup(*args, **kwargs):
4112 """Setup(self, Window parent) -> bool"""
4113 return _windows_.Printer_Setup(*args, **kwargs)
d55e5bfc
RD
4114
4115 def Print(*args, **kwargs):
070c48b4 4116 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
d55e5bfc
RD
4117 return _windows_.Printer_Print(*args, **kwargs)
4118
4119 def PrintDialog(*args, **kwargs):
4120 """PrintDialog(self, Window parent) -> DC"""
4121 return _windows_.Printer_PrintDialog(*args, **kwargs)
4122
070c48b4
RD
4123 def GetPrintDialogData(*args, **kwargs):
4124 """GetPrintDialogData(self) -> PrintDialogData"""
4125 return _windows_.Printer_GetPrintDialogData(*args, **kwargs)
d55e5bfc
RD
4126
4127 def GetAbort(*args, **kwargs):
4128 """GetAbort(self) -> bool"""
4129 return _windows_.Printer_GetAbort(*args, **kwargs)
4130
4131 def GetLastError(*args, **kwargs):
d6c14a4c 4132 """GetLastError() -> int"""
d55e5bfc
RD
4133 return _windows_.Printer_GetLastError(*args, **kwargs)
4134
4135 GetLastError = staticmethod(GetLastError)
2131d850 4136_windows_.Printer_swigregister(Printer)
d55e5bfc 4137
1bd55598
RD
4138def Printer_GetLastError(*args):
4139 """Printer_GetLastError() -> int"""
4140 return _windows_.Printer_GetLastError(*args)
d55e5bfc
RD
4141
4142class Printout(_core.Object):
36ed4f51 4143 """Proxy of C++ Printout class"""
1bd55598
RD
4144 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4145 __repr__ = _swig_repr
4146 def __init__(self, *args, **kwargs):
d55e5bfc 4147 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
1bd55598 4148 _windows_.Printout_swiginit(self,_windows_.new_Printout(*args, **kwargs))
d55e5bfc
RD
4149 self._setCallbackInfo(self, Printout)
4150
1bd55598
RD
4151 __swig_destroy__ = _windows_.delete_Printout
4152 __del__ = lambda self : None;
d55e5bfc
RD
4153 def _setCallbackInfo(*args, **kwargs):
4154 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4155 return _windows_.Printout__setCallbackInfo(*args, **kwargs)
4156
4157 def GetTitle(*args, **kwargs):
4158 """GetTitle(self) -> String"""
4159 return _windows_.Printout_GetTitle(*args, **kwargs)
4160
4161 def GetDC(*args, **kwargs):
4162 """GetDC(self) -> DC"""
4163 return _windows_.Printout_GetDC(*args, **kwargs)
4164
4165 def SetDC(*args, **kwargs):
4166 """SetDC(self, DC dc)"""
4167 return _windows_.Printout_SetDC(*args, **kwargs)
4168
4169 def SetPageSizePixels(*args, **kwargs):
4170 """SetPageSizePixels(self, int w, int h)"""
4171 return _windows_.Printout_SetPageSizePixels(*args, **kwargs)
4172
4173 def GetPageSizePixels(*args, **kwargs):
4174 """GetPageSizePixels() -> (w, h)"""
4175 return _windows_.Printout_GetPageSizePixels(*args, **kwargs)
4176
4177 def SetPageSizeMM(*args, **kwargs):
4178 """SetPageSizeMM(self, int w, int h)"""
4179 return _windows_.Printout_SetPageSizeMM(*args, **kwargs)
4180
4181 def GetPageSizeMM(*args, **kwargs):
4182 """GetPageSizeMM() -> (w, h)"""
4183 return _windows_.Printout_GetPageSizeMM(*args, **kwargs)
4184
4185 def SetPPIScreen(*args, **kwargs):
4186 """SetPPIScreen(self, int x, int y)"""
4187 return _windows_.Printout_SetPPIScreen(*args, **kwargs)
4188
4189 def GetPPIScreen(*args, **kwargs):
4190 """GetPPIScreen() -> (x,y)"""
4191 return _windows_.Printout_GetPPIScreen(*args, **kwargs)
4192
4193 def SetPPIPrinter(*args, **kwargs):
4194 """SetPPIPrinter(self, int x, int y)"""
4195 return _windows_.Printout_SetPPIPrinter(*args, **kwargs)
4196
4197 def GetPPIPrinter(*args, **kwargs):
4198 """GetPPIPrinter() -> (x,y)"""
4199 return _windows_.Printout_GetPPIPrinter(*args, **kwargs)
4200
4201 def IsPreview(*args, **kwargs):
4202 """IsPreview(self) -> bool"""
4203 return _windows_.Printout_IsPreview(*args, **kwargs)
4204
4205 def SetIsPreview(*args, **kwargs):
4206 """SetIsPreview(self, bool p)"""
4207 return _windows_.Printout_SetIsPreview(*args, **kwargs)
4208
7f7aa166
RD
4209 def OnBeginDocument(*args, **kwargs):
4210 """OnBeginDocument(self, int startPage, int endPage) -> bool"""
4211 return _windows_.Printout_OnBeginDocument(*args, **kwargs)
4212
4213 def OnEndDocument(*args, **kwargs):
4214 """OnEndDocument(self)"""
4215 return _windows_.Printout_OnEndDocument(*args, **kwargs)
4216
4217 def OnBeginPrinting(*args, **kwargs):
4218 """OnBeginPrinting(self)"""
4219 return _windows_.Printout_OnBeginPrinting(*args, **kwargs)
d55e5bfc 4220
7f7aa166
RD
4221 def OnEndPrinting(*args, **kwargs):
4222 """OnEndPrinting(self)"""
4223 return _windows_.Printout_OnEndPrinting(*args, **kwargs)
d55e5bfc 4224
7f7aa166
RD
4225 def OnPreparePrinting(*args, **kwargs):
4226 """OnPreparePrinting(self)"""
4227 return _windows_.Printout_OnPreparePrinting(*args, **kwargs)
d55e5bfc 4228
7f7aa166
RD
4229 def HasPage(*args, **kwargs):
4230 """HasPage(self, int page) -> bool"""
4231 return _windows_.Printout_HasPage(*args, **kwargs)
d55e5bfc 4232
7f7aa166
RD
4233 def GetPageInfo(*args, **kwargs):
4234 """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4235 return _windows_.Printout_GetPageInfo(*args, **kwargs)
d55e5bfc 4236
7f7aa166
RD
4237 def base_OnBeginDocument(*args, **kw):
4238 return Printout.OnBeginDocument(*args, **kw)
4239 base_OnBeginDocument = wx._deprecated(base_OnBeginDocument,
4240 "Please use Printout.OnBeginDocument instead.")
d55e5bfc 4241
7f7aa166
RD
4242 def base_OnEndDocument(*args, **kw):
4243 return Printout.OnEndDocument(*args, **kw)
4244 base_OnEndDocument = wx._deprecated(base_OnEndDocument,
4245 "Please use Printout.OnEndDocument instead.")
4246
4247 def base_OnBeginPrinting(*args, **kw):
4248 return Printout.OnBeginPrinting(*args, **kw)
4249 base_OnBeginPrinting = wx._deprecated(base_OnBeginPrinting,
4250 "Please use Printout.OnBeginPrinting instead.")
4251
4252 def base_OnEndPrinting(*args, **kw):
4253 return Printout.OnEndPrinting(*args, **kw)
4254 base_OnEndPrinting = wx._deprecated(base_OnEndPrinting,
4255 "Please use Printout.OnEndPrinting instead.")
4256
4257 def base_OnPreparePrinting(*args, **kw):
4258 return Printout.OnPreparePrinting(*args, **kw)
4259 base_OnPreparePrinting = wx._deprecated(base_OnPreparePrinting,
4260 "Please use Printout.OnPreparePrinting instead.")
4261
4262 def base_GetPageInfo(*args, **kw):
4263 return Printout.GetPageInfo(*args, **kw)
4264 base_GetPageInfo = wx._deprecated(base_GetPageInfo,
4265 "Please use Printout.GetPageInfo instead.")
d55e5bfc 4266
2131d850 4267_windows_.Printout_swigregister(Printout)
d55e5bfc
RD
4268
4269class PreviewCanvas(ScrolledWindow):
36ed4f51 4270 """Proxy of C++ PreviewCanvas class"""
1bd55598
RD
4271 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4272 __repr__ = _swig_repr
4273 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4274 """
4275 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4276 Size size=DefaultSize, long style=0,
4277 String name=PreviewCanvasNameStr) -> PreviewCanvas
4278 """
1bd55598 4279 _windows_.PreviewCanvas_swiginit(self,_windows_.new_PreviewCanvas(*args, **kwargs))
d55e5bfc
RD
4280 self._setOORInfo(self)
4281
2131d850 4282_windows_.PreviewCanvas_swigregister(PreviewCanvas)
d55e5bfc
RD
4283
4284class PreviewFrame(Frame):
36ed4f51 4285 """Proxy of C++ PreviewFrame class"""
1bd55598
RD
4286 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4287 __repr__ = _swig_repr
4288 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4289 """
4290 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4291 Size size=DefaultSize,
4292 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4293 """
1bd55598 4294 _windows_.PreviewFrame_swiginit(self,_windows_.new_PreviewFrame(*args, **kwargs))
d55e5bfc
RD
4295 self._setOORInfo(self)
4296
4297 def Initialize(*args, **kwargs):
4298 """Initialize(self)"""
4299 return _windows_.PreviewFrame_Initialize(*args, **kwargs)
4300
4301 def CreateControlBar(*args, **kwargs):
4302 """CreateControlBar(self)"""
4303 return _windows_.PreviewFrame_CreateControlBar(*args, **kwargs)
4304
4305 def CreateCanvas(*args, **kwargs):
4306 """CreateCanvas(self)"""
4307 return _windows_.PreviewFrame_CreateCanvas(*args, **kwargs)
4308
4309 def GetControlBar(*args, **kwargs):
4310 """GetControlBar(self) -> PreviewControlBar"""
4311 return _windows_.PreviewFrame_GetControlBar(*args, **kwargs)
4312
2131d850 4313_windows_.PreviewFrame_swigregister(PreviewFrame)
d55e5bfc
RD
4314
4315PREVIEW_PRINT = _windows_.PREVIEW_PRINT
4316PREVIEW_PREVIOUS = _windows_.PREVIEW_PREVIOUS
4317PREVIEW_NEXT = _windows_.PREVIEW_NEXT
4318PREVIEW_ZOOM = _windows_.PREVIEW_ZOOM
4319PREVIEW_FIRST = _windows_.PREVIEW_FIRST
4320PREVIEW_LAST = _windows_.PREVIEW_LAST
4321PREVIEW_GOTO = _windows_.PREVIEW_GOTO
4322PREVIEW_DEFAULT = _windows_.PREVIEW_DEFAULT
4323ID_PREVIEW_CLOSE = _windows_.ID_PREVIEW_CLOSE
4324ID_PREVIEW_NEXT = _windows_.ID_PREVIEW_NEXT
4325ID_PREVIEW_PREVIOUS = _windows_.ID_PREVIEW_PREVIOUS
4326ID_PREVIEW_PRINT = _windows_.ID_PREVIEW_PRINT
4327ID_PREVIEW_ZOOM = _windows_.ID_PREVIEW_ZOOM
4328ID_PREVIEW_FIRST = _windows_.ID_PREVIEW_FIRST
4329ID_PREVIEW_LAST = _windows_.ID_PREVIEW_LAST
4330ID_PREVIEW_GOTO = _windows_.ID_PREVIEW_GOTO
4331class PreviewControlBar(Panel):
36ed4f51 4332 """Proxy of C++ PreviewControlBar class"""
1bd55598
RD
4333 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4334 __repr__ = _swig_repr
4335 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4336 """
4337 __init__(self, PrintPreview preview, long buttons, Window parent,
4338 Point pos=DefaultPosition, Size size=DefaultSize,
4339 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4340 """
1bd55598 4341 _windows_.PreviewControlBar_swiginit(self,_windows_.new_PreviewControlBar(*args, **kwargs))
d55e5bfc
RD
4342 self._setOORInfo(self)
4343
4344 def GetZoomControl(*args, **kwargs):
4345 """GetZoomControl(self) -> int"""
4346 return _windows_.PreviewControlBar_GetZoomControl(*args, **kwargs)
4347
4348 def SetZoomControl(*args, **kwargs):
4349 """SetZoomControl(self, int zoom)"""
4350 return _windows_.PreviewControlBar_SetZoomControl(*args, **kwargs)
4351
4352 def GetPrintPreview(*args, **kwargs):
4353 """GetPrintPreview(self) -> PrintPreview"""
4354 return _windows_.PreviewControlBar_GetPrintPreview(*args, **kwargs)
4355
4356 def OnNext(*args, **kwargs):
4357 """OnNext(self)"""
4358 return _windows_.PreviewControlBar_OnNext(*args, **kwargs)
4359
4360 def OnPrevious(*args, **kwargs):
4361 """OnPrevious(self)"""
4362 return _windows_.PreviewControlBar_OnPrevious(*args, **kwargs)
4363
4364 def OnFirst(*args, **kwargs):
4365 """OnFirst(self)"""
4366 return _windows_.PreviewControlBar_OnFirst(*args, **kwargs)
4367
4368 def OnLast(*args, **kwargs):
4369 """OnLast(self)"""
4370 return _windows_.PreviewControlBar_OnLast(*args, **kwargs)
4371
4372 def OnGoto(*args, **kwargs):
4373 """OnGoto(self)"""
4374 return _windows_.PreviewControlBar_OnGoto(*args, **kwargs)
4375
2131d850 4376_windows_.PreviewControlBar_swigregister(PreviewControlBar)
d55e5bfc
RD
4377
4378class PrintPreview(_core.Object):
36ed4f51 4379 """Proxy of C++ PrintPreview class"""
1bd55598
RD
4380 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4381 __repr__ = _swig_repr
4382 def __init__(self, *args):
d55e5bfc
RD
4383 """
4384 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4385 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4386 """
1bd55598
RD
4387 _windows_.PrintPreview_swiginit(self,_windows_.new_PrintPreview(*args))
4388 __swig_destroy__ = _windows_.delete_PrintPreview
4389 __del__ = lambda self : None;
d55e5bfc
RD
4390 def SetCurrentPage(*args, **kwargs):
4391 """SetCurrentPage(self, int pageNum) -> bool"""
4392 return _windows_.PrintPreview_SetCurrentPage(*args, **kwargs)
4393
4394 def GetCurrentPage(*args, **kwargs):
4395 """GetCurrentPage(self) -> int"""
4396 return _windows_.PrintPreview_GetCurrentPage(*args, **kwargs)
4397
4398 def SetPrintout(*args, **kwargs):
4399 """SetPrintout(self, Printout printout)"""
4400 return _windows_.PrintPreview_SetPrintout(*args, **kwargs)
4401
4402 def GetPrintout(*args, **kwargs):
4403 """GetPrintout(self) -> Printout"""
4404 return _windows_.PrintPreview_GetPrintout(*args, **kwargs)
4405
4406 def GetPrintoutForPrinting(*args, **kwargs):
4407 """GetPrintoutForPrinting(self) -> Printout"""
4408 return _windows_.PrintPreview_GetPrintoutForPrinting(*args, **kwargs)
4409
4410 def SetFrame(*args, **kwargs):
4411 """SetFrame(self, Frame frame)"""
4412 return _windows_.PrintPreview_SetFrame(*args, **kwargs)
4413
4414 def SetCanvas(*args, **kwargs):
4415 """SetCanvas(self, PreviewCanvas canvas)"""
4416 return _windows_.PrintPreview_SetCanvas(*args, **kwargs)
4417
4418 def GetFrame(*args, **kwargs):
4419 """GetFrame(self) -> Frame"""
4420 return _windows_.PrintPreview_GetFrame(*args, **kwargs)
4421
4422 def GetCanvas(*args, **kwargs):
4423 """GetCanvas(self) -> PreviewCanvas"""
4424 return _windows_.PrintPreview_GetCanvas(*args, **kwargs)
4425
4426 def PaintPage(*args, **kwargs):
4427 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4428 return _windows_.PrintPreview_PaintPage(*args, **kwargs)
4429
4430 def DrawBlankPage(*args, **kwargs):
4431 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4432 return _windows_.PrintPreview_DrawBlankPage(*args, **kwargs)
4433
4434 def RenderPage(*args, **kwargs):
4435 """RenderPage(self, int pageNum) -> bool"""
4436 return _windows_.PrintPreview_RenderPage(*args, **kwargs)
4437
4438 def AdjustScrollbars(*args, **kwargs):
4439 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4440 return _windows_.PrintPreview_AdjustScrollbars(*args, **kwargs)
4441
4442 def GetPrintDialogData(*args, **kwargs):
4443 """GetPrintDialogData(self) -> PrintDialogData"""
4444 return _windows_.PrintPreview_GetPrintDialogData(*args, **kwargs)
4445
4446 def SetZoom(*args, **kwargs):
4447 """SetZoom(self, int percent)"""
4448 return _windows_.PrintPreview_SetZoom(*args, **kwargs)
4449
4450 def GetZoom(*args, **kwargs):
4451 """GetZoom(self) -> int"""
4452 return _windows_.PrintPreview_GetZoom(*args, **kwargs)
4453
4454 def GetMaxPage(*args, **kwargs):
4455 """GetMaxPage(self) -> int"""
4456 return _windows_.PrintPreview_GetMaxPage(*args, **kwargs)
4457
4458 def GetMinPage(*args, **kwargs):
4459 """GetMinPage(self) -> int"""
4460 return _windows_.PrintPreview_GetMinPage(*args, **kwargs)
4461
4462 def Ok(*args, **kwargs):
4463 """Ok(self) -> bool"""
4464 return _windows_.PrintPreview_Ok(*args, **kwargs)
4465
4466 def SetOk(*args, **kwargs):
4467 """SetOk(self, bool ok)"""
4468 return _windows_.PrintPreview_SetOk(*args, **kwargs)
4469
4470 def Print(*args, **kwargs):
4471 """Print(self, bool interactive) -> bool"""
4472 return _windows_.PrintPreview_Print(*args, **kwargs)
4473
4474 def DetermineScaling(*args, **kwargs):
4475 """DetermineScaling(self)"""
4476 return _windows_.PrintPreview_DetermineScaling(*args, **kwargs)
4477
4478 def __nonzero__(self): return self.Ok()
2131d850 4479_windows_.PrintPreview_swigregister(PrintPreview)
d55e5bfc
RD
4480
4481class PyPrintPreview(PrintPreview):
36ed4f51 4482 """Proxy of C++ PyPrintPreview class"""
1bd55598
RD
4483 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4484 __repr__ = _swig_repr
4485 def __init__(self, *args):
d55e5bfc
RD
4486 """
4487 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4488 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4489 """
1bd55598 4490 _windows_.PyPrintPreview_swiginit(self,_windows_.new_PyPrintPreview(*args))
d55e5bfc
RD
4491 self._setCallbackInfo(self, PyPrintPreview)
4492
4493 def _setCallbackInfo(*args, **kwargs):
4494 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4495 return _windows_.PyPrintPreview__setCallbackInfo(*args, **kwargs)
4496
7f7aa166
RD
4497 def base_SetCurrentPage(*args, **kw):
4498 return PyPrintPreview.SetCurrentPage(*args, **kw)
4499 base_SetCurrentPage = wx._deprecated(base_SetCurrentPage,
4500 "Please use PyPrintPreview.SetCurrentPage instead.")
d55e5bfc 4501
7f7aa166
RD
4502 def base_PaintPage(*args, **kw):
4503 return PyPrintPreview.PaintPage(*args, **kw)
4504 base_PaintPage = wx._deprecated(base_PaintPage,
4505 "Please use PyPrintPreview.PaintPage instead.")
d55e5bfc 4506
7f7aa166
RD
4507 def base_DrawBlankPage(*args, **kw):
4508 return PyPrintPreview.DrawBlankPage(*args, **kw)
4509 base_DrawBlankPage = wx._deprecated(base_DrawBlankPage,
4510 "Please use PyPrintPreview.DrawBlankPage instead.")
d55e5bfc 4511
7f7aa166
RD
4512 def base_RenderPage(*args, **kw):
4513 return PyPrintPreview.RenderPage(*args, **kw)
4514 base_RenderPage = wx._deprecated(base_RenderPage,
4515 "Please use PyPrintPreview.RenderPage instead.")
4516
4517 def base_SetZoom(*args, **kw):
4518 return PyPrintPreview.SetZoom(*args, **kw)
4519 base_SetZoom = wx._deprecated(base_SetZoom,
4520 "Please use PyPrintPreview.SetZoom instead.")
4521
4522 def base_Print(*args, **kw):
4523 return PyPrintPreview.Print(*args, **kw)
4524 base_Print = wx._deprecated(base_Print,
4525 "Please use PyPrintPreview.Print instead.")
4526
4527 def base_DetermineScaling(*args, **kw):
4528 return PyPrintPreview.DetermineScaling(*args, **kw)
4529 base_DetermineScaling = wx._deprecated(base_DetermineScaling,
4530 "Please use PyPrintPreview.DetermineScaling instead.")
d55e5bfc 4531
2131d850 4532_windows_.PyPrintPreview_swigregister(PyPrintPreview)
d55e5bfc
RD
4533
4534class PyPreviewFrame(PreviewFrame):
36ed4f51 4535 """Proxy of C++ PyPreviewFrame class"""
1bd55598
RD
4536 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4537 __repr__ = _swig_repr
4538 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4539 """
4540 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4541 Size size=DefaultSize,
4542 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4543 """
1bd55598 4544 _windows_.PyPreviewFrame_swiginit(self,_windows_.new_PyPreviewFrame(*args, **kwargs))
d55e5bfc
RD
4545 self._setCallbackInfo(self, PyPreviewFrame); self._setOORInfo(self)
4546
4547 def _setCallbackInfo(*args, **kwargs):
4548 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4549 return _windows_.PyPreviewFrame__setCallbackInfo(*args, **kwargs)
4550
4551 def SetPreviewCanvas(*args, **kwargs):
4552 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4553 return _windows_.PyPreviewFrame_SetPreviewCanvas(*args, **kwargs)
4554
4555 def SetControlBar(*args, **kwargs):
4556 """SetControlBar(self, PreviewControlBar bar)"""
4557 return _windows_.PyPreviewFrame_SetControlBar(*args, **kwargs)
4558
7f7aa166
RD
4559 def Initialize(*args, **kwargs):
4560 """Initialize(self)"""
4561 return _windows_.PyPreviewFrame_Initialize(*args, **kwargs)
4562
4563 def CreateCanvas(*args, **kwargs):
4564 """CreateCanvas(self)"""
4565 return _windows_.PyPreviewFrame_CreateCanvas(*args, **kwargs)
4566
4567 def CreateControlBar(*args, **kwargs):
4568 """CreateControlBar(self)"""
4569 return _windows_.PyPreviewFrame_CreateControlBar(*args, **kwargs)
d55e5bfc 4570
7f7aa166
RD
4571 def base_Initialize(*args, **kw):
4572 return PyPreviewFrame.Initialize(*args, **kw)
4573 base_Initialize = wx._deprecated(base_Initialize,
4574 "Please use PyPreviewFrame.Initialize instead.")
d55e5bfc 4575
7f7aa166
RD
4576 def base_CreateCanvas(*args, **kw):
4577 return PyPreviewFrame.CreateCanvas(*args, **kw)
4578 base_CreateCanvas = wx._deprecated(base_CreateCanvas,
4579 "Please use PyPreviewFrame.CreateCanvas instead.")
4580
4581 def base_CreateControlBar(*args, **kw):
4582 return PyPreviewFrame.CreateControlBar(*args, **kw)
4583 base_CreateControlBar = wx._deprecated(base_CreateControlBar,
4584 "Please use PyPreviewFrame.CreateControlBar instead.")
d55e5bfc 4585
2131d850 4586_windows_.PyPreviewFrame_swigregister(PyPreviewFrame)
d55e5bfc
RD
4587
4588class PyPreviewControlBar(PreviewControlBar):
36ed4f51 4589 """Proxy of C++ PyPreviewControlBar class"""
1bd55598
RD
4590 thisown = property(lambda x: x.this.own(), lambda x, v: x.this.own(v), doc='The membership flag')
4591 __repr__ = _swig_repr
4592 def __init__(self, *args, **kwargs):
d55e5bfc
RD
4593 """
4594 __init__(self, PrintPreview preview, long buttons, Window parent,
4595 Point pos=DefaultPosition, Size size=DefaultSize,
4596 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4597 """
1bd55598 4598 _windows_.PyPreviewControlBar_swiginit(self,_windows_.new_PyPreviewControlBar(*args, **kwargs))
d55e5bfc
RD
4599 self._setCallbackInfo(self, PyPreviewControlBar); self._setOORInfo(self)
4600
4601 def _setCallbackInfo(*args, **kwargs):
4602 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4603 return _windows_.PyPreviewControlBar__setCallbackInfo(*args, **kwargs)
4604
4605 def SetPrintPreview(*args, **kwargs):
4606 """SetPrintPreview(self, PrintPreview preview)"""
4607 return _windows_.PyPreviewControlBar_SetPrintPreview(*args, **kwargs)
4608
7f7aa166
RD
4609 def CreateButtons(*args, **kwargs):
4610 """CreateButtons(self)"""
4611 return _windows_.PyPreviewControlBar_CreateButtons(*args, **kwargs)
4612
4613 def SetZoomControl(*args, **kwargs):
4614 """SetZoomControl(self, int zoom)"""
4615 return _windows_.PyPreviewControlBar_SetZoomControl(*args, **kwargs)
4616
4617 def base_CreateButtons(*args, **kw):
4618 return PreviewControlBar.CreateButtons(*args, **kw)
4619 base_CreateButtons = wx._deprecated(base_CreateButtons,
4620 "Please use PreviewControlBar.CreateButtons instead.")
d55e5bfc 4621
7f7aa166
RD
4622 def base_SetZoomControl(*args, **kw):
4623 return PreviewControlBar.SetZoomControl(*args, **kw)
4624 base_SetZoomControl = wx._deprecated(base_SetZoomControl,
4625 "Please use PreviewControlBar.SetZoomControl instead.")
d55e5bfc 4626
2131d850 4627_windows_.PyPreviewControlBar_swigregister(PyPreviewControlBar)
d55e5bfc
RD
4628
4629
32fe5131 4630