1 # This file was created automatically by SWIG 1.3.29.
2 # Don't modify this file, modify the SWIG interface instead.
6 new_instancemethod
= new
.instancemethod
7 def _swig_setattr_nondynamic(self
,class_type
,name
,value
,static
=1):
8 if (name
== "thisown"): return self
.this
.own(value
)
10 if type(value
).__name
__ == 'PySwigObject':
11 self
.__dict
__[name
] = value
13 method
= class_type
.__swig
_setmethods
__.get(name
,None)
14 if method
: return method(self
,value
)
15 if (not static
) or hasattr(self
,name
):
16 self
.__dict
__[name
] = value
18 raise AttributeError("You cannot add attributes to %s" % self
)
20 def _swig_setattr(self
,class_type
,name
,value
):
21 return _swig_setattr_nondynamic(self
,class_type
,name
,value
,0)
23 def _swig_getattr(self
,class_type
,name
):
24 if (name
== "thisown"): return self
.this
.own()
25 method
= class_type
.__swig
_getmethods
__.get(name
,None)
26 if method
: return method(self
)
27 raise AttributeError,name
30 try: strthis
= "proxy of " + self
.this
.__repr
__()
32 return "<%s.%s; %s >" % (self
.__class
__.__module
__, self
.__class
__.__name
__, strthis
,)
36 _object
= types
.ObjectType
38 except AttributeError:
44 def _swig_setattr_nondynamic_method(set):
45 def set_attr(self
,name
,value
):
46 if (name
== "thisown"): return self
.this
.own(value
)
47 if hasattr(self
,name
) or (name
== "this"):
50 raise AttributeError("You cannot add attributes to %s" % self
)
56 #---------------------------------------------------------------------------
58 class Panel(_core
.Window
):
59 """Proxy of C++ Panel class"""
60 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
62 def __init__(self
, *args
, **kwargs
):
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
68 _windows_
.Panel_swiginit(self
,_windows_
.new_Panel(*args
, **kwargs
))
69 self
._setOORInfo
(self
)
71 def Create(*args
, **kwargs
):
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
77 Create the GUI part of the Window for 2-phase creation mode.
79 return _windows_
.Panel_Create(*args
, **kwargs
)
81 def SetFocusIgnoringChildren(*args
, **kwargs
):
83 SetFocusIgnoringChildren(self)
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
89 return _windows_
.Panel_SetFocusIgnoringChildren(*args
, **kwargs
)
91 def GetClassDefaultAttributes(*args
, **kwargs
):
93 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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
98 colours or fonts which might look completely out of place on the
99 user's system, especially if it uses themes.
101 The variant parameter is only relevant under Mac currently and is
102 ignore under other platforms. Under Mac, it will change the size of
103 the returned font. See `wx.Window.SetWindowVariant` for more about
106 return _windows_
.Panel_GetClassDefaultAttributes(*args
, **kwargs
)
108 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
109 _windows_
.Panel_swigregister(Panel
)
111 def PrePanel(*args
, **kwargs
):
112 """PrePanel() -> Panel"""
113 val
= _windows_
.new_PrePanel(*args
, **kwargs
)
116 def Panel_GetClassDefaultAttributes(*args
, **kwargs
):
118 Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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
123 colours or fonts which might look completely out of place on the
124 user's system, especially if it uses themes.
126 The variant parameter is only relevant under Mac currently and is
127 ignore under other platforms. Under Mac, it will change the size of
128 the returned font. See `wx.Window.SetWindowVariant` for more about
131 return _windows_
.Panel_GetClassDefaultAttributes(*args
, **kwargs
)
133 #---------------------------------------------------------------------------
135 class ScrolledWindow(Panel
):
136 """Proxy of C++ ScrolledWindow class"""
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
):
141 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
142 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
143 String name=PanelNameStr) -> ScrolledWindow
145 _windows_
.ScrolledWindow_swiginit(self
,_windows_
.new_ScrolledWindow(*args
, **kwargs
))
146 self
._setOORInfo
(self
)
148 def Create(*args
, **kwargs
):
150 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
151 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
152 String name=PanelNameStr) -> bool
154 Create the GUI part of the Window for 2-phase creation mode.
156 return _windows_
.ScrolledWindow_Create(*args
, **kwargs
)
158 def SetScrollbars(*args
, **kwargs
):
160 SetScrollbars(self, int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
161 int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
163 return _windows_
.ScrolledWindow_SetScrollbars(*args
, **kwargs
)
165 def Scroll(*args
, **kwargs
):
166 """Scroll(self, int x, int y)"""
167 return _windows_
.ScrolledWindow_Scroll(*args
, **kwargs
)
169 def GetScrollPageSize(*args
, **kwargs
):
170 """GetScrollPageSize(self, int orient) -> int"""
171 return _windows_
.ScrolledWindow_GetScrollPageSize(*args
, **kwargs
)
173 def SetScrollPageSize(*args
, **kwargs
):
174 """SetScrollPageSize(self, int orient, int pageSize)"""
175 return _windows_
.ScrolledWindow_SetScrollPageSize(*args
, **kwargs
)
177 def SetScrollRate(*args
, **kwargs
):
178 """SetScrollRate(self, int xstep, int ystep)"""
179 return _windows_
.ScrolledWindow_SetScrollRate(*args
, **kwargs
)
181 def GetScrollPixelsPerUnit(*args
, **kwargs
):
183 GetScrollPixelsPerUnit() -> (xUnit, yUnit)
185 Get the size of one logical unit in physical units.
187 return _windows_
.ScrolledWindow_GetScrollPixelsPerUnit(*args
, **kwargs
)
189 def EnableScrolling(*args
, **kwargs
):
190 """EnableScrolling(self, bool x_scrolling, bool y_scrolling)"""
191 return _windows_
.ScrolledWindow_EnableScrolling(*args
, **kwargs
)
193 def GetViewStart(*args
, **kwargs
):
195 GetViewStart() -> (x,y)
199 return _windows_
.ScrolledWindow_GetViewStart(*args
, **kwargs
)
201 def SetScale(*args
, **kwargs
):
202 """SetScale(self, double xs, double ys)"""
203 return _windows_
.ScrolledWindow_SetScale(*args
, **kwargs
)
205 def GetScaleX(*args
, **kwargs
):
206 """GetScaleX(self) -> double"""
207 return _windows_
.ScrolledWindow_GetScaleX(*args
, **kwargs
)
209 def GetScaleY(*args
, **kwargs
):
210 """GetScaleY(self) -> double"""
211 return _windows_
.ScrolledWindow_GetScaleY(*args
, **kwargs
)
213 def CalcScrolledPosition(*args
):
215 CalcScrolledPosition(self, Point pt) -> Point
216 CalcScrolledPosition(int x, int y) -> (sx, sy)
218 Translate between scrolled and unscrolled coordinates.
220 return _windows_
.ScrolledWindow_CalcScrolledPosition(*args
)
222 def CalcUnscrolledPosition(*args
):
224 CalcUnscrolledPosition(self, Point pt) -> Point
225 CalcUnscrolledPosition(int x, int y) -> (ux, uy)
227 Translate between scrolled and unscrolled coordinates.
229 return _windows_
.ScrolledWindow_CalcUnscrolledPosition(*args
)
231 def AdjustScrollbars(*args
, **kwargs
):
232 """AdjustScrollbars(self)"""
233 return _windows_
.ScrolledWindow_AdjustScrollbars(*args
, **kwargs
)
235 def CalcScrollInc(*args
, **kwargs
):
236 """CalcScrollInc(self, ScrollWinEvent event) -> int"""
237 return _windows_
.ScrolledWindow_CalcScrollInc(*args
, **kwargs
)
239 def SetTargetWindow(*args
, **kwargs
):
240 """SetTargetWindow(self, Window target)"""
241 return _windows_
.ScrolledWindow_SetTargetWindow(*args
, **kwargs
)
243 def GetTargetWindow(*args
, **kwargs
):
244 """GetTargetWindow(self) -> Window"""
245 return _windows_
.ScrolledWindow_GetTargetWindow(*args
, **kwargs
)
247 def SetTargetRect(*args
, **kwargs
):
248 """SetTargetRect(self, Rect rect)"""
249 return _windows_
.ScrolledWindow_SetTargetRect(*args
, **kwargs
)
251 def GetTargetRect(*args
, **kwargs
):
252 """GetTargetRect(self) -> Rect"""
253 return _windows_
.ScrolledWindow_GetTargetRect(*args
, **kwargs
)
255 def DoPrepareDC(*args
, **kwargs
):
257 DoPrepareDC(self, DC dc)
259 Normally what is called by `PrepareDC`.
261 return _windows_
.ScrolledWindow_DoPrepareDC(*args
, **kwargs
)
263 def GetClassDefaultAttributes(*args
, **kwargs
):
265 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
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
270 colours or fonts which might look completely out of place on the
271 user's system, especially if it uses themes.
273 The variant parameter is only relevant under Mac currently and is
274 ignore under other platforms. Under Mac, it will change the size of
275 the returned font. See `wx.Window.SetWindowVariant` for more about
278 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
280 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
281 _windows_
.ScrolledWindow_swigregister(ScrolledWindow
)
283 def PreScrolledWindow(*args
, **kwargs
):
284 """PreScrolledWindow() -> ScrolledWindow"""
285 val
= _windows_
.new_PreScrolledWindow(*args
, **kwargs
)
288 def ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
):
290 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
292 Get the default attributes for this class. This is useful if you want
293 to use the same font or colour in your own control as in a standard
294 control -- which is a much better idea than hard coding specific
295 colours or fonts which might look completely out of place on the
296 user's system, especially if it uses themes.
298 The variant parameter is only relevant under Mac currently and is
299 ignore under other platforms. Under Mac, it will change the size of
300 the returned font. See `wx.Window.SetWindowVariant` for more about
303 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
305 #---------------------------------------------------------------------------
307 STAY_ON_TOP
= _windows_
.STAY_ON_TOP
308 ICONIZE
= _windows_
.ICONIZE
309 MINIMIZE
= _windows_
.MINIMIZE
310 MAXIMIZE
= _windows_
.MAXIMIZE
311 CLOSE_BOX
= _windows_
.CLOSE_BOX
312 THICK_FRAME
= _windows_
.THICK_FRAME
313 SYSTEM_MENU
= _windows_
.SYSTEM_MENU
314 MINIMIZE_BOX
= _windows_
.MINIMIZE_BOX
315 MAXIMIZE_BOX
= _windows_
.MAXIMIZE_BOX
316 TINY_CAPTION_HORIZ
= _windows_
.TINY_CAPTION_HORIZ
317 TINY_CAPTION_VERT
= _windows_
.TINY_CAPTION_VERT
318 RESIZE_BOX
= _windows_
.RESIZE_BOX
319 RESIZE_BORDER
= _windows_
.RESIZE_BORDER
320 DIALOG_NO_PARENT
= _windows_
.DIALOG_NO_PARENT
321 DEFAULT_FRAME_STYLE
= _windows_
.DEFAULT_FRAME_STYLE
322 DEFAULT_DIALOG_STYLE
= _windows_
.DEFAULT_DIALOG_STYLE
323 FRAME_TOOL_WINDOW
= _windows_
.FRAME_TOOL_WINDOW
324 FRAME_FLOAT_ON_PARENT
= _windows_
.FRAME_FLOAT_ON_PARENT
325 FRAME_NO_WINDOW_MENU
= _windows_
.FRAME_NO_WINDOW_MENU
326 FRAME_NO_TASKBAR
= _windows_
.FRAME_NO_TASKBAR
327 FRAME_SHAPED
= _windows_
.FRAME_SHAPED
328 FRAME_DRAWER
= _windows_
.FRAME_DRAWER
329 FRAME_EX_METAL
= _windows_
.FRAME_EX_METAL
330 DIALOG_EX_METAL
= _windows_
.DIALOG_EX_METAL
331 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
332 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
333 USER_COLOURS
= _windows_
.USER_COLOURS
334 NO_3D
= _windows_
.NO_3D
335 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
336 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
337 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
338 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
339 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
340 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
341 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
342 USER_ATTENTION_INFO
= _windows_
.USER_ATTENTION_INFO
343 USER_ATTENTION_ERROR
= _windows_
.USER_ATTENTION_ERROR
344 class TopLevelWindow(_core
.Window
):
345 """Proxy of C++ TopLevelWindow class"""
346 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
347 def __init__(self
): raise AttributeError, "No constructor defined"
348 __repr__
= _swig_repr
349 def Maximize(*args
, **kwargs
):
350 """Maximize(self, bool maximize=True)"""
351 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
353 def Restore(*args
, **kwargs
):
355 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
357 def Iconize(*args
, **kwargs
):
358 """Iconize(self, bool iconize=True)"""
359 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
361 def IsMaximized(*args
, **kwargs
):
362 """IsMaximized(self) -> bool"""
363 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
365 def IsAlwaysMaximized(*args
, **kwargs
):
366 """IsAlwaysMaximized(self) -> bool"""
367 return _windows_
.TopLevelWindow_IsAlwaysMaximized(*args
, **kwargs
)
369 def IsIconized(*args
, **kwargs
):
370 """IsIconized(self) -> bool"""
371 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
373 def GetIcon(*args
, **kwargs
):
374 """GetIcon(self) -> Icon"""
375 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
377 def SetIcon(*args
, **kwargs
):
378 """SetIcon(self, Icon icon)"""
379 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
381 def SetIcons(*args
, **kwargs
):
382 """SetIcons(self, wxIconBundle icons)"""
383 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
385 def ShowFullScreen(*args
, **kwargs
):
386 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
387 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
389 def IsFullScreen(*args
, **kwargs
):
390 """IsFullScreen(self) -> bool"""
391 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
393 def SetTitle(*args
, **kwargs
):
394 """SetTitle(self, String title)"""
395 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
397 def GetTitle(*args
, **kwargs
):
398 """GetTitle(self) -> String"""
399 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
401 def SetShape(*args
, **kwargs
):
402 """SetShape(self, Region region) -> bool"""
403 return _windows_
.TopLevelWindow_SetShape(*args
, **kwargs
)
405 def RequestUserAttention(*args
, **kwargs
):
406 """RequestUserAttention(self, int flags=USER_ATTENTION_INFO)"""
407 return _windows_
.TopLevelWindow_RequestUserAttention(*args
, **kwargs
)
409 def IsActive(*args
, **kwargs
):
410 """IsActive(self) -> bool"""
411 return _windows_
.TopLevelWindow_IsActive(*args
, **kwargs
)
413 def MacSetMetalAppearance(*args
, **kwargs
):
414 """MacSetMetalAppearance(self, bool on)"""
415 return _windows_
.TopLevelWindow_MacSetMetalAppearance(*args
, **kwargs
)
417 def MacGetMetalAppearance(*args
, **kwargs
):
418 """MacGetMetalAppearance(self) -> bool"""
419 return _windows_
.TopLevelWindow_MacGetMetalAppearance(*args
, **kwargs
)
421 def CenterOnScreen(*args
, **kwargs
):
423 CenterOnScreen(self, int dir=BOTH)
425 Center the window on screen
427 return _windows_
.TopLevelWindow_CenterOnScreen(*args
, **kwargs
)
429 CentreOnScreen
= CenterOnScreen
430 _windows_
.TopLevelWindow_swigregister(TopLevelWindow
)
431 cvar
= _windows_
.cvar
432 FrameNameStr
= cvar
.FrameNameStr
433 DialogNameStr
= cvar
.DialogNameStr
434 StatusLineNameStr
= cvar
.StatusLineNameStr
435 ToolBarNameStr
= cvar
.ToolBarNameStr
437 #---------------------------------------------------------------------------
439 class Frame(TopLevelWindow
):
440 """Proxy of C++ Frame class"""
441 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
442 __repr__
= _swig_repr
443 def __init__(self
, *args
, **kwargs
):
445 __init__(self, Window parent, int id=-1, String title=EmptyString,
446 Point pos=DefaultPosition, Size size=DefaultSize,
447 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
449 _windows_
.Frame_swiginit(self
,_windows_
.new_Frame(*args
, **kwargs
))
450 self
._setOORInfo
(self
)
452 def Create(*args
, **kwargs
):
454 Create(self, Window parent, int id=-1, String title=EmptyString,
455 Point pos=DefaultPosition, Size size=DefaultSize,
456 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
458 return _windows_
.Frame_Create(*args
, **kwargs
)
460 def SendSizeEvent(*args
, **kwargs
):
461 """SendSizeEvent(self)"""
462 return _windows_
.Frame_SendSizeEvent(*args
, **kwargs
)
464 def SetMenuBar(*args
, **kwargs
):
465 """SetMenuBar(self, MenuBar menubar)"""
466 return _windows_
.Frame_SetMenuBar(*args
, **kwargs
)
468 def GetMenuBar(*args
, **kwargs
):
469 """GetMenuBar(self) -> MenuBar"""
470 return _windows_
.Frame_GetMenuBar(*args
, **kwargs
)
472 def ProcessCommand(*args
, **kwargs
):
473 """ProcessCommand(self, int winid) -> bool"""
474 return _windows_
.Frame_ProcessCommand(*args
, **kwargs
)
476 Command
= ProcessCommand
477 def CreateStatusBar(*args
, **kwargs
):
479 CreateStatusBar(self, int number=1, long style=DEFAULT_STATUSBAR_STYLE, int winid=0,
480 String name=StatusLineNameStr) -> StatusBar
482 return _windows_
.Frame_CreateStatusBar(*args
, **kwargs
)
484 def GetStatusBar(*args
, **kwargs
):
485 """GetStatusBar(self) -> StatusBar"""
486 return _windows_
.Frame_GetStatusBar(*args
, **kwargs
)
488 def SetStatusBar(*args
, **kwargs
):
489 """SetStatusBar(self, StatusBar statBar)"""
490 return _windows_
.Frame_SetStatusBar(*args
, **kwargs
)
492 def SetStatusText(*args
, **kwargs
):
493 """SetStatusText(self, String text, int number=0)"""
494 return _windows_
.Frame_SetStatusText(*args
, **kwargs
)
496 def SetStatusWidths(*args
, **kwargs
):
497 """SetStatusWidths(self, int widths)"""
498 return _windows_
.Frame_SetStatusWidths(*args
, **kwargs
)
500 def PushStatusText(*args
, **kwargs
):
501 """PushStatusText(self, String text, int number=0)"""
502 return _windows_
.Frame_PushStatusText(*args
, **kwargs
)
504 def PopStatusText(*args
, **kwargs
):
505 """PopStatusText(self, int number=0)"""
506 return _windows_
.Frame_PopStatusText(*args
, **kwargs
)
508 def SetStatusBarPane(*args
, **kwargs
):
509 """SetStatusBarPane(self, int n)"""
510 return _windows_
.Frame_SetStatusBarPane(*args
, **kwargs
)
512 def GetStatusBarPane(*args
, **kwargs
):
513 """GetStatusBarPane(self) -> int"""
514 return _windows_
.Frame_GetStatusBarPane(*args
, **kwargs
)
516 def CreateToolBar(*args
, **kwargs
):
517 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
518 return _windows_
.Frame_CreateToolBar(*args
, **kwargs
)
520 def GetToolBar(*args
, **kwargs
):
521 """GetToolBar(self) -> wxToolBar"""
522 return _windows_
.Frame_GetToolBar(*args
, **kwargs
)
524 def SetToolBar(*args
, **kwargs
):
525 """SetToolBar(self, wxToolBar toolbar)"""
526 return _windows_
.Frame_SetToolBar(*args
, **kwargs
)
528 def DoGiveHelp(*args
, **kwargs
):
529 """DoGiveHelp(self, String text, bool show)"""
530 return _windows_
.Frame_DoGiveHelp(*args
, **kwargs
)
532 def DoMenuUpdates(*args
, **kwargs
):
533 """DoMenuUpdates(self, Menu menu=None)"""
534 return _windows_
.Frame_DoMenuUpdates(*args
, **kwargs
)
536 def GetClassDefaultAttributes(*args
, **kwargs
):
538 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
540 Get the default attributes for this class. This is useful if you want
541 to use the same font or colour in your own control as in a standard
542 control -- which is a much better idea than hard coding specific
543 colours or fonts which might look completely out of place on the
544 user's system, especially if it uses themes.
546 The variant parameter is only relevant under Mac currently and is
547 ignore under other platforms. Under Mac, it will change the size of
548 the returned font. See `wx.Window.SetWindowVariant` for more about
551 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
553 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
554 _windows_
.Frame_swigregister(Frame
)
556 def PreFrame(*args
, **kwargs
):
557 """PreFrame() -> Frame"""
558 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
561 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
563 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
565 Get the default attributes for this class. This is useful if you want
566 to use the same font or colour in your own control as in a standard
567 control -- which is a much better idea than hard coding specific
568 colours or fonts which might look completely out of place on the
569 user's system, especially if it uses themes.
571 The variant parameter is only relevant under Mac currently and is
572 ignore under other platforms. Under Mac, it will change the size of
573 the returned font. See `wx.Window.SetWindowVariant` for more about
576 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
578 #---------------------------------------------------------------------------
580 class Dialog(TopLevelWindow
):
581 """Proxy of C++ Dialog class"""
582 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
583 __repr__
= _swig_repr
584 ButtonSizerFlags
= _windows_
.Dialog_ButtonSizerFlags
585 def __init__(self
, *args
, **kwargs
):
587 __init__(self, Window parent, int id=-1, String title=EmptyString,
588 Point pos=DefaultPosition, Size size=DefaultSize,
589 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
591 _windows_
.Dialog_swiginit(self
,_windows_
.new_Dialog(*args
, **kwargs
))
592 self
._setOORInfo
(self
)
594 def Create(*args
, **kwargs
):
596 Create(self, Window parent, int id=-1, String title=EmptyString,
597 Point pos=DefaultPosition, Size size=DefaultSize,
598 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
600 return _windows_
.Dialog_Create(*args
, **kwargs
)
602 def SetReturnCode(*args
, **kwargs
):
603 """SetReturnCode(self, int returnCode)"""
604 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
606 def GetReturnCode(*args
, **kwargs
):
607 """GetReturnCode(self) -> int"""
608 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
610 def SetAffirmativeId(*args
, **kwargs
):
611 """SetAffirmativeId(self, int affirmativeId)"""
612 return _windows_
.Dialog_SetAffirmativeId(*args
, **kwargs
)
614 def GetAffirmativeId(*args
, **kwargs
):
615 """GetAffirmativeId(self) -> int"""
616 return _windows_
.Dialog_GetAffirmativeId(*args
, **kwargs
)
618 def SetEscapeId(*args
, **kwargs
):
619 """SetEscapeId(self, int escapeId)"""
620 return _windows_
.Dialog_SetEscapeId(*args
, **kwargs
)
622 def GetEscapeId(*args
, **kwargs
):
623 """GetEscapeId(self) -> int"""
624 return _windows_
.Dialog_GetEscapeId(*args
, **kwargs
)
626 def CreateTextSizer(*args
, **kwargs
):
627 """CreateTextSizer(self, String message) -> Sizer"""
628 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
630 def CreateButtonSizer(*args
, **kwargs
):
631 """CreateButtonSizer(self, long flags, bool separated=False, int distance=0) -> Sizer"""
632 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
634 def CreateStdDialogButtonSizer(*args
, **kwargs
):
635 """CreateStdDialogButtonSizer(self, long flags) -> StdDialogButtonSizer"""
636 return _windows_
.Dialog_CreateStdDialogButtonSizer(*args
, **kwargs
)
638 def IsModal(*args
, **kwargs
):
639 """IsModal(self) -> bool"""
640 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
642 def ShowModal(*args
, **kwargs
):
643 """ShowModal(self) -> int"""
644 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
646 def EndModal(*args
, **kwargs
):
647 """EndModal(self, int retCode)"""
648 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
650 def GetClassDefaultAttributes(*args
, **kwargs
):
652 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
654 Get the default attributes for this class. This is useful if you want
655 to use the same font or colour in your own control as in a standard
656 control -- which is a much better idea than hard coding specific
657 colours or fonts which might look completely out of place on the
658 user's system, especially if it uses themes.
660 The variant parameter is only relevant under Mac currently and is
661 ignore under other platforms. Under Mac, it will change the size of
662 the returned font. See `wx.Window.SetWindowVariant` for more about
665 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
667 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
668 _windows_
.Dialog_swigregister(Dialog
)
670 def PreDialog(*args
, **kwargs
):
671 """PreDialog() -> Dialog"""
672 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
675 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
677 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
679 Get the default attributes for this class. This is useful if you want
680 to use the same font or colour in your own control as in a standard
681 control -- which is a much better idea than hard coding specific
682 colours or fonts which might look completely out of place on the
683 user's system, especially if it uses themes.
685 The variant parameter is only relevant under Mac currently and is
686 ignore under other platforms. Under Mac, it will change the size of
687 the returned font. See `wx.Window.SetWindowVariant` for more about
690 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
692 #---------------------------------------------------------------------------
694 class MiniFrame(Frame
):
695 """Proxy of C++ MiniFrame class"""
696 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
697 __repr__
= _swig_repr
698 def __init__(self
, *args
, **kwargs
):
700 __init__(self, Window parent, int id=-1, String title=EmptyString,
701 Point pos=DefaultPosition, Size size=DefaultSize,
702 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
704 _windows_
.MiniFrame_swiginit(self
,_windows_
.new_MiniFrame(*args
, **kwargs
))
705 self
._setOORInfo
(self
)
707 def Create(*args
, **kwargs
):
709 Create(self, Window parent, int id=-1, String title=EmptyString,
710 Point pos=DefaultPosition, Size size=DefaultSize,
711 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
713 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
715 _windows_
.MiniFrame_swigregister(MiniFrame
)
717 def PreMiniFrame(*args
, **kwargs
):
718 """PreMiniFrame() -> MiniFrame"""
719 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
722 #---------------------------------------------------------------------------
724 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
725 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
726 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
727 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
728 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
729 class SplashScreenWindow(_core
.Window
):
730 """Proxy of C++ SplashScreenWindow class"""
731 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
732 __repr__
= _swig_repr
733 def __init__(self
, *args
, **kwargs
):
735 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
736 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
738 _windows_
.SplashScreenWindow_swiginit(self
,_windows_
.new_SplashScreenWindow(*args
, **kwargs
))
739 self
._setOORInfo
(self
)
741 def SetBitmap(*args
, **kwargs
):
742 """SetBitmap(self, Bitmap bitmap)"""
743 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
745 def GetBitmap(*args
, **kwargs
):
746 """GetBitmap(self) -> Bitmap"""
747 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
749 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindow
)
751 class SplashScreen(Frame
):
752 """Proxy of C++ SplashScreen class"""
753 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
754 __repr__
= _swig_repr
755 def __init__(self
, *args
, **kwargs
):
757 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
758 Window parent, int id=-1, Point pos=DefaultPosition,
759 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
761 _windows_
.SplashScreen_swiginit(self
,_windows_
.new_SplashScreen(*args
, **kwargs
))
762 self
._setOORInfo
(self
)
764 def GetSplashStyle(*args
, **kwargs
):
765 """GetSplashStyle(self) -> long"""
766 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
768 def GetSplashWindow(*args
, **kwargs
):
769 """GetSplashWindow(self) -> SplashScreenWindow"""
770 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
772 def GetTimeout(*args
, **kwargs
):
773 """GetTimeout(self) -> int"""
774 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
776 _windows_
.SplashScreen_swigregister(SplashScreen
)
778 #---------------------------------------------------------------------------
780 SB_NORMAL
= _windows_
.SB_NORMAL
781 SB_FLAT
= _windows_
.SB_FLAT
782 SB_RAISED
= _windows_
.SB_RAISED
783 class StatusBar(_core
.Window
):
784 """Proxy of C++ StatusBar class"""
785 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
786 __repr__
= _swig_repr
787 def __init__(self
, *args
, **kwargs
):
789 __init__(self, Window parent, int id=-1, long style=DEFAULT_STATUSBAR_STYLE,
790 String name=StatusLineNameStr) -> StatusBar
792 _windows_
.StatusBar_swiginit(self
,_windows_
.new_StatusBar(*args
, **kwargs
))
793 self
._setOORInfo
(self
)
795 def Create(*args
, **kwargs
):
796 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
797 return _windows_
.StatusBar_Create(*args
, **kwargs
)
799 def SetFieldsCount(*args
, **kwargs
):
800 """SetFieldsCount(self, int number=1)"""
801 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
803 def GetFieldsCount(*args
, **kwargs
):
804 """GetFieldsCount(self) -> int"""
805 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
807 def SetStatusText(*args
, **kwargs
):
808 """SetStatusText(self, String text, int number=0)"""
809 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
811 def GetStatusText(*args
, **kwargs
):
812 """GetStatusText(self, int number=0) -> String"""
813 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
815 def PushStatusText(*args
, **kwargs
):
816 """PushStatusText(self, String text, int number=0)"""
817 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
819 def PopStatusText(*args
, **kwargs
):
820 """PopStatusText(self, int number=0)"""
821 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
823 def SetStatusWidths(*args
, **kwargs
):
824 """SetStatusWidths(self, int widths)"""
825 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
827 def SetStatusStyles(*args
, **kwargs
):
828 """SetStatusStyles(self, int styles)"""
829 return _windows_
.StatusBar_SetStatusStyles(*args
, **kwargs
)
831 def GetFieldRect(*args
, **kwargs
):
832 """GetFieldRect(self, int i) -> Rect"""
833 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
835 def SetMinHeight(*args
, **kwargs
):
836 """SetMinHeight(self, int height)"""
837 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
839 def GetBorderX(*args
, **kwargs
):
840 """GetBorderX(self) -> int"""
841 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
843 def GetBorderY(*args
, **kwargs
):
844 """GetBorderY(self) -> int"""
845 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
847 def GetClassDefaultAttributes(*args
, **kwargs
):
849 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
851 Get the default attributes for this class. This is useful if you want
852 to use the same font or colour in your own control as in a standard
853 control -- which is a much better idea than hard coding specific
854 colours or fonts which might look completely out of place on the
855 user's system, especially if it uses themes.
857 The variant parameter is only relevant under Mac currently and is
858 ignore under other platforms. Under Mac, it will change the size of
859 the returned font. See `wx.Window.SetWindowVariant` for more about
862 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
864 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
865 _windows_
.StatusBar_swigregister(StatusBar
)
867 def PreStatusBar(*args
, **kwargs
):
868 """PreStatusBar() -> StatusBar"""
869 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
872 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
874 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
876 Get the default attributes for this class. This is useful if you want
877 to use the same font or colour in your own control as in a standard
878 control -- which is a much better idea than hard coding specific
879 colours or fonts which might look completely out of place on the
880 user's system, especially if it uses themes.
882 The variant parameter is only relevant under Mac currently and is
883 ignore under other platforms. Under Mac, it will change the size of
884 the returned font. See `wx.Window.SetWindowVariant` for more about
887 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
889 #---------------------------------------------------------------------------
891 SP_NOBORDER
= _windows_
.SP_NOBORDER
892 SP_NOSASH
= _windows_
.SP_NOSASH
893 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
894 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
895 SP_3DSASH
= _windows_
.SP_3DSASH
896 SP_3DBORDER
= _windows_
.SP_3DBORDER
897 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
898 SP_BORDER
= _windows_
.SP_BORDER
899 SP_3D
= _windows_
.SP_3D
900 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
901 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
902 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
903 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
904 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
905 class SplitterWindow(_core
.Window
):
907 wx.SplitterWindow manages up to two subwindows or panes, with an
908 optional vertical or horizontal split which can be used with the mouse
911 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
912 __repr__
= _swig_repr
913 def __init__(self
, *args
, **kwargs
):
915 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
916 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
918 Constructor. Creates and shows a SplitterWindow.
920 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
921 _windows_
.SplitterWindow_swiginit(self
,_windows_
.new_SplitterWindow(*args
, **kwargs
))
922 self
._setOORInfo
(self
)
924 def Create(*args
, **kwargs
):
926 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
927 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
929 Create the GUI part of the SplitterWindow for the 2-phase create.
931 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
933 def GetWindow1(*args
, **kwargs
):
935 GetWindow1(self) -> Window
937 Gets the only or left/top pane.
939 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
941 def GetWindow2(*args
, **kwargs
):
943 GetWindow2(self) -> Window
945 Gets the right/bottom pane.
947 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
949 def SetSplitMode(*args
, **kwargs
):
951 SetSplitMode(self, int mode)
953 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
954 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
957 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
959 def GetSplitMode(*args
, **kwargs
):
961 GetSplitMode(self) -> int
965 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
967 def Initialize(*args
, **kwargs
):
969 Initialize(self, Window window)
971 Initializes the splitter window to have one pane. This should be
972 called if you wish to initially view only a single pane in the
973 splitter window. The child window is shown if it is currently hidden.
975 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
977 def SplitVertically(*args
, **kwargs
):
979 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
981 Initializes the left and right panes of the splitter window. The
982 child windows are shown if they are currently hidden.
984 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
986 def SplitHorizontally(*args
, **kwargs
):
988 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
990 Initializes the top and bottom panes of the splitter window. The
991 child windows are shown if they are currently hidden.
993 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
995 def Unsplit(*args
, **kwargs
):
997 Unsplit(self, Window toRemove=None) -> bool
999 Unsplits the window. Pass the pane to remove, or None to remove the
1000 right or bottom pane. Returns True if successful, False otherwise (the
1001 window was not split).
1003 This function will not actually delete the pane being
1004 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
1005 for the desired behaviour. By default, the pane being
1006 removed is only hidden.
1008 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
1010 def ReplaceWindow(*args
, **kwargs
):
1012 ReplaceWindow(self, Window winOld, Window winNew) -> bool
1014 This function replaces one of the windows managed by the
1015 SplitterWindow with another one. It is in general better to use it
1016 instead of calling Unsplit() and then resplitting the window back
1017 because it will provoke much less flicker. It is valid to call this
1018 function whether the splitter has two windows or only one.
1020 Both parameters should be non-None and winOld must specify one of the
1021 windows managed by the splitter. If the parameters are incorrect or
1022 the window couldn't be replaced, False is returned. Otherwise the
1023 function will return True, but please notice that it will not Destroy
1024 the replaced window and you may wish to do it yourself.
1026 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1028 def UpdateSize(*args
, **kwargs
):
1032 Causes any pending sizing of the sash and child panes to take place
1035 Such resizing normally takes place in idle time, in order to wait for
1036 layout to be completed. However, this can cause unacceptable flicker
1037 as the panes are resized after the window has been shown. To work
1038 around this, you can perform window layout (for example by sending a
1039 size event to the parent window), and then call this function, before
1040 showing the top-level window.
1042 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1044 def IsSplit(*args
, **kwargs
):
1046 IsSplit(self) -> bool
1048 Is the window split?
1050 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1052 def SetSashSize(*args
, **kwargs
):
1054 SetSashSize(self, int width)
1058 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1060 def SetBorderSize(*args
, **kwargs
):
1062 SetBorderSize(self, int width)
1064 Sets the border size. Currently a NOP.
1066 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1068 def GetSashSize(*args
, **kwargs
):
1070 GetSashSize(self) -> int
1074 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1076 def GetBorderSize(*args
, **kwargs
):
1078 GetBorderSize(self) -> int
1080 Gets the border size
1082 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1084 def SetSashPosition(*args
, **kwargs
):
1086 SetSashPosition(self, int position, bool redraw=True)
1088 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1089 are resized and the sash and border are redrawn.
1091 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1093 def GetSashPosition(*args
, **kwargs
):
1095 GetSashPosition(self) -> int
1097 Returns the surrent sash position.
1099 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1101 def SetSashGravity(*args
, **kwargs
):
1103 SetSashGravity(self, double gravity)
1105 Set the sash gravity. Gravity is a floating-point factor between 0.0
1106 and 1.0 which controls position of sash while resizing the
1107 `wx.SplitterWindow`. The gravity specifies how much the left/top
1108 window will grow while resizing.
1110 return _windows_
.SplitterWindow_SetSashGravity(*args
, **kwargs
)
1112 def GetSashGravity(*args
, **kwargs
):
1114 GetSashGravity(self) -> double
1116 Gets the sash gravity.
1118 :see: `SetSashGravity`
1121 return _windows_
.SplitterWindow_GetSashGravity(*args
, **kwargs
)
1123 def SetMinimumPaneSize(*args
, **kwargs
):
1125 SetMinimumPaneSize(self, int min)
1127 Sets the minimum pane size in pixels.
1129 The default minimum pane size is zero, which means that either pane
1130 can be reduced to zero by dragging the sash, thus removing one of the
1131 panes. To prevent this behaviour (and veto out-of-range sash
1132 dragging), set a minimum size, for example 20 pixels. If the
1133 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1134 the window may be unsplit even if minimum size is non-zero.
1136 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1138 def GetMinimumPaneSize(*args
, **kwargs
):
1140 GetMinimumPaneSize(self) -> int
1142 Gets the minimum pane size in pixels.
1144 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1146 def SashHitTest(*args
, **kwargs
):
1148 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1150 Tests for x, y over the sash
1152 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1154 def SizeWindows(*args
, **kwargs
):
1160 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1162 def SetNeedUpdating(*args
, **kwargs
):
1163 """SetNeedUpdating(self, bool needUpdating)"""
1164 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1166 def GetNeedUpdating(*args
, **kwargs
):
1167 """GetNeedUpdating(self) -> bool"""
1168 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1170 def GetClassDefaultAttributes(*args
, **kwargs
):
1172 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1174 Get the default attributes for this class. This is useful if you want
1175 to use the same font or colour in your own control as in a standard
1176 control -- which is a much better idea than hard coding specific
1177 colours or fonts which might look completely out of place on the
1178 user's system, especially if it uses themes.
1180 The variant parameter is only relevant under Mac currently and is
1181 ignore under other platforms. Under Mac, it will change the size of
1182 the returned font. See `wx.Window.SetWindowVariant` for more about
1185 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1187 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1188 _windows_
.SplitterWindow_swigregister(SplitterWindow
)
1189 SplitterNameStr
= cvar
.SplitterNameStr
1191 def PreSplitterWindow(*args
, **kwargs
):
1193 PreSplitterWindow() -> SplitterWindow
1195 Precreate a SplitterWindow for 2-phase creation.
1197 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1200 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1202 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1204 Get the default attributes for this class. This is useful if you want
1205 to use the same font or colour in your own control as in a standard
1206 control -- which is a much better idea than hard coding specific
1207 colours or fonts which might look completely out of place on the
1208 user's system, especially if it uses themes.
1210 The variant parameter is only relevant under Mac currently and is
1211 ignore under other platforms. Under Mac, it will change the size of
1212 the returned font. See `wx.Window.SetWindowVariant` for more about
1215 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1217 class SplitterEvent(_core
.NotifyEvent
):
1218 """This class represents the events generated by a splitter control."""
1219 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1220 __repr__
= _swig_repr
1221 def __init__(self
, *args
, **kwargs
):
1223 __init__(self, EventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1225 This class represents the events generated by a splitter control.
1227 _windows_
.SplitterEvent_swiginit(self
,_windows_
.new_SplitterEvent(*args
, **kwargs
))
1228 def SetSashPosition(*args
, **kwargs
):
1230 SetSashPosition(self, int pos)
1232 This function is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1233 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1234 events, sets the the new sash position. In the case of _CHANGING
1235 events, sets the new tracking bar position so visual feedback during
1236 dragging will represent that change that will actually take place. Set
1237 to -1 from the event handler code to prevent repositioning.
1239 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1241 def GetSashPosition(*args
, **kwargs
):
1243 GetSashPosition(self) -> int
1245 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1246 and EVT_SPLITTER_SASH_POS_CHANGED events.
1248 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1250 def GetWindowBeingRemoved(*args
, **kwargs
):
1252 GetWindowBeingRemoved(self) -> Window
1254 Returns a pointer to the window being removed when a splitter window
1257 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1259 def GetX(*args
, **kwargs
):
1263 Returns the x coordinate of the double-click point in a
1264 EVT_SPLITTER_DCLICK event.
1266 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1268 def GetY(*args
, **kwargs
):
1272 Returns the y coordinate of the double-click point in a
1273 EVT_SPLITTER_DCLICK event.
1275 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1277 _windows_
.SplitterEvent_swigregister(SplitterEvent
)
1279 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1280 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1281 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1282 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1283 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1284 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1285 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1286 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1287 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1289 #---------------------------------------------------------------------------
1291 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1292 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1293 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1294 SW_NOBORDER
= _windows_
.SW_NOBORDER
1295 SW_BORDER
= _windows_
.SW_BORDER
1296 SW_3DSASH
= _windows_
.SW_3DSASH
1297 SW_3DBORDER
= _windows_
.SW_3DBORDER
1298 SW_3D
= _windows_
.SW_3D
1299 SASH_TOP
= _windows_
.SASH_TOP
1300 SASH_RIGHT
= _windows_
.SASH_RIGHT
1301 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1302 SASH_LEFT
= _windows_
.SASH_LEFT
1303 SASH_NONE
= _windows_
.SASH_NONE
1304 class SashWindow(_core
.Window
):
1305 """Proxy of C++ SashWindow class"""
1306 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1307 __repr__
= _swig_repr
1308 def __init__(self
, *args
, **kwargs
):
1310 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1311 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1312 String name=SashNameStr) -> SashWindow
1314 _windows_
.SashWindow_swiginit(self
,_windows_
.new_SashWindow(*args
, **kwargs
))
1315 self
._setOORInfo
(self
)
1317 def Create(*args
, **kwargs
):
1319 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1320 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1321 String name=SashNameStr) -> bool
1323 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1325 def SetSashVisible(*args
, **kwargs
):
1326 """SetSashVisible(self, int edge, bool sash)"""
1327 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1329 def GetSashVisible(*args
, **kwargs
):
1330 """GetSashVisible(self, int edge) -> bool"""
1331 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1333 def SetSashBorder(*args
, **kwargs
):
1334 """SetSashBorder(self, int edge, bool border)"""
1335 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1337 def HasBorder(*args
, **kwargs
):
1338 """HasBorder(self, int edge) -> bool"""
1339 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1341 def GetEdgeMargin(*args
, **kwargs
):
1342 """GetEdgeMargin(self, int edge) -> int"""
1343 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1345 def SetDefaultBorderSize(*args
, **kwargs
):
1346 """SetDefaultBorderSize(self, int width)"""
1347 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1349 def GetDefaultBorderSize(*args
, **kwargs
):
1350 """GetDefaultBorderSize(self) -> int"""
1351 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1353 def SetExtraBorderSize(*args
, **kwargs
):
1354 """SetExtraBorderSize(self, int width)"""
1355 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1357 def GetExtraBorderSize(*args
, **kwargs
):
1358 """GetExtraBorderSize(self) -> int"""
1359 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1361 def SetMinimumSizeX(*args
, **kwargs
):
1362 """SetMinimumSizeX(self, int min)"""
1363 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1365 def SetMinimumSizeY(*args
, **kwargs
):
1366 """SetMinimumSizeY(self, int min)"""
1367 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1369 def GetMinimumSizeX(*args
, **kwargs
):
1370 """GetMinimumSizeX(self) -> int"""
1371 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1373 def GetMinimumSizeY(*args
, **kwargs
):
1374 """GetMinimumSizeY(self) -> int"""
1375 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1377 def SetMaximumSizeX(*args
, **kwargs
):
1378 """SetMaximumSizeX(self, int max)"""
1379 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1381 def SetMaximumSizeY(*args
, **kwargs
):
1382 """SetMaximumSizeY(self, int max)"""
1383 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1385 def GetMaximumSizeX(*args
, **kwargs
):
1386 """GetMaximumSizeX(self) -> int"""
1387 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1389 def GetMaximumSizeY(*args
, **kwargs
):
1390 """GetMaximumSizeY(self) -> int"""
1391 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1393 def SashHitTest(*args
, **kwargs
):
1394 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1395 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1397 def SizeWindows(*args
, **kwargs
):
1398 """SizeWindows(self)"""
1399 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1401 _windows_
.SashWindow_swigregister(SashWindow
)
1402 SashNameStr
= cvar
.SashNameStr
1403 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1405 def PreSashWindow(*args
, **kwargs
):
1406 """PreSashWindow() -> SashWindow"""
1407 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1410 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1411 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1412 class SashEvent(_core
.CommandEvent
):
1413 """Proxy of C++ SashEvent class"""
1414 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1415 __repr__
= _swig_repr
1416 def __init__(self
, *args
, **kwargs
):
1417 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1418 _windows_
.SashEvent_swiginit(self
,_windows_
.new_SashEvent(*args
, **kwargs
))
1419 def SetEdge(*args
, **kwargs
):
1420 """SetEdge(self, int edge)"""
1421 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1423 def GetEdge(*args
, **kwargs
):
1424 """GetEdge(self) -> int"""
1425 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1427 def SetDragRect(*args
, **kwargs
):
1428 """SetDragRect(self, Rect rect)"""
1429 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1431 def GetDragRect(*args
, **kwargs
):
1432 """GetDragRect(self) -> Rect"""
1433 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1435 def SetDragStatus(*args
, **kwargs
):
1436 """SetDragStatus(self, int status)"""
1437 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1439 def GetDragStatus(*args
, **kwargs
):
1440 """GetDragStatus(self) -> int"""
1441 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1443 _windows_
.SashEvent_swigregister(SashEvent
)
1445 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1446 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1447 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1449 #---------------------------------------------------------------------------
1451 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1452 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1453 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1454 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1455 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1456 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1457 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1458 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1459 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1460 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1461 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1462 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1463 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1464 class QueryLayoutInfoEvent(_core
.Event
):
1465 """Proxy of C++ QueryLayoutInfoEvent class"""
1466 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1467 __repr__
= _swig_repr
1468 def __init__(self
, *args
, **kwargs
):
1469 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1470 _windows_
.QueryLayoutInfoEvent_swiginit(self
,_windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
))
1471 def SetRequestedLength(*args
, **kwargs
):
1472 """SetRequestedLength(self, int length)"""
1473 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1475 def GetRequestedLength(*args
, **kwargs
):
1476 """GetRequestedLength(self) -> int"""
1477 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1479 def SetFlags(*args
, **kwargs
):
1480 """SetFlags(self, int flags)"""
1481 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1483 def GetFlags(*args
, **kwargs
):
1484 """GetFlags(self) -> int"""
1485 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1487 def SetSize(*args
, **kwargs
):
1488 """SetSize(self, Size size)"""
1489 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1491 def GetSize(*args
, **kwargs
):
1492 """GetSize(self) -> Size"""
1493 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1495 def SetOrientation(*args
, **kwargs
):
1496 """SetOrientation(self, int orient)"""
1497 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1499 def GetOrientation(*args
, **kwargs
):
1500 """GetOrientation(self) -> int"""
1501 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1503 def SetAlignment(*args
, **kwargs
):
1504 """SetAlignment(self, int align)"""
1505 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1507 def GetAlignment(*args
, **kwargs
):
1508 """GetAlignment(self) -> int"""
1509 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1511 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEvent
)
1513 class CalculateLayoutEvent(_core
.Event
):
1514 """Proxy of C++ CalculateLayoutEvent class"""
1515 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1516 __repr__
= _swig_repr
1517 def __init__(self
, *args
, **kwargs
):
1518 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1519 _windows_
.CalculateLayoutEvent_swiginit(self
,_windows_
.new_CalculateLayoutEvent(*args
, **kwargs
))
1520 def SetFlags(*args
, **kwargs
):
1521 """SetFlags(self, int flags)"""
1522 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1524 def GetFlags(*args
, **kwargs
):
1525 """GetFlags(self) -> int"""
1526 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1528 def SetRect(*args
, **kwargs
):
1529 """SetRect(self, Rect rect)"""
1530 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1532 def GetRect(*args
, **kwargs
):
1533 """GetRect(self) -> Rect"""
1534 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1536 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEvent
)
1538 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1539 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1541 class SashLayoutWindow(SashWindow
):
1542 """Proxy of C++ SashLayoutWindow class"""
1543 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1544 __repr__
= _swig_repr
1545 def __init__(self
, *args
, **kwargs
):
1547 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1548 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1549 String name=SashLayoutNameStr) -> SashLayoutWindow
1551 _windows_
.SashLayoutWindow_swiginit(self
,_windows_
.new_SashLayoutWindow(*args
, **kwargs
))
1552 self
._setOORInfo
(self
)
1554 def Create(*args
, **kwargs
):
1556 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1557 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1558 String name=SashLayoutNameStr) -> bool
1560 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1562 def GetAlignment(*args
, **kwargs
):
1563 """GetAlignment(self) -> int"""
1564 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1566 def GetOrientation(*args
, **kwargs
):
1567 """GetOrientation(self) -> int"""
1568 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1570 def SetAlignment(*args
, **kwargs
):
1571 """SetAlignment(self, int alignment)"""
1572 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1574 def SetDefaultSize(*args
, **kwargs
):
1575 """SetDefaultSize(self, Size size)"""
1576 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1578 def SetOrientation(*args
, **kwargs
):
1579 """SetOrientation(self, int orientation)"""
1580 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1582 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindow
)
1584 def PreSashLayoutWindow(*args
, **kwargs
):
1585 """PreSashLayoutWindow() -> SashLayoutWindow"""
1586 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1589 class LayoutAlgorithm(_core
.Object
):
1590 """Proxy of C++ LayoutAlgorithm class"""
1591 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1592 __repr__
= _swig_repr
1593 def __init__(self
, *args
, **kwargs
):
1594 """__init__(self) -> LayoutAlgorithm"""
1595 _windows_
.LayoutAlgorithm_swiginit(self
,_windows_
.new_LayoutAlgorithm(*args
, **kwargs
))
1596 __swig_destroy__
= _windows_
.delete_LayoutAlgorithm
1597 __del__
= lambda self
: None;
1598 def LayoutMDIFrame(*args
, **kwargs
):
1599 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1600 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1602 def LayoutFrame(*args
, **kwargs
):
1603 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1604 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1606 def LayoutWindow(*args
, **kwargs
):
1607 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1608 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1610 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithm
)
1612 class PopupWindow(_core
.Window
):
1613 """Proxy of C++ PopupWindow class"""
1614 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1615 __repr__
= _swig_repr
1616 def __init__(self
, *args
, **kwargs
):
1617 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1618 _windows_
.PopupWindow_swiginit(self
,_windows_
.new_PopupWindow(*args
, **kwargs
))
1619 _windows_
.PopupWindow_swigregister(PopupWindow
)
1621 def PrePopupWindow(*args
, **kwargs
):
1622 """PrePopupWindow() -> PopupWindow"""
1623 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1626 class PopupTransientWindow(PopupWindow
):
1627 """Proxy of C++ PopupTransientWindow class"""
1628 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1629 __repr__
= _swig_repr
1630 def __init__(self
, *args
, **kwargs
):
1631 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1632 _windows_
.PopupTransientWindow_swiginit(self
,_windows_
.new_PopupTransientWindow(*args
, **kwargs
))
1633 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindow
)
1635 def PrePopupTransientWindow(*args
, **kwargs
):
1636 """PrePopupTransientWindow() -> PopupTransientWindow"""
1637 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1640 #---------------------------------------------------------------------------
1642 class TipWindow(Frame
):
1643 """Proxy of C++ TipWindow class"""
1644 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1645 __repr__
= _swig_repr
1646 def __init__(self
, *args
, **kwargs
):
1647 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1648 _windows_
.TipWindow_swiginit(self
,_windows_
.new_TipWindow(*args
, **kwargs
))
1649 self
._setOORInfo
(self
)
1651 def SetBoundingRect(*args
, **kwargs
):
1652 """SetBoundingRect(self, Rect rectBound)"""
1653 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1655 def Close(*args
, **kwargs
):
1659 This function simply generates a EVT_CLOSE event whose handler usually
1660 tries to close the window. It doesn't close the window itself,
1661 however. If force is False (the default) then the window's close
1662 handler will be allowed to veto the destruction of the window.
1664 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1666 _windows_
.TipWindow_swigregister(TipWindow
)
1668 #---------------------------------------------------------------------------
1670 class VScrolledWindow(Panel
):
1671 """Proxy of C++ VScrolledWindow class"""
1672 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1673 __repr__
= _swig_repr
1674 def __init__(self
, *args
, **kwargs
):
1676 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1677 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1679 _windows_
.VScrolledWindow_swiginit(self
,_windows_
.new_VScrolledWindow(*args
, **kwargs
))
1680 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1682 def _setCallbackInfo(*args
, **kwargs
):
1683 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1684 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1686 def Create(*args
, **kwargs
):
1688 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1689 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1691 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1693 def SetLineCount(*args
, **kwargs
):
1694 """SetLineCount(self, size_t count)"""
1695 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1697 def ScrollToLine(*args
, **kwargs
):
1698 """ScrollToLine(self, size_t line) -> bool"""
1699 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1701 def RefreshLine(*args
, **kwargs
):
1702 """RefreshLine(self, size_t line)"""
1703 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1705 def RefreshLines(*args
, **kwargs
):
1706 """RefreshLines(self, size_t from, size_t to)"""
1707 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1709 def HitTestXY(*args
, **kwargs
):
1711 HitTestXY(self, int x, int y) -> int
1713 Test where the given (in client coords) point lies
1715 return _windows_
.VScrolledWindow_HitTestXY(*args
, **kwargs
)
1717 def HitTest(*args
, **kwargs
):
1719 HitTest(self, Point pt) -> int
1721 Test where the given (in client coords) point lies
1723 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1725 def RefreshAll(*args
, **kwargs
):
1726 """RefreshAll(self)"""
1727 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1729 def GetLineCount(*args
, **kwargs
):
1730 """GetLineCount(self) -> size_t"""
1731 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1733 def GetVisibleBegin(*args
, **kwargs
):
1734 """GetVisibleBegin(self) -> size_t"""
1735 return _windows_
.VScrolledWindow_GetVisibleBegin(*args
, **kwargs
)
1737 def GetVisibleEnd(*args
, **kwargs
):
1738 """GetVisibleEnd(self) -> size_t"""
1739 return _windows_
.VScrolledWindow_GetVisibleEnd(*args
, **kwargs
)
1741 def IsVisible(*args
, **kwargs
):
1742 """IsVisible(self, size_t line) -> bool"""
1743 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1745 def GetFirstVisibleLine(*args
, **kwargs
):
1746 """GetFirstVisibleLine(self) -> size_t"""
1747 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1749 def GetLastVisibleLine(*args
, **kwargs
):
1750 """GetLastVisibleLine(self) -> size_t"""
1751 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1753 def FindFirstFromBottom(*args
, **kwargs
):
1754 """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t"""
1755 return _windows_
.VScrolledWindow_FindFirstFromBottom(*args
, **kwargs
)
1757 def GetLinesHeight(*args
, **kwargs
):
1758 """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int"""
1759 return _windows_
.VScrolledWindow_GetLinesHeight(*args
, **kwargs
)
1761 _windows_
.VScrolledWindow_swigregister(VScrolledWindow
)
1763 def PreVScrolledWindow(*args
, **kwargs
):
1764 """PreVScrolledWindow() -> VScrolledWindow"""
1765 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1768 class VListBox(VScrolledWindow
):
1769 """Proxy of C++ VListBox class"""
1770 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1771 __repr__
= _swig_repr
1772 def __init__(self
, *args
, **kwargs
):
1774 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1775 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1777 _windows_
.VListBox_swiginit(self
,_windows_
.new_VListBox(*args
, **kwargs
))
1778 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1780 def _setCallbackInfo(*args
, **kwargs
):
1781 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1782 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1784 def Create(*args
, **kwargs
):
1786 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1787 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1789 return _windows_
.VListBox_Create(*args
, **kwargs
)
1791 def GetItemCount(*args
, **kwargs
):
1792 """GetItemCount(self) -> size_t"""
1793 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1795 def HasMultipleSelection(*args
, **kwargs
):
1796 """HasMultipleSelection(self) -> bool"""
1797 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1799 def GetSelection(*args
, **kwargs
):
1800 """GetSelection(self) -> int"""
1801 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1803 def IsCurrent(*args
, **kwargs
):
1804 """IsCurrent(self, size_t item) -> bool"""
1805 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1807 def IsSelected(*args
, **kwargs
):
1808 """IsSelected(self, size_t item) -> bool"""
1809 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1811 def GetSelectedCount(*args
, **kwargs
):
1812 """GetSelectedCount(self) -> size_t"""
1813 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1815 def GetFirstSelected(*args
, **kwargs
):
1816 """GetFirstSelected(self) -> PyObject"""
1817 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1819 def GetNextSelected(*args
, **kwargs
):
1820 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1821 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1823 def GetMargins(*args
, **kwargs
):
1824 """GetMargins(self) -> Point"""
1825 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1827 def GetSelectionBackground(*args
, **kwargs
):
1828 """GetSelectionBackground(self) -> Colour"""
1829 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1831 def SetItemCount(*args
, **kwargs
):
1832 """SetItemCount(self, size_t count)"""
1833 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1835 def Clear(*args
, **kwargs
):
1837 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1839 def SetSelection(*args
, **kwargs
):
1840 """SetSelection(self, int selection)"""
1841 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1843 def Select(*args
, **kwargs
):
1844 """Select(self, size_t item, bool select=True) -> bool"""
1845 return _windows_
.VListBox_Select(*args
, **kwargs
)
1847 def SelectRange(*args
, **kwargs
):
1848 """SelectRange(self, size_t from, size_t to) -> bool"""
1849 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1851 def Toggle(*args
, **kwargs
):
1852 """Toggle(self, size_t item)"""
1853 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1855 def SelectAll(*args
, **kwargs
):
1856 """SelectAll(self) -> bool"""
1857 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1859 def DeselectAll(*args
, **kwargs
):
1860 """DeselectAll(self) -> bool"""
1861 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1863 def SetMargins(*args
, **kwargs
):
1864 """SetMargins(self, Point pt)"""
1865 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1867 def SetMarginsXY(*args
, **kwargs
):
1868 """SetMarginsXY(self, int x, int y)"""
1869 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1871 def SetSelectionBackground(*args
, **kwargs
):
1872 """SetSelectionBackground(self, Colour col)"""
1873 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1875 def OnDrawSeparator(*args
, **kwargs
):
1876 """OnDrawSeparator(self, DC dc, Rect rect, size_t n)"""
1877 return _windows_
.VListBox_OnDrawSeparator(*args
, **kwargs
)
1879 def OnDrawBackground(*args
, **kwargs
):
1880 """OnDrawBackground(self, DC dc, Rect rect, size_t n)"""
1881 return _windows_
.VListBox_OnDrawBackground(*args
, **kwargs
)
1883 _windows_
.VListBox_swigregister(VListBox
)
1884 VListBoxNameStr
= cvar
.VListBoxNameStr
1886 def PreVListBox(*args
, **kwargs
):
1887 """PreVListBox() -> VListBox"""
1888 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1891 class HtmlListBox(VListBox
):
1892 """Proxy of C++ HtmlListBox class"""
1893 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1894 __repr__
= _swig_repr
1895 def __init__(self
, *args
, **kwargs
):
1897 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1898 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1900 _windows_
.HtmlListBox_swiginit(self
,_windows_
.new_HtmlListBox(*args
, **kwargs
))
1901 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1903 def _setCallbackInfo(*args
, **kwargs
):
1904 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1905 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1907 def Create(*args
, **kwargs
):
1909 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1910 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1912 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1914 def SetItemCount(*args
, **kwargs
):
1915 """SetItemCount(self, size_t count)"""
1916 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1918 def GetFileSystem(*args
, **kwargs
):
1919 """GetFileSystem(self) -> FileSystem"""
1920 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
1922 def OnLinkClicked(*args
, **kwargs
):
1923 """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)"""
1924 return _windows_
.HtmlListBox_OnLinkClicked(*args
, **kwargs
)
1926 _windows_
.HtmlListBox_swigregister(HtmlListBox
)
1928 def PreHtmlListBox(*args
, **kwargs
):
1929 """PreHtmlListBox() -> HtmlListBox"""
1930 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
1933 #---------------------------------------------------------------------------
1935 class TaskBarIcon(_core
.EvtHandler
):
1936 """Proxy of C++ TaskBarIcon class"""
1937 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1938 __repr__
= _swig_repr
1939 def __init__(self
, *args
, **kwargs
):
1940 """__init__(self) -> TaskBarIcon"""
1941 _windows_
.TaskBarIcon_swiginit(self
,_windows_
.new_TaskBarIcon(*args
, **kwargs
))
1942 self
._setCallbackInfo
(self
, TaskBarIcon
, 0)
1944 __swig_destroy__
= _windows_
.delete_TaskBarIcon
1945 __del__
= lambda self
: None;
1946 def _setCallbackInfo(*args
, **kwargs
):
1947 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
1948 return _windows_
.TaskBarIcon__setCallbackInfo(*args
, **kwargs
)
1950 def Destroy(*args
, **kwargs
):
1954 Deletes the C++ object this Python object is a proxy for.
1956 val
= _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
1960 def IsOk(*args
, **kwargs
):
1961 """IsOk(self) -> bool"""
1962 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
1964 def __nonzero__(self
): return self
.IsOk()
1965 def IsIconInstalled(*args
, **kwargs
):
1966 """IsIconInstalled(self) -> bool"""
1967 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
1969 def SetIcon(*args
, **kwargs
):
1970 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
1971 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
1973 def RemoveIcon(*args
, **kwargs
):
1974 """RemoveIcon(self) -> bool"""
1975 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
1977 def PopupMenu(*args
, **kwargs
):
1978 """PopupMenu(self, Menu menu) -> bool"""
1979 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
1981 _windows_
.TaskBarIcon_swigregister(TaskBarIcon
)
1983 class TaskBarIconEvent(_core
.Event
):
1984 """Proxy of C++ TaskBarIconEvent class"""
1985 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1986 __repr__
= _swig_repr
1987 def __init__(self
, *args
, **kwargs
):
1988 """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
1989 _windows_
.TaskBarIconEvent_swiginit(self
,_windows_
.new_TaskBarIconEvent(*args
, **kwargs
))
1990 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEvent
)
1992 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
1993 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
1994 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
1995 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
1996 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
1997 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
1998 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
1999 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2000 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2001 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2002 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2003 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2004 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2005 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2007 #---------------------------------------------------------------------------
2009 class ColourData(_core
.Object
):
2011 This class holds a variety of information related to the colour
2012 chooser dialog, used to transfer settings and results to and from the
2015 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2016 __repr__
= _swig_repr
2017 def __init__(self
, *args
, **kwargs
):
2019 __init__(self) -> ColourData
2021 Constructor, sets default values.
2023 _windows_
.ColourData_swiginit(self
,_windows_
.new_ColourData(*args
, **kwargs
))
2024 __swig_destroy__
= _windows_
.delete_ColourData
2025 __del__
= lambda self
: None;
2026 def GetChooseFull(*args
, **kwargs
):
2028 GetChooseFull(self) -> bool
2030 Under Windows, determines whether the Windows colour dialog will
2031 display the full dialog with custom colour selection controls. Has no
2032 meaning under other platforms. The default value is true.
2034 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2036 def GetColour(*args
, **kwargs
):
2038 GetColour(self) -> Colour
2040 Gets the colour (pre)selected by the dialog.
2042 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2044 def GetCustomColour(*args
, **kwargs
):
2046 GetCustomColour(self, int i) -> Colour
2048 Gets the i'th custom colour associated with the colour dialog. i
2049 should be an integer between 0 and 15. The default custom colours are
2050 all invalid colours.
2052 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2054 def SetChooseFull(*args
, **kwargs
):
2056 SetChooseFull(self, int flag)
2058 Under Windows, tells the Windows colour dialog to display the full
2059 dialog with custom colour selection controls. Under other platforms,
2060 has no effect. The default value is true.
2062 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2064 def SetColour(*args
, **kwargs
):
2066 SetColour(self, Colour colour)
2068 Sets the default colour for the colour dialog. The default colour is
2071 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2073 def SetCustomColour(*args
, **kwargs
):
2075 SetCustomColour(self, int i, Colour colour)
2077 Sets the i'th custom colour for the colour dialog. i should be an
2078 integer between 0 and 15. The default custom colours are all invalid colours.
2080 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2082 _windows_
.ColourData_swigregister(ColourData
)
2083 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2084 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2085 DirDialogNameStr
= cvar
.DirDialogNameStr
2086 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2087 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2088 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2090 class ColourDialog(Dialog
):
2091 """This class represents the colour chooser dialog."""
2092 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2093 __repr__
= _swig_repr
2094 def __init__(self
, *args
, **kwargs
):
2096 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2098 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2099 which will be copied to the colour dialog's internal ColourData
2102 _windows_
.ColourDialog_swiginit(self
,_windows_
.new_ColourDialog(*args
, **kwargs
))
2103 self
._setOORInfo
(self
)
2105 def GetColourData(*args
, **kwargs
):
2107 GetColourData(self) -> ColourData
2109 Returns a reference to the `wx.ColourData` used by the dialog.
2111 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2113 _windows_
.ColourDialog_swigregister(ColourDialog
)
2116 def GetColourFromUser(*args
, **kwargs
):
2118 GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour,
2119 String caption=EmptyString) -> Colour
2121 return _windows_
.GetColourFromUser(*args
, **kwargs
)
2122 DD_NEW_DIR_BUTTON
= _windows_
.DD_NEW_DIR_BUTTON
2123 DD_DEFAULT_STYLE
= _windows_
.DD_DEFAULT_STYLE
2124 DD_CHANGE_DIR
= _windows_
.DD_CHANGE_DIR
2125 class DirDialog(Dialog
):
2127 wx.DirDialog allows the user to select a directory by browising the
2130 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2131 __repr__
= _swig_repr
2132 def __init__(self
, *args
, **kwargs
):
2134 __init__(self, Window parent, String message=DirSelectorPromptStr,
2135 String defaultPath=EmptyString, long style=DD_DEFAULT_STYLE,
2136 Point pos=DefaultPosition, Size size=DefaultSize,
2137 String name=DirDialogNameStr) -> DirDialog
2139 Constructor. Use ShowModal method to show the dialog.
2141 _windows_
.DirDialog_swiginit(self
,_windows_
.new_DirDialog(*args
, **kwargs
))
2142 self
._setOORInfo
(self
)
2144 def GetPath(*args
, **kwargs
):
2146 GetPath(self) -> String
2148 Returns the default or user-selected path.
2150 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2152 def GetMessage(*args
, **kwargs
):
2154 GetMessage(self) -> String
2156 Returns the message that will be displayed on the dialog.
2158 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2160 def SetMessage(*args
, **kwargs
):
2162 SetMessage(self, String message)
2164 Sets the message that will be displayed on the dialog.
2166 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2168 def SetPath(*args
, **kwargs
):
2170 SetPath(self, String path)
2172 Sets the default path.
2174 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2176 _windows_
.DirDialog_swigregister(DirDialog
)
2178 OPEN
= _windows_
.OPEN
2179 SAVE
= _windows_
.SAVE
2180 OVERWRITE_PROMPT
= _windows_
.OVERWRITE_PROMPT
2181 FILE_MUST_EXIST
= _windows_
.FILE_MUST_EXIST
2182 MULTIPLE
= _windows_
.MULTIPLE
2183 CHANGE_DIR
= _windows_
.CHANGE_DIR
2184 FD_OPEN
= _windows_
.FD_OPEN
2185 FD_SAVE
= _windows_
.FD_SAVE
2186 FD_OVERWRITE_PROMPT
= _windows_
.FD_OVERWRITE_PROMPT
2187 FD_FILE_MUST_EXIST
= _windows_
.FD_FILE_MUST_EXIST
2188 FD_MULTIPLE
= _windows_
.FD_MULTIPLE
2189 FD_CHANGE_DIR
= _windows_
.FD_CHANGE_DIR
2190 FD_DEFAULT_STYLE
= _windows_
.FD_DEFAULT_STYLE
2191 class FileDialog(Dialog
):
2193 wx.FileDialog allows the user to select one or more files from the
2196 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2197 __repr__
= _swig_repr
2198 def __init__(self
, *args
, **kwargs
):
2200 __init__(self, Window parent, String message=FileSelectorPromptStr,
2201 String defaultDir=EmptyString, String defaultFile=EmptyString,
2202 String wildcard=FileSelectorDefaultWildcardStr,
2203 long style=FD_DEFAULT_STYLE,
2204 Point pos=DefaultPosition) -> FileDialog
2206 Constructor. Use ShowModal method to show the dialog.
2208 _windows_
.FileDialog_swiginit(self
,_windows_
.new_FileDialog(*args
, **kwargs
))
2209 self
._setOORInfo
(self
)
2211 def SetMessage(*args
, **kwargs
):
2213 SetMessage(self, String message)
2215 Sets the message that will be displayed on the dialog.
2217 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2219 def SetPath(*args
, **kwargs
):
2221 SetPath(self, String path)
2223 Sets the path (the combined directory and filename that will be
2224 returned when the dialog is dismissed).
2226 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2228 def SetDirectory(*args
, **kwargs
):
2230 SetDirectory(self, String dir)
2232 Sets the default directory.
2234 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2236 def SetFilename(*args
, **kwargs
):
2238 SetFilename(self, String name)
2240 Sets the default filename.
2242 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2244 def SetWildcard(*args
, **kwargs
):
2246 SetWildcard(self, String wildCard)
2248 Sets the wildcard, which can contain multiple file types, for
2251 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2254 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2256 def SetFilterIndex(*args
, **kwargs
):
2258 SetFilterIndex(self, int filterIndex)
2260 Sets the default filter index, starting from zero.
2262 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2264 def GetMessage(*args
, **kwargs
):
2266 GetMessage(self) -> String
2268 Returns the message that will be displayed on the dialog.
2270 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2272 def GetPath(*args
, **kwargs
):
2274 GetPath(self) -> String
2276 Returns the full path (directory and filename) of the selected file.
2278 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2280 def GetDirectory(*args
, **kwargs
):
2282 GetDirectory(self) -> String
2284 Returns the default directory.
2286 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2288 def GetFilename(*args
, **kwargs
):
2290 GetFilename(self) -> String
2292 Returns the default filename.
2294 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2296 def GetWildcard(*args
, **kwargs
):
2298 GetWildcard(self) -> String
2300 Returns the file dialog wildcard.
2302 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2304 def GetFilterIndex(*args
, **kwargs
):
2306 GetFilterIndex(self) -> int
2308 Returns the index into the list of filters supplied, optionally, in
2309 the wildcard parameter. Before the dialog is shown, this is the index
2310 which will be used when the dialog is first displayed. After the
2311 dialog is shown, this is the index selected by the user.
2313 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2315 def GetFilenames(*args
, **kwargs
):
2317 GetFilenames(self) -> PyObject
2319 Returns a list of filenames chosen in the dialog. This function
2320 should only be used with the dialogs which have wx.MULTIPLE style, use
2321 GetFilename for the others.
2323 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2325 def GetPaths(*args
, **kwargs
):
2327 GetPaths(self) -> PyObject
2329 Fills the array paths with the full paths of the files chosen. This
2330 function should only be used with the dialogs which have wx.MULTIPLE
2331 style, use GetPath for the others.
2333 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2335 _windows_
.FileDialog_swigregister(FileDialog
)
2337 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2338 class MultiChoiceDialog(Dialog
):
2339 """A simple dialog with a multi selection listbox."""
2340 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2341 __repr__
= _swig_repr
2342 def __init__(self
, *args
, **kwargs
):
2344 __init__(self, Window parent, String message, String caption,
2345 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2346 Point pos=DefaultPosition) -> MultiChoiceDialog
2348 Constructor. Use the `ShowModal` method to show the dialog.
2350 :param parent: The parent window.
2351 :param message: Text to display above the list of selections.
2352 :param caption: Text to use in the title bar of the dialog.
2353 :param choices: A list of strings or unicode objects that the
2354 user is allowed to choose from.
2355 :param style: Styles to apply to the dialog. The default value is
2356 equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
2357 :param pos: Where to position the dialog (not used on Windows)
2361 _windows_
.MultiChoiceDialog_swiginit(self
,_windows_
.new_MultiChoiceDialog(*args
, **kwargs
))
2362 self
._setOORInfo
(self
)
2364 def SetSelections(*args
, **kwargs
):
2366 SetSelections(List selections)
2368 Specify the items in the list that should be selected, using a list of
2369 integers. The list should specify the indexes of the items that
2372 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2374 def GetSelections(*args
, **kwargs
):
2376 GetSelections() -> [selections]
2378 Returns a list of integers representing the items that are selected.
2379 If an item is selected then its index will appear in the list.
2381 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2383 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialog
)
2385 class SingleChoiceDialog(Dialog
):
2386 """A simple dialog with a single selection listbox."""
2387 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2388 __repr__
= _swig_repr
2389 def __init__(self
, *args
, **kwargs
):
2391 __init__(Window parent, String message, String caption,
2392 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2393 Point pos=DefaultPosition) -> SingleChoiceDialog
2395 Constructor. Use ShowModal method to show the dialog.
2397 _windows_
.SingleChoiceDialog_swiginit(self
,_windows_
.new_SingleChoiceDialog(*args
, **kwargs
))
2398 self
._setOORInfo
(self
)
2400 def GetSelection(*args
, **kwargs
):
2402 GetSelection(self) -> int
2404 Get the index of teh currently selected item.
2406 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2408 def GetStringSelection(*args
, **kwargs
):
2410 GetStringSelection(self) -> String
2412 Returns the string value of the currently selected item
2414 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2416 def SetSelection(*args
, **kwargs
):
2418 SetSelection(self, int sel)
2420 Set the current selected item to sel
2422 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2424 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialog
)
2426 TextEntryDialogStyle
= _windows_
.TextEntryDialogStyle
2427 class TextEntryDialog(Dialog
):
2428 """A dialog with text control, [ok] and [cancel] buttons"""
2429 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2430 __repr__
= _swig_repr
2431 def __init__(self
, *args
, **kwargs
):
2433 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2434 String defaultValue=EmptyString,
2435 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
2437 Constructor. Use ShowModal method to show the dialog.
2439 _windows_
.TextEntryDialog_swiginit(self
,_windows_
.new_TextEntryDialog(*args
, **kwargs
))
2440 self
._setOORInfo
(self
)
2442 def GetValue(*args
, **kwargs
):
2444 GetValue(self) -> String
2446 Returns the text that the user has entered if the user has pressed OK,
2447 or the original value if the user has pressed Cancel.
2449 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2451 def SetValue(*args
, **kwargs
):
2453 SetValue(self, String value)
2455 Sets the default text value.
2457 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2459 _windows_
.TextEntryDialog_swigregister(TextEntryDialog
)
2461 class PasswordEntryDialog(TextEntryDialog
):
2462 """Proxy of C++ PasswordEntryDialog class"""
2463 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2464 __repr__
= _swig_repr
2465 def __init__(self
, *args
, **kwargs
):
2467 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2468 String value=EmptyString,
2469 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
2471 _windows_
.PasswordEntryDialog_swiginit(self
,_windows_
.new_PasswordEntryDialog(*args
, **kwargs
))
2472 _windows_
.PasswordEntryDialog_swigregister(PasswordEntryDialog
)
2473 GetPasswordFromUserPromptStr
= cvar
.GetPasswordFromUserPromptStr
2475 class FontData(_core
.Object
):
2477 This class holds a variety of information related to font dialogs and
2478 is used to transfer settings to and results from a `wx.FontDialog`.
2480 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2481 __repr__
= _swig_repr
2482 def __init__(self
, *args
, **kwargs
):
2484 __init__(self) -> FontData
2486 This class holds a variety of information related to font dialogs and
2487 is used to transfer settings to and results from a `wx.FontDialog`.
2489 _windows_
.FontData_swiginit(self
,_windows_
.new_FontData(*args
, **kwargs
))
2490 __swig_destroy__
= _windows_
.delete_FontData
2491 __del__
= lambda self
: None;
2492 def EnableEffects(*args
, **kwargs
):
2494 EnableEffects(self, bool enable)
2496 Enables or disables 'effects' under MS Windows only. This refers to
2497 the controls for manipulating colour, strikeout and underline
2498 properties. The default value is true.
2500 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2502 def GetAllowSymbols(*args
, **kwargs
):
2504 GetAllowSymbols(self) -> bool
2506 Under MS Windows, returns a flag determining whether symbol fonts can
2507 be selected. Has no effect on other platforms. The default value is
2510 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2512 def GetColour(*args
, **kwargs
):
2514 GetColour(self) -> Colour
2516 Gets the colour associated with the font dialog. The default value is
2519 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2521 def GetChosenFont(*args
, **kwargs
):
2523 GetChosenFont(self) -> Font
2525 Gets the font chosen by the user.
2527 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2529 def GetEnableEffects(*args
, **kwargs
):
2531 GetEnableEffects(self) -> bool
2533 Determines whether 'effects' are enabled under Windows.
2535 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2537 def GetInitialFont(*args
, **kwargs
):
2539 GetInitialFont(self) -> Font
2541 Gets the font that will be initially used by the font dialog. This
2542 should have previously been set by the application.
2544 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2546 def GetShowHelp(*args
, **kwargs
):
2548 GetShowHelp(self) -> bool
2550 Returns true if the Help button will be shown (Windows only). The
2551 default value is false.
2553 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2555 def SetAllowSymbols(*args
, **kwargs
):
2557 SetAllowSymbols(self, bool allowSymbols)
2559 Under MS Windows, determines whether symbol fonts can be selected. Has
2560 no effect on other platforms. The default value is true.
2562 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2564 def SetChosenFont(*args
, **kwargs
):
2566 SetChosenFont(self, Font font)
2568 Sets the font that will be returned to the user (normally for internal
2571 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2573 def SetColour(*args
, **kwargs
):
2575 SetColour(self, Colour colour)
2577 Sets the colour that will be used for the font foreground colour. The
2578 default colour is black.
2580 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2582 def SetInitialFont(*args
, **kwargs
):
2584 SetInitialFont(self, Font font)
2586 Sets the font that will be initially used by the font dialog.
2588 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2590 def SetRange(*args
, **kwargs
):
2592 SetRange(self, int min, int max)
2594 Sets the valid range for the font point size (Windows only). The
2595 default is 0, 0 (unrestricted range).
2597 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2599 def SetShowHelp(*args
, **kwargs
):
2601 SetShowHelp(self, bool showHelp)
2603 Determines whether the Help button will be displayed in the font
2604 dialog (Windows only). The default value is false.
2606 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2608 _windows_
.FontData_swigregister(FontData
)
2610 class FontDialog(Dialog
):
2612 wx.FontDialog allows the user to select a system font and its attributes.
2617 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2618 __repr__
= _swig_repr
2619 def __init__(self
, *args
, **kwargs
):
2621 __init__(self, Window parent, FontData data) -> FontDialog
2623 Constructor. Pass a parent window and the `wx.FontData` object to be
2624 used to initialize the dialog controls. Call `ShowModal` to display
2625 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2626 results with via the `wx.FontData` returned by `GetFontData`.
2628 _windows_
.FontDialog_swiginit(self
,_windows_
.new_FontDialog(*args
, **kwargs
))
2629 self
._setOORInfo
(self
)
2631 def GetFontData(*args
, **kwargs
):
2633 GetFontData(self) -> FontData
2635 Returns a reference to the internal `wx.FontData` used by the
2638 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2640 _windows_
.FontDialog_swigregister(FontDialog
)
2643 def GetFontFromUser(*args
, **kwargs
):
2644 """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font"""
2645 return _windows_
.GetFontFromUser(*args
, **kwargs
)
2646 class MessageDialog(Dialog
):
2648 This class provides a simple dialog that shows a single or multi-line
2649 message, with a choice of OK, Yes, No and/or Cancel buttons.
2651 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2652 __repr__
= _swig_repr
2653 def __init__(self
, *args
, **kwargs
):
2655 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2656 long style=wxOK|wxCANCEL|wxCENTRE,
2657 Point pos=DefaultPosition) -> MessageDialog
2659 Constructor, use `ShowModal` to display the dialog.
2661 _windows_
.MessageDialog_swiginit(self
,_windows_
.new_MessageDialog(*args
, **kwargs
))
2662 self
._setOORInfo
(self
)
2664 _windows_
.MessageDialog_swigregister(MessageDialog
)
2666 class ProgressDialog(Frame
):
2668 A dialog that shows a short message and a progress bar. Optionally, it
2669 can display an ABORT button.
2671 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2672 __repr__
= _swig_repr
2673 def __init__(self
, *args
, **kwargs
):
2675 __init__(self, String title, String message, int maximum=100, Window parent=None,
2676 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2678 Constructor. Creates the dialog, displays it and disables user input
2679 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2682 _windows_
.ProgressDialog_swiginit(self
,_windows_
.new_ProgressDialog(*args
, **kwargs
))
2683 self
._setOORInfo
(self
)
2685 def Update(*args
, **kwargs
):
2687 Update(self, int value, String newmsg) --> (continue, skip)
2689 Updates the dialog, setting the progress bar to the new value and, if
2690 given changes the message above it. The value given should be less
2691 than or equal to the maximum value given to the constructor and the
2692 dialog is closed if it is equal to the maximum. Returns a tuple of
2693 boolean values, ``(continue, skip)`` where ``continue`` is ``True``
2694 unless the Cancel button has been pressed, and ``skip`` is ``False``
2695 unless the Skip button (if any) has been pressed.
2697 If the ``continue`` return value is ``false``, the application can either
2698 immediately destroy the dialog or ask the user for confirmation, and if the
2699 abort is not confirmed the dialog may be resumed with `Resume` function.
2702 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2704 def Resume(*args
, **kwargs
):
2708 Can be used to continue with the dialog, after the user had chosen to
2711 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2713 _windows_
.ProgressDialog_swigregister(ProgressDialog
)
2715 FR_DOWN
= _windows_
.FR_DOWN
2716 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2717 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2718 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2719 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2720 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2721 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2722 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2723 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2724 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2725 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2726 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2727 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2728 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2729 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2730 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2731 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2733 # For backwards compatibility. Should they be removed?
2734 EVT_COMMAND_FIND
= EVT_FIND
2735 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2736 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2737 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2738 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2740 class FindDialogEvent(_core
.CommandEvent
):
2741 """Events for the FindReplaceDialog"""
2742 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2743 __repr__
= _swig_repr
2744 def __init__(self
, *args
, **kwargs
):
2746 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2748 Events for the FindReplaceDialog
2750 _windows_
.FindDialogEvent_swiginit(self
,_windows_
.new_FindDialogEvent(*args
, **kwargs
))
2751 def GetFlags(*args
, **kwargs
):
2753 GetFlags(self) -> int
2755 Get the currently selected flags: this is the combination of
2756 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2758 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2760 def GetFindString(*args
, **kwargs
):
2762 GetFindString(self) -> String
2764 Return the string to find (never empty).
2766 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2768 def GetReplaceString(*args
, **kwargs
):
2770 GetReplaceString(self) -> String
2772 Return the string to replace the search string with (only for replace
2773 and replace all events).
2775 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2777 def GetDialog(*args
, **kwargs
):
2779 GetDialog(self) -> FindReplaceDialog
2781 Return the pointer to the dialog which generated this event.
2783 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2785 def SetFlags(*args
, **kwargs
):
2786 """SetFlags(self, int flags)"""
2787 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2789 def SetFindString(*args
, **kwargs
):
2790 """SetFindString(self, String str)"""
2791 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2793 def SetReplaceString(*args
, **kwargs
):
2794 """SetReplaceString(self, String str)"""
2795 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2797 _windows_
.FindDialogEvent_swigregister(FindDialogEvent
)
2799 class FindReplaceData(_core
.Object
):
2801 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2802 to initialize the dialog with the default values and will keep the
2803 last values from the dialog when it is closed. It is also updated each
2804 time a `wx.FindDialogEvent` is generated so instead of using the
2805 `wx.FindDialogEvent` methods you can also directly query this object.
2807 Note that all SetXXX() methods may only be called before showing the
2808 dialog and calling them has no effect later.
2810 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2811 __repr__
= _swig_repr
2812 def __init__(self
, *args
, **kwargs
):
2814 __init__(self, int flags=0) -> FindReplaceData
2816 Constuctor initializes the flags to default value (0).
2818 _windows_
.FindReplaceData_swiginit(self
,_windows_
.new_FindReplaceData(*args
, **kwargs
))
2819 __swig_destroy__
= _windows_
.delete_FindReplaceData
2820 __del__
= lambda self
: None;
2821 def GetFindString(*args
, **kwargs
):
2823 GetFindString(self) -> String
2825 Get the string to find.
2827 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
2829 def GetReplaceString(*args
, **kwargs
):
2831 GetReplaceString(self) -> String
2833 Get the replacement string.
2835 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2837 def GetFlags(*args
, **kwargs
):
2839 GetFlags(self) -> int
2841 Get the combination of flag values.
2843 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
2845 def SetFlags(*args
, **kwargs
):
2847 SetFlags(self, int flags)
2849 Set the flags to use to initialize the controls of the dialog.
2851 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
2853 def SetFindString(*args
, **kwargs
):
2855 SetFindString(self, String str)
2857 Set the string to find (used as initial value by the dialog).
2859 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
2861 def SetReplaceString(*args
, **kwargs
):
2863 SetReplaceString(self, String str)
2865 Set the replacement string (used as initial value by the dialog).
2867 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
2869 _windows_
.FindReplaceData_swigregister(FindReplaceData
)
2871 class FindReplaceDialog(Dialog
):
2873 wx.FindReplaceDialog is a standard modeless dialog which is used to
2874 allow the user to search for some text (and possibly replace it with
2875 something else). The actual searching is supposed to be done in the
2876 owner window which is the parent of this dialog. Note that it means
2877 that unlike for the other standard dialogs this one must have a parent
2878 window. Also note that there is no way to use this dialog in a modal
2879 way; it is always, by design and implementation, modeless.
2881 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2882 __repr__
= _swig_repr
2883 def __init__(self
, *args
, **kwargs
):
2885 __init__(self, Window parent, FindReplaceData data, String title,
2886 int style=0) -> FindReplaceDialog
2888 Create a FindReplaceDialog. The parent and data parameters must be
2889 non-None. Use Show to display the dialog.
2891 _windows_
.FindReplaceDialog_swiginit(self
,_windows_
.new_FindReplaceDialog(*args
, **kwargs
))
2892 self
._setOORInfo
(self
)
2894 def Create(*args
, **kwargs
):
2896 Create(self, Window parent, FindReplaceData data, String title,
2897 int style=0) -> bool
2899 Create the dialog, for 2-phase create.
2901 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
2903 def GetData(*args
, **kwargs
):
2905 GetData(self) -> FindReplaceData
2907 Get the FindReplaceData object used by this dialog.
2909 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
2911 def SetData(*args
, **kwargs
):
2913 SetData(self, FindReplaceData data)
2915 Set the FindReplaceData object used by this dialog.
2917 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
2919 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialog
)
2921 def PreFindReplaceDialog(*args
, **kwargs
):
2923 PreFindReplaceDialog() -> FindReplaceDialog
2925 Precreate a FindReplaceDialog for 2-phase creation
2927 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
2930 #---------------------------------------------------------------------------
2932 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
2933 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
2934 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
2935 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
2936 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
2937 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
2938 IDM_WINDOWPREV
= _windows_
.IDM_WINDOWPREV
2939 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
2940 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
2941 class MDIParentFrame(Frame
):
2942 """Proxy of C++ MDIParentFrame class"""
2943 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2944 __repr__
= _swig_repr
2945 def __init__(self
, *args
, **kwargs
):
2947 __init__(self, Window parent, int id=-1, String title=EmptyString,
2948 Point pos=DefaultPosition, Size size=DefaultSize,
2949 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2950 String name=FrameNameStr) -> MDIParentFrame
2952 _windows_
.MDIParentFrame_swiginit(self
,_windows_
.new_MDIParentFrame(*args
, **kwargs
))
2953 self
._setOORInfo
(self
)
2955 def Create(*args
, **kwargs
):
2957 Create(self, Window parent, int id=-1, String title=EmptyString,
2958 Point pos=DefaultPosition, Size size=DefaultSize,
2959 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2960 String name=FrameNameStr) -> bool
2962 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
2964 def ActivateNext(*args
, **kwargs
):
2965 """ActivateNext(self)"""
2966 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
2968 def ActivatePrevious(*args
, **kwargs
):
2969 """ActivatePrevious(self)"""
2970 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
2972 def ArrangeIcons(*args
, **kwargs
):
2973 """ArrangeIcons(self)"""
2974 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
2976 def Cascade(*args
, **kwargs
):
2978 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
2980 def GetActiveChild(*args
, **kwargs
):
2981 """GetActiveChild(self) -> MDIChildFrame"""
2982 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
2984 def GetClientWindow(*args
, **kwargs
):
2985 """GetClientWindow(self) -> MDIClientWindow"""
2986 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
2988 def GetToolBar(*args
, **kwargs
):
2989 """GetToolBar(self) -> Window"""
2990 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
2992 def Tile(*args
, **kwargs
):
2993 """Tile(self, int orient=HORIZONTAL)"""
2994 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
2996 _windows_
.MDIParentFrame_swigregister(MDIParentFrame
)
2998 def PreMDIParentFrame(*args
, **kwargs
):
2999 """PreMDIParentFrame() -> MDIParentFrame"""
3000 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3003 class MDIChildFrame(Frame
):
3004 """Proxy of C++ MDIChildFrame class"""
3005 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3006 __repr__
= _swig_repr
3007 def __init__(self
, *args
, **kwargs
):
3009 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3010 Point pos=DefaultPosition, Size size=DefaultSize,
3011 long style=DEFAULT_FRAME_STYLE,
3012 String name=FrameNameStr) -> MDIChildFrame
3014 _windows_
.MDIChildFrame_swiginit(self
,_windows_
.new_MDIChildFrame(*args
, **kwargs
))
3015 self
._setOORInfo
(self
)
3017 def Create(*args
, **kwargs
):
3019 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3020 Point pos=DefaultPosition, Size size=DefaultSize,
3021 long style=DEFAULT_FRAME_STYLE,
3022 String name=FrameNameStr) -> bool
3024 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3026 def Activate(*args
, **kwargs
):
3027 """Activate(self)"""
3028 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3030 _windows_
.MDIChildFrame_swigregister(MDIChildFrame
)
3032 def PreMDIChildFrame(*args
, **kwargs
):
3033 """PreMDIChildFrame() -> MDIChildFrame"""
3034 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3037 class MDIClientWindow(_core
.Window
):
3038 """Proxy of C++ MDIClientWindow class"""
3039 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3040 __repr__
= _swig_repr
3041 def __init__(self
, *args
, **kwargs
):
3042 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3043 _windows_
.MDIClientWindow_swiginit(self
,_windows_
.new_MDIClientWindow(*args
, **kwargs
))
3044 self
._setOORInfo
(self
)
3046 def Create(*args
, **kwargs
):
3047 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3048 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3050 _windows_
.MDIClientWindow_swigregister(MDIClientWindow
)
3052 def PreMDIClientWindow(*args
, **kwargs
):
3053 """PreMDIClientWindow() -> MDIClientWindow"""
3054 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3057 #---------------------------------------------------------------------------
3059 class PyWindow(_core
.Window
):
3060 """Proxy of C++ PyWindow class"""
3061 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3062 __repr__
= _swig_repr
3063 def __init__(self
, *args
, **kwargs
):
3065 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3066 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3068 _windows_
.PyWindow_swiginit(self
,_windows_
.new_PyWindow(*args
, **kwargs
))
3069 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3071 def _setCallbackInfo(*args
, **kwargs
):
3072 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3073 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3075 def SetBestSize(*args
, **kwargs
):
3076 """SetBestSize(self, Size size)"""
3077 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3079 def DoEraseBackground(*args
, **kwargs
):
3080 """DoEraseBackground(self, DC dc) -> bool"""
3081 return _windows_
.PyWindow_DoEraseBackground(*args
, **kwargs
)
3083 def DoMoveWindow(*args
, **kwargs
):
3084 """DoMoveWindow(self, int x, int y, int width, int height)"""
3085 return _windows_
.PyWindow_DoMoveWindow(*args
, **kwargs
)
3087 def DoSetSize(*args
, **kwargs
):
3088 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3089 return _windows_
.PyWindow_DoSetSize(*args
, **kwargs
)
3091 def DoSetClientSize(*args
, **kwargs
):
3092 """DoSetClientSize(self, int width, int height)"""
3093 return _windows_
.PyWindow_DoSetClientSize(*args
, **kwargs
)
3095 def DoSetVirtualSize(*args
, **kwargs
):
3096 """DoSetVirtualSize(self, int x, int y)"""
3097 return _windows_
.PyWindow_DoSetVirtualSize(*args
, **kwargs
)
3099 def DoGetSize(*args
, **kwargs
):
3100 """DoGetSize() -> (width, height)"""
3101 return _windows_
.PyWindow_DoGetSize(*args
, **kwargs
)
3103 def DoGetClientSize(*args
, **kwargs
):
3104 """DoGetClientSize() -> (width, height)"""
3105 return _windows_
.PyWindow_DoGetClientSize(*args
, **kwargs
)
3107 def DoGetPosition(*args
, **kwargs
):
3108 """DoGetPosition() -> (x,y)"""
3109 return _windows_
.PyWindow_DoGetPosition(*args
, **kwargs
)
3111 def DoGetVirtualSize(*args
, **kwargs
):
3112 """DoGetVirtualSize(self) -> Size"""
3113 return _windows_
.PyWindow_DoGetVirtualSize(*args
, **kwargs
)
3115 def DoGetBestSize(*args
, **kwargs
):
3116 """DoGetBestSize(self) -> Size"""
3117 return _windows_
.PyWindow_DoGetBestSize(*args
, **kwargs
)
3119 def GetDefaultAttributes(*args
, **kwargs
):
3120 """GetDefaultAttributes(self) -> VisualAttributes"""
3121 return _windows_
.PyWindow_GetDefaultAttributes(*args
, **kwargs
)
3123 def OnInternalIdle(*args
, **kwargs
):
3124 """OnInternalIdle(self)"""
3125 return _windows_
.PyWindow_OnInternalIdle(*args
, **kwargs
)
3127 def base_DoMoveWindow(*args
, **kw
):
3128 return PyWindow
.DoMoveWindow(*args
, **kw
)
3129 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3130 "Please use PyWindow.DoMoveWindow instead.")
3132 def base_DoSetSize(*args
, **kw
):
3133 return PyWindow
.DoSetSize(*args
, **kw
)
3134 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3135 "Please use PyWindow.DoSetSize instead.")
3137 def base_DoSetClientSize(*args
, **kw
):
3138 return PyWindow
.DoSetClientSize(*args
, **kw
)
3139 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3140 "Please use PyWindow.DoSetClientSize instead.")
3142 def base_DoSetVirtualSize(*args
, **kw
):
3143 return PyWindow
.DoSetVirtualSize(*args
, **kw
)
3144 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3145 "Please use PyWindow.DoSetVirtualSize instead.")
3147 def base_DoGetSize(*args
, **kw
):
3148 return PyWindow
.DoGetSize(*args
, **kw
)
3149 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3150 "Please use PyWindow.DoGetSize instead.")
3152 def base_DoGetClientSize(*args
, **kw
):
3153 return PyWindow
.DoGetClientSize(*args
, **kw
)
3154 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3155 "Please use PyWindow.DoGetClientSize instead.")
3157 def base_DoGetPosition(*args
, **kw
):
3158 return PyWindow
.DoGetPosition(*args
, **kw
)
3159 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3160 "Please use PyWindow.DoGetPosition instead.")
3162 def base_DoGetVirtualSize(*args
, **kw
):
3163 return PyWindow
.DoGetVirtualSize(*args
, **kw
)
3164 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3165 "Please use PyWindow.DoGetVirtualSize instead.")
3167 def base_DoGetBestSize(*args
, **kw
):
3168 return PyWindow
.DoGetBestSize(*args
, **kw
)
3169 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3170 "Please use PyWindow.DoGetBestSize instead.")
3172 def base_InitDialog(*args
, **kw
):
3173 return PyWindow
.InitDialog(*args
, **kw
)
3174 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3175 "Please use PyWindow.InitDialog instead.")
3177 def base_TransferDataToWindow(*args
, **kw
):
3178 return PyWindow
.TransferDataToWindow(*args
, **kw
)
3179 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3180 "Please use PyWindow.TransferDataToWindow instead.")
3182 def base_TransferDataFromWindow(*args
, **kw
):
3183 return PyWindow
.TransferDataFromWindow(*args
, **kw
)
3184 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3185 "Please use PyWindow.TransferDataFromWindow instead.")
3187 def base_Validate(*args
, **kw
):
3188 return PyWindow
.Validate(*args
, **kw
)
3189 base_Validate
= wx
._deprecated
(base_Validate
,
3190 "Please use PyWindow.Validate instead.")
3192 def base_AcceptsFocus(*args
, **kw
):
3193 return PyWindow
.AcceptsFocus(*args
, **kw
)
3194 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3195 "Please use PyWindow.AcceptsFocus instead.")
3197 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3198 return PyWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3199 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3200 "Please use PyWindow.AcceptsFocusFromKeyboard instead.")
3202 def base_GetMaxSize(*args
, **kw
):
3203 return PyWindow
.GetMaxSize(*args
, **kw
)
3204 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3205 "Please use PyWindow.GetMaxSize instead.")
3207 def base_AddChild(*args
, **kw
):
3208 return PyWindow
.AddChild(*args
, **kw
)
3209 base_AddChild
= wx
._deprecated
(base_AddChild
,
3210 "Please use PyWindow.AddChild instead.")
3212 def base_RemoveChild(*args
, **kw
):
3213 return PyWindow
.RemoveChild(*args
, **kw
)
3214 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3215 "Please use PyWindow.RemoveChild instead.")
3217 def base_ShouldInheritColours(*args
, **kw
):
3218 return PyWindow
.ShouldInheritColours(*args
, **kw
)
3219 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3220 "Please use PyWindow.ShouldInheritColours instead.")
3222 def base_GetDefaultAttributes(*args
, **kw
):
3223 return PyWindow
.GetDefaultAttributes(*args
, **kw
)
3224 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3225 "Please use PyWindow.GetDefaultAttributes instead.")
3227 def base_OnInternalIdle(*args
, **kw
):
3228 return PyWindow
.OnInternalIdle(*args
, **kw
)
3229 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3230 "Please use PyWindow.OnInternalIdle instead.")
3232 _windows_
.PyWindow_swigregister(PyWindow
)
3234 def PrePyWindow(*args
, **kwargs
):
3235 """PrePyWindow() -> PyWindow"""
3236 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3239 class PyPanel(Panel
):
3240 """Proxy of C++ PyPanel class"""
3241 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3242 __repr__
= _swig_repr
3243 def __init__(self
, *args
, **kwargs
):
3245 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3246 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3248 _windows_
.PyPanel_swiginit(self
,_windows_
.new_PyPanel(*args
, **kwargs
))
3249 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3251 def _setCallbackInfo(*args
, **kwargs
):
3252 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3253 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3255 def SetBestSize(*args
, **kwargs
):
3256 """SetBestSize(self, Size size)"""
3257 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3259 def DoEraseBackground(*args
, **kwargs
):
3260 """DoEraseBackground(self, DC dc) -> bool"""
3261 return _windows_
.PyPanel_DoEraseBackground(*args
, **kwargs
)
3263 def DoMoveWindow(*args
, **kwargs
):
3264 """DoMoveWindow(self, int x, int y, int width, int height)"""
3265 return _windows_
.PyPanel_DoMoveWindow(*args
, **kwargs
)
3267 def DoSetSize(*args
, **kwargs
):
3268 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3269 return _windows_
.PyPanel_DoSetSize(*args
, **kwargs
)
3271 def DoSetClientSize(*args
, **kwargs
):
3272 """DoSetClientSize(self, int width, int height)"""
3273 return _windows_
.PyPanel_DoSetClientSize(*args
, **kwargs
)
3275 def DoSetVirtualSize(*args
, **kwargs
):
3276 """DoSetVirtualSize(self, int x, int y)"""
3277 return _windows_
.PyPanel_DoSetVirtualSize(*args
, **kwargs
)
3279 def DoGetSize(*args
, **kwargs
):
3280 """DoGetSize() -> (width, height)"""
3281 return _windows_
.PyPanel_DoGetSize(*args
, **kwargs
)
3283 def DoGetClientSize(*args
, **kwargs
):
3284 """DoGetClientSize() -> (width, height)"""
3285 return _windows_
.PyPanel_DoGetClientSize(*args
, **kwargs
)
3287 def DoGetPosition(*args
, **kwargs
):
3288 """DoGetPosition() -> (x,y)"""
3289 return _windows_
.PyPanel_DoGetPosition(*args
, **kwargs
)
3291 def DoGetVirtualSize(*args
, **kwargs
):
3292 """DoGetVirtualSize(self) -> Size"""
3293 return _windows_
.PyPanel_DoGetVirtualSize(*args
, **kwargs
)
3295 def DoGetBestSize(*args
, **kwargs
):
3296 """DoGetBestSize(self) -> Size"""
3297 return _windows_
.PyPanel_DoGetBestSize(*args
, **kwargs
)
3299 def GetDefaultAttributes(*args
, **kwargs
):
3300 """GetDefaultAttributes(self) -> VisualAttributes"""
3301 return _windows_
.PyPanel_GetDefaultAttributes(*args
, **kwargs
)
3303 def OnInternalIdle(*args
, **kwargs
):
3304 """OnInternalIdle(self)"""
3305 return _windows_
.PyPanel_OnInternalIdle(*args
, **kwargs
)
3307 def base_DoMoveWindow(*args
, **kw
):
3308 return PyPanel
.DoMoveWindow(*args
, **kw
)
3309 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3310 "Please use PyPanel.DoMoveWindow instead.")
3312 def base_DoSetSize(*args
, **kw
):
3313 return PyPanel
.DoSetSize(*args
, **kw
)
3314 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3315 "Please use PyPanel.DoSetSize instead.")
3317 def base_DoSetClientSize(*args
, **kw
):
3318 return PyPanel
.DoSetClientSize(*args
, **kw
)
3319 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3320 "Please use PyPanel.DoSetClientSize instead.")
3322 def base_DoSetVirtualSize(*args
, **kw
):
3323 return PyPanel
.DoSetVirtualSize(*args
, **kw
)
3324 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3325 "Please use PyPanel.DoSetVirtualSize instead.")
3327 def base_DoGetSize(*args
, **kw
):
3328 return PyPanel
.DoGetSize(*args
, **kw
)
3329 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3330 "Please use PyPanel.DoGetSize instead.")
3332 def base_DoGetClientSize(*args
, **kw
):
3333 return PyPanel
.DoGetClientSize(*args
, **kw
)
3334 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3335 "Please use PyPanel.DoGetClientSize instead.")
3337 def base_DoGetPosition(*args
, **kw
):
3338 return PyPanel
.DoGetPosition(*args
, **kw
)
3339 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3340 "Please use PyPanel.DoGetPosition instead.")
3342 def base_DoGetVirtualSize(*args
, **kw
):
3343 return PyPanel
.DoGetVirtualSize(*args
, **kw
)
3344 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3345 "Please use PyPanel.DoGetVirtualSize instead.")
3347 def base_DoGetBestSize(*args
, **kw
):
3348 return PyPanel
.DoGetBestSize(*args
, **kw
)
3349 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3350 "Please use PyPanel.DoGetBestSize instead.")
3352 def base_InitDialog(*args
, **kw
):
3353 return PyPanel
.InitDialog(*args
, **kw
)
3354 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3355 "Please use PyPanel.InitDialog instead.")
3357 def base_TransferDataToWindow(*args
, **kw
):
3358 return PyPanel
.TransferDataToWindow(*args
, **kw
)
3359 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3360 "Please use PyPanel.TransferDataToWindow instead.")
3362 def base_TransferDataFromWindow(*args
, **kw
):
3363 return PyPanel
.TransferDataFromWindow(*args
, **kw
)
3364 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3365 "Please use PyPanel.TransferDataFromWindow instead.")
3367 def base_Validate(*args
, **kw
):
3368 return PyPanel
.Validate(*args
, **kw
)
3369 base_Validate
= wx
._deprecated
(base_Validate
,
3370 "Please use PyPanel.Validate instead.")
3372 def base_AcceptsFocus(*args
, **kw
):
3373 return PyPanel
.AcceptsFocus(*args
, **kw
)
3374 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3375 "Please use PyPanel.AcceptsFocus instead.")
3377 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3378 return PyPanel
.AcceptsFocusFromKeyboard(*args
, **kw
)
3379 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3380 "Please use PyPanel.AcceptsFocusFromKeyboard instead.")
3382 def base_GetMaxSize(*args
, **kw
):
3383 return PyPanel
.GetMaxSize(*args
, **kw
)
3384 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3385 "Please use PyPanel.GetMaxSize instead.")
3387 def base_AddChild(*args
, **kw
):
3388 return PyPanel
.AddChild(*args
, **kw
)
3389 base_AddChild
= wx
._deprecated
(base_AddChild
,
3390 "Please use PyPanel.AddChild instead.")
3392 def base_RemoveChild(*args
, **kw
):
3393 return PyPanel
.RemoveChild(*args
, **kw
)
3394 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3395 "Please use PyPanel.RemoveChild instead.")
3397 def base_ShouldInheritColours(*args
, **kw
):
3398 return PyPanel
.ShouldInheritColours(*args
, **kw
)
3399 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3400 "Please use PyPanel.ShouldInheritColours instead.")
3402 def base_GetDefaultAttributes(*args
, **kw
):
3403 return PyPanel
.GetDefaultAttributes(*args
, **kw
)
3404 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3405 "Please use PyPanel.GetDefaultAttributes instead.")
3407 def base_OnInternalIdle(*args
, **kw
):
3408 return PyPanel
.OnInternalIdle(*args
, **kw
)
3409 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3410 "Please use PyPanel.OnInternalIdle instead.")
3412 _windows_
.PyPanel_swigregister(PyPanel
)
3414 def PrePyPanel(*args
, **kwargs
):
3415 """PrePyPanel() -> PyPanel"""
3416 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3419 class PyScrolledWindow(ScrolledWindow
):
3420 """Proxy of C++ PyScrolledWindow class"""
3421 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3422 __repr__
= _swig_repr
3423 def __init__(self
, *args
, **kwargs
):
3425 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3426 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3428 _windows_
.PyScrolledWindow_swiginit(self
,_windows_
.new_PyScrolledWindow(*args
, **kwargs
))
3429 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyScrolledWindow
)
3431 def _setCallbackInfo(*args
, **kwargs
):
3432 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3433 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3435 def SetBestSize(*args
, **kwargs
):
3436 """SetBestSize(self, Size size)"""
3437 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3439 def DoEraseBackground(*args
, **kwargs
):
3440 """DoEraseBackground(self, DC dc) -> bool"""
3441 return _windows_
.PyScrolledWindow_DoEraseBackground(*args
, **kwargs
)
3443 def DoMoveWindow(*args
, **kwargs
):
3444 """DoMoveWindow(self, int x, int y, int width, int height)"""
3445 return _windows_
.PyScrolledWindow_DoMoveWindow(*args
, **kwargs
)
3447 def DoSetSize(*args
, **kwargs
):
3448 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3449 return _windows_
.PyScrolledWindow_DoSetSize(*args
, **kwargs
)
3451 def DoSetClientSize(*args
, **kwargs
):
3452 """DoSetClientSize(self, int width, int height)"""
3453 return _windows_
.PyScrolledWindow_DoSetClientSize(*args
, **kwargs
)
3455 def DoSetVirtualSize(*args
, **kwargs
):
3456 """DoSetVirtualSize(self, int x, int y)"""
3457 return _windows_
.PyScrolledWindow_DoSetVirtualSize(*args
, **kwargs
)
3459 def DoGetSize(*args
, **kwargs
):
3460 """DoGetSize() -> (width, height)"""
3461 return _windows_
.PyScrolledWindow_DoGetSize(*args
, **kwargs
)
3463 def DoGetClientSize(*args
, **kwargs
):
3464 """DoGetClientSize() -> (width, height)"""
3465 return _windows_
.PyScrolledWindow_DoGetClientSize(*args
, **kwargs
)
3467 def DoGetPosition(*args
, **kwargs
):
3468 """DoGetPosition() -> (x,y)"""
3469 return _windows_
.PyScrolledWindow_DoGetPosition(*args
, **kwargs
)
3471 def DoGetVirtualSize(*args
, **kwargs
):
3472 """DoGetVirtualSize(self) -> Size"""
3473 return _windows_
.PyScrolledWindow_DoGetVirtualSize(*args
, **kwargs
)
3475 def DoGetBestSize(*args
, **kwargs
):
3476 """DoGetBestSize(self) -> Size"""
3477 return _windows_
.PyScrolledWindow_DoGetBestSize(*args
, **kwargs
)
3479 def GetDefaultAttributes(*args
, **kwargs
):
3480 """GetDefaultAttributes(self) -> VisualAttributes"""
3481 return _windows_
.PyScrolledWindow_GetDefaultAttributes(*args
, **kwargs
)
3483 def OnInternalIdle(*args
, **kwargs
):
3484 """OnInternalIdle(self)"""
3485 return _windows_
.PyScrolledWindow_OnInternalIdle(*args
, **kwargs
)
3487 def base_DoMoveWindow(*args
, **kw
):
3488 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
3489 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3490 "Please use PyScrolledWindow.DoMoveWindow instead.")
3492 def base_DoSetSize(*args
, **kw
):
3493 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
3494 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3495 "Please use PyScrolledWindow.DoSetSize instead.")
3497 def base_DoSetClientSize(*args
, **kw
):
3498 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
3499 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3500 "Please use PyScrolledWindow.DoSetClientSize instead.")
3502 def base_DoSetVirtualSize(*args
, **kw
):
3503 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
3504 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3505 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
3507 def base_DoGetSize(*args
, **kw
):
3508 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
3509 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3510 "Please use PyScrolledWindow.DoGetSize instead.")
3512 def base_DoGetClientSize(*args
, **kw
):
3513 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
3514 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3515 "Please use PyScrolledWindow.DoGetClientSize instead.")
3517 def base_DoGetPosition(*args
, **kw
):
3518 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
3519 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3520 "Please use PyScrolledWindow.DoGetPosition instead.")
3522 def base_DoGetVirtualSize(*args
, **kw
):
3523 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
3524 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3525 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
3527 def base_DoGetBestSize(*args
, **kw
):
3528 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
3529 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3530 "Please use PyScrolledWindow.DoGetBestSize instead.")
3532 def base_InitDialog(*args
, **kw
):
3533 return PyScrolledWindow
.InitDialog(*args
, **kw
)
3534 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3535 "Please use PyScrolledWindow.InitDialog instead.")
3537 def base_TransferDataToWindow(*args
, **kw
):
3538 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
3539 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3540 "Please use PyScrolledWindow.TransferDataToWindow instead.")
3542 def base_TransferDataFromWindow(*args
, **kw
):
3543 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
3544 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3545 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
3547 def base_Validate(*args
, **kw
):
3548 return PyScrolledWindow
.Validate(*args
, **kw
)
3549 base_Validate
= wx
._deprecated
(base_Validate
,
3550 "Please use PyScrolledWindow.Validate instead.")
3552 def base_AcceptsFocus(*args
, **kw
):
3553 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
3554 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3555 "Please use PyScrolledWindow.AcceptsFocus instead.")
3557 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3558 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3559 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3560 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
3562 def base_GetMaxSize(*args
, **kw
):
3563 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
3564 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3565 "Please use PyScrolledWindow.GetMaxSize instead.")
3567 def base_AddChild(*args
, **kw
):
3568 return PyScrolledWindow
.AddChild(*args
, **kw
)
3569 base_AddChild
= wx
._deprecated
(base_AddChild
,
3570 "Please use PyScrolledWindow.AddChild instead.")
3572 def base_RemoveChild(*args
, **kw
):
3573 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
3574 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3575 "Please use PyScrolledWindow.RemoveChild instead.")
3577 def base_ShouldInheritColours(*args
, **kw
):
3578 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
3579 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3580 "Please use PyScrolledWindow.ShouldInheritColours instead.")
3582 def base_GetDefaultAttributes(*args
, **kw
):
3583 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
3584 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3585 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
3587 def base_OnInternalIdle(*args
, **kw
):
3588 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
3589 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3590 "Please use PyScrolledWindow.OnInternalIdle instead.")
3592 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindow
)
3594 def PrePyScrolledWindow(*args
, **kwargs
):
3595 """PrePyScrolledWindow() -> PyScrolledWindow"""
3596 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3599 #---------------------------------------------------------------------------
3601 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3602 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3603 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3604 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3605 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3606 PRINTBIN_DEFAULT
= _windows_
.PRINTBIN_DEFAULT
3607 PRINTBIN_ONLYONE
= _windows_
.PRINTBIN_ONLYONE
3608 PRINTBIN_LOWER
= _windows_
.PRINTBIN_LOWER
3609 PRINTBIN_MIDDLE
= _windows_
.PRINTBIN_MIDDLE
3610 PRINTBIN_MANUAL
= _windows_
.PRINTBIN_MANUAL
3611 PRINTBIN_ENVELOPE
= _windows_
.PRINTBIN_ENVELOPE
3612 PRINTBIN_ENVMANUAL
= _windows_
.PRINTBIN_ENVMANUAL
3613 PRINTBIN_AUTO
= _windows_
.PRINTBIN_AUTO
3614 PRINTBIN_TRACTOR
= _windows_
.PRINTBIN_TRACTOR
3615 PRINTBIN_SMALLFMT
= _windows_
.PRINTBIN_SMALLFMT
3616 PRINTBIN_LARGEFMT
= _windows_
.PRINTBIN_LARGEFMT
3617 PRINTBIN_LARGECAPACITY
= _windows_
.PRINTBIN_LARGECAPACITY
3618 PRINTBIN_CASSETTE
= _windows_
.PRINTBIN_CASSETTE
3619 PRINTBIN_FORMSOURCE
= _windows_
.PRINTBIN_FORMSOURCE
3620 PRINTBIN_USER
= _windows_
.PRINTBIN_USER
3621 class PrintData(_core
.Object
):
3622 """Proxy of C++ PrintData class"""
3623 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3624 __repr__
= _swig_repr
3625 def __init__(self
, *args
):
3627 __init__(self) -> PrintData
3628 __init__(self, PrintData data) -> PrintData
3630 _windows_
.PrintData_swiginit(self
,_windows_
.new_PrintData(*args
))
3631 __swig_destroy__
= _windows_
.delete_PrintData
3632 __del__
= lambda self
: None;
3633 def GetNoCopies(*args
, **kwargs
):
3634 """GetNoCopies(self) -> int"""
3635 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3637 def GetCollate(*args
, **kwargs
):
3638 """GetCollate(self) -> bool"""
3639 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3641 def GetOrientation(*args
, **kwargs
):
3642 """GetOrientation(self) -> int"""
3643 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3645 def Ok(*args
, **kwargs
):
3646 """Ok(self) -> bool"""
3647 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3649 def GetPrinterName(*args
, **kwargs
):
3650 """GetPrinterName(self) -> String"""
3651 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3653 def GetColour(*args
, **kwargs
):
3654 """GetColour(self) -> bool"""
3655 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3657 def GetDuplex(*args
, **kwargs
):
3658 """GetDuplex(self) -> int"""
3659 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3661 def GetPaperId(*args
, **kwargs
):
3662 """GetPaperId(self) -> int"""
3663 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3665 def GetPaperSize(*args
, **kwargs
):
3666 """GetPaperSize(self) -> Size"""
3667 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3669 def GetQuality(*args
, **kwargs
):
3670 """GetQuality(self) -> int"""
3671 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3673 def GetBin(*args
, **kwargs
):
3674 """GetBin(self) -> int"""
3675 return _windows_
.PrintData_GetBin(*args
, **kwargs
)
3677 def GetPrintMode(*args
, **kwargs
):
3678 """GetPrintMode(self) -> int"""
3679 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3681 def SetNoCopies(*args
, **kwargs
):
3682 """SetNoCopies(self, int v)"""
3683 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3685 def SetCollate(*args
, **kwargs
):
3686 """SetCollate(self, bool flag)"""
3687 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3689 def SetOrientation(*args
, **kwargs
):
3690 """SetOrientation(self, int orient)"""
3691 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3693 def SetPrinterName(*args
, **kwargs
):
3694 """SetPrinterName(self, String name)"""
3695 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3697 def SetColour(*args
, **kwargs
):
3698 """SetColour(self, bool colour)"""
3699 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3701 def SetDuplex(*args
, **kwargs
):
3702 """SetDuplex(self, int duplex)"""
3703 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3705 def SetPaperId(*args
, **kwargs
):
3706 """SetPaperId(self, int sizeId)"""
3707 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3709 def SetPaperSize(*args
, **kwargs
):
3710 """SetPaperSize(self, Size sz)"""
3711 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3713 def SetQuality(*args
, **kwargs
):
3714 """SetQuality(self, int quality)"""
3715 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3717 def SetBin(*args
, **kwargs
):
3718 """SetBin(self, int bin)"""
3719 return _windows_
.PrintData_SetBin(*args
, **kwargs
)
3721 def SetPrintMode(*args
, **kwargs
):
3722 """SetPrintMode(self, int printMode)"""
3723 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3725 def GetFilename(*args
, **kwargs
):
3726 """GetFilename(self) -> String"""
3727 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3729 def SetFilename(*args
, **kwargs
):
3730 """SetFilename(self, String filename)"""
3731 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3733 def __nonzero__(self
): return self
.Ok()
3734 def GetPrivData(*args
, **kwargs
):
3735 """GetPrivData(self) -> PyObject"""
3736 return _windows_
.PrintData_GetPrivData(*args
, **kwargs
)
3738 def SetPrivData(*args
, **kwargs
):
3739 """SetPrivData(self, PyObject data)"""
3740 return _windows_
.PrintData_SetPrivData(*args
, **kwargs
)
3742 _windows_
.PrintData_swigregister(PrintData
)
3743 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3744 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3746 class PageSetupDialogData(_core
.Object
):
3747 """Proxy of C++ PageSetupDialogData class"""
3748 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3749 __repr__
= _swig_repr
3750 def __init__(self
, *args
):
3752 __init__(self) -> PageSetupDialogData
3753 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3754 __init__(self, PrintData data) -> PageSetupDialogData
3756 _windows_
.PageSetupDialogData_swiginit(self
,_windows_
.new_PageSetupDialogData(*args
))
3757 __swig_destroy__
= _windows_
.delete_PageSetupDialogData
3758 __del__
= lambda self
: None;
3759 def EnableHelp(*args
, **kwargs
):
3760 """EnableHelp(self, bool flag)"""
3761 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3763 def EnableMargins(*args
, **kwargs
):
3764 """EnableMargins(self, bool flag)"""
3765 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3767 def EnableOrientation(*args
, **kwargs
):
3768 """EnableOrientation(self, bool flag)"""
3769 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3771 def EnablePaper(*args
, **kwargs
):
3772 """EnablePaper(self, bool flag)"""
3773 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3775 def EnablePrinter(*args
, **kwargs
):
3776 """EnablePrinter(self, bool flag)"""
3777 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3779 def GetDefaultMinMargins(*args
, **kwargs
):
3780 """GetDefaultMinMargins(self) -> bool"""
3781 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3783 def GetEnableMargins(*args
, **kwargs
):
3784 """GetEnableMargins(self) -> bool"""
3785 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3787 def GetEnableOrientation(*args
, **kwargs
):
3788 """GetEnableOrientation(self) -> bool"""
3789 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3791 def GetEnablePaper(*args
, **kwargs
):
3792 """GetEnablePaper(self) -> bool"""
3793 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3795 def GetEnablePrinter(*args
, **kwargs
):
3796 """GetEnablePrinter(self) -> bool"""
3797 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3799 def GetEnableHelp(*args
, **kwargs
):
3800 """GetEnableHelp(self) -> bool"""
3801 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3803 def GetDefaultInfo(*args
, **kwargs
):
3804 """GetDefaultInfo(self) -> bool"""
3805 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3807 def GetMarginTopLeft(*args
, **kwargs
):
3808 """GetMarginTopLeft(self) -> Point"""
3809 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3811 def GetMarginBottomRight(*args
, **kwargs
):
3812 """GetMarginBottomRight(self) -> Point"""
3813 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3815 def GetMinMarginTopLeft(*args
, **kwargs
):
3816 """GetMinMarginTopLeft(self) -> Point"""
3817 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3819 def GetMinMarginBottomRight(*args
, **kwargs
):
3820 """GetMinMarginBottomRight(self) -> Point"""
3821 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3823 def GetPaperId(*args
, **kwargs
):
3824 """GetPaperId(self) -> int"""
3825 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3827 def GetPaperSize(*args
, **kwargs
):
3828 """GetPaperSize(self) -> Size"""
3829 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3831 def GetPrintData(*args
, **kwargs
):
3832 """GetPrintData(self) -> PrintData"""
3833 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3835 def Ok(*args
, **kwargs
):
3836 """Ok(self) -> bool"""
3837 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3839 def SetDefaultInfo(*args
, **kwargs
):
3840 """SetDefaultInfo(self, bool flag)"""
3841 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3843 def SetDefaultMinMargins(*args
, **kwargs
):
3844 """SetDefaultMinMargins(self, bool flag)"""
3845 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3847 def SetMarginTopLeft(*args
, **kwargs
):
3848 """SetMarginTopLeft(self, Point pt)"""
3849 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3851 def SetMarginBottomRight(*args
, **kwargs
):
3852 """SetMarginBottomRight(self, Point pt)"""
3853 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3855 def SetMinMarginTopLeft(*args
, **kwargs
):
3856 """SetMinMarginTopLeft(self, Point pt)"""
3857 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3859 def SetMinMarginBottomRight(*args
, **kwargs
):
3860 """SetMinMarginBottomRight(self, Point pt)"""
3861 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3863 def SetPaperId(*args
, **kwargs
):
3864 """SetPaperId(self, int id)"""
3865 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3867 def SetPaperSize(*args
, **kwargs
):
3868 """SetPaperSize(self, Size size)"""
3869 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3871 def SetPrintData(*args
, **kwargs
):
3872 """SetPrintData(self, PrintData printData)"""
3873 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3875 def CalculateIdFromPaperSize(*args
, **kwargs
):
3876 """CalculateIdFromPaperSize(self)"""
3877 return _windows_
.PageSetupDialogData_CalculateIdFromPaperSize(*args
, **kwargs
)
3879 def CalculatePaperSizeFromId(*args
, **kwargs
):
3880 """CalculatePaperSizeFromId(self)"""
3881 return _windows_
.PageSetupDialogData_CalculatePaperSizeFromId(*args
, **kwargs
)
3883 def __nonzero__(self
): return self
.Ok()
3884 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogData
)
3886 class PageSetupDialog(_core
.Object
):
3887 """Proxy of C++ PageSetupDialog class"""
3888 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3889 __repr__
= _swig_repr
3890 def __init__(self
, *args
, **kwargs
):
3891 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
3892 _windows_
.PageSetupDialog_swiginit(self
,_windows_
.new_PageSetupDialog(*args
, **kwargs
))
3893 __swig_destroy__
= _windows_
.delete_PageSetupDialog
3894 __del__
= lambda self
: None;
3895 def GetPageSetupData(*args
, **kwargs
):
3896 """GetPageSetupData(self) -> PageSetupDialogData"""
3897 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
3899 def GetPageSetupDialogData(*args
, **kwargs
):
3900 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
3901 return _windows_
.PageSetupDialog_GetPageSetupDialogData(*args
, **kwargs
)
3903 def ShowModal(*args
, **kwargs
):
3904 """ShowModal(self) -> int"""
3905 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
3907 def Destroy(self
): pass
3908 _windows_
.PageSetupDialog_swigregister(PageSetupDialog
)
3910 class PrintDialogData(_core
.Object
):
3911 """Proxy of C++ PrintDialogData class"""
3912 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3913 __repr__
= _swig_repr
3914 def __init__(self
, *args
):
3916 __init__(self) -> PrintDialogData
3917 __init__(self, PrintData printData) -> PrintDialogData
3918 __init__(self, PrintDialogData printData) -> PrintDialogData
3920 _windows_
.PrintDialogData_swiginit(self
,_windows_
.new_PrintDialogData(*args
))
3921 __swig_destroy__
= _windows_
.delete_PrintDialogData
3922 __del__
= lambda self
: None;
3923 def GetFromPage(*args
, **kwargs
):
3924 """GetFromPage(self) -> int"""
3925 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
3927 def GetToPage(*args
, **kwargs
):
3928 """GetToPage(self) -> int"""
3929 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
3931 def GetMinPage(*args
, **kwargs
):
3932 """GetMinPage(self) -> int"""
3933 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
3935 def GetMaxPage(*args
, **kwargs
):
3936 """GetMaxPage(self) -> int"""
3937 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
3939 def GetNoCopies(*args
, **kwargs
):
3940 """GetNoCopies(self) -> int"""
3941 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
3943 def GetAllPages(*args
, **kwargs
):
3944 """GetAllPages(self) -> bool"""
3945 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
3947 def GetSelection(*args
, **kwargs
):
3948 """GetSelection(self) -> bool"""
3949 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
3951 def GetCollate(*args
, **kwargs
):
3952 """GetCollate(self) -> bool"""
3953 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
3955 def GetPrintToFile(*args
, **kwargs
):
3956 """GetPrintToFile(self) -> bool"""
3957 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
3959 def SetFromPage(*args
, **kwargs
):
3960 """SetFromPage(self, int v)"""
3961 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
3963 def SetToPage(*args
, **kwargs
):
3964 """SetToPage(self, int v)"""
3965 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
3967 def SetMinPage(*args
, **kwargs
):
3968 """SetMinPage(self, int v)"""
3969 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
3971 def SetMaxPage(*args
, **kwargs
):
3972 """SetMaxPage(self, int v)"""
3973 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
3975 def SetNoCopies(*args
, **kwargs
):
3976 """SetNoCopies(self, int v)"""
3977 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
3979 def SetAllPages(*args
, **kwargs
):
3980 """SetAllPages(self, bool flag)"""
3981 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
3983 def SetSelection(*args
, **kwargs
):
3984 """SetSelection(self, bool flag)"""
3985 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
3987 def SetCollate(*args
, **kwargs
):
3988 """SetCollate(self, bool flag)"""
3989 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
3991 def SetPrintToFile(*args
, **kwargs
):
3992 """SetPrintToFile(self, bool flag)"""
3993 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
3995 def EnablePrintToFile(*args
, **kwargs
):
3996 """EnablePrintToFile(self, bool flag)"""
3997 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
3999 def EnableSelection(*args
, **kwargs
):
4000 """EnableSelection(self, bool flag)"""
4001 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4003 def EnablePageNumbers(*args
, **kwargs
):
4004 """EnablePageNumbers(self, bool flag)"""
4005 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4007 def EnableHelp(*args
, **kwargs
):
4008 """EnableHelp(self, bool flag)"""
4009 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4011 def GetEnablePrintToFile(*args
, **kwargs
):
4012 """GetEnablePrintToFile(self) -> bool"""
4013 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4015 def GetEnableSelection(*args
, **kwargs
):
4016 """GetEnableSelection(self) -> bool"""
4017 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4019 def GetEnablePageNumbers(*args
, **kwargs
):
4020 """GetEnablePageNumbers(self) -> bool"""
4021 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4023 def GetEnableHelp(*args
, **kwargs
):
4024 """GetEnableHelp(self) -> bool"""
4025 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4027 def Ok(*args
, **kwargs
):
4028 """Ok(self) -> bool"""
4029 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4031 def GetPrintData(*args
, **kwargs
):
4032 """GetPrintData(self) -> PrintData"""
4033 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4035 def SetPrintData(*args
, **kwargs
):
4036 """SetPrintData(self, PrintData printData)"""
4037 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4039 def __nonzero__(self
): return self
.Ok()
4040 _windows_
.PrintDialogData_swigregister(PrintDialogData
)
4042 class PrintDialog(_core
.Object
):
4043 """Proxy of C++ PrintDialog class"""
4044 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4045 __repr__
= _swig_repr
4046 def __init__(self
, *args
, **kwargs
):
4047 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4048 _windows_
.PrintDialog_swiginit(self
,_windows_
.new_PrintDialog(*args
, **kwargs
))
4049 __swig_destroy__
= _windows_
.delete_PrintDialog
4050 __del__
= lambda self
: None;
4051 def ShowModal(*args
, **kwargs
):
4052 """ShowModal(self) -> int"""
4053 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4055 def GetPrintDialogData(*args
, **kwargs
):
4056 """GetPrintDialogData(self) -> PrintDialogData"""
4057 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4059 def GetPrintData(*args
, **kwargs
):
4060 """GetPrintData(self) -> PrintData"""
4061 return _windows_
.PrintDialog_GetPrintData(*args
, **kwargs
)
4063 def GetPrintDC(*args
, **kwargs
):
4064 """GetPrintDC(self) -> DC"""
4065 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4067 def Destroy(self
): pass
4068 _windows_
.PrintDialog_swigregister(PrintDialog
)
4070 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4071 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4072 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4073 class Printer(_core
.Object
):
4074 """Proxy of C++ Printer class"""
4075 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4076 __repr__
= _swig_repr
4077 def __init__(self
, *args
, **kwargs
):
4078 """__init__(self, PrintDialogData data=None) -> Printer"""
4079 _windows_
.Printer_swiginit(self
,_windows_
.new_Printer(*args
, **kwargs
))
4080 __swig_destroy__
= _windows_
.delete_Printer
4081 __del__
= lambda self
: None;
4082 def CreateAbortWindow(*args
, **kwargs
):
4083 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
4084 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4086 def ReportError(*args
, **kwargs
):
4087 """ReportError(self, Window parent, Printout printout, String message)"""
4088 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4090 def Setup(*args
, **kwargs
):
4091 """Setup(self, Window parent) -> bool"""
4092 return _windows_
.Printer_Setup(*args
, **kwargs
)
4094 def Print(*args
, **kwargs
):
4095 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
4096 return _windows_
.Printer_Print(*args
, **kwargs
)
4098 def PrintDialog(*args
, **kwargs
):
4099 """PrintDialog(self, Window parent) -> DC"""
4100 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4102 def GetPrintDialogData(*args
, **kwargs
):
4103 """GetPrintDialogData(self) -> PrintDialogData"""
4104 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4106 def GetAbort(*args
, **kwargs
):
4107 """GetAbort(self) -> bool"""
4108 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4110 def GetLastError(*args
, **kwargs
):
4111 """GetLastError() -> int"""
4112 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4114 GetLastError
= staticmethod(GetLastError
)
4115 _windows_
.Printer_swigregister(Printer
)
4117 def Printer_GetLastError(*args
):
4118 """Printer_GetLastError() -> int"""
4119 return _windows_
.Printer_GetLastError(*args
)
4121 class Printout(_core
.Object
):
4122 """Proxy of C++ Printout class"""
4123 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4124 __repr__
= _swig_repr
4125 def __init__(self
, *args
, **kwargs
):
4126 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4127 _windows_
.Printout_swiginit(self
,_windows_
.new_Printout(*args
, **kwargs
))
4128 self
._setCallbackInfo
(self
, Printout
)
4130 __swig_destroy__
= _windows_
.delete_Printout
4131 __del__
= lambda self
: None;
4132 def _setCallbackInfo(*args
, **kwargs
):
4133 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4134 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4136 def GetTitle(*args
, **kwargs
):
4137 """GetTitle(self) -> String"""
4138 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4140 def GetDC(*args
, **kwargs
):
4141 """GetDC(self) -> DC"""
4142 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4144 def SetDC(*args
, **kwargs
):
4145 """SetDC(self, DC dc)"""
4146 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4148 def SetPageSizePixels(*args
, **kwargs
):
4149 """SetPageSizePixels(self, int w, int h)"""
4150 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4152 def GetPageSizePixels(*args
, **kwargs
):
4153 """GetPageSizePixels() -> (w, h)"""
4154 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4156 def SetPageSizeMM(*args
, **kwargs
):
4157 """SetPageSizeMM(self, int w, int h)"""
4158 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4160 def GetPageSizeMM(*args
, **kwargs
):
4161 """GetPageSizeMM() -> (w, h)"""
4162 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4164 def SetPPIScreen(*args
, **kwargs
):
4165 """SetPPIScreen(self, int x, int y)"""
4166 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4168 def GetPPIScreen(*args
, **kwargs
):
4169 """GetPPIScreen() -> (x,y)"""
4170 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4172 def SetPPIPrinter(*args
, **kwargs
):
4173 """SetPPIPrinter(self, int x, int y)"""
4174 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4176 def GetPPIPrinter(*args
, **kwargs
):
4177 """GetPPIPrinter() -> (x,y)"""
4178 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4180 def IsPreview(*args
, **kwargs
):
4181 """IsPreview(self) -> bool"""
4182 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4184 def SetIsPreview(*args
, **kwargs
):
4185 """SetIsPreview(self, bool p)"""
4186 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4188 def OnBeginDocument(*args
, **kwargs
):
4189 """OnBeginDocument(self, int startPage, int endPage) -> bool"""
4190 return _windows_
.Printout_OnBeginDocument(*args
, **kwargs
)
4192 def OnEndDocument(*args
, **kwargs
):
4193 """OnEndDocument(self)"""
4194 return _windows_
.Printout_OnEndDocument(*args
, **kwargs
)
4196 def OnBeginPrinting(*args
, **kwargs
):
4197 """OnBeginPrinting(self)"""
4198 return _windows_
.Printout_OnBeginPrinting(*args
, **kwargs
)
4200 def OnEndPrinting(*args
, **kwargs
):
4201 """OnEndPrinting(self)"""
4202 return _windows_
.Printout_OnEndPrinting(*args
, **kwargs
)
4204 def OnPreparePrinting(*args
, **kwargs
):
4205 """OnPreparePrinting(self)"""
4206 return _windows_
.Printout_OnPreparePrinting(*args
, **kwargs
)
4208 def HasPage(*args
, **kwargs
):
4209 """HasPage(self, int page) -> bool"""
4210 return _windows_
.Printout_HasPage(*args
, **kwargs
)
4212 def GetPageInfo(*args
, **kwargs
):
4213 """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4214 return _windows_
.Printout_GetPageInfo(*args
, **kwargs
)
4216 def base_OnBeginDocument(*args
, **kw
):
4217 return Printout
.OnBeginDocument(*args
, **kw
)
4218 base_OnBeginDocument
= wx
._deprecated
(base_OnBeginDocument
,
4219 "Please use Printout.OnBeginDocument instead.")
4221 def base_OnEndDocument(*args
, **kw
):
4222 return Printout
.OnEndDocument(*args
, **kw
)
4223 base_OnEndDocument
= wx
._deprecated
(base_OnEndDocument
,
4224 "Please use Printout.OnEndDocument instead.")
4226 def base_OnBeginPrinting(*args
, **kw
):
4227 return Printout
.OnBeginPrinting(*args
, **kw
)
4228 base_OnBeginPrinting
= wx
._deprecated
(base_OnBeginPrinting
,
4229 "Please use Printout.OnBeginPrinting instead.")
4231 def base_OnEndPrinting(*args
, **kw
):
4232 return Printout
.OnEndPrinting(*args
, **kw
)
4233 base_OnEndPrinting
= wx
._deprecated
(base_OnEndPrinting
,
4234 "Please use Printout.OnEndPrinting instead.")
4236 def base_OnPreparePrinting(*args
, **kw
):
4237 return Printout
.OnPreparePrinting(*args
, **kw
)
4238 base_OnPreparePrinting
= wx
._deprecated
(base_OnPreparePrinting
,
4239 "Please use Printout.OnPreparePrinting instead.")
4241 def base_GetPageInfo(*args
, **kw
):
4242 return Printout
.GetPageInfo(*args
, **kw
)
4243 base_GetPageInfo
= wx
._deprecated
(base_GetPageInfo
,
4244 "Please use Printout.GetPageInfo instead.")
4246 _windows_
.Printout_swigregister(Printout
)
4248 class PreviewCanvas(ScrolledWindow
):
4249 """Proxy of C++ PreviewCanvas class"""
4250 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4251 __repr__
= _swig_repr
4252 def __init__(self
, *args
, **kwargs
):
4254 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4255 Size size=DefaultSize, long style=0,
4256 String name=PreviewCanvasNameStr) -> PreviewCanvas
4258 _windows_
.PreviewCanvas_swiginit(self
,_windows_
.new_PreviewCanvas(*args
, **kwargs
))
4259 self
._setOORInfo
(self
)
4261 _windows_
.PreviewCanvas_swigregister(PreviewCanvas
)
4263 class PreviewFrame(Frame
):
4264 """Proxy of C++ PreviewFrame class"""
4265 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4266 __repr__
= _swig_repr
4267 def __init__(self
, *args
, **kwargs
):
4269 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4270 Size size=DefaultSize,
4271 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4273 _windows_
.PreviewFrame_swiginit(self
,_windows_
.new_PreviewFrame(*args
, **kwargs
))
4274 self
._setOORInfo
(self
)
4276 def Initialize(*args
, **kwargs
):
4277 """Initialize(self)"""
4278 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4280 def CreateControlBar(*args
, **kwargs
):
4281 """CreateControlBar(self)"""
4282 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4284 def CreateCanvas(*args
, **kwargs
):
4285 """CreateCanvas(self)"""
4286 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4288 def GetControlBar(*args
, **kwargs
):
4289 """GetControlBar(self) -> PreviewControlBar"""
4290 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4292 _windows_
.PreviewFrame_swigregister(PreviewFrame
)
4294 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4295 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4296 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4297 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4298 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4299 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4300 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4301 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4302 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4303 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4304 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4305 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4306 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4307 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4308 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4309 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4310 class PreviewControlBar(Panel
):
4311 """Proxy of C++ PreviewControlBar class"""
4312 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4313 __repr__
= _swig_repr
4314 def __init__(self
, *args
, **kwargs
):
4316 __init__(self, PrintPreview preview, long buttons, Window parent,
4317 Point pos=DefaultPosition, Size size=DefaultSize,
4318 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4320 _windows_
.PreviewControlBar_swiginit(self
,_windows_
.new_PreviewControlBar(*args
, **kwargs
))
4321 self
._setOORInfo
(self
)
4323 def GetZoomControl(*args
, **kwargs
):
4324 """GetZoomControl(self) -> int"""
4325 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4327 def SetZoomControl(*args
, **kwargs
):
4328 """SetZoomControl(self, int zoom)"""
4329 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4331 def GetPrintPreview(*args
, **kwargs
):
4332 """GetPrintPreview(self) -> PrintPreview"""
4333 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4335 def OnNext(*args
, **kwargs
):
4337 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4339 def OnPrevious(*args
, **kwargs
):
4340 """OnPrevious(self)"""
4341 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4343 def OnFirst(*args
, **kwargs
):
4345 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4347 def OnLast(*args
, **kwargs
):
4349 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4351 def OnGoto(*args
, **kwargs
):
4353 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4355 _windows_
.PreviewControlBar_swigregister(PreviewControlBar
)
4357 class PrintPreview(_core
.Object
):
4358 """Proxy of C++ PrintPreview class"""
4359 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4360 __repr__
= _swig_repr
4361 def __init__(self
, *args
):
4363 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4364 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4366 _windows_
.PrintPreview_swiginit(self
,_windows_
.new_PrintPreview(*args
))
4367 __swig_destroy__
= _windows_
.delete_PrintPreview
4368 __del__
= lambda self
: None;
4369 def SetCurrentPage(*args
, **kwargs
):
4370 """SetCurrentPage(self, int pageNum) -> bool"""
4371 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4373 def GetCurrentPage(*args
, **kwargs
):
4374 """GetCurrentPage(self) -> int"""
4375 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4377 def SetPrintout(*args
, **kwargs
):
4378 """SetPrintout(self, Printout printout)"""
4379 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4381 def GetPrintout(*args
, **kwargs
):
4382 """GetPrintout(self) -> Printout"""
4383 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4385 def GetPrintoutForPrinting(*args
, **kwargs
):
4386 """GetPrintoutForPrinting(self) -> Printout"""
4387 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4389 def SetFrame(*args
, **kwargs
):
4390 """SetFrame(self, Frame frame)"""
4391 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4393 def SetCanvas(*args
, **kwargs
):
4394 """SetCanvas(self, PreviewCanvas canvas)"""
4395 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4397 def GetFrame(*args
, **kwargs
):
4398 """GetFrame(self) -> Frame"""
4399 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4401 def GetCanvas(*args
, **kwargs
):
4402 """GetCanvas(self) -> PreviewCanvas"""
4403 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4405 def PaintPage(*args
, **kwargs
):
4406 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4407 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4409 def DrawBlankPage(*args
, **kwargs
):
4410 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4411 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4413 def RenderPage(*args
, **kwargs
):
4414 """RenderPage(self, int pageNum) -> bool"""
4415 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4417 def AdjustScrollbars(*args
, **kwargs
):
4418 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4419 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4421 def GetPrintDialogData(*args
, **kwargs
):
4422 """GetPrintDialogData(self) -> PrintDialogData"""
4423 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4425 def SetZoom(*args
, **kwargs
):
4426 """SetZoom(self, int percent)"""
4427 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4429 def GetZoom(*args
, **kwargs
):
4430 """GetZoom(self) -> int"""
4431 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4433 def GetMaxPage(*args
, **kwargs
):
4434 """GetMaxPage(self) -> int"""
4435 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4437 def GetMinPage(*args
, **kwargs
):
4438 """GetMinPage(self) -> int"""
4439 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4441 def Ok(*args
, **kwargs
):
4442 """Ok(self) -> bool"""
4443 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4445 def SetOk(*args
, **kwargs
):
4446 """SetOk(self, bool ok)"""
4447 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4449 def Print(*args
, **kwargs
):
4450 """Print(self, bool interactive) -> bool"""
4451 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4453 def DetermineScaling(*args
, **kwargs
):
4454 """DetermineScaling(self)"""
4455 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4457 def __nonzero__(self
): return self
.Ok()
4458 _windows_
.PrintPreview_swigregister(PrintPreview
)
4460 class PyPrintPreview(PrintPreview
):
4461 """Proxy of C++ PyPrintPreview class"""
4462 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4463 __repr__
= _swig_repr
4464 def __init__(self
, *args
):
4466 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4467 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4469 _windows_
.PyPrintPreview_swiginit(self
,_windows_
.new_PyPrintPreview(*args
))
4470 self
._setCallbackInfo
(self
, PyPrintPreview
)
4472 def _setCallbackInfo(*args
, **kwargs
):
4473 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4474 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4476 def base_SetCurrentPage(*args
, **kw
):
4477 return PyPrintPreview
.SetCurrentPage(*args
, **kw
)
4478 base_SetCurrentPage
= wx
._deprecated
(base_SetCurrentPage
,
4479 "Please use PyPrintPreview.SetCurrentPage instead.")
4481 def base_PaintPage(*args
, **kw
):
4482 return PyPrintPreview
.PaintPage(*args
, **kw
)
4483 base_PaintPage
= wx
._deprecated
(base_PaintPage
,
4484 "Please use PyPrintPreview.PaintPage instead.")
4486 def base_DrawBlankPage(*args
, **kw
):
4487 return PyPrintPreview
.DrawBlankPage(*args
, **kw
)
4488 base_DrawBlankPage
= wx
._deprecated
(base_DrawBlankPage
,
4489 "Please use PyPrintPreview.DrawBlankPage instead.")
4491 def base_RenderPage(*args
, **kw
):
4492 return PyPrintPreview
.RenderPage(*args
, **kw
)
4493 base_RenderPage
= wx
._deprecated
(base_RenderPage
,
4494 "Please use PyPrintPreview.RenderPage instead.")
4496 def base_SetZoom(*args
, **kw
):
4497 return PyPrintPreview
.SetZoom(*args
, **kw
)
4498 base_SetZoom
= wx
._deprecated
(base_SetZoom
,
4499 "Please use PyPrintPreview.SetZoom instead.")
4501 def base_Print(*args
, **kw
):
4502 return PyPrintPreview
.Print(*args
, **kw
)
4503 base_Print
= wx
._deprecated
(base_Print
,
4504 "Please use PyPrintPreview.Print instead.")
4506 def base_DetermineScaling(*args
, **kw
):
4507 return PyPrintPreview
.DetermineScaling(*args
, **kw
)
4508 base_DetermineScaling
= wx
._deprecated
(base_DetermineScaling
,
4509 "Please use PyPrintPreview.DetermineScaling instead.")
4511 _windows_
.PyPrintPreview_swigregister(PyPrintPreview
)
4513 class PyPreviewFrame(PreviewFrame
):
4514 """Proxy of C++ PyPreviewFrame class"""
4515 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4516 __repr__
= _swig_repr
4517 def __init__(self
, *args
, **kwargs
):
4519 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4520 Size size=DefaultSize,
4521 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4523 _windows_
.PyPreviewFrame_swiginit(self
,_windows_
.new_PyPreviewFrame(*args
, **kwargs
))
4524 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4526 def _setCallbackInfo(*args
, **kwargs
):
4527 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4528 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4530 def SetPreviewCanvas(*args
, **kwargs
):
4531 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4532 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4534 def SetControlBar(*args
, **kwargs
):
4535 """SetControlBar(self, PreviewControlBar bar)"""
4536 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4538 def Initialize(*args
, **kwargs
):
4539 """Initialize(self)"""
4540 return _windows_
.PyPreviewFrame_Initialize(*args
, **kwargs
)
4542 def CreateCanvas(*args
, **kwargs
):
4543 """CreateCanvas(self)"""
4544 return _windows_
.PyPreviewFrame_CreateCanvas(*args
, **kwargs
)
4546 def CreateControlBar(*args
, **kwargs
):
4547 """CreateControlBar(self)"""
4548 return _windows_
.PyPreviewFrame_CreateControlBar(*args
, **kwargs
)
4550 def base_Initialize(*args
, **kw
):
4551 return PyPreviewFrame
.Initialize(*args
, **kw
)
4552 base_Initialize
= wx
._deprecated
(base_Initialize
,
4553 "Please use PyPreviewFrame.Initialize instead.")
4555 def base_CreateCanvas(*args
, **kw
):
4556 return PyPreviewFrame
.CreateCanvas(*args
, **kw
)
4557 base_CreateCanvas
= wx
._deprecated
(base_CreateCanvas
,
4558 "Please use PyPreviewFrame.CreateCanvas instead.")
4560 def base_CreateControlBar(*args
, **kw
):
4561 return PyPreviewFrame
.CreateControlBar(*args
, **kw
)
4562 base_CreateControlBar
= wx
._deprecated
(base_CreateControlBar
,
4563 "Please use PyPreviewFrame.CreateControlBar instead.")
4565 _windows_
.PyPreviewFrame_swigregister(PyPreviewFrame
)
4567 class PyPreviewControlBar(PreviewControlBar
):
4568 """Proxy of C++ PyPreviewControlBar class"""
4569 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4570 __repr__
= _swig_repr
4571 def __init__(self
, *args
, **kwargs
):
4573 __init__(self, PrintPreview preview, long buttons, Window parent,
4574 Point pos=DefaultPosition, Size size=DefaultSize,
4575 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4577 _windows_
.PyPreviewControlBar_swiginit(self
,_windows_
.new_PyPreviewControlBar(*args
, **kwargs
))
4578 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4580 def _setCallbackInfo(*args
, **kwargs
):
4581 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4582 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4584 def SetPrintPreview(*args
, **kwargs
):
4585 """SetPrintPreview(self, PrintPreview preview)"""
4586 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4588 def CreateButtons(*args
, **kwargs
):
4589 """CreateButtons(self)"""
4590 return _windows_
.PyPreviewControlBar_CreateButtons(*args
, **kwargs
)
4592 def SetZoomControl(*args
, **kwargs
):
4593 """SetZoomControl(self, int zoom)"""
4594 return _windows_
.PyPreviewControlBar_SetZoomControl(*args
, **kwargs
)
4596 def base_CreateButtons(*args
, **kw
):
4597 return PreviewControlBar
.CreateButtons(*args
, **kw
)
4598 base_CreateButtons
= wx
._deprecated
(base_CreateButtons
,
4599 "Please use PreviewControlBar.CreateButtons instead.")
4601 def base_SetZoomControl(*args
, **kw
):
4602 return PreviewControlBar
.SetZoomControl(*args
, **kw
)
4603 base_SetZoomControl
= wx
._deprecated
(base_SetZoomControl
,
4604 "Please use PreviewControlBar.SetZoomControl instead.")
4606 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBar
)