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 #---------------------------------------------------------------------------
1614 class PopupWindow(_core
.Window
):
1615 """Proxy of C++ PopupWindow class"""
1616 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1617 __repr__
= _swig_repr
1618 def __init__(self
, *args
, **kwargs
):
1619 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1620 _windows_
.PopupWindow_swiginit(self
,_windows_
.new_PopupWindow(*args
, **kwargs
))
1621 self
._setOORInfo
(self
)
1623 def Create(*args
, **kwargs
):
1624 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1625 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1627 def Position(*args
, **kwargs
):
1628 """Position(self, Point ptOrigin, Size size)"""
1629 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1631 _windows_
.PopupWindow_swigregister(PopupWindow
)
1633 def PrePopupWindow(*args
, **kwargs
):
1634 """PrePopupWindow() -> PopupWindow"""
1635 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1638 #---------------------------------------------------------------------------
1640 class PopupTransientWindow(PopupWindow
):
1641 """Proxy of C++ PopupTransientWindow class"""
1642 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1643 __repr__
= _swig_repr
1644 def __init__(self
, *args
, **kwargs
):
1645 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1646 _windows_
.PopupTransientWindow_swiginit(self
,_windows_
.new_PopupTransientWindow(*args
, **kwargs
))
1647 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1649 def _setCallbackInfo(*args
, **kwargs
):
1650 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1651 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1653 def Popup(*args
, **kwargs
):
1654 """Popup(self, Window focus=None)"""
1655 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1657 def Dismiss(*args
, **kwargs
):
1659 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1661 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindow
)
1663 def PrePopupTransientWindow(*args
, **kwargs
):
1664 """PrePopupTransientWindow() -> PopupTransientWindow"""
1665 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1668 #---------------------------------------------------------------------------
1670 class TipWindow(PopupTransientWindow
):
1671 """Proxy of C++ TipWindow 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
):
1675 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1676 _windows_
.TipWindow_swiginit(self
,_windows_
.new_TipWindow(*args
, **kwargs
))
1677 self
._setOORInfo
(self
)
1679 def SetBoundingRect(*args
, **kwargs
):
1680 """SetBoundingRect(self, Rect rectBound)"""
1681 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1683 def Close(*args
, **kwargs
):
1687 This function simply generates a EVT_CLOSE event whose handler usually
1688 tries to close the window. It doesn't close the window itself,
1689 however. If force is False (the default) then the window's close
1690 handler will be allowed to veto the destruction of the window.
1692 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1694 _windows_
.TipWindow_swigregister(TipWindow
)
1696 #---------------------------------------------------------------------------
1698 class VScrolledWindow(Panel
):
1699 """Proxy of C++ VScrolledWindow class"""
1700 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1701 __repr__
= _swig_repr
1702 def __init__(self
, *args
, **kwargs
):
1704 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1705 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1707 _windows_
.VScrolledWindow_swiginit(self
,_windows_
.new_VScrolledWindow(*args
, **kwargs
))
1708 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1710 def _setCallbackInfo(*args
, **kwargs
):
1711 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1712 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1714 def Create(*args
, **kwargs
):
1716 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1717 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1719 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1721 def SetLineCount(*args
, **kwargs
):
1722 """SetLineCount(self, size_t count)"""
1723 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1725 def ScrollToLine(*args
, **kwargs
):
1726 """ScrollToLine(self, size_t line) -> bool"""
1727 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1729 def RefreshLine(*args
, **kwargs
):
1730 """RefreshLine(self, size_t line)"""
1731 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1733 def RefreshLines(*args
, **kwargs
):
1734 """RefreshLines(self, size_t from, size_t to)"""
1735 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1737 def HitTestXY(*args
, **kwargs
):
1739 HitTestXY(self, int x, int y) -> int
1741 Test where the given (in client coords) point lies
1743 return _windows_
.VScrolledWindow_HitTestXY(*args
, **kwargs
)
1745 def HitTest(*args
, **kwargs
):
1747 HitTest(self, Point pt) -> int
1749 Test where the given (in client coords) point lies
1751 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1753 def RefreshAll(*args
, **kwargs
):
1754 """RefreshAll(self)"""
1755 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1757 def GetLineCount(*args
, **kwargs
):
1758 """GetLineCount(self) -> size_t"""
1759 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1761 def GetVisibleBegin(*args
, **kwargs
):
1762 """GetVisibleBegin(self) -> size_t"""
1763 return _windows_
.VScrolledWindow_GetVisibleBegin(*args
, **kwargs
)
1765 def GetVisibleEnd(*args
, **kwargs
):
1766 """GetVisibleEnd(self) -> size_t"""
1767 return _windows_
.VScrolledWindow_GetVisibleEnd(*args
, **kwargs
)
1769 def IsVisible(*args
, **kwargs
):
1770 """IsVisible(self, size_t line) -> bool"""
1771 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1773 def GetFirstVisibleLine(*args
, **kwargs
):
1774 """GetFirstVisibleLine(self) -> size_t"""
1775 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1777 def GetLastVisibleLine(*args
, **kwargs
):
1778 """GetLastVisibleLine(self) -> size_t"""
1779 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1781 def FindFirstFromBottom(*args
, **kwargs
):
1782 """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t"""
1783 return _windows_
.VScrolledWindow_FindFirstFromBottom(*args
, **kwargs
)
1785 def GetLinesHeight(*args
, **kwargs
):
1786 """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int"""
1787 return _windows_
.VScrolledWindow_GetLinesHeight(*args
, **kwargs
)
1789 _windows_
.VScrolledWindow_swigregister(VScrolledWindow
)
1791 def PreVScrolledWindow(*args
, **kwargs
):
1792 """PreVScrolledWindow() -> VScrolledWindow"""
1793 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1796 class VListBox(VScrolledWindow
):
1797 """Proxy of C++ VListBox class"""
1798 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1799 __repr__
= _swig_repr
1800 def __init__(self
, *args
, **kwargs
):
1802 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1803 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1805 _windows_
.VListBox_swiginit(self
,_windows_
.new_VListBox(*args
, **kwargs
))
1806 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1808 def _setCallbackInfo(*args
, **kwargs
):
1809 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1810 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1812 def Create(*args
, **kwargs
):
1814 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1815 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1817 return _windows_
.VListBox_Create(*args
, **kwargs
)
1819 def GetItemCount(*args
, **kwargs
):
1820 """GetItemCount(self) -> size_t"""
1821 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1823 def HasMultipleSelection(*args
, **kwargs
):
1824 """HasMultipleSelection(self) -> bool"""
1825 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1827 def GetSelection(*args
, **kwargs
):
1828 """GetSelection(self) -> int"""
1829 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1831 def IsCurrent(*args
, **kwargs
):
1832 """IsCurrent(self, size_t item) -> bool"""
1833 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1835 def IsSelected(*args
, **kwargs
):
1836 """IsSelected(self, size_t item) -> bool"""
1837 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1839 def GetSelectedCount(*args
, **kwargs
):
1840 """GetSelectedCount(self) -> size_t"""
1841 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1843 def GetFirstSelected(*args
, **kwargs
):
1844 """GetFirstSelected(self) -> PyObject"""
1845 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1847 def GetNextSelected(*args
, **kwargs
):
1848 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1849 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1851 def GetMargins(*args
, **kwargs
):
1852 """GetMargins(self) -> Point"""
1853 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1855 def GetSelectionBackground(*args
, **kwargs
):
1856 """GetSelectionBackground(self) -> Colour"""
1857 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1859 def SetItemCount(*args
, **kwargs
):
1860 """SetItemCount(self, size_t count)"""
1861 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1863 def Clear(*args
, **kwargs
):
1865 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1867 def SetSelection(*args
, **kwargs
):
1868 """SetSelection(self, int selection)"""
1869 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1871 def Select(*args
, **kwargs
):
1872 """Select(self, size_t item, bool select=True) -> bool"""
1873 return _windows_
.VListBox_Select(*args
, **kwargs
)
1875 def SelectRange(*args
, **kwargs
):
1876 """SelectRange(self, size_t from, size_t to) -> bool"""
1877 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1879 def Toggle(*args
, **kwargs
):
1880 """Toggle(self, size_t item)"""
1881 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1883 def SelectAll(*args
, **kwargs
):
1884 """SelectAll(self) -> bool"""
1885 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1887 def DeselectAll(*args
, **kwargs
):
1888 """DeselectAll(self) -> bool"""
1889 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1891 def SetMargins(*args
, **kwargs
):
1892 """SetMargins(self, Point pt)"""
1893 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1895 def SetMarginsXY(*args
, **kwargs
):
1896 """SetMarginsXY(self, int x, int y)"""
1897 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1899 def SetSelectionBackground(*args
, **kwargs
):
1900 """SetSelectionBackground(self, Colour col)"""
1901 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1903 def OnDrawSeparator(*args
, **kwargs
):
1904 """OnDrawSeparator(self, DC dc, Rect rect, size_t n)"""
1905 return _windows_
.VListBox_OnDrawSeparator(*args
, **kwargs
)
1907 def OnDrawBackground(*args
, **kwargs
):
1908 """OnDrawBackground(self, DC dc, Rect rect, size_t n)"""
1909 return _windows_
.VListBox_OnDrawBackground(*args
, **kwargs
)
1911 _windows_
.VListBox_swigregister(VListBox
)
1912 VListBoxNameStr
= cvar
.VListBoxNameStr
1914 def PreVListBox(*args
, **kwargs
):
1915 """PreVListBox() -> VListBox"""
1916 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1919 class HtmlListBox(VListBox
):
1920 """Proxy of C++ HtmlListBox class"""
1921 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1922 __repr__
= _swig_repr
1923 def __init__(self
, *args
, **kwargs
):
1925 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1926 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1928 _windows_
.HtmlListBox_swiginit(self
,_windows_
.new_HtmlListBox(*args
, **kwargs
))
1929 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1931 def _setCallbackInfo(*args
, **kwargs
):
1932 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1933 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1935 def Create(*args
, **kwargs
):
1937 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1938 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1940 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1942 def SetItemCount(*args
, **kwargs
):
1943 """SetItemCount(self, size_t count)"""
1944 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1946 def GetFileSystem(*args
, **kwargs
):
1947 """GetFileSystem(self) -> FileSystem"""
1948 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
1950 def OnLinkClicked(*args
, **kwargs
):
1951 """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)"""
1952 return _windows_
.HtmlListBox_OnLinkClicked(*args
, **kwargs
)
1954 _windows_
.HtmlListBox_swigregister(HtmlListBox
)
1956 def PreHtmlListBox(*args
, **kwargs
):
1957 """PreHtmlListBox() -> HtmlListBox"""
1958 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
1961 #---------------------------------------------------------------------------
1963 class TaskBarIcon(_core
.EvtHandler
):
1964 """Proxy of C++ TaskBarIcon class"""
1965 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1966 __repr__
= _swig_repr
1967 def __init__(self
, *args
, **kwargs
):
1968 """__init__(self) -> TaskBarIcon"""
1969 _windows_
.TaskBarIcon_swiginit(self
,_windows_
.new_TaskBarIcon(*args
, **kwargs
))
1970 self
._setCallbackInfo
(self
, TaskBarIcon
, 0)
1972 __swig_destroy__
= _windows_
.delete_TaskBarIcon
1973 __del__
= lambda self
: None;
1974 def _setCallbackInfo(*args
, **kwargs
):
1975 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
1976 return _windows_
.TaskBarIcon__setCallbackInfo(*args
, **kwargs
)
1978 def Destroy(*args
, **kwargs
):
1982 Deletes the C++ object this Python object is a proxy for.
1984 val
= _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
1988 def IsOk(*args
, **kwargs
):
1989 """IsOk(self) -> bool"""
1990 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
1992 def __nonzero__(self
): return self
.IsOk()
1993 def IsIconInstalled(*args
, **kwargs
):
1994 """IsIconInstalled(self) -> bool"""
1995 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
1997 def SetIcon(*args
, **kwargs
):
1998 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
1999 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2001 def RemoveIcon(*args
, **kwargs
):
2002 """RemoveIcon(self) -> bool"""
2003 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2005 def PopupMenu(*args
, **kwargs
):
2006 """PopupMenu(self, Menu menu) -> bool"""
2007 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2009 _windows_
.TaskBarIcon_swigregister(TaskBarIcon
)
2011 class TaskBarIconEvent(_core
.Event
):
2012 """Proxy of C++ TaskBarIconEvent class"""
2013 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2014 __repr__
= _swig_repr
2015 def __init__(self
, *args
, **kwargs
):
2016 """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
2017 _windows_
.TaskBarIconEvent_swiginit(self
,_windows_
.new_TaskBarIconEvent(*args
, **kwargs
))
2018 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEvent
)
2020 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2021 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2022 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2023 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2024 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2025 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2026 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2027 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2028 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2029 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2030 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2031 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2032 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2033 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2035 #---------------------------------------------------------------------------
2037 class ColourData(_core
.Object
):
2039 This class holds a variety of information related to the colour
2040 chooser dialog, used to transfer settings and results to and from the
2043 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2044 __repr__
= _swig_repr
2045 def __init__(self
, *args
, **kwargs
):
2047 __init__(self) -> ColourData
2049 Constructor, sets default values.
2051 _windows_
.ColourData_swiginit(self
,_windows_
.new_ColourData(*args
, **kwargs
))
2052 __swig_destroy__
= _windows_
.delete_ColourData
2053 __del__
= lambda self
: None;
2054 def GetChooseFull(*args
, **kwargs
):
2056 GetChooseFull(self) -> bool
2058 Under Windows, determines whether the Windows colour dialog will
2059 display the full dialog with custom colour selection controls. Has no
2060 meaning under other platforms. The default value is true.
2062 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2064 def GetColour(*args
, **kwargs
):
2066 GetColour(self) -> Colour
2068 Gets the colour (pre)selected by the dialog.
2070 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2072 def GetCustomColour(*args
, **kwargs
):
2074 GetCustomColour(self, int i) -> Colour
2076 Gets the i'th custom colour associated with the colour dialog. i
2077 should be an integer between 0 and 15. The default custom colours are
2078 all invalid colours.
2080 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2082 def SetChooseFull(*args
, **kwargs
):
2084 SetChooseFull(self, int flag)
2086 Under Windows, tells the Windows colour dialog to display the full
2087 dialog with custom colour selection controls. Under other platforms,
2088 has no effect. The default value is true.
2090 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2092 def SetColour(*args
, **kwargs
):
2094 SetColour(self, Colour colour)
2096 Sets the default colour for the colour dialog. The default colour is
2099 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2101 def SetCustomColour(*args
, **kwargs
):
2103 SetCustomColour(self, int i, Colour colour)
2105 Sets the i'th custom colour for the colour dialog. i should be an
2106 integer between 0 and 15. The default custom colours are all invalid colours.
2108 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2110 _windows_
.ColourData_swigregister(ColourData
)
2111 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2112 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2113 DirDialogNameStr
= cvar
.DirDialogNameStr
2114 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2115 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2116 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2118 class ColourDialog(Dialog
):
2119 """This class represents the colour chooser dialog."""
2120 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2121 __repr__
= _swig_repr
2122 def __init__(self
, *args
, **kwargs
):
2124 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2126 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2127 which will be copied to the colour dialog's internal ColourData
2130 _windows_
.ColourDialog_swiginit(self
,_windows_
.new_ColourDialog(*args
, **kwargs
))
2131 self
._setOORInfo
(self
)
2133 def GetColourData(*args
, **kwargs
):
2135 GetColourData(self) -> ColourData
2137 Returns a reference to the `wx.ColourData` used by the dialog.
2139 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2141 _windows_
.ColourDialog_swigregister(ColourDialog
)
2144 def GetColourFromUser(*args
, **kwargs
):
2146 GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour,
2147 String caption=EmptyString) -> Colour
2149 return _windows_
.GetColourFromUser(*args
, **kwargs
)
2150 DD_NEW_DIR_BUTTON
= _windows_
.DD_NEW_DIR_BUTTON
2151 DD_DEFAULT_STYLE
= _windows_
.DD_DEFAULT_STYLE
2152 DD_CHANGE_DIR
= _windows_
.DD_CHANGE_DIR
2153 class DirDialog(Dialog
):
2155 wx.DirDialog allows the user to select a directory by browising the
2158 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2159 __repr__
= _swig_repr
2160 def __init__(self
, *args
, **kwargs
):
2162 __init__(self, Window parent, String message=DirSelectorPromptStr,
2163 String defaultPath=EmptyString, long style=DD_DEFAULT_STYLE,
2164 Point pos=DefaultPosition, Size size=DefaultSize,
2165 String name=DirDialogNameStr) -> DirDialog
2167 Constructor. Use ShowModal method to show the dialog.
2169 _windows_
.DirDialog_swiginit(self
,_windows_
.new_DirDialog(*args
, **kwargs
))
2170 self
._setOORInfo
(self
)
2172 def GetPath(*args
, **kwargs
):
2174 GetPath(self) -> String
2176 Returns the default or user-selected path.
2178 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2180 def GetMessage(*args
, **kwargs
):
2182 GetMessage(self) -> String
2184 Returns the message that will be displayed on the dialog.
2186 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2188 def SetMessage(*args
, **kwargs
):
2190 SetMessage(self, String message)
2192 Sets the message that will be displayed on the dialog.
2194 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2196 def SetPath(*args
, **kwargs
):
2198 SetPath(self, String path)
2200 Sets the default path.
2202 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2204 _windows_
.DirDialog_swigregister(DirDialog
)
2206 OPEN
= _windows_
.OPEN
2207 SAVE
= _windows_
.SAVE
2208 OVERWRITE_PROMPT
= _windows_
.OVERWRITE_PROMPT
2209 FILE_MUST_EXIST
= _windows_
.FILE_MUST_EXIST
2210 MULTIPLE
= _windows_
.MULTIPLE
2211 CHANGE_DIR
= _windows_
.CHANGE_DIR
2212 HIDE_READONLY
= _windows_
.HIDE_READONLY
2213 FD_OPEN
= _windows_
.FD_OPEN
2214 FD_SAVE
= _windows_
.FD_SAVE
2215 FD_OVERWRITE_PROMPT
= _windows_
.FD_OVERWRITE_PROMPT
2216 FD_FILE_MUST_EXIST
= _windows_
.FD_FILE_MUST_EXIST
2217 FD_MULTIPLE
= _windows_
.FD_MULTIPLE
2218 FD_CHANGE_DIR
= _windows_
.FD_CHANGE_DIR
2219 FD_DEFAULT_STYLE
= _windows_
.FD_DEFAULT_STYLE
2220 class FileDialog(Dialog
):
2222 wx.FileDialog allows the user to select one or more files from the
2225 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2226 __repr__
= _swig_repr
2227 def __init__(self
, *args
, **kwargs
):
2229 __init__(self, Window parent, String message=FileSelectorPromptStr,
2230 String defaultDir=EmptyString, String defaultFile=EmptyString,
2231 String wildcard=FileSelectorDefaultWildcardStr,
2232 long style=FD_DEFAULT_STYLE,
2233 Point pos=DefaultPosition) -> FileDialog
2235 Constructor. Use ShowModal method to show the dialog.
2237 _windows_
.FileDialog_swiginit(self
,_windows_
.new_FileDialog(*args
, **kwargs
))
2238 self
._setOORInfo
(self
)
2240 def SetMessage(*args
, **kwargs
):
2242 SetMessage(self, String message)
2244 Sets the message that will be displayed on the dialog.
2246 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2248 def SetPath(*args
, **kwargs
):
2250 SetPath(self, String path)
2252 Sets the path (the combined directory and filename that will be
2253 returned when the dialog is dismissed).
2255 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2257 def SetDirectory(*args
, **kwargs
):
2259 SetDirectory(self, String dir)
2261 Sets the default directory.
2263 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2265 def SetFilename(*args
, **kwargs
):
2267 SetFilename(self, String name)
2269 Sets the default filename.
2271 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2273 def SetWildcard(*args
, **kwargs
):
2275 SetWildcard(self, String wildCard)
2277 Sets the wildcard, which can contain multiple file types, for
2280 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2283 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2285 def SetFilterIndex(*args
, **kwargs
):
2287 SetFilterIndex(self, int filterIndex)
2289 Sets the default filter index, starting from zero.
2291 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2293 def GetMessage(*args
, **kwargs
):
2295 GetMessage(self) -> String
2297 Returns the message that will be displayed on the dialog.
2299 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2301 def GetPath(*args
, **kwargs
):
2303 GetPath(self) -> String
2305 Returns the full path (directory and filename) of the selected file.
2307 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2309 def GetDirectory(*args
, **kwargs
):
2311 GetDirectory(self) -> String
2313 Returns the default directory.
2315 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2317 def GetFilename(*args
, **kwargs
):
2319 GetFilename(self) -> String
2321 Returns the default filename.
2323 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2325 def GetWildcard(*args
, **kwargs
):
2327 GetWildcard(self) -> String
2329 Returns the file dialog wildcard.
2331 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2333 def GetFilterIndex(*args
, **kwargs
):
2335 GetFilterIndex(self) -> int
2337 Returns the index into the list of filters supplied, optionally, in
2338 the wildcard parameter. Before the dialog is shown, this is the index
2339 which will be used when the dialog is first displayed. After the
2340 dialog is shown, this is the index selected by the user.
2342 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2344 def GetFilenames(*args
, **kwargs
):
2346 GetFilenames(self) -> PyObject
2348 Returns a list of filenames chosen in the dialog. This function
2349 should only be used with the dialogs which have wx.MULTIPLE style, use
2350 GetFilename for the others.
2352 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2354 def GetPaths(*args
, **kwargs
):
2356 GetPaths(self) -> PyObject
2358 Fills the array paths with the full paths of the files chosen. This
2359 function should only be used with the dialogs which have wx.MULTIPLE
2360 style, use GetPath for the others.
2362 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2364 _windows_
.FileDialog_swigregister(FileDialog
)
2366 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2367 class MultiChoiceDialog(Dialog
):
2368 """A simple dialog with a multi selection listbox."""
2369 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2370 __repr__
= _swig_repr
2371 def __init__(self
, *args
, **kwargs
):
2373 __init__(self, Window parent, String message, String caption,
2374 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2375 Point pos=DefaultPosition) -> MultiChoiceDialog
2377 Constructor. Use the `ShowModal` method to show the dialog.
2379 :param parent: The parent window.
2380 :param message: Text to display above the list of selections.
2381 :param caption: Text to use in the title bar of the dialog.
2382 :param choices: A list of strings or unicode objects that the
2383 user is allowed to choose from.
2384 :param style: Styles to apply to the dialog. The default value is
2385 equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
2386 :param pos: Where to position the dialog (not used on Windows)
2390 _windows_
.MultiChoiceDialog_swiginit(self
,_windows_
.new_MultiChoiceDialog(*args
, **kwargs
))
2391 self
._setOORInfo
(self
)
2393 def SetSelections(*args
, **kwargs
):
2395 SetSelections(List selections)
2397 Specify the items in the list that should be selected, using a list of
2398 integers. The list should specify the indexes of the items that
2401 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2403 def GetSelections(*args
, **kwargs
):
2405 GetSelections() -> [selections]
2407 Returns a list of integers representing the items that are selected.
2408 If an item is selected then its index will appear in the list.
2410 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2412 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialog
)
2414 class SingleChoiceDialog(Dialog
):
2415 """A simple dialog with a single selection listbox."""
2416 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2417 __repr__
= _swig_repr
2418 def __init__(self
, *args
, **kwargs
):
2420 __init__(Window parent, String message, String caption,
2421 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2422 Point pos=DefaultPosition) -> SingleChoiceDialog
2424 Constructor. Use ShowModal method to show the dialog.
2426 _windows_
.SingleChoiceDialog_swiginit(self
,_windows_
.new_SingleChoiceDialog(*args
, **kwargs
))
2427 self
._setOORInfo
(self
)
2429 def GetSelection(*args
, **kwargs
):
2431 GetSelection(self) -> int
2433 Get the index of teh currently selected item.
2435 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2437 def GetStringSelection(*args
, **kwargs
):
2439 GetStringSelection(self) -> String
2441 Returns the string value of the currently selected item
2443 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2445 def SetSelection(*args
, **kwargs
):
2447 SetSelection(self, int sel)
2449 Set the current selected item to sel
2451 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2453 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialog
)
2455 TextEntryDialogStyle
= _windows_
.TextEntryDialogStyle
2456 class TextEntryDialog(Dialog
):
2457 """A dialog with text control, [ok] and [cancel] buttons"""
2458 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2459 __repr__
= _swig_repr
2460 def __init__(self
, *args
, **kwargs
):
2462 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2463 String defaultValue=EmptyString,
2464 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
2466 Constructor. Use ShowModal method to show the dialog.
2468 _windows_
.TextEntryDialog_swiginit(self
,_windows_
.new_TextEntryDialog(*args
, **kwargs
))
2469 self
._setOORInfo
(self
)
2471 def GetValue(*args
, **kwargs
):
2473 GetValue(self) -> String
2475 Returns the text that the user has entered if the user has pressed OK,
2476 or the original value if the user has pressed Cancel.
2478 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2480 def SetValue(*args
, **kwargs
):
2482 SetValue(self, String value)
2484 Sets the default text value.
2486 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2488 _windows_
.TextEntryDialog_swigregister(TextEntryDialog
)
2490 class PasswordEntryDialog(TextEntryDialog
):
2491 """Proxy of C++ PasswordEntryDialog class"""
2492 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2493 __repr__
= _swig_repr
2494 def __init__(self
, *args
, **kwargs
):
2496 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2497 String value=EmptyString,
2498 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
2500 _windows_
.PasswordEntryDialog_swiginit(self
,_windows_
.new_PasswordEntryDialog(*args
, **kwargs
))
2501 _windows_
.PasswordEntryDialog_swigregister(PasswordEntryDialog
)
2502 GetPasswordFromUserPromptStr
= cvar
.GetPasswordFromUserPromptStr
2504 class FontData(_core
.Object
):
2506 This class holds a variety of information related to font dialogs and
2507 is used to transfer settings to and results from a `wx.FontDialog`.
2509 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2510 __repr__
= _swig_repr
2511 def __init__(self
, *args
, **kwargs
):
2513 __init__(self) -> FontData
2515 This class holds a variety of information related to font dialogs and
2516 is used to transfer settings to and results from a `wx.FontDialog`.
2518 _windows_
.FontData_swiginit(self
,_windows_
.new_FontData(*args
, **kwargs
))
2519 __swig_destroy__
= _windows_
.delete_FontData
2520 __del__
= lambda self
: None;
2521 def EnableEffects(*args
, **kwargs
):
2523 EnableEffects(self, bool enable)
2525 Enables or disables 'effects' under MS Windows only. This refers to
2526 the controls for manipulating colour, strikeout and underline
2527 properties. The default value is true.
2529 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2531 def GetAllowSymbols(*args
, **kwargs
):
2533 GetAllowSymbols(self) -> bool
2535 Under MS Windows, returns a flag determining whether symbol fonts can
2536 be selected. Has no effect on other platforms. The default value is
2539 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2541 def GetColour(*args
, **kwargs
):
2543 GetColour(self) -> Colour
2545 Gets the colour associated with the font dialog. The default value is
2548 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2550 def GetChosenFont(*args
, **kwargs
):
2552 GetChosenFont(self) -> Font
2554 Gets the font chosen by the user.
2556 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2558 def GetEnableEffects(*args
, **kwargs
):
2560 GetEnableEffects(self) -> bool
2562 Determines whether 'effects' are enabled under Windows.
2564 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2566 def GetInitialFont(*args
, **kwargs
):
2568 GetInitialFont(self) -> Font
2570 Gets the font that will be initially used by the font dialog. This
2571 should have previously been set by the application.
2573 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2575 def GetShowHelp(*args
, **kwargs
):
2577 GetShowHelp(self) -> bool
2579 Returns true if the Help button will be shown (Windows only). The
2580 default value is false.
2582 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2584 def SetAllowSymbols(*args
, **kwargs
):
2586 SetAllowSymbols(self, bool allowSymbols)
2588 Under MS Windows, determines whether symbol fonts can be selected. Has
2589 no effect on other platforms. The default value is true.
2591 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2593 def SetChosenFont(*args
, **kwargs
):
2595 SetChosenFont(self, Font font)
2597 Sets the font that will be returned to the user (normally for internal
2600 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2602 def SetColour(*args
, **kwargs
):
2604 SetColour(self, Colour colour)
2606 Sets the colour that will be used for the font foreground colour. The
2607 default colour is black.
2609 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2611 def SetInitialFont(*args
, **kwargs
):
2613 SetInitialFont(self, Font font)
2615 Sets the font that will be initially used by the font dialog.
2617 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2619 def SetRange(*args
, **kwargs
):
2621 SetRange(self, int min, int max)
2623 Sets the valid range for the font point size (Windows only). The
2624 default is 0, 0 (unrestricted range).
2626 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2628 def SetShowHelp(*args
, **kwargs
):
2630 SetShowHelp(self, bool showHelp)
2632 Determines whether the Help button will be displayed in the font
2633 dialog (Windows only). The default value is false.
2635 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2637 _windows_
.FontData_swigregister(FontData
)
2639 class FontDialog(Dialog
):
2641 wx.FontDialog allows the user to select a system font and its attributes.
2646 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2647 __repr__
= _swig_repr
2648 def __init__(self
, *args
, **kwargs
):
2650 __init__(self, Window parent, FontData data) -> FontDialog
2652 Constructor. Pass a parent window and the `wx.FontData` object to be
2653 used to initialize the dialog controls. Call `ShowModal` to display
2654 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2655 results with via the `wx.FontData` returned by `GetFontData`.
2657 _windows_
.FontDialog_swiginit(self
,_windows_
.new_FontDialog(*args
, **kwargs
))
2658 self
._setOORInfo
(self
)
2660 def GetFontData(*args
, **kwargs
):
2662 GetFontData(self) -> FontData
2664 Returns a reference to the internal `wx.FontData` used by the
2667 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2669 _windows_
.FontDialog_swigregister(FontDialog
)
2672 def GetFontFromUser(*args
, **kwargs
):
2673 """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font"""
2674 return _windows_
.GetFontFromUser(*args
, **kwargs
)
2675 class MessageDialog(Dialog
):
2677 This class provides a simple dialog that shows a single or multi-line
2678 message, with a choice of OK, Yes, No and/or Cancel buttons.
2680 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2681 __repr__
= _swig_repr
2682 def __init__(self
, *args
, **kwargs
):
2684 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2685 long style=wxOK|wxCANCEL|wxCENTRE,
2686 Point pos=DefaultPosition) -> MessageDialog
2688 Constructor, use `ShowModal` to display the dialog.
2690 _windows_
.MessageDialog_swiginit(self
,_windows_
.new_MessageDialog(*args
, **kwargs
))
2691 self
._setOORInfo
(self
)
2693 _windows_
.MessageDialog_swigregister(MessageDialog
)
2695 class ProgressDialog(Frame
):
2697 A dialog that shows a short message and a progress bar. Optionally, it
2698 can display an ABORT button.
2700 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2701 __repr__
= _swig_repr
2702 def __init__(self
, *args
, **kwargs
):
2704 __init__(self, String title, String message, int maximum=100, Window parent=None,
2705 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2707 Constructor. Creates the dialog, displays it and disables user input
2708 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2711 _windows_
.ProgressDialog_swiginit(self
,_windows_
.new_ProgressDialog(*args
, **kwargs
))
2712 self
._setOORInfo
(self
)
2714 def Update(*args
, **kwargs
):
2716 Update(self, int value, String newmsg) --> (continue, skip)
2718 Updates the dialog, setting the progress bar to the new value and, if
2719 given changes the message above it. The value given should be less
2720 than or equal to the maximum value given to the constructor and the
2721 dialog is closed if it is equal to the maximum. Returns a tuple of
2722 boolean values, ``(continue, skip)`` where ``continue`` is ``True``
2723 unless the Cancel button has been pressed, and ``skip`` is ``False``
2724 unless the Skip button (if any) has been pressed.
2726 If the ``continue`` return value is ``false``, the application can either
2727 immediately destroy the dialog or ask the user for confirmation, and if the
2728 abort is not confirmed the dialog may be resumed with `Resume` function.
2731 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2733 def Resume(*args
, **kwargs
):
2737 Can be used to continue with the dialog, after the user had chosen to
2740 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2742 _windows_
.ProgressDialog_swigregister(ProgressDialog
)
2744 FR_DOWN
= _windows_
.FR_DOWN
2745 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2746 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2747 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2748 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2749 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2750 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2751 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2752 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2753 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2754 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2755 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2756 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2757 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2758 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2759 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2760 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2762 # For backwards compatibility. Should they be removed?
2763 EVT_COMMAND_FIND
= EVT_FIND
2764 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2765 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2766 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2767 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2769 class FindDialogEvent(_core
.CommandEvent
):
2770 """Events for the FindReplaceDialog"""
2771 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2772 __repr__
= _swig_repr
2773 def __init__(self
, *args
, **kwargs
):
2775 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2777 Events for the FindReplaceDialog
2779 _windows_
.FindDialogEvent_swiginit(self
,_windows_
.new_FindDialogEvent(*args
, **kwargs
))
2780 def GetFlags(*args
, **kwargs
):
2782 GetFlags(self) -> int
2784 Get the currently selected flags: this is the combination of
2785 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2787 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2789 def GetFindString(*args
, **kwargs
):
2791 GetFindString(self) -> String
2793 Return the string to find (never empty).
2795 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2797 def GetReplaceString(*args
, **kwargs
):
2799 GetReplaceString(self) -> String
2801 Return the string to replace the search string with (only for replace
2802 and replace all events).
2804 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2806 def GetDialog(*args
, **kwargs
):
2808 GetDialog(self) -> FindReplaceDialog
2810 Return the pointer to the dialog which generated this event.
2812 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2814 def SetFlags(*args
, **kwargs
):
2815 """SetFlags(self, int flags)"""
2816 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2818 def SetFindString(*args
, **kwargs
):
2819 """SetFindString(self, String str)"""
2820 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2822 def SetReplaceString(*args
, **kwargs
):
2823 """SetReplaceString(self, String str)"""
2824 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2826 _windows_
.FindDialogEvent_swigregister(FindDialogEvent
)
2828 class FindReplaceData(_core
.Object
):
2830 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2831 to initialize the dialog with the default values and will keep the
2832 last values from the dialog when it is closed. It is also updated each
2833 time a `wx.FindDialogEvent` is generated so instead of using the
2834 `wx.FindDialogEvent` methods you can also directly query this object.
2836 Note that all SetXXX() methods may only be called before showing the
2837 dialog and calling them has no effect later.
2839 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2840 __repr__
= _swig_repr
2841 def __init__(self
, *args
, **kwargs
):
2843 __init__(self, int flags=0) -> FindReplaceData
2845 Constuctor initializes the flags to default value (0).
2847 _windows_
.FindReplaceData_swiginit(self
,_windows_
.new_FindReplaceData(*args
, **kwargs
))
2848 __swig_destroy__
= _windows_
.delete_FindReplaceData
2849 __del__
= lambda self
: None;
2850 def GetFindString(*args
, **kwargs
):
2852 GetFindString(self) -> String
2854 Get the string to find.
2856 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
2858 def GetReplaceString(*args
, **kwargs
):
2860 GetReplaceString(self) -> String
2862 Get the replacement string.
2864 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2866 def GetFlags(*args
, **kwargs
):
2868 GetFlags(self) -> int
2870 Get the combination of flag values.
2872 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
2874 def SetFlags(*args
, **kwargs
):
2876 SetFlags(self, int flags)
2878 Set the flags to use to initialize the controls of the dialog.
2880 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
2882 def SetFindString(*args
, **kwargs
):
2884 SetFindString(self, String str)
2886 Set the string to find (used as initial value by the dialog).
2888 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
2890 def SetReplaceString(*args
, **kwargs
):
2892 SetReplaceString(self, String str)
2894 Set the replacement string (used as initial value by the dialog).
2896 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
2898 _windows_
.FindReplaceData_swigregister(FindReplaceData
)
2900 class FindReplaceDialog(Dialog
):
2902 wx.FindReplaceDialog is a standard modeless dialog which is used to
2903 allow the user to search for some text (and possibly replace it with
2904 something else). The actual searching is supposed to be done in the
2905 owner window which is the parent of this dialog. Note that it means
2906 that unlike for the other standard dialogs this one must have a parent
2907 window. Also note that there is no way to use this dialog in a modal
2908 way; it is always, by design and implementation, modeless.
2910 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2911 __repr__
= _swig_repr
2912 def __init__(self
, *args
, **kwargs
):
2914 __init__(self, Window parent, FindReplaceData data, String title,
2915 int style=0) -> FindReplaceDialog
2917 Create a FindReplaceDialog. The parent and data parameters must be
2918 non-None. Use Show to display the dialog.
2920 _windows_
.FindReplaceDialog_swiginit(self
,_windows_
.new_FindReplaceDialog(*args
, **kwargs
))
2921 self
._setOORInfo
(self
)
2923 def Create(*args
, **kwargs
):
2925 Create(self, Window parent, FindReplaceData data, String title,
2926 int style=0) -> bool
2928 Create the dialog, for 2-phase create.
2930 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
2932 def GetData(*args
, **kwargs
):
2934 GetData(self) -> FindReplaceData
2936 Get the FindReplaceData object used by this dialog.
2938 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
2940 def SetData(*args
, **kwargs
):
2942 SetData(self, FindReplaceData data)
2944 Set the FindReplaceData object used by this dialog.
2946 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
2948 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialog
)
2950 def PreFindReplaceDialog(*args
, **kwargs
):
2952 PreFindReplaceDialog() -> FindReplaceDialog
2954 Precreate a FindReplaceDialog for 2-phase creation
2956 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
2959 #---------------------------------------------------------------------------
2961 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
2962 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
2963 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
2964 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
2965 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
2966 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
2967 IDM_WINDOWPREV
= _windows_
.IDM_WINDOWPREV
2968 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
2969 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
2970 class MDIParentFrame(Frame
):
2971 """Proxy of C++ MDIParentFrame class"""
2972 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2973 __repr__
= _swig_repr
2974 def __init__(self
, *args
, **kwargs
):
2976 __init__(self, Window parent, int id=-1, String title=EmptyString,
2977 Point pos=DefaultPosition, Size size=DefaultSize,
2978 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2979 String name=FrameNameStr) -> MDIParentFrame
2981 _windows_
.MDIParentFrame_swiginit(self
,_windows_
.new_MDIParentFrame(*args
, **kwargs
))
2982 self
._setOORInfo
(self
)
2984 def Create(*args
, **kwargs
):
2986 Create(self, Window parent, int id=-1, String title=EmptyString,
2987 Point pos=DefaultPosition, Size size=DefaultSize,
2988 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2989 String name=FrameNameStr) -> bool
2991 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
2993 def ActivateNext(*args
, **kwargs
):
2994 """ActivateNext(self)"""
2995 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
2997 def ActivatePrevious(*args
, **kwargs
):
2998 """ActivatePrevious(self)"""
2999 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3001 def ArrangeIcons(*args
, **kwargs
):
3002 """ArrangeIcons(self)"""
3003 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3005 def Cascade(*args
, **kwargs
):
3007 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3009 def GetActiveChild(*args
, **kwargs
):
3010 """GetActiveChild(self) -> MDIChildFrame"""
3011 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3013 def GetClientWindow(*args
, **kwargs
):
3014 """GetClientWindow(self) -> MDIClientWindow"""
3015 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3017 def GetToolBar(*args
, **kwargs
):
3018 """GetToolBar(self) -> Window"""
3019 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3021 def GetWindowMenu(*args
, **kwargs
):
3022 """GetWindowMenu(self) -> Menu"""
3023 return _windows_
.MDIParentFrame_GetWindowMenu(*args
, **kwargs
)
3025 def SetWindowMenu(*args
, **kwargs
):
3026 """SetWindowMenu(self, Menu menu)"""
3027 return _windows_
.MDIParentFrame_SetWindowMenu(*args
, **kwargs
)
3029 def Tile(*args
, **kwargs
):
3030 """Tile(self, int orient=HORIZONTAL)"""
3031 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3033 _windows_
.MDIParentFrame_swigregister(MDIParentFrame
)
3035 def PreMDIParentFrame(*args
, **kwargs
):
3036 """PreMDIParentFrame() -> MDIParentFrame"""
3037 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3040 class MDIChildFrame(Frame
):
3041 """Proxy of C++ MDIChildFrame class"""
3042 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3043 __repr__
= _swig_repr
3044 def __init__(self
, *args
, **kwargs
):
3046 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3047 Point pos=DefaultPosition, Size size=DefaultSize,
3048 long style=DEFAULT_FRAME_STYLE,
3049 String name=FrameNameStr) -> MDIChildFrame
3051 _windows_
.MDIChildFrame_swiginit(self
,_windows_
.new_MDIChildFrame(*args
, **kwargs
))
3052 self
._setOORInfo
(self
)
3054 def Create(*args
, **kwargs
):
3056 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3057 Point pos=DefaultPosition, Size size=DefaultSize,
3058 long style=DEFAULT_FRAME_STYLE,
3059 String name=FrameNameStr) -> bool
3061 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3063 def Activate(*args
, **kwargs
):
3064 """Activate(self)"""
3065 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3067 _windows_
.MDIChildFrame_swigregister(MDIChildFrame
)
3069 def PreMDIChildFrame(*args
, **kwargs
):
3070 """PreMDIChildFrame() -> MDIChildFrame"""
3071 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3074 class MDIClientWindow(_core
.Window
):
3075 """Proxy of C++ MDIClientWindow class"""
3076 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3077 __repr__
= _swig_repr
3078 def __init__(self
, *args
, **kwargs
):
3079 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3080 _windows_
.MDIClientWindow_swiginit(self
,_windows_
.new_MDIClientWindow(*args
, **kwargs
))
3081 self
._setOORInfo
(self
)
3083 def Create(*args
, **kwargs
):
3084 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3085 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3087 _windows_
.MDIClientWindow_swigregister(MDIClientWindow
)
3089 def PreMDIClientWindow(*args
, **kwargs
):
3090 """PreMDIClientWindow() -> MDIClientWindow"""
3091 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3094 #---------------------------------------------------------------------------
3096 class PyWindow(_core
.Window
):
3097 """Proxy of C++ PyWindow class"""
3098 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3099 __repr__
= _swig_repr
3100 def __init__(self
, *args
, **kwargs
):
3102 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3103 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3105 _windows_
.PyWindow_swiginit(self
,_windows_
.new_PyWindow(*args
, **kwargs
))
3106 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3108 def _setCallbackInfo(*args
, **kwargs
):
3109 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3110 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3112 def SetBestSize(*args
, **kwargs
):
3113 """SetBestSize(self, Size size)"""
3114 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3116 def DoEraseBackground(*args
, **kwargs
):
3117 """DoEraseBackground(self, DC dc) -> bool"""
3118 return _windows_
.PyWindow_DoEraseBackground(*args
, **kwargs
)
3120 def DoMoveWindow(*args
, **kwargs
):
3121 """DoMoveWindow(self, int x, int y, int width, int height)"""
3122 return _windows_
.PyWindow_DoMoveWindow(*args
, **kwargs
)
3124 def DoSetSize(*args
, **kwargs
):
3125 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3126 return _windows_
.PyWindow_DoSetSize(*args
, **kwargs
)
3128 def DoSetClientSize(*args
, **kwargs
):
3129 """DoSetClientSize(self, int width, int height)"""
3130 return _windows_
.PyWindow_DoSetClientSize(*args
, **kwargs
)
3132 def DoSetVirtualSize(*args
, **kwargs
):
3133 """DoSetVirtualSize(self, int x, int y)"""
3134 return _windows_
.PyWindow_DoSetVirtualSize(*args
, **kwargs
)
3136 def DoGetSize(*args
, **kwargs
):
3137 """DoGetSize() -> (width, height)"""
3138 return _windows_
.PyWindow_DoGetSize(*args
, **kwargs
)
3140 def DoGetClientSize(*args
, **kwargs
):
3141 """DoGetClientSize() -> (width, height)"""
3142 return _windows_
.PyWindow_DoGetClientSize(*args
, **kwargs
)
3144 def DoGetPosition(*args
, **kwargs
):
3145 """DoGetPosition() -> (x,y)"""
3146 return _windows_
.PyWindow_DoGetPosition(*args
, **kwargs
)
3148 def DoGetVirtualSize(*args
, **kwargs
):
3149 """DoGetVirtualSize(self) -> Size"""
3150 return _windows_
.PyWindow_DoGetVirtualSize(*args
, **kwargs
)
3152 def DoGetBestSize(*args
, **kwargs
):
3153 """DoGetBestSize(self) -> Size"""
3154 return _windows_
.PyWindow_DoGetBestSize(*args
, **kwargs
)
3156 def GetDefaultAttributes(*args
, **kwargs
):
3157 """GetDefaultAttributes(self) -> VisualAttributes"""
3158 return _windows_
.PyWindow_GetDefaultAttributes(*args
, **kwargs
)
3160 def OnInternalIdle(*args
, **kwargs
):
3161 """OnInternalIdle(self)"""
3162 return _windows_
.PyWindow_OnInternalIdle(*args
, **kwargs
)
3164 def base_DoMoveWindow(*args
, **kw
):
3165 return PyWindow
.DoMoveWindow(*args
, **kw
)
3166 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3167 "Please use PyWindow.DoMoveWindow instead.")
3169 def base_DoSetSize(*args
, **kw
):
3170 return PyWindow
.DoSetSize(*args
, **kw
)
3171 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3172 "Please use PyWindow.DoSetSize instead.")
3174 def base_DoSetClientSize(*args
, **kw
):
3175 return PyWindow
.DoSetClientSize(*args
, **kw
)
3176 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3177 "Please use PyWindow.DoSetClientSize instead.")
3179 def base_DoSetVirtualSize(*args
, **kw
):
3180 return PyWindow
.DoSetVirtualSize(*args
, **kw
)
3181 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3182 "Please use PyWindow.DoSetVirtualSize instead.")
3184 def base_DoGetSize(*args
, **kw
):
3185 return PyWindow
.DoGetSize(*args
, **kw
)
3186 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3187 "Please use PyWindow.DoGetSize instead.")
3189 def base_DoGetClientSize(*args
, **kw
):
3190 return PyWindow
.DoGetClientSize(*args
, **kw
)
3191 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3192 "Please use PyWindow.DoGetClientSize instead.")
3194 def base_DoGetPosition(*args
, **kw
):
3195 return PyWindow
.DoGetPosition(*args
, **kw
)
3196 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3197 "Please use PyWindow.DoGetPosition instead.")
3199 def base_DoGetVirtualSize(*args
, **kw
):
3200 return PyWindow
.DoGetVirtualSize(*args
, **kw
)
3201 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3202 "Please use PyWindow.DoGetVirtualSize instead.")
3204 def base_DoGetBestSize(*args
, **kw
):
3205 return PyWindow
.DoGetBestSize(*args
, **kw
)
3206 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3207 "Please use PyWindow.DoGetBestSize instead.")
3209 def base_InitDialog(*args
, **kw
):
3210 return PyWindow
.InitDialog(*args
, **kw
)
3211 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3212 "Please use PyWindow.InitDialog instead.")
3214 def base_TransferDataToWindow(*args
, **kw
):
3215 return PyWindow
.TransferDataToWindow(*args
, **kw
)
3216 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3217 "Please use PyWindow.TransferDataToWindow instead.")
3219 def base_TransferDataFromWindow(*args
, **kw
):
3220 return PyWindow
.TransferDataFromWindow(*args
, **kw
)
3221 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3222 "Please use PyWindow.TransferDataFromWindow instead.")
3224 def base_Validate(*args
, **kw
):
3225 return PyWindow
.Validate(*args
, **kw
)
3226 base_Validate
= wx
._deprecated
(base_Validate
,
3227 "Please use PyWindow.Validate instead.")
3229 def base_AcceptsFocus(*args
, **kw
):
3230 return PyWindow
.AcceptsFocus(*args
, **kw
)
3231 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3232 "Please use PyWindow.AcceptsFocus instead.")
3234 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3235 return PyWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3236 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3237 "Please use PyWindow.AcceptsFocusFromKeyboard instead.")
3239 def base_GetMaxSize(*args
, **kw
):
3240 return PyWindow
.GetMaxSize(*args
, **kw
)
3241 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3242 "Please use PyWindow.GetMaxSize instead.")
3244 def base_AddChild(*args
, **kw
):
3245 return PyWindow
.AddChild(*args
, **kw
)
3246 base_AddChild
= wx
._deprecated
(base_AddChild
,
3247 "Please use PyWindow.AddChild instead.")
3249 def base_RemoveChild(*args
, **kw
):
3250 return PyWindow
.RemoveChild(*args
, **kw
)
3251 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3252 "Please use PyWindow.RemoveChild instead.")
3254 def base_ShouldInheritColours(*args
, **kw
):
3255 return PyWindow
.ShouldInheritColours(*args
, **kw
)
3256 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3257 "Please use PyWindow.ShouldInheritColours instead.")
3259 def base_GetDefaultAttributes(*args
, **kw
):
3260 return PyWindow
.GetDefaultAttributes(*args
, **kw
)
3261 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3262 "Please use PyWindow.GetDefaultAttributes instead.")
3264 def base_OnInternalIdle(*args
, **kw
):
3265 return PyWindow
.OnInternalIdle(*args
, **kw
)
3266 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3267 "Please use PyWindow.OnInternalIdle instead.")
3269 _windows_
.PyWindow_swigregister(PyWindow
)
3271 def PrePyWindow(*args
, **kwargs
):
3272 """PrePyWindow() -> PyWindow"""
3273 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3276 class PyPanel(Panel
):
3277 """Proxy of C++ PyPanel class"""
3278 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3279 __repr__
= _swig_repr
3280 def __init__(self
, *args
, **kwargs
):
3282 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3283 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3285 _windows_
.PyPanel_swiginit(self
,_windows_
.new_PyPanel(*args
, **kwargs
))
3286 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3288 def _setCallbackInfo(*args
, **kwargs
):
3289 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3290 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3292 def SetBestSize(*args
, **kwargs
):
3293 """SetBestSize(self, Size size)"""
3294 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3296 def DoEraseBackground(*args
, **kwargs
):
3297 """DoEraseBackground(self, DC dc) -> bool"""
3298 return _windows_
.PyPanel_DoEraseBackground(*args
, **kwargs
)
3300 def DoMoveWindow(*args
, **kwargs
):
3301 """DoMoveWindow(self, int x, int y, int width, int height)"""
3302 return _windows_
.PyPanel_DoMoveWindow(*args
, **kwargs
)
3304 def DoSetSize(*args
, **kwargs
):
3305 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3306 return _windows_
.PyPanel_DoSetSize(*args
, **kwargs
)
3308 def DoSetClientSize(*args
, **kwargs
):
3309 """DoSetClientSize(self, int width, int height)"""
3310 return _windows_
.PyPanel_DoSetClientSize(*args
, **kwargs
)
3312 def DoSetVirtualSize(*args
, **kwargs
):
3313 """DoSetVirtualSize(self, int x, int y)"""
3314 return _windows_
.PyPanel_DoSetVirtualSize(*args
, **kwargs
)
3316 def DoGetSize(*args
, **kwargs
):
3317 """DoGetSize() -> (width, height)"""
3318 return _windows_
.PyPanel_DoGetSize(*args
, **kwargs
)
3320 def DoGetClientSize(*args
, **kwargs
):
3321 """DoGetClientSize() -> (width, height)"""
3322 return _windows_
.PyPanel_DoGetClientSize(*args
, **kwargs
)
3324 def DoGetPosition(*args
, **kwargs
):
3325 """DoGetPosition() -> (x,y)"""
3326 return _windows_
.PyPanel_DoGetPosition(*args
, **kwargs
)
3328 def DoGetVirtualSize(*args
, **kwargs
):
3329 """DoGetVirtualSize(self) -> Size"""
3330 return _windows_
.PyPanel_DoGetVirtualSize(*args
, **kwargs
)
3332 def DoGetBestSize(*args
, **kwargs
):
3333 """DoGetBestSize(self) -> Size"""
3334 return _windows_
.PyPanel_DoGetBestSize(*args
, **kwargs
)
3336 def GetDefaultAttributes(*args
, **kwargs
):
3337 """GetDefaultAttributes(self) -> VisualAttributes"""
3338 return _windows_
.PyPanel_GetDefaultAttributes(*args
, **kwargs
)
3340 def OnInternalIdle(*args
, **kwargs
):
3341 """OnInternalIdle(self)"""
3342 return _windows_
.PyPanel_OnInternalIdle(*args
, **kwargs
)
3344 def base_DoMoveWindow(*args
, **kw
):
3345 return PyPanel
.DoMoveWindow(*args
, **kw
)
3346 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3347 "Please use PyPanel.DoMoveWindow instead.")
3349 def base_DoSetSize(*args
, **kw
):
3350 return PyPanel
.DoSetSize(*args
, **kw
)
3351 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3352 "Please use PyPanel.DoSetSize instead.")
3354 def base_DoSetClientSize(*args
, **kw
):
3355 return PyPanel
.DoSetClientSize(*args
, **kw
)
3356 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3357 "Please use PyPanel.DoSetClientSize instead.")
3359 def base_DoSetVirtualSize(*args
, **kw
):
3360 return PyPanel
.DoSetVirtualSize(*args
, **kw
)
3361 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3362 "Please use PyPanel.DoSetVirtualSize instead.")
3364 def base_DoGetSize(*args
, **kw
):
3365 return PyPanel
.DoGetSize(*args
, **kw
)
3366 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3367 "Please use PyPanel.DoGetSize instead.")
3369 def base_DoGetClientSize(*args
, **kw
):
3370 return PyPanel
.DoGetClientSize(*args
, **kw
)
3371 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3372 "Please use PyPanel.DoGetClientSize instead.")
3374 def base_DoGetPosition(*args
, **kw
):
3375 return PyPanel
.DoGetPosition(*args
, **kw
)
3376 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3377 "Please use PyPanel.DoGetPosition instead.")
3379 def base_DoGetVirtualSize(*args
, **kw
):
3380 return PyPanel
.DoGetVirtualSize(*args
, **kw
)
3381 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3382 "Please use PyPanel.DoGetVirtualSize instead.")
3384 def base_DoGetBestSize(*args
, **kw
):
3385 return PyPanel
.DoGetBestSize(*args
, **kw
)
3386 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3387 "Please use PyPanel.DoGetBestSize instead.")
3389 def base_InitDialog(*args
, **kw
):
3390 return PyPanel
.InitDialog(*args
, **kw
)
3391 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3392 "Please use PyPanel.InitDialog instead.")
3394 def base_TransferDataToWindow(*args
, **kw
):
3395 return PyPanel
.TransferDataToWindow(*args
, **kw
)
3396 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3397 "Please use PyPanel.TransferDataToWindow instead.")
3399 def base_TransferDataFromWindow(*args
, **kw
):
3400 return PyPanel
.TransferDataFromWindow(*args
, **kw
)
3401 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3402 "Please use PyPanel.TransferDataFromWindow instead.")
3404 def base_Validate(*args
, **kw
):
3405 return PyPanel
.Validate(*args
, **kw
)
3406 base_Validate
= wx
._deprecated
(base_Validate
,
3407 "Please use PyPanel.Validate instead.")
3409 def base_AcceptsFocus(*args
, **kw
):
3410 return PyPanel
.AcceptsFocus(*args
, **kw
)
3411 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3412 "Please use PyPanel.AcceptsFocus instead.")
3414 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3415 return PyPanel
.AcceptsFocusFromKeyboard(*args
, **kw
)
3416 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3417 "Please use PyPanel.AcceptsFocusFromKeyboard instead.")
3419 def base_GetMaxSize(*args
, **kw
):
3420 return PyPanel
.GetMaxSize(*args
, **kw
)
3421 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3422 "Please use PyPanel.GetMaxSize instead.")
3424 def base_AddChild(*args
, **kw
):
3425 return PyPanel
.AddChild(*args
, **kw
)
3426 base_AddChild
= wx
._deprecated
(base_AddChild
,
3427 "Please use PyPanel.AddChild instead.")
3429 def base_RemoveChild(*args
, **kw
):
3430 return PyPanel
.RemoveChild(*args
, **kw
)
3431 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3432 "Please use PyPanel.RemoveChild instead.")
3434 def base_ShouldInheritColours(*args
, **kw
):
3435 return PyPanel
.ShouldInheritColours(*args
, **kw
)
3436 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3437 "Please use PyPanel.ShouldInheritColours instead.")
3439 def base_GetDefaultAttributes(*args
, **kw
):
3440 return PyPanel
.GetDefaultAttributes(*args
, **kw
)
3441 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3442 "Please use PyPanel.GetDefaultAttributes instead.")
3444 def base_OnInternalIdle(*args
, **kw
):
3445 return PyPanel
.OnInternalIdle(*args
, **kw
)
3446 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3447 "Please use PyPanel.OnInternalIdle instead.")
3449 _windows_
.PyPanel_swigregister(PyPanel
)
3451 def PrePyPanel(*args
, **kwargs
):
3452 """PrePyPanel() -> PyPanel"""
3453 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3456 class PyScrolledWindow(ScrolledWindow
):
3457 """Proxy of C++ PyScrolledWindow class"""
3458 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3459 __repr__
= _swig_repr
3460 def __init__(self
, *args
, **kwargs
):
3462 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3463 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3465 _windows_
.PyScrolledWindow_swiginit(self
,_windows_
.new_PyScrolledWindow(*args
, **kwargs
))
3466 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyScrolledWindow
)
3468 def _setCallbackInfo(*args
, **kwargs
):
3469 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3470 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3472 def SetBestSize(*args
, **kwargs
):
3473 """SetBestSize(self, Size size)"""
3474 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3476 def DoEraseBackground(*args
, **kwargs
):
3477 """DoEraseBackground(self, DC dc) -> bool"""
3478 return _windows_
.PyScrolledWindow_DoEraseBackground(*args
, **kwargs
)
3480 def DoMoveWindow(*args
, **kwargs
):
3481 """DoMoveWindow(self, int x, int y, int width, int height)"""
3482 return _windows_
.PyScrolledWindow_DoMoveWindow(*args
, **kwargs
)
3484 def DoSetSize(*args
, **kwargs
):
3485 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3486 return _windows_
.PyScrolledWindow_DoSetSize(*args
, **kwargs
)
3488 def DoSetClientSize(*args
, **kwargs
):
3489 """DoSetClientSize(self, int width, int height)"""
3490 return _windows_
.PyScrolledWindow_DoSetClientSize(*args
, **kwargs
)
3492 def DoSetVirtualSize(*args
, **kwargs
):
3493 """DoSetVirtualSize(self, int x, int y)"""
3494 return _windows_
.PyScrolledWindow_DoSetVirtualSize(*args
, **kwargs
)
3496 def DoGetSize(*args
, **kwargs
):
3497 """DoGetSize() -> (width, height)"""
3498 return _windows_
.PyScrolledWindow_DoGetSize(*args
, **kwargs
)
3500 def DoGetClientSize(*args
, **kwargs
):
3501 """DoGetClientSize() -> (width, height)"""
3502 return _windows_
.PyScrolledWindow_DoGetClientSize(*args
, **kwargs
)
3504 def DoGetPosition(*args
, **kwargs
):
3505 """DoGetPosition() -> (x,y)"""
3506 return _windows_
.PyScrolledWindow_DoGetPosition(*args
, **kwargs
)
3508 def DoGetVirtualSize(*args
, **kwargs
):
3509 """DoGetVirtualSize(self) -> Size"""
3510 return _windows_
.PyScrolledWindow_DoGetVirtualSize(*args
, **kwargs
)
3512 def DoGetBestSize(*args
, **kwargs
):
3513 """DoGetBestSize(self) -> Size"""
3514 return _windows_
.PyScrolledWindow_DoGetBestSize(*args
, **kwargs
)
3516 def GetDefaultAttributes(*args
, **kwargs
):
3517 """GetDefaultAttributes(self) -> VisualAttributes"""
3518 return _windows_
.PyScrolledWindow_GetDefaultAttributes(*args
, **kwargs
)
3520 def OnInternalIdle(*args
, **kwargs
):
3521 """OnInternalIdle(self)"""
3522 return _windows_
.PyScrolledWindow_OnInternalIdle(*args
, **kwargs
)
3524 def base_DoMoveWindow(*args
, **kw
):
3525 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
3526 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3527 "Please use PyScrolledWindow.DoMoveWindow instead.")
3529 def base_DoSetSize(*args
, **kw
):
3530 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
3531 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3532 "Please use PyScrolledWindow.DoSetSize instead.")
3534 def base_DoSetClientSize(*args
, **kw
):
3535 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
3536 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3537 "Please use PyScrolledWindow.DoSetClientSize instead.")
3539 def base_DoSetVirtualSize(*args
, **kw
):
3540 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
3541 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3542 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
3544 def base_DoGetSize(*args
, **kw
):
3545 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
3546 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3547 "Please use PyScrolledWindow.DoGetSize instead.")
3549 def base_DoGetClientSize(*args
, **kw
):
3550 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
3551 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3552 "Please use PyScrolledWindow.DoGetClientSize instead.")
3554 def base_DoGetPosition(*args
, **kw
):
3555 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
3556 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3557 "Please use PyScrolledWindow.DoGetPosition instead.")
3559 def base_DoGetVirtualSize(*args
, **kw
):
3560 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
3561 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3562 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
3564 def base_DoGetBestSize(*args
, **kw
):
3565 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
3566 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3567 "Please use PyScrolledWindow.DoGetBestSize instead.")
3569 def base_InitDialog(*args
, **kw
):
3570 return PyScrolledWindow
.InitDialog(*args
, **kw
)
3571 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3572 "Please use PyScrolledWindow.InitDialog instead.")
3574 def base_TransferDataToWindow(*args
, **kw
):
3575 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
3576 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3577 "Please use PyScrolledWindow.TransferDataToWindow instead.")
3579 def base_TransferDataFromWindow(*args
, **kw
):
3580 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
3581 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3582 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
3584 def base_Validate(*args
, **kw
):
3585 return PyScrolledWindow
.Validate(*args
, **kw
)
3586 base_Validate
= wx
._deprecated
(base_Validate
,
3587 "Please use PyScrolledWindow.Validate instead.")
3589 def base_AcceptsFocus(*args
, **kw
):
3590 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
3591 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3592 "Please use PyScrolledWindow.AcceptsFocus instead.")
3594 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3595 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3596 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3597 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
3599 def base_GetMaxSize(*args
, **kw
):
3600 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
3601 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3602 "Please use PyScrolledWindow.GetMaxSize instead.")
3604 def base_AddChild(*args
, **kw
):
3605 return PyScrolledWindow
.AddChild(*args
, **kw
)
3606 base_AddChild
= wx
._deprecated
(base_AddChild
,
3607 "Please use PyScrolledWindow.AddChild instead.")
3609 def base_RemoveChild(*args
, **kw
):
3610 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
3611 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3612 "Please use PyScrolledWindow.RemoveChild instead.")
3614 def base_ShouldInheritColours(*args
, **kw
):
3615 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
3616 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3617 "Please use PyScrolledWindow.ShouldInheritColours instead.")
3619 def base_GetDefaultAttributes(*args
, **kw
):
3620 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
3621 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3622 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
3624 def base_OnInternalIdle(*args
, **kw
):
3625 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
3626 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3627 "Please use PyScrolledWindow.OnInternalIdle instead.")
3629 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindow
)
3631 def PrePyScrolledWindow(*args
, **kwargs
):
3632 """PrePyScrolledWindow() -> PyScrolledWindow"""
3633 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3636 #---------------------------------------------------------------------------
3638 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3639 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3640 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3641 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3642 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3643 PRINTBIN_DEFAULT
= _windows_
.PRINTBIN_DEFAULT
3644 PRINTBIN_ONLYONE
= _windows_
.PRINTBIN_ONLYONE
3645 PRINTBIN_LOWER
= _windows_
.PRINTBIN_LOWER
3646 PRINTBIN_MIDDLE
= _windows_
.PRINTBIN_MIDDLE
3647 PRINTBIN_MANUAL
= _windows_
.PRINTBIN_MANUAL
3648 PRINTBIN_ENVELOPE
= _windows_
.PRINTBIN_ENVELOPE
3649 PRINTBIN_ENVMANUAL
= _windows_
.PRINTBIN_ENVMANUAL
3650 PRINTBIN_AUTO
= _windows_
.PRINTBIN_AUTO
3651 PRINTBIN_TRACTOR
= _windows_
.PRINTBIN_TRACTOR
3652 PRINTBIN_SMALLFMT
= _windows_
.PRINTBIN_SMALLFMT
3653 PRINTBIN_LARGEFMT
= _windows_
.PRINTBIN_LARGEFMT
3654 PRINTBIN_LARGECAPACITY
= _windows_
.PRINTBIN_LARGECAPACITY
3655 PRINTBIN_CASSETTE
= _windows_
.PRINTBIN_CASSETTE
3656 PRINTBIN_FORMSOURCE
= _windows_
.PRINTBIN_FORMSOURCE
3657 PRINTBIN_USER
= _windows_
.PRINTBIN_USER
3658 class PrintData(_core
.Object
):
3659 """Proxy of C++ PrintData class"""
3660 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3661 __repr__
= _swig_repr
3662 def __init__(self
, *args
):
3664 __init__(self) -> PrintData
3665 __init__(self, PrintData data) -> PrintData
3667 _windows_
.PrintData_swiginit(self
,_windows_
.new_PrintData(*args
))
3668 __swig_destroy__
= _windows_
.delete_PrintData
3669 __del__
= lambda self
: None;
3670 def GetNoCopies(*args
, **kwargs
):
3671 """GetNoCopies(self) -> int"""
3672 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3674 def GetCollate(*args
, **kwargs
):
3675 """GetCollate(self) -> bool"""
3676 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3678 def GetOrientation(*args
, **kwargs
):
3679 """GetOrientation(self) -> int"""
3680 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3682 def Ok(*args
, **kwargs
):
3683 """Ok(self) -> bool"""
3684 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3686 def GetPrinterName(*args
, **kwargs
):
3687 """GetPrinterName(self) -> String"""
3688 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3690 def GetColour(*args
, **kwargs
):
3691 """GetColour(self) -> bool"""
3692 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3694 def GetDuplex(*args
, **kwargs
):
3695 """GetDuplex(self) -> int"""
3696 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3698 def GetPaperId(*args
, **kwargs
):
3699 """GetPaperId(self) -> int"""
3700 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3702 def GetPaperSize(*args
, **kwargs
):
3703 """GetPaperSize(self) -> Size"""
3704 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3706 def GetQuality(*args
, **kwargs
):
3707 """GetQuality(self) -> int"""
3708 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3710 def GetBin(*args
, **kwargs
):
3711 """GetBin(self) -> int"""
3712 return _windows_
.PrintData_GetBin(*args
, **kwargs
)
3714 def GetPrintMode(*args
, **kwargs
):
3715 """GetPrintMode(self) -> int"""
3716 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3718 def SetNoCopies(*args
, **kwargs
):
3719 """SetNoCopies(self, int v)"""
3720 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3722 def SetCollate(*args
, **kwargs
):
3723 """SetCollate(self, bool flag)"""
3724 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3726 def SetOrientation(*args
, **kwargs
):
3727 """SetOrientation(self, int orient)"""
3728 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3730 def SetPrinterName(*args
, **kwargs
):
3731 """SetPrinterName(self, String name)"""
3732 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3734 def SetColour(*args
, **kwargs
):
3735 """SetColour(self, bool colour)"""
3736 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3738 def SetDuplex(*args
, **kwargs
):
3739 """SetDuplex(self, int duplex)"""
3740 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3742 def SetPaperId(*args
, **kwargs
):
3743 """SetPaperId(self, int sizeId)"""
3744 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3746 def SetPaperSize(*args
, **kwargs
):
3747 """SetPaperSize(self, Size sz)"""
3748 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3750 def SetQuality(*args
, **kwargs
):
3751 """SetQuality(self, int quality)"""
3752 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3754 def SetBin(*args
, **kwargs
):
3755 """SetBin(self, int bin)"""
3756 return _windows_
.PrintData_SetBin(*args
, **kwargs
)
3758 def SetPrintMode(*args
, **kwargs
):
3759 """SetPrintMode(self, int printMode)"""
3760 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3762 def GetFilename(*args
, **kwargs
):
3763 """GetFilename(self) -> String"""
3764 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3766 def SetFilename(*args
, **kwargs
):
3767 """SetFilename(self, String filename)"""
3768 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3770 def __nonzero__(self
): return self
.Ok()
3771 def GetPrivData(*args
, **kwargs
):
3772 """GetPrivData(self) -> PyObject"""
3773 return _windows_
.PrintData_GetPrivData(*args
, **kwargs
)
3775 def SetPrivData(*args
, **kwargs
):
3776 """SetPrivData(self, PyObject data)"""
3777 return _windows_
.PrintData_SetPrivData(*args
, **kwargs
)
3779 _windows_
.PrintData_swigregister(PrintData
)
3780 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3781 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3783 class PageSetupDialogData(_core
.Object
):
3784 """Proxy of C++ PageSetupDialogData class"""
3785 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3786 __repr__
= _swig_repr
3787 def __init__(self
, *args
):
3789 __init__(self) -> PageSetupDialogData
3790 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3791 __init__(self, PrintData data) -> PageSetupDialogData
3793 _windows_
.PageSetupDialogData_swiginit(self
,_windows_
.new_PageSetupDialogData(*args
))
3794 __swig_destroy__
= _windows_
.delete_PageSetupDialogData
3795 __del__
= lambda self
: None;
3796 def EnableHelp(*args
, **kwargs
):
3797 """EnableHelp(self, bool flag)"""
3798 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3800 def EnableMargins(*args
, **kwargs
):
3801 """EnableMargins(self, bool flag)"""
3802 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3804 def EnableOrientation(*args
, **kwargs
):
3805 """EnableOrientation(self, bool flag)"""
3806 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3808 def EnablePaper(*args
, **kwargs
):
3809 """EnablePaper(self, bool flag)"""
3810 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3812 def EnablePrinter(*args
, **kwargs
):
3813 """EnablePrinter(self, bool flag)"""
3814 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3816 def GetDefaultMinMargins(*args
, **kwargs
):
3817 """GetDefaultMinMargins(self) -> bool"""
3818 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3820 def GetEnableMargins(*args
, **kwargs
):
3821 """GetEnableMargins(self) -> bool"""
3822 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3824 def GetEnableOrientation(*args
, **kwargs
):
3825 """GetEnableOrientation(self) -> bool"""
3826 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3828 def GetEnablePaper(*args
, **kwargs
):
3829 """GetEnablePaper(self) -> bool"""
3830 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3832 def GetEnablePrinter(*args
, **kwargs
):
3833 """GetEnablePrinter(self) -> bool"""
3834 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3836 def GetEnableHelp(*args
, **kwargs
):
3837 """GetEnableHelp(self) -> bool"""
3838 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3840 def GetDefaultInfo(*args
, **kwargs
):
3841 """GetDefaultInfo(self) -> bool"""
3842 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3844 def GetMarginTopLeft(*args
, **kwargs
):
3845 """GetMarginTopLeft(self) -> Point"""
3846 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3848 def GetMarginBottomRight(*args
, **kwargs
):
3849 """GetMarginBottomRight(self) -> Point"""
3850 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3852 def GetMinMarginTopLeft(*args
, **kwargs
):
3853 """GetMinMarginTopLeft(self) -> Point"""
3854 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3856 def GetMinMarginBottomRight(*args
, **kwargs
):
3857 """GetMinMarginBottomRight(self) -> Point"""
3858 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3860 def GetPaperId(*args
, **kwargs
):
3861 """GetPaperId(self) -> int"""
3862 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3864 def GetPaperSize(*args
, **kwargs
):
3865 """GetPaperSize(self) -> Size"""
3866 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3868 def GetPrintData(*args
, **kwargs
):
3869 """GetPrintData(self) -> PrintData"""
3870 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3872 def Ok(*args
, **kwargs
):
3873 """Ok(self) -> bool"""
3874 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3876 def SetDefaultInfo(*args
, **kwargs
):
3877 """SetDefaultInfo(self, bool flag)"""
3878 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3880 def SetDefaultMinMargins(*args
, **kwargs
):
3881 """SetDefaultMinMargins(self, bool flag)"""
3882 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3884 def SetMarginTopLeft(*args
, **kwargs
):
3885 """SetMarginTopLeft(self, Point pt)"""
3886 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3888 def SetMarginBottomRight(*args
, **kwargs
):
3889 """SetMarginBottomRight(self, Point pt)"""
3890 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3892 def SetMinMarginTopLeft(*args
, **kwargs
):
3893 """SetMinMarginTopLeft(self, Point pt)"""
3894 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3896 def SetMinMarginBottomRight(*args
, **kwargs
):
3897 """SetMinMarginBottomRight(self, Point pt)"""
3898 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3900 def SetPaperId(*args
, **kwargs
):
3901 """SetPaperId(self, int id)"""
3902 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3904 def SetPaperSize(*args
, **kwargs
):
3905 """SetPaperSize(self, Size size)"""
3906 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3908 def SetPrintData(*args
, **kwargs
):
3909 """SetPrintData(self, PrintData printData)"""
3910 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3912 def CalculateIdFromPaperSize(*args
, **kwargs
):
3913 """CalculateIdFromPaperSize(self)"""
3914 return _windows_
.PageSetupDialogData_CalculateIdFromPaperSize(*args
, **kwargs
)
3916 def CalculatePaperSizeFromId(*args
, **kwargs
):
3917 """CalculatePaperSizeFromId(self)"""
3918 return _windows_
.PageSetupDialogData_CalculatePaperSizeFromId(*args
, **kwargs
)
3920 def __nonzero__(self
): return self
.Ok()
3921 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogData
)
3923 class PageSetupDialog(_core
.Object
):
3924 """Proxy of C++ PageSetupDialog class"""
3925 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3926 __repr__
= _swig_repr
3927 def __init__(self
, *args
, **kwargs
):
3928 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
3929 _windows_
.PageSetupDialog_swiginit(self
,_windows_
.new_PageSetupDialog(*args
, **kwargs
))
3930 __swig_destroy__
= _windows_
.delete_PageSetupDialog
3931 __del__
= lambda self
: None;
3932 def GetPageSetupData(*args
, **kwargs
):
3933 """GetPageSetupData(self) -> PageSetupDialogData"""
3934 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
3936 def GetPageSetupDialogData(*args
, **kwargs
):
3937 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
3938 return _windows_
.PageSetupDialog_GetPageSetupDialogData(*args
, **kwargs
)
3940 def ShowModal(*args
, **kwargs
):
3941 """ShowModal(self) -> int"""
3942 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
3944 def Destroy(self
): pass
3945 _windows_
.PageSetupDialog_swigregister(PageSetupDialog
)
3947 class PrintDialogData(_core
.Object
):
3948 """Proxy of C++ PrintDialogData class"""
3949 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3950 __repr__
= _swig_repr
3951 def __init__(self
, *args
):
3953 __init__(self) -> PrintDialogData
3954 __init__(self, PrintData printData) -> PrintDialogData
3955 __init__(self, PrintDialogData printData) -> PrintDialogData
3957 _windows_
.PrintDialogData_swiginit(self
,_windows_
.new_PrintDialogData(*args
))
3958 __swig_destroy__
= _windows_
.delete_PrintDialogData
3959 __del__
= lambda self
: None;
3960 def GetFromPage(*args
, **kwargs
):
3961 """GetFromPage(self) -> int"""
3962 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
3964 def GetToPage(*args
, **kwargs
):
3965 """GetToPage(self) -> int"""
3966 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
3968 def GetMinPage(*args
, **kwargs
):
3969 """GetMinPage(self) -> int"""
3970 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
3972 def GetMaxPage(*args
, **kwargs
):
3973 """GetMaxPage(self) -> int"""
3974 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
3976 def GetNoCopies(*args
, **kwargs
):
3977 """GetNoCopies(self) -> int"""
3978 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
3980 def GetAllPages(*args
, **kwargs
):
3981 """GetAllPages(self) -> bool"""
3982 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
3984 def GetSelection(*args
, **kwargs
):
3985 """GetSelection(self) -> bool"""
3986 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
3988 def GetCollate(*args
, **kwargs
):
3989 """GetCollate(self) -> bool"""
3990 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
3992 def GetPrintToFile(*args
, **kwargs
):
3993 """GetPrintToFile(self) -> bool"""
3994 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
3996 def SetFromPage(*args
, **kwargs
):
3997 """SetFromPage(self, int v)"""
3998 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4000 def SetToPage(*args
, **kwargs
):
4001 """SetToPage(self, int v)"""
4002 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4004 def SetMinPage(*args
, **kwargs
):
4005 """SetMinPage(self, int v)"""
4006 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4008 def SetMaxPage(*args
, **kwargs
):
4009 """SetMaxPage(self, int v)"""
4010 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4012 def SetNoCopies(*args
, **kwargs
):
4013 """SetNoCopies(self, int v)"""
4014 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4016 def SetAllPages(*args
, **kwargs
):
4017 """SetAllPages(self, bool flag)"""
4018 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4020 def SetSelection(*args
, **kwargs
):
4021 """SetSelection(self, bool flag)"""
4022 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4024 def SetCollate(*args
, **kwargs
):
4025 """SetCollate(self, bool flag)"""
4026 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4028 def SetPrintToFile(*args
, **kwargs
):
4029 """SetPrintToFile(self, bool flag)"""
4030 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4032 def EnablePrintToFile(*args
, **kwargs
):
4033 """EnablePrintToFile(self, bool flag)"""
4034 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4036 def EnableSelection(*args
, **kwargs
):
4037 """EnableSelection(self, bool flag)"""
4038 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4040 def EnablePageNumbers(*args
, **kwargs
):
4041 """EnablePageNumbers(self, bool flag)"""
4042 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4044 def EnableHelp(*args
, **kwargs
):
4045 """EnableHelp(self, bool flag)"""
4046 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4048 def GetEnablePrintToFile(*args
, **kwargs
):
4049 """GetEnablePrintToFile(self) -> bool"""
4050 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4052 def GetEnableSelection(*args
, **kwargs
):
4053 """GetEnableSelection(self) -> bool"""
4054 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4056 def GetEnablePageNumbers(*args
, **kwargs
):
4057 """GetEnablePageNumbers(self) -> bool"""
4058 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4060 def GetEnableHelp(*args
, **kwargs
):
4061 """GetEnableHelp(self) -> bool"""
4062 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4064 def Ok(*args
, **kwargs
):
4065 """Ok(self) -> bool"""
4066 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4068 def GetPrintData(*args
, **kwargs
):
4069 """GetPrintData(self) -> PrintData"""
4070 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4072 def SetPrintData(*args
, **kwargs
):
4073 """SetPrintData(self, PrintData printData)"""
4074 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4076 def __nonzero__(self
): return self
.Ok()
4077 _windows_
.PrintDialogData_swigregister(PrintDialogData
)
4079 class PrintDialog(_core
.Object
):
4080 """Proxy of C++ PrintDialog class"""
4081 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4082 __repr__
= _swig_repr
4083 def __init__(self
, *args
, **kwargs
):
4084 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4085 _windows_
.PrintDialog_swiginit(self
,_windows_
.new_PrintDialog(*args
, **kwargs
))
4086 __swig_destroy__
= _windows_
.delete_PrintDialog
4087 __del__
= lambda self
: None;
4088 def ShowModal(*args
, **kwargs
):
4089 """ShowModal(self) -> int"""
4090 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4092 def GetPrintDialogData(*args
, **kwargs
):
4093 """GetPrintDialogData(self) -> PrintDialogData"""
4094 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4096 def GetPrintData(*args
, **kwargs
):
4097 """GetPrintData(self) -> PrintData"""
4098 return _windows_
.PrintDialog_GetPrintData(*args
, **kwargs
)
4100 def GetPrintDC(*args
, **kwargs
):
4101 """GetPrintDC(self) -> DC"""
4102 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4104 def Destroy(self
): pass
4105 _windows_
.PrintDialog_swigregister(PrintDialog
)
4107 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4108 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4109 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4110 class Printer(_core
.Object
):
4111 """Proxy of C++ Printer class"""
4112 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4113 __repr__
= _swig_repr
4114 def __init__(self
, *args
, **kwargs
):
4115 """__init__(self, PrintDialogData data=None) -> Printer"""
4116 _windows_
.Printer_swiginit(self
,_windows_
.new_Printer(*args
, **kwargs
))
4117 __swig_destroy__
= _windows_
.delete_Printer
4118 __del__
= lambda self
: None;
4119 def CreateAbortWindow(*args
, **kwargs
):
4120 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
4121 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4123 def ReportError(*args
, **kwargs
):
4124 """ReportError(self, Window parent, Printout printout, String message)"""
4125 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4127 def Setup(*args
, **kwargs
):
4128 """Setup(self, Window parent) -> bool"""
4129 return _windows_
.Printer_Setup(*args
, **kwargs
)
4131 def Print(*args
, **kwargs
):
4132 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
4133 return _windows_
.Printer_Print(*args
, **kwargs
)
4135 def PrintDialog(*args
, **kwargs
):
4136 """PrintDialog(self, Window parent) -> DC"""
4137 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4139 def GetPrintDialogData(*args
, **kwargs
):
4140 """GetPrintDialogData(self) -> PrintDialogData"""
4141 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4143 def GetAbort(*args
, **kwargs
):
4144 """GetAbort(self) -> bool"""
4145 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4147 def GetLastError(*args
, **kwargs
):
4148 """GetLastError() -> int"""
4149 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4151 GetLastError
= staticmethod(GetLastError
)
4152 _windows_
.Printer_swigregister(Printer
)
4154 def Printer_GetLastError(*args
):
4155 """Printer_GetLastError() -> int"""
4156 return _windows_
.Printer_GetLastError(*args
)
4158 class Printout(_core
.Object
):
4159 """Proxy of C++ Printout class"""
4160 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4161 __repr__
= _swig_repr
4162 def __init__(self
, *args
, **kwargs
):
4163 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4164 _windows_
.Printout_swiginit(self
,_windows_
.new_Printout(*args
, **kwargs
))
4165 self
._setCallbackInfo
(self
, Printout
)
4167 __swig_destroy__
= _windows_
.delete_Printout
4168 __del__
= lambda self
: None;
4169 def _setCallbackInfo(*args
, **kwargs
):
4170 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4171 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4173 def GetTitle(*args
, **kwargs
):
4174 """GetTitle(self) -> String"""
4175 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4177 def GetDC(*args
, **kwargs
):
4178 """GetDC(self) -> DC"""
4179 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4181 def SetDC(*args
, **kwargs
):
4182 """SetDC(self, DC dc)"""
4183 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4185 def SetPageSizePixels(*args
, **kwargs
):
4186 """SetPageSizePixels(self, int w, int h)"""
4187 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4189 def GetPageSizePixels(*args
, **kwargs
):
4190 """GetPageSizePixels() -> (w, h)"""
4191 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4193 def SetPageSizeMM(*args
, **kwargs
):
4194 """SetPageSizeMM(self, int w, int h)"""
4195 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4197 def GetPageSizeMM(*args
, **kwargs
):
4198 """GetPageSizeMM() -> (w, h)"""
4199 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4201 def SetPPIScreen(*args
, **kwargs
):
4202 """SetPPIScreen(self, int x, int y)"""
4203 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4205 def GetPPIScreen(*args
, **kwargs
):
4206 """GetPPIScreen() -> (x,y)"""
4207 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4209 def SetPPIPrinter(*args
, **kwargs
):
4210 """SetPPIPrinter(self, int x, int y)"""
4211 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4213 def GetPPIPrinter(*args
, **kwargs
):
4214 """GetPPIPrinter() -> (x,y)"""
4215 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4217 def IsPreview(*args
, **kwargs
):
4218 """IsPreview(self) -> bool"""
4219 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4221 def SetIsPreview(*args
, **kwargs
):
4222 """SetIsPreview(self, bool p)"""
4223 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4225 def OnBeginDocument(*args
, **kwargs
):
4226 """OnBeginDocument(self, int startPage, int endPage) -> bool"""
4227 return _windows_
.Printout_OnBeginDocument(*args
, **kwargs
)
4229 def OnEndDocument(*args
, **kwargs
):
4230 """OnEndDocument(self)"""
4231 return _windows_
.Printout_OnEndDocument(*args
, **kwargs
)
4233 def OnBeginPrinting(*args
, **kwargs
):
4234 """OnBeginPrinting(self)"""
4235 return _windows_
.Printout_OnBeginPrinting(*args
, **kwargs
)
4237 def OnEndPrinting(*args
, **kwargs
):
4238 """OnEndPrinting(self)"""
4239 return _windows_
.Printout_OnEndPrinting(*args
, **kwargs
)
4241 def OnPreparePrinting(*args
, **kwargs
):
4242 """OnPreparePrinting(self)"""
4243 return _windows_
.Printout_OnPreparePrinting(*args
, **kwargs
)
4245 def HasPage(*args
, **kwargs
):
4246 """HasPage(self, int page) -> bool"""
4247 return _windows_
.Printout_HasPage(*args
, **kwargs
)
4249 def GetPageInfo(*args
, **kwargs
):
4250 """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4251 return _windows_
.Printout_GetPageInfo(*args
, **kwargs
)
4253 def base_OnBeginDocument(*args
, **kw
):
4254 return Printout
.OnBeginDocument(*args
, **kw
)
4255 base_OnBeginDocument
= wx
._deprecated
(base_OnBeginDocument
,
4256 "Please use Printout.OnBeginDocument instead.")
4258 def base_OnEndDocument(*args
, **kw
):
4259 return Printout
.OnEndDocument(*args
, **kw
)
4260 base_OnEndDocument
= wx
._deprecated
(base_OnEndDocument
,
4261 "Please use Printout.OnEndDocument instead.")
4263 def base_OnBeginPrinting(*args
, **kw
):
4264 return Printout
.OnBeginPrinting(*args
, **kw
)
4265 base_OnBeginPrinting
= wx
._deprecated
(base_OnBeginPrinting
,
4266 "Please use Printout.OnBeginPrinting instead.")
4268 def base_OnEndPrinting(*args
, **kw
):
4269 return Printout
.OnEndPrinting(*args
, **kw
)
4270 base_OnEndPrinting
= wx
._deprecated
(base_OnEndPrinting
,
4271 "Please use Printout.OnEndPrinting instead.")
4273 def base_OnPreparePrinting(*args
, **kw
):
4274 return Printout
.OnPreparePrinting(*args
, **kw
)
4275 base_OnPreparePrinting
= wx
._deprecated
(base_OnPreparePrinting
,
4276 "Please use Printout.OnPreparePrinting instead.")
4278 def base_GetPageInfo(*args
, **kw
):
4279 return Printout
.GetPageInfo(*args
, **kw
)
4280 base_GetPageInfo
= wx
._deprecated
(base_GetPageInfo
,
4281 "Please use Printout.GetPageInfo instead.")
4283 _windows_
.Printout_swigregister(Printout
)
4285 class PreviewCanvas(ScrolledWindow
):
4286 """Proxy of C++ PreviewCanvas class"""
4287 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4288 __repr__
= _swig_repr
4289 def __init__(self
, *args
, **kwargs
):
4291 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4292 Size size=DefaultSize, long style=0,
4293 String name=PreviewCanvasNameStr) -> PreviewCanvas
4295 _windows_
.PreviewCanvas_swiginit(self
,_windows_
.new_PreviewCanvas(*args
, **kwargs
))
4296 self
._setOORInfo
(self
)
4298 _windows_
.PreviewCanvas_swigregister(PreviewCanvas
)
4300 class PreviewFrame(Frame
):
4301 """Proxy of C++ PreviewFrame class"""
4302 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4303 __repr__
= _swig_repr
4304 def __init__(self
, *args
, **kwargs
):
4306 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4307 Size size=DefaultSize,
4308 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4310 _windows_
.PreviewFrame_swiginit(self
,_windows_
.new_PreviewFrame(*args
, **kwargs
))
4311 self
._setOORInfo
(self
)
4313 def Initialize(*args
, **kwargs
):
4314 """Initialize(self)"""
4315 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4317 def CreateControlBar(*args
, **kwargs
):
4318 """CreateControlBar(self)"""
4319 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4321 def CreateCanvas(*args
, **kwargs
):
4322 """CreateCanvas(self)"""
4323 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4325 def GetControlBar(*args
, **kwargs
):
4326 """GetControlBar(self) -> PreviewControlBar"""
4327 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4329 _windows_
.PreviewFrame_swigregister(PreviewFrame
)
4331 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4332 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4333 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4334 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4335 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4336 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4337 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4338 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4339 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4340 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4341 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4342 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4343 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4344 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4345 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4346 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4347 class PreviewControlBar(Panel
):
4348 """Proxy of C++ PreviewControlBar class"""
4349 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4350 __repr__
= _swig_repr
4351 def __init__(self
, *args
, **kwargs
):
4353 __init__(self, PrintPreview preview, long buttons, Window parent,
4354 Point pos=DefaultPosition, Size size=DefaultSize,
4355 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4357 _windows_
.PreviewControlBar_swiginit(self
,_windows_
.new_PreviewControlBar(*args
, **kwargs
))
4358 self
._setOORInfo
(self
)
4360 def GetZoomControl(*args
, **kwargs
):
4361 """GetZoomControl(self) -> int"""
4362 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4364 def SetZoomControl(*args
, **kwargs
):
4365 """SetZoomControl(self, int zoom)"""
4366 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4368 def GetPrintPreview(*args
, **kwargs
):
4369 """GetPrintPreview(self) -> PrintPreview"""
4370 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4372 def OnNext(*args
, **kwargs
):
4374 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4376 def OnPrevious(*args
, **kwargs
):
4377 """OnPrevious(self)"""
4378 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4380 def OnFirst(*args
, **kwargs
):
4382 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4384 def OnLast(*args
, **kwargs
):
4386 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4388 def OnGoto(*args
, **kwargs
):
4390 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4392 _windows_
.PreviewControlBar_swigregister(PreviewControlBar
)
4394 class PrintPreview(_core
.Object
):
4395 """Proxy of C++ PrintPreview class"""
4396 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4397 __repr__
= _swig_repr
4398 def __init__(self
, *args
):
4400 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4401 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4403 _windows_
.PrintPreview_swiginit(self
,_windows_
.new_PrintPreview(*args
))
4404 __swig_destroy__
= _windows_
.delete_PrintPreview
4405 __del__
= lambda self
: None;
4406 def SetCurrentPage(*args
, **kwargs
):
4407 """SetCurrentPage(self, int pageNum) -> bool"""
4408 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4410 def GetCurrentPage(*args
, **kwargs
):
4411 """GetCurrentPage(self) -> int"""
4412 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4414 def SetPrintout(*args
, **kwargs
):
4415 """SetPrintout(self, Printout printout)"""
4416 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4418 def GetPrintout(*args
, **kwargs
):
4419 """GetPrintout(self) -> Printout"""
4420 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4422 def GetPrintoutForPrinting(*args
, **kwargs
):
4423 """GetPrintoutForPrinting(self) -> Printout"""
4424 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4426 def SetFrame(*args
, **kwargs
):
4427 """SetFrame(self, Frame frame)"""
4428 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4430 def SetCanvas(*args
, **kwargs
):
4431 """SetCanvas(self, PreviewCanvas canvas)"""
4432 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4434 def GetFrame(*args
, **kwargs
):
4435 """GetFrame(self) -> Frame"""
4436 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4438 def GetCanvas(*args
, **kwargs
):
4439 """GetCanvas(self) -> PreviewCanvas"""
4440 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4442 def PaintPage(*args
, **kwargs
):
4443 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4444 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4446 def DrawBlankPage(*args
, **kwargs
):
4447 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4448 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4450 def RenderPage(*args
, **kwargs
):
4451 """RenderPage(self, int pageNum) -> bool"""
4452 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4454 def AdjustScrollbars(*args
, **kwargs
):
4455 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4456 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4458 def GetPrintDialogData(*args
, **kwargs
):
4459 """GetPrintDialogData(self) -> PrintDialogData"""
4460 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4462 def SetZoom(*args
, **kwargs
):
4463 """SetZoom(self, int percent)"""
4464 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4466 def GetZoom(*args
, **kwargs
):
4467 """GetZoom(self) -> int"""
4468 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4470 def GetMaxPage(*args
, **kwargs
):
4471 """GetMaxPage(self) -> int"""
4472 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4474 def GetMinPage(*args
, **kwargs
):
4475 """GetMinPage(self) -> int"""
4476 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4478 def Ok(*args
, **kwargs
):
4479 """Ok(self) -> bool"""
4480 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4482 def SetOk(*args
, **kwargs
):
4483 """SetOk(self, bool ok)"""
4484 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4486 def Print(*args
, **kwargs
):
4487 """Print(self, bool interactive) -> bool"""
4488 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4490 def DetermineScaling(*args
, **kwargs
):
4491 """DetermineScaling(self)"""
4492 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4494 def __nonzero__(self
): return self
.Ok()
4495 _windows_
.PrintPreview_swigregister(PrintPreview
)
4497 class PyPrintPreview(PrintPreview
):
4498 """Proxy of C++ PyPrintPreview class"""
4499 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4500 __repr__
= _swig_repr
4501 def __init__(self
, *args
):
4503 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4504 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4506 _windows_
.PyPrintPreview_swiginit(self
,_windows_
.new_PyPrintPreview(*args
))
4507 self
._setCallbackInfo
(self
, PyPrintPreview
)
4509 def _setCallbackInfo(*args
, **kwargs
):
4510 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4511 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4513 def base_SetCurrentPage(*args
, **kw
):
4514 return PyPrintPreview
.SetCurrentPage(*args
, **kw
)
4515 base_SetCurrentPage
= wx
._deprecated
(base_SetCurrentPage
,
4516 "Please use PyPrintPreview.SetCurrentPage instead.")
4518 def base_PaintPage(*args
, **kw
):
4519 return PyPrintPreview
.PaintPage(*args
, **kw
)
4520 base_PaintPage
= wx
._deprecated
(base_PaintPage
,
4521 "Please use PyPrintPreview.PaintPage instead.")
4523 def base_DrawBlankPage(*args
, **kw
):
4524 return PyPrintPreview
.DrawBlankPage(*args
, **kw
)
4525 base_DrawBlankPage
= wx
._deprecated
(base_DrawBlankPage
,
4526 "Please use PyPrintPreview.DrawBlankPage instead.")
4528 def base_RenderPage(*args
, **kw
):
4529 return PyPrintPreview
.RenderPage(*args
, **kw
)
4530 base_RenderPage
= wx
._deprecated
(base_RenderPage
,
4531 "Please use PyPrintPreview.RenderPage instead.")
4533 def base_SetZoom(*args
, **kw
):
4534 return PyPrintPreview
.SetZoom(*args
, **kw
)
4535 base_SetZoom
= wx
._deprecated
(base_SetZoom
,
4536 "Please use PyPrintPreview.SetZoom instead.")
4538 def base_Print(*args
, **kw
):
4539 return PyPrintPreview
.Print(*args
, **kw
)
4540 base_Print
= wx
._deprecated
(base_Print
,
4541 "Please use PyPrintPreview.Print instead.")
4543 def base_DetermineScaling(*args
, **kw
):
4544 return PyPrintPreview
.DetermineScaling(*args
, **kw
)
4545 base_DetermineScaling
= wx
._deprecated
(base_DetermineScaling
,
4546 "Please use PyPrintPreview.DetermineScaling instead.")
4548 _windows_
.PyPrintPreview_swigregister(PyPrintPreview
)
4550 class PyPreviewFrame(PreviewFrame
):
4551 """Proxy of C++ PyPreviewFrame class"""
4552 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4553 __repr__
= _swig_repr
4554 def __init__(self
, *args
, **kwargs
):
4556 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4557 Size size=DefaultSize,
4558 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4560 _windows_
.PyPreviewFrame_swiginit(self
,_windows_
.new_PyPreviewFrame(*args
, **kwargs
))
4561 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4563 def _setCallbackInfo(*args
, **kwargs
):
4564 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4565 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4567 def SetPreviewCanvas(*args
, **kwargs
):
4568 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4569 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4571 def SetControlBar(*args
, **kwargs
):
4572 """SetControlBar(self, PreviewControlBar bar)"""
4573 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4575 def Initialize(*args
, **kwargs
):
4576 """Initialize(self)"""
4577 return _windows_
.PyPreviewFrame_Initialize(*args
, **kwargs
)
4579 def CreateCanvas(*args
, **kwargs
):
4580 """CreateCanvas(self)"""
4581 return _windows_
.PyPreviewFrame_CreateCanvas(*args
, **kwargs
)
4583 def CreateControlBar(*args
, **kwargs
):
4584 """CreateControlBar(self)"""
4585 return _windows_
.PyPreviewFrame_CreateControlBar(*args
, **kwargs
)
4587 def base_Initialize(*args
, **kw
):
4588 return PyPreviewFrame
.Initialize(*args
, **kw
)
4589 base_Initialize
= wx
._deprecated
(base_Initialize
,
4590 "Please use PyPreviewFrame.Initialize instead.")
4592 def base_CreateCanvas(*args
, **kw
):
4593 return PyPreviewFrame
.CreateCanvas(*args
, **kw
)
4594 base_CreateCanvas
= wx
._deprecated
(base_CreateCanvas
,
4595 "Please use PyPreviewFrame.CreateCanvas instead.")
4597 def base_CreateControlBar(*args
, **kw
):
4598 return PyPreviewFrame
.CreateControlBar(*args
, **kw
)
4599 base_CreateControlBar
= wx
._deprecated
(base_CreateControlBar
,
4600 "Please use PyPreviewFrame.CreateControlBar instead.")
4602 _windows_
.PyPreviewFrame_swigregister(PyPreviewFrame
)
4604 class PyPreviewControlBar(PreviewControlBar
):
4605 """Proxy of C++ PyPreviewControlBar class"""
4606 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4607 __repr__
= _swig_repr
4608 def __init__(self
, *args
, **kwargs
):
4610 __init__(self, PrintPreview preview, long buttons, Window parent,
4611 Point pos=DefaultPosition, Size size=DefaultSize,
4612 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4614 _windows_
.PyPreviewControlBar_swiginit(self
,_windows_
.new_PyPreviewControlBar(*args
, **kwargs
))
4615 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4617 def _setCallbackInfo(*args
, **kwargs
):
4618 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4619 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4621 def SetPrintPreview(*args
, **kwargs
):
4622 """SetPrintPreview(self, PrintPreview preview)"""
4623 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4625 def CreateButtons(*args
, **kwargs
):
4626 """CreateButtons(self)"""
4627 return _windows_
.PyPreviewControlBar_CreateButtons(*args
, **kwargs
)
4629 def SetZoomControl(*args
, **kwargs
):
4630 """SetZoomControl(self, int zoom)"""
4631 return _windows_
.PyPreviewControlBar_SetZoomControl(*args
, **kwargs
)
4633 def base_CreateButtons(*args
, **kw
):
4634 return PreviewControlBar
.CreateButtons(*args
, **kw
)
4635 base_CreateButtons
= wx
._deprecated
(base_CreateButtons
,
4636 "Please use PreviewControlBar.CreateButtons instead.")
4638 def base_SetZoomControl(*args
, **kw
):
4639 return PreviewControlBar
.SetZoomControl(*args
, **kw
)
4640 base_SetZoomControl
= wx
._deprecated
(base_SetZoomControl
,
4641 "Please use PreviewControlBar.SetZoomControl instead.")
4643 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBar
)