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