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 WS_EX_CONTEXTHELP
= _windows_
.WS_EX_CONTEXTHELP
332 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
333 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
334 USER_COLOURS
= _windows_
.USER_COLOURS
335 NO_3D
= _windows_
.NO_3D
336 FRAME_EX_CONTEXTHELP
= _windows_
.FRAME_EX_CONTEXTHELP
337 DIALOG_EX_CONTEXTHELP
= _windows_
.DIALOG_EX_CONTEXTHELP
338 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
339 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
340 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
341 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
342 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
343 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
344 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
345 USER_ATTENTION_INFO
= _windows_
.USER_ATTENTION_INFO
346 USER_ATTENTION_ERROR
= _windows_
.USER_ATTENTION_ERROR
347 class TopLevelWindow(_core
.Window
):
348 """Proxy of C++ TopLevelWindow class"""
349 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
350 def __init__(self
): raise AttributeError, "No constructor defined"
351 __repr__
= _swig_repr
352 def Maximize(*args
, **kwargs
):
353 """Maximize(self, bool maximize=True)"""
354 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
356 def Restore(*args
, **kwargs
):
358 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
360 def Iconize(*args
, **kwargs
):
361 """Iconize(self, bool iconize=True)"""
362 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
364 def IsMaximized(*args
, **kwargs
):
365 """IsMaximized(self) -> bool"""
366 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
368 def IsAlwaysMaximized(*args
, **kwargs
):
369 """IsAlwaysMaximized(self) -> bool"""
370 return _windows_
.TopLevelWindow_IsAlwaysMaximized(*args
, **kwargs
)
372 def IsIconized(*args
, **kwargs
):
373 """IsIconized(self) -> bool"""
374 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
376 def GetIcon(*args
, **kwargs
):
377 """GetIcon(self) -> Icon"""
378 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
380 def SetIcon(*args
, **kwargs
):
381 """SetIcon(self, Icon icon)"""
382 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
384 def SetIcons(*args
, **kwargs
):
385 """SetIcons(self, wxIconBundle icons)"""
386 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
388 def ShowFullScreen(*args
, **kwargs
):
389 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
390 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
392 def IsFullScreen(*args
, **kwargs
):
393 """IsFullScreen(self) -> bool"""
394 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
396 def SetTitle(*args
, **kwargs
):
397 """SetTitle(self, String title)"""
398 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
400 def GetTitle(*args
, **kwargs
):
401 """GetTitle(self) -> String"""
402 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
404 def SetShape(*args
, **kwargs
):
405 """SetShape(self, Region region) -> bool"""
406 return _windows_
.TopLevelWindow_SetShape(*args
, **kwargs
)
408 def RequestUserAttention(*args
, **kwargs
):
409 """RequestUserAttention(self, int flags=USER_ATTENTION_INFO)"""
410 return _windows_
.TopLevelWindow_RequestUserAttention(*args
, **kwargs
)
412 def IsActive(*args
, **kwargs
):
413 """IsActive(self) -> bool"""
414 return _windows_
.TopLevelWindow_IsActive(*args
, **kwargs
)
416 def MacSetMetalAppearance(*args
, **kwargs
):
417 """MacSetMetalAppearance(self, bool on)"""
418 return _windows_
.TopLevelWindow_MacSetMetalAppearance(*args
, **kwargs
)
420 def MacGetMetalAppearance(*args
, **kwargs
):
421 """MacGetMetalAppearance(self) -> bool"""
422 return _windows_
.TopLevelWindow_MacGetMetalAppearance(*args
, **kwargs
)
424 def CenterOnScreen(*args
, **kwargs
):
426 CenterOnScreen(self, int dir=BOTH)
428 Center the window on screen
430 return _windows_
.TopLevelWindow_CenterOnScreen(*args
, **kwargs
)
432 CentreOnScreen
= CenterOnScreen
433 def EnableCloseButton(*args
, **kwargs
):
434 """EnableCloseButton(self, bool enable=True) -> bool"""
435 return _windows_
.TopLevelWindow_EnableCloseButton(*args
, **kwargs
)
437 def GetDefaultItem(*args
, **kwargs
):
439 GetDefaultItem(self) -> Window
441 Get the default child of this parent, i.e. the one which is activated
442 by pressing <Enter> such as the OK button on a wx.Dialog.
444 return _windows_
.TopLevelWindow_GetDefaultItem(*args
, **kwargs
)
446 def SetDefaultItem(*args
, **kwargs
):
448 SetDefaultItem(self, Window child) -> Window
450 Set this child as default, return the old default.
452 return _windows_
.TopLevelWindow_SetDefaultItem(*args
, **kwargs
)
454 def SetTmpDefaultItem(*args
, **kwargs
):
456 SetTmpDefaultItem(self, Window win)
458 Set this child as temporary default
460 return _windows_
.TopLevelWindow_SetTmpDefaultItem(*args
, **kwargs
)
462 def GetTmpDefaultItem(*args
, **kwargs
):
464 GetTmpDefaultItem(self) -> Window
466 Return the temporary default item, which can be None.
468 return _windows_
.TopLevelWindow_GetTmpDefaultItem(*args
, **kwargs
)
470 _windows_
.TopLevelWindow_swigregister(TopLevelWindow
)
471 cvar
= _windows_
.cvar
472 FrameNameStr
= cvar
.FrameNameStr
473 DialogNameStr
= cvar
.DialogNameStr
474 StatusLineNameStr
= cvar
.StatusLineNameStr
475 ToolBarNameStr
= cvar
.ToolBarNameStr
477 #---------------------------------------------------------------------------
479 class Frame(TopLevelWindow
):
480 """Proxy of C++ Frame class"""
481 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
482 __repr__
= _swig_repr
483 def __init__(self
, *args
, **kwargs
):
485 __init__(self, Window parent, int id=-1, String title=EmptyString,
486 Point pos=DefaultPosition, Size size=DefaultSize,
487 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
489 _windows_
.Frame_swiginit(self
,_windows_
.new_Frame(*args
, **kwargs
))
490 self
._setOORInfo
(self
)
492 def Create(*args
, **kwargs
):
494 Create(self, Window parent, int id=-1, String title=EmptyString,
495 Point pos=DefaultPosition, Size size=DefaultSize,
496 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
498 return _windows_
.Frame_Create(*args
, **kwargs
)
500 def SendSizeEvent(*args
, **kwargs
):
501 """SendSizeEvent(self)"""
502 return _windows_
.Frame_SendSizeEvent(*args
, **kwargs
)
504 def SetMenuBar(*args
, **kwargs
):
505 """SetMenuBar(self, MenuBar menubar)"""
506 return _windows_
.Frame_SetMenuBar(*args
, **kwargs
)
508 def GetMenuBar(*args
, **kwargs
):
509 """GetMenuBar(self) -> MenuBar"""
510 return _windows_
.Frame_GetMenuBar(*args
, **kwargs
)
512 def ProcessCommand(*args
, **kwargs
):
513 """ProcessCommand(self, int winid) -> bool"""
514 return _windows_
.Frame_ProcessCommand(*args
, **kwargs
)
516 Command
= ProcessCommand
517 def CreateStatusBar(*args
, **kwargs
):
519 CreateStatusBar(self, int number=1, long style=DEFAULT_STATUSBAR_STYLE, int winid=0,
520 String name=StatusLineNameStr) -> StatusBar
522 return _windows_
.Frame_CreateStatusBar(*args
, **kwargs
)
524 def GetStatusBar(*args
, **kwargs
):
525 """GetStatusBar(self) -> StatusBar"""
526 return _windows_
.Frame_GetStatusBar(*args
, **kwargs
)
528 def SetStatusBar(*args
, **kwargs
):
529 """SetStatusBar(self, StatusBar statBar)"""
530 return _windows_
.Frame_SetStatusBar(*args
, **kwargs
)
532 def SetStatusText(*args
, **kwargs
):
533 """SetStatusText(self, String text, int number=0)"""
534 return _windows_
.Frame_SetStatusText(*args
, **kwargs
)
536 def SetStatusWidths(*args
, **kwargs
):
537 """SetStatusWidths(self, int widths)"""
538 return _windows_
.Frame_SetStatusWidths(*args
, **kwargs
)
540 def PushStatusText(*args
, **kwargs
):
541 """PushStatusText(self, String text, int number=0)"""
542 return _windows_
.Frame_PushStatusText(*args
, **kwargs
)
544 def PopStatusText(*args
, **kwargs
):
545 """PopStatusText(self, int number=0)"""
546 return _windows_
.Frame_PopStatusText(*args
, **kwargs
)
548 def SetStatusBarPane(*args
, **kwargs
):
549 """SetStatusBarPane(self, int n)"""
550 return _windows_
.Frame_SetStatusBarPane(*args
, **kwargs
)
552 def GetStatusBarPane(*args
, **kwargs
):
553 """GetStatusBarPane(self) -> int"""
554 return _windows_
.Frame_GetStatusBarPane(*args
, **kwargs
)
556 def CreateToolBar(*args
, **kwargs
):
557 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
558 return _windows_
.Frame_CreateToolBar(*args
, **kwargs
)
560 def GetToolBar(*args
, **kwargs
):
561 """GetToolBar(self) -> wxToolBar"""
562 return _windows_
.Frame_GetToolBar(*args
, **kwargs
)
564 def SetToolBar(*args
, **kwargs
):
565 """SetToolBar(self, wxToolBar toolbar)"""
566 return _windows_
.Frame_SetToolBar(*args
, **kwargs
)
568 def DoGiveHelp(*args
, **kwargs
):
569 """DoGiveHelp(self, String text, bool show)"""
570 return _windows_
.Frame_DoGiveHelp(*args
, **kwargs
)
572 def DoMenuUpdates(*args
, **kwargs
):
573 """DoMenuUpdates(self, Menu menu=None)"""
574 return _windows_
.Frame_DoMenuUpdates(*args
, **kwargs
)
576 def GetClassDefaultAttributes(*args
, **kwargs
):
578 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
580 Get the default attributes for this class. This is useful if you want
581 to use the same font or colour in your own control as in a standard
582 control -- which is a much better idea than hard coding specific
583 colours or fonts which might look completely out of place on the
584 user's system, especially if it uses themes.
586 The variant parameter is only relevant under Mac currently and is
587 ignore under other platforms. Under Mac, it will change the size of
588 the returned font. See `wx.Window.SetWindowVariant` for more about
591 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
593 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
594 MenuBar
= property(GetMenuBar
,SetMenuBar
,doc
="See `GetMenuBar` and `SetMenuBar`")
595 StatusBar
= property(GetStatusBar
,SetStatusBar
,doc
="See `GetStatusBar` and `SetStatusBar`")
596 StatusBarPane
= property(GetStatusBarPane
,SetStatusBarPane
,doc
="See `GetStatusBarPane` and `SetStatusBarPane`")
597 ToolBar
= property(GetToolBar
,SetToolBar
,doc
="See `GetToolBar` and `SetToolBar`")
598 _windows_
.Frame_swigregister(Frame
)
600 def PreFrame(*args
, **kwargs
):
601 """PreFrame() -> Frame"""
602 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
605 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
607 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
609 Get the default attributes for this class. This is useful if you want
610 to use the same font or colour in your own control as in a standard
611 control -- which is a much better idea than hard coding specific
612 colours or fonts which might look completely out of place on the
613 user's system, especially if it uses themes.
615 The variant parameter is only relevant under Mac currently and is
616 ignore under other platforms. Under Mac, it will change the size of
617 the returned font. See `wx.Window.SetWindowVariant` for more about
620 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
622 #---------------------------------------------------------------------------
624 class Dialog(TopLevelWindow
):
625 """Proxy of C++ Dialog class"""
626 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
627 __repr__
= _swig_repr
628 ButtonSizerFlags
= _windows_
.Dialog_ButtonSizerFlags
629 def __init__(self
, *args
, **kwargs
):
631 __init__(self, Window parent, int id=-1, String title=EmptyString,
632 Point pos=DefaultPosition, Size size=DefaultSize,
633 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
635 _windows_
.Dialog_swiginit(self
,_windows_
.new_Dialog(*args
, **kwargs
))
636 self
._setOORInfo
(self
)
638 def Create(*args
, **kwargs
):
640 Create(self, Window parent, int id=-1, String title=EmptyString,
641 Point pos=DefaultPosition, Size size=DefaultSize,
642 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
644 return _windows_
.Dialog_Create(*args
, **kwargs
)
646 def SetReturnCode(*args
, **kwargs
):
647 """SetReturnCode(self, int returnCode)"""
648 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
650 def GetReturnCode(*args
, **kwargs
):
651 """GetReturnCode(self) -> int"""
652 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
654 def SetAffirmativeId(*args
, **kwargs
):
655 """SetAffirmativeId(self, int affirmativeId)"""
656 return _windows_
.Dialog_SetAffirmativeId(*args
, **kwargs
)
658 def GetAffirmativeId(*args
, **kwargs
):
659 """GetAffirmativeId(self) -> int"""
660 return _windows_
.Dialog_GetAffirmativeId(*args
, **kwargs
)
662 def SetEscapeId(*args
, **kwargs
):
663 """SetEscapeId(self, int escapeId)"""
664 return _windows_
.Dialog_SetEscapeId(*args
, **kwargs
)
666 def GetEscapeId(*args
, **kwargs
):
667 """GetEscapeId(self) -> int"""
668 return _windows_
.Dialog_GetEscapeId(*args
, **kwargs
)
670 def CreateTextSizer(*args
, **kwargs
):
671 """CreateTextSizer(self, String message) -> Sizer"""
672 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
674 def CreateButtonSizer(*args
, **kwargs
):
675 """CreateButtonSizer(self, long flags, bool separated=False, int distance=0) -> Sizer"""
676 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
678 def CreateStdDialogButtonSizer(*args
, **kwargs
):
679 """CreateStdDialogButtonSizer(self, long flags) -> StdDialogButtonSizer"""
680 return _windows_
.Dialog_CreateStdDialogButtonSizer(*args
, **kwargs
)
682 def IsModal(*args
, **kwargs
):
683 """IsModal(self) -> bool"""
684 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
686 def ShowModal(*args
, **kwargs
):
687 """ShowModal(self) -> int"""
688 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
690 def EndModal(*args
, **kwargs
):
691 """EndModal(self, int retCode)"""
692 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
694 def GetClassDefaultAttributes(*args
, **kwargs
):
696 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
698 Get the default attributes for this class. This is useful if you want
699 to use the same font or colour in your own control as in a standard
700 control -- which is a much better idea than hard coding specific
701 colours or fonts which might look completely out of place on the
702 user's system, especially if it uses themes.
704 The variant parameter is only relevant under Mac currently and is
705 ignore under other platforms. Under Mac, it will change the size of
706 the returned font. See `wx.Window.SetWindowVariant` for more about
709 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
711 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
712 AffirmativeId
= property(GetAffirmativeId
,SetAffirmativeId
,doc
="See `GetAffirmativeId` and `SetAffirmativeId`")
713 EscapeId
= property(GetEscapeId
,SetEscapeId
,doc
="See `GetEscapeId` and `SetEscapeId`")
714 ReturnCode
= property(GetReturnCode
,SetReturnCode
,doc
="See `GetReturnCode` and `SetReturnCode`")
715 _windows_
.Dialog_swigregister(Dialog
)
717 def PreDialog(*args
, **kwargs
):
718 """PreDialog() -> Dialog"""
719 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
722 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
724 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
726 Get the default attributes for this class. This is useful if you want
727 to use the same font or colour in your own control as in a standard
728 control -- which is a much better idea than hard coding specific
729 colours or fonts which might look completely out of place on the
730 user's system, especially if it uses themes.
732 The variant parameter is only relevant under Mac currently and is
733 ignore under other platforms. Under Mac, it will change the size of
734 the returned font. See `wx.Window.SetWindowVariant` for more about
737 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
739 #---------------------------------------------------------------------------
741 class MiniFrame(Frame
):
742 """Proxy of C++ MiniFrame class"""
743 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
744 __repr__
= _swig_repr
745 def __init__(self
, *args
, **kwargs
):
747 __init__(self, Window parent, int id=-1, String title=EmptyString,
748 Point pos=DefaultPosition, Size size=DefaultSize,
749 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
751 _windows_
.MiniFrame_swiginit(self
,_windows_
.new_MiniFrame(*args
, **kwargs
))
752 self
._setOORInfo
(self
)
754 def Create(*args
, **kwargs
):
756 Create(self, Window parent, int id=-1, String title=EmptyString,
757 Point pos=DefaultPosition, Size size=DefaultSize,
758 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
760 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
762 _windows_
.MiniFrame_swigregister(MiniFrame
)
764 def PreMiniFrame(*args
, **kwargs
):
765 """PreMiniFrame() -> MiniFrame"""
766 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
769 #---------------------------------------------------------------------------
771 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
772 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
773 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
774 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
775 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
776 class SplashScreenWindow(_core
.Window
):
777 """Proxy of C++ SplashScreenWindow class"""
778 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
779 __repr__
= _swig_repr
780 def __init__(self
, *args
, **kwargs
):
782 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
783 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
785 _windows_
.SplashScreenWindow_swiginit(self
,_windows_
.new_SplashScreenWindow(*args
, **kwargs
))
786 self
._setOORInfo
(self
)
788 def SetBitmap(*args
, **kwargs
):
789 """SetBitmap(self, Bitmap bitmap)"""
790 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
792 def GetBitmap(*args
, **kwargs
):
793 """GetBitmap(self) -> Bitmap"""
794 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
796 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindow
)
798 class SplashScreen(Frame
):
799 """Proxy of C++ SplashScreen class"""
800 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
801 __repr__
= _swig_repr
802 def __init__(self
, *args
, **kwargs
):
804 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
805 Window parent, int id=-1, Point pos=DefaultPosition,
806 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
808 _windows_
.SplashScreen_swiginit(self
,_windows_
.new_SplashScreen(*args
, **kwargs
))
809 self
._setOORInfo
(self
)
811 def GetSplashStyle(*args
, **kwargs
):
812 """GetSplashStyle(self) -> long"""
813 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
815 def GetSplashWindow(*args
, **kwargs
):
816 """GetSplashWindow(self) -> SplashScreenWindow"""
817 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
819 def GetTimeout(*args
, **kwargs
):
820 """GetTimeout(self) -> int"""
821 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
823 _windows_
.SplashScreen_swigregister(SplashScreen
)
825 #---------------------------------------------------------------------------
827 SB_NORMAL
= _windows_
.SB_NORMAL
828 SB_FLAT
= _windows_
.SB_FLAT
829 SB_RAISED
= _windows_
.SB_RAISED
830 class StatusBar(_core
.Window
):
831 """Proxy of C++ StatusBar class"""
832 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
833 __repr__
= _swig_repr
834 def __init__(self
, *args
, **kwargs
):
836 __init__(self, Window parent, int id=-1, long style=DEFAULT_STATUSBAR_STYLE,
837 String name=StatusLineNameStr) -> StatusBar
839 _windows_
.StatusBar_swiginit(self
,_windows_
.new_StatusBar(*args
, **kwargs
))
840 self
._setOORInfo
(self
)
842 def Create(*args
, **kwargs
):
843 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
844 return _windows_
.StatusBar_Create(*args
, **kwargs
)
846 def SetFieldsCount(*args
, **kwargs
):
847 """SetFieldsCount(self, int number=1)"""
848 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
850 def GetFieldsCount(*args
, **kwargs
):
851 """GetFieldsCount(self) -> int"""
852 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
854 def SetStatusText(*args
, **kwargs
):
855 """SetStatusText(self, String text, int number=0)"""
856 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
858 def GetStatusText(*args
, **kwargs
):
859 """GetStatusText(self, int number=0) -> String"""
860 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
862 def PushStatusText(*args
, **kwargs
):
863 """PushStatusText(self, String text, int number=0)"""
864 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
866 def PopStatusText(*args
, **kwargs
):
867 """PopStatusText(self, int number=0)"""
868 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
870 def SetStatusWidths(*args
, **kwargs
):
871 """SetStatusWidths(self, int widths)"""
872 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
874 def SetStatusStyles(*args
, **kwargs
):
875 """SetStatusStyles(self, int styles)"""
876 return _windows_
.StatusBar_SetStatusStyles(*args
, **kwargs
)
878 def GetFieldRect(*args
, **kwargs
):
879 """GetFieldRect(self, int i) -> Rect"""
880 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
882 def SetMinHeight(*args
, **kwargs
):
883 """SetMinHeight(self, int height)"""
884 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
886 def GetBorderX(*args
, **kwargs
):
887 """GetBorderX(self) -> int"""
888 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
890 def GetBorderY(*args
, **kwargs
):
891 """GetBorderY(self) -> int"""
892 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
894 def GetClassDefaultAttributes(*args
, **kwargs
):
896 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
898 Get the default attributes for this class. This is useful if you want
899 to use the same font or colour in your own control as in a standard
900 control -- which is a much better idea than hard coding specific
901 colours or fonts which might look completely out of place on the
902 user's system, especially if it uses themes.
904 The variant parameter is only relevant under Mac currently and is
905 ignore under other platforms. Under Mac, it will change the size of
906 the returned font. See `wx.Window.SetWindowVariant` for more about
909 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
911 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
913 """Return a list of field values in the status bar. """
914 return [self
.GetStatusText(i
) for i
in range(self
.GetFieldsCount())]
916 def SetFields(self
, items
):
917 """Set the values of the statusbar fields from a list of strings. """
918 self
.SetFieldsCount(len(items
))
919 for i
in range(len(items
)):
920 self
.SetStatusText(items
[i
], i
)
922 Fields
= property(GetFields
,SetFields
)
923 _windows_
.StatusBar_swigregister(StatusBar
)
925 def PreStatusBar(*args
, **kwargs
):
926 """PreStatusBar() -> StatusBar"""
927 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
930 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
932 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
934 Get the default attributes for this class. This is useful if you want
935 to use the same font or colour in your own control as in a standard
936 control -- which is a much better idea than hard coding specific
937 colours or fonts which might look completely out of place on the
938 user's system, especially if it uses themes.
940 The variant parameter is only relevant under Mac currently and is
941 ignore under other platforms. Under Mac, it will change the size of
942 the returned font. See `wx.Window.SetWindowVariant` for more about
945 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
947 #---------------------------------------------------------------------------
949 SP_NOBORDER
= _windows_
.SP_NOBORDER
950 SP_NOSASH
= _windows_
.SP_NOSASH
951 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
952 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
953 SP_3DSASH
= _windows_
.SP_3DSASH
954 SP_3DBORDER
= _windows_
.SP_3DBORDER
955 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
956 SP_BORDER
= _windows_
.SP_BORDER
957 SP_3D
= _windows_
.SP_3D
958 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
959 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
960 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
961 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
962 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
963 class SplitterWindow(_core
.Window
):
965 wx.SplitterWindow manages up to two subwindows or panes, with an
966 optional vertical or horizontal split which can be used with the mouse
969 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
970 __repr__
= _swig_repr
971 def __init__(self
, *args
, **kwargs
):
973 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
974 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
976 Constructor. Creates and shows a SplitterWindow.
978 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
979 _windows_
.SplitterWindow_swiginit(self
,_windows_
.new_SplitterWindow(*args
, **kwargs
))
980 self
._setOORInfo
(self
)
982 def Create(*args
, **kwargs
):
984 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
985 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
987 Create the GUI part of the SplitterWindow for the 2-phase create.
989 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
991 def GetWindow1(*args
, **kwargs
):
993 GetWindow1(self) -> Window
995 Gets the only or left/top pane.
997 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
999 def GetWindow2(*args
, **kwargs
):
1001 GetWindow2(self) -> Window
1003 Gets the right/bottom pane.
1005 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
1007 def SetSplitMode(*args
, **kwargs
):
1009 SetSplitMode(self, int mode)
1011 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
1012 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
1015 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
1017 def GetSplitMode(*args
, **kwargs
):
1019 GetSplitMode(self) -> int
1023 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
1025 def Initialize(*args
, **kwargs
):
1027 Initialize(self, Window window)
1029 Initializes the splitter window to have one pane. This should be
1030 called if you wish to initially view only a single pane in the
1031 splitter window. The child window is shown if it is currently hidden.
1033 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
1035 def SplitVertically(*args
, **kwargs
):
1037 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
1039 Initializes the left and right panes of the splitter window. The
1040 child windows are shown if they are currently hidden.
1042 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
1044 def SplitHorizontally(*args
, **kwargs
):
1046 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
1048 Initializes the top and bottom panes of the splitter window. The
1049 child windows are shown if they are currently hidden.
1051 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
1053 def Unsplit(*args
, **kwargs
):
1055 Unsplit(self, Window toRemove=None) -> bool
1057 Unsplits the window. Pass the pane to remove, or None to remove the
1058 right or bottom pane. Returns True if successful, False otherwise (the
1059 window was not split).
1061 This function will not actually delete the pane being
1062 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
1063 for the desired behaviour. By default, the pane being
1064 removed is only hidden.
1066 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
1068 def ReplaceWindow(*args
, **kwargs
):
1070 ReplaceWindow(self, Window winOld, Window winNew) -> bool
1072 This function replaces one of the windows managed by the
1073 SplitterWindow with another one. It is in general better to use it
1074 instead of calling Unsplit() and then resplitting the window back
1075 because it will provoke much less flicker. It is valid to call this
1076 function whether the splitter has two windows or only one.
1078 Both parameters should be non-None and winOld must specify one of the
1079 windows managed by the splitter. If the parameters are incorrect or
1080 the window couldn't be replaced, False is returned. Otherwise the
1081 function will return True, but please notice that it will not Destroy
1082 the replaced window and you may wish to do it yourself.
1084 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1086 def UpdateSize(*args
, **kwargs
):
1090 Causes any pending sizing of the sash and child panes to take place
1093 Such resizing normally takes place in idle time, in order to wait for
1094 layout to be completed. However, this can cause unacceptable flicker
1095 as the panes are resized after the window has been shown. To work
1096 around this, you can perform window layout (for example by sending a
1097 size event to the parent window), and then call this function, before
1098 showing the top-level window.
1100 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1102 def IsSplit(*args
, **kwargs
):
1104 IsSplit(self) -> bool
1106 Is the window split?
1108 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1110 def SetSashSize(*args
, **kwargs
):
1112 SetSashSize(self, int width)
1116 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1118 def SetBorderSize(*args
, **kwargs
):
1120 SetBorderSize(self, int width)
1122 Sets the border size. Currently a NOP.
1124 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1126 def GetSashSize(*args
, **kwargs
):
1128 GetSashSize(self) -> int
1132 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1134 def GetBorderSize(*args
, **kwargs
):
1136 GetBorderSize(self) -> int
1138 Gets the border size
1140 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1142 def SetSashPosition(*args
, **kwargs
):
1144 SetSashPosition(self, int position, bool redraw=True)
1146 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1147 are resized and the sash and border are redrawn.
1149 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1151 def GetSashPosition(*args
, **kwargs
):
1153 GetSashPosition(self) -> int
1155 Returns the surrent sash position.
1157 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1159 def SetSashGravity(*args
, **kwargs
):
1161 SetSashGravity(self, double gravity)
1163 Set the sash gravity. Gravity is a floating-point factor between 0.0
1164 and 1.0 which controls position of sash while resizing the
1165 `wx.SplitterWindow`. The gravity specifies how much the left/top
1166 window will grow while resizing.
1168 return _windows_
.SplitterWindow_SetSashGravity(*args
, **kwargs
)
1170 def GetSashGravity(*args
, **kwargs
):
1172 GetSashGravity(self) -> double
1174 Gets the sash gravity.
1176 :see: `SetSashGravity`
1179 return _windows_
.SplitterWindow_GetSashGravity(*args
, **kwargs
)
1181 def SetMinimumPaneSize(*args
, **kwargs
):
1183 SetMinimumPaneSize(self, int min)
1185 Sets the minimum pane size in pixels.
1187 The default minimum pane size is zero, which means that either pane
1188 can be reduced to zero by dragging the sash, thus removing one of the
1189 panes. To prevent this behaviour (and veto out-of-range sash
1190 dragging), set a minimum size, for example 20 pixels. If the
1191 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1192 the window may be unsplit even if minimum size is non-zero.
1194 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1196 def GetMinimumPaneSize(*args
, **kwargs
):
1198 GetMinimumPaneSize(self) -> int
1200 Gets the minimum pane size in pixels.
1202 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1204 def SashHitTest(*args
, **kwargs
):
1206 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1208 Tests for x, y over the sash
1210 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1212 def SizeWindows(*args
, **kwargs
):
1218 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1220 def SetNeedUpdating(*args
, **kwargs
):
1221 """SetNeedUpdating(self, bool needUpdating)"""
1222 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1224 def GetNeedUpdating(*args
, **kwargs
):
1225 """GetNeedUpdating(self) -> bool"""
1226 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1228 def GetClassDefaultAttributes(*args
, **kwargs
):
1230 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1232 Get the default attributes for this class. This is useful if you want
1233 to use the same font or colour in your own control as in a standard
1234 control -- which is a much better idea than hard coding specific
1235 colours or fonts which might look completely out of place on the
1236 user's system, especially if it uses themes.
1238 The variant parameter is only relevant under Mac currently and is
1239 ignore under other platforms. Under Mac, it will change the size of
1240 the returned font. See `wx.Window.SetWindowVariant` for more about
1243 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1245 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1246 _windows_
.SplitterWindow_swigregister(SplitterWindow
)
1247 SplitterNameStr
= cvar
.SplitterNameStr
1249 def PreSplitterWindow(*args
, **kwargs
):
1251 PreSplitterWindow() -> SplitterWindow
1253 Precreate a SplitterWindow for 2-phase creation.
1255 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1258 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1260 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1262 Get the default attributes for this class. This is useful if you want
1263 to use the same font or colour in your own control as in a standard
1264 control -- which is a much better idea than hard coding specific
1265 colours or fonts which might look completely out of place on the
1266 user's system, especially if it uses themes.
1268 The variant parameter is only relevant under Mac currently and is
1269 ignore under other platforms. Under Mac, it will change the size of
1270 the returned font. See `wx.Window.SetWindowVariant` for more about
1273 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1275 class SplitterEvent(_core
.NotifyEvent
):
1276 """This class represents the events generated by a splitter control."""
1277 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1278 __repr__
= _swig_repr
1279 def __init__(self
, *args
, **kwargs
):
1281 __init__(self, EventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1283 This class represents the events generated by a splitter control.
1285 _windows_
.SplitterEvent_swiginit(self
,_windows_
.new_SplitterEvent(*args
, **kwargs
))
1286 def SetSashPosition(*args
, **kwargs
):
1288 SetSashPosition(self, int pos)
1290 This function is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1291 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1292 events, sets the the new sash position. In the case of _CHANGING
1293 events, sets the new tracking bar position so visual feedback during
1294 dragging will represent that change that will actually take place. Set
1295 to -1 from the event handler code to prevent repositioning.
1297 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1299 def GetSashPosition(*args
, **kwargs
):
1301 GetSashPosition(self) -> int
1303 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1304 and EVT_SPLITTER_SASH_POS_CHANGED events.
1306 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1308 def GetWindowBeingRemoved(*args
, **kwargs
):
1310 GetWindowBeingRemoved(self) -> Window
1312 Returns a pointer to the window being removed when a splitter window
1315 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1317 def GetX(*args
, **kwargs
):
1321 Returns the x coordinate of the double-click point in a
1322 EVT_SPLITTER_DCLICK event.
1324 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1326 def GetY(*args
, **kwargs
):
1330 Returns the y coordinate of the double-click point in a
1331 EVT_SPLITTER_DCLICK event.
1333 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1335 _windows_
.SplitterEvent_swigregister(SplitterEvent
)
1337 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1338 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1339 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1340 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1341 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1342 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1343 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1344 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1345 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1347 #---------------------------------------------------------------------------
1349 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1350 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1351 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1352 SW_NOBORDER
= _windows_
.SW_NOBORDER
1353 SW_BORDER
= _windows_
.SW_BORDER
1354 SW_3DSASH
= _windows_
.SW_3DSASH
1355 SW_3DBORDER
= _windows_
.SW_3DBORDER
1356 SW_3D
= _windows_
.SW_3D
1357 SASH_TOP
= _windows_
.SASH_TOP
1358 SASH_RIGHT
= _windows_
.SASH_RIGHT
1359 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1360 SASH_LEFT
= _windows_
.SASH_LEFT
1361 SASH_NONE
= _windows_
.SASH_NONE
1362 class SashWindow(_core
.Window
):
1363 """Proxy of C++ SashWindow class"""
1364 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1365 __repr__
= _swig_repr
1366 def __init__(self
, *args
, **kwargs
):
1368 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1369 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1370 String name=SashNameStr) -> SashWindow
1372 _windows_
.SashWindow_swiginit(self
,_windows_
.new_SashWindow(*args
, **kwargs
))
1373 self
._setOORInfo
(self
)
1375 def Create(*args
, **kwargs
):
1377 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1378 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1379 String name=SashNameStr) -> bool
1381 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1383 def SetSashVisible(*args
, **kwargs
):
1384 """SetSashVisible(self, int edge, bool sash)"""
1385 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1387 def GetSashVisible(*args
, **kwargs
):
1388 """GetSashVisible(self, int edge) -> bool"""
1389 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1391 def SetSashBorder(*args
, **kwargs
):
1392 """SetSashBorder(self, int edge, bool border)"""
1393 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1395 def HasBorder(*args
, **kwargs
):
1396 """HasBorder(self, int edge) -> bool"""
1397 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1399 def GetEdgeMargin(*args
, **kwargs
):
1400 """GetEdgeMargin(self, int edge) -> int"""
1401 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1403 def SetDefaultBorderSize(*args
, **kwargs
):
1404 """SetDefaultBorderSize(self, int width)"""
1405 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1407 def GetDefaultBorderSize(*args
, **kwargs
):
1408 """GetDefaultBorderSize(self) -> int"""
1409 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1411 def SetExtraBorderSize(*args
, **kwargs
):
1412 """SetExtraBorderSize(self, int width)"""
1413 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1415 def GetExtraBorderSize(*args
, **kwargs
):
1416 """GetExtraBorderSize(self) -> int"""
1417 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1419 def SetMinimumSizeX(*args
, **kwargs
):
1420 """SetMinimumSizeX(self, int min)"""
1421 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1423 def SetMinimumSizeY(*args
, **kwargs
):
1424 """SetMinimumSizeY(self, int min)"""
1425 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1427 def GetMinimumSizeX(*args
, **kwargs
):
1428 """GetMinimumSizeX(self) -> int"""
1429 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1431 def GetMinimumSizeY(*args
, **kwargs
):
1432 """GetMinimumSizeY(self) -> int"""
1433 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1435 def SetMaximumSizeX(*args
, **kwargs
):
1436 """SetMaximumSizeX(self, int max)"""
1437 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1439 def SetMaximumSizeY(*args
, **kwargs
):
1440 """SetMaximumSizeY(self, int max)"""
1441 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1443 def GetMaximumSizeX(*args
, **kwargs
):
1444 """GetMaximumSizeX(self) -> int"""
1445 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1447 def GetMaximumSizeY(*args
, **kwargs
):
1448 """GetMaximumSizeY(self) -> int"""
1449 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1451 def SashHitTest(*args
, **kwargs
):
1452 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1453 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1455 def SizeWindows(*args
, **kwargs
):
1456 """SizeWindows(self)"""
1457 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1459 _windows_
.SashWindow_swigregister(SashWindow
)
1460 SashNameStr
= cvar
.SashNameStr
1461 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1463 def PreSashWindow(*args
, **kwargs
):
1464 """PreSashWindow() -> SashWindow"""
1465 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1468 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1469 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1470 class SashEvent(_core
.CommandEvent
):
1471 """Proxy of C++ SashEvent class"""
1472 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1473 __repr__
= _swig_repr
1474 def __init__(self
, *args
, **kwargs
):
1475 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1476 _windows_
.SashEvent_swiginit(self
,_windows_
.new_SashEvent(*args
, **kwargs
))
1477 def SetEdge(*args
, **kwargs
):
1478 """SetEdge(self, int edge)"""
1479 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1481 def GetEdge(*args
, **kwargs
):
1482 """GetEdge(self) -> int"""
1483 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1485 def SetDragRect(*args
, **kwargs
):
1486 """SetDragRect(self, Rect rect)"""
1487 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1489 def GetDragRect(*args
, **kwargs
):
1490 """GetDragRect(self) -> Rect"""
1491 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1493 def SetDragStatus(*args
, **kwargs
):
1494 """SetDragStatus(self, int status)"""
1495 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1497 def GetDragStatus(*args
, **kwargs
):
1498 """GetDragStatus(self) -> int"""
1499 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1501 _windows_
.SashEvent_swigregister(SashEvent
)
1503 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1504 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1505 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1507 #---------------------------------------------------------------------------
1509 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1510 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1511 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1512 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1513 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1514 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1515 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1516 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1517 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1518 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1519 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1520 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1521 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1522 class QueryLayoutInfoEvent(_core
.Event
):
1523 """Proxy of C++ QueryLayoutInfoEvent class"""
1524 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1525 __repr__
= _swig_repr
1526 def __init__(self
, *args
, **kwargs
):
1527 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1528 _windows_
.QueryLayoutInfoEvent_swiginit(self
,_windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
))
1529 def SetRequestedLength(*args
, **kwargs
):
1530 """SetRequestedLength(self, int length)"""
1531 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1533 def GetRequestedLength(*args
, **kwargs
):
1534 """GetRequestedLength(self) -> int"""
1535 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1537 def SetFlags(*args
, **kwargs
):
1538 """SetFlags(self, int flags)"""
1539 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1541 def GetFlags(*args
, **kwargs
):
1542 """GetFlags(self) -> int"""
1543 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1545 def SetSize(*args
, **kwargs
):
1546 """SetSize(self, Size size)"""
1547 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1549 def GetSize(*args
, **kwargs
):
1550 """GetSize(self) -> Size"""
1551 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1553 def SetOrientation(*args
, **kwargs
):
1554 """SetOrientation(self, int orient)"""
1555 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1557 def GetOrientation(*args
, **kwargs
):
1558 """GetOrientation(self) -> int"""
1559 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1561 def SetAlignment(*args
, **kwargs
):
1562 """SetAlignment(self, int align)"""
1563 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1565 def GetAlignment(*args
, **kwargs
):
1566 """GetAlignment(self) -> int"""
1567 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1569 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEvent
)
1571 class CalculateLayoutEvent(_core
.Event
):
1572 """Proxy of C++ CalculateLayoutEvent class"""
1573 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1574 __repr__
= _swig_repr
1575 def __init__(self
, *args
, **kwargs
):
1576 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1577 _windows_
.CalculateLayoutEvent_swiginit(self
,_windows_
.new_CalculateLayoutEvent(*args
, **kwargs
))
1578 def SetFlags(*args
, **kwargs
):
1579 """SetFlags(self, int flags)"""
1580 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1582 def GetFlags(*args
, **kwargs
):
1583 """GetFlags(self) -> int"""
1584 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1586 def SetRect(*args
, **kwargs
):
1587 """SetRect(self, Rect rect)"""
1588 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1590 def GetRect(*args
, **kwargs
):
1591 """GetRect(self) -> Rect"""
1592 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1594 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
1595 Rect
= property(GetRect
,SetRect
,doc
="See `GetRect` and `SetRect`")
1596 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEvent
)
1598 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1599 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1601 class SashLayoutWindow(SashWindow
):
1602 """Proxy of C++ SashLayoutWindow class"""
1603 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1604 __repr__
= _swig_repr
1605 def __init__(self
, *args
, **kwargs
):
1607 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1608 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1609 String name=SashLayoutNameStr) -> SashLayoutWindow
1611 _windows_
.SashLayoutWindow_swiginit(self
,_windows_
.new_SashLayoutWindow(*args
, **kwargs
))
1612 self
._setOORInfo
(self
)
1614 def Create(*args
, **kwargs
):
1616 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1617 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1618 String name=SashLayoutNameStr) -> bool
1620 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1622 def GetAlignment(*args
, **kwargs
):
1623 """GetAlignment(self) -> int"""
1624 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1626 def GetOrientation(*args
, **kwargs
):
1627 """GetOrientation(self) -> int"""
1628 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1630 def SetAlignment(*args
, **kwargs
):
1631 """SetAlignment(self, int alignment)"""
1632 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1634 def SetDefaultSize(*args
, **kwargs
):
1635 """SetDefaultSize(self, Size size)"""
1636 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1638 def SetOrientation(*args
, **kwargs
):
1639 """SetOrientation(self, int orientation)"""
1640 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1642 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindow
)
1644 def PreSashLayoutWindow(*args
, **kwargs
):
1645 """PreSashLayoutWindow() -> SashLayoutWindow"""
1646 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1649 class LayoutAlgorithm(_core
.Object
):
1650 """Proxy of C++ LayoutAlgorithm class"""
1651 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1652 __repr__
= _swig_repr
1653 def __init__(self
, *args
, **kwargs
):
1654 """__init__(self) -> LayoutAlgorithm"""
1655 _windows_
.LayoutAlgorithm_swiginit(self
,_windows_
.new_LayoutAlgorithm(*args
, **kwargs
))
1656 __swig_destroy__
= _windows_
.delete_LayoutAlgorithm
1657 __del__
= lambda self
: None;
1658 def LayoutMDIFrame(*args
, **kwargs
):
1659 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1660 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1662 def LayoutFrame(*args
, **kwargs
):
1663 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1664 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1666 def LayoutWindow(*args
, **kwargs
):
1667 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1668 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1670 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithm
)
1672 #---------------------------------------------------------------------------
1674 class PopupWindow(_core
.Window
):
1675 """Proxy of C++ PopupWindow class"""
1676 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1677 __repr__
= _swig_repr
1678 def __init__(self
, *args
, **kwargs
):
1679 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1680 _windows_
.PopupWindow_swiginit(self
,_windows_
.new_PopupWindow(*args
, **kwargs
))
1681 self
._setOORInfo
(self
)
1683 def Create(*args
, **kwargs
):
1684 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1685 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1687 def Position(*args
, **kwargs
):
1688 """Position(self, Point ptOrigin, Size size)"""
1689 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1691 _windows_
.PopupWindow_swigregister(PopupWindow
)
1693 def PrePopupWindow(*args
, **kwargs
):
1694 """PrePopupWindow() -> PopupWindow"""
1695 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1698 #---------------------------------------------------------------------------
1700 class PopupTransientWindow(PopupWindow
):
1701 """Proxy of C++ PopupTransientWindow class"""
1702 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1703 __repr__
= _swig_repr
1704 def __init__(self
, *args
, **kwargs
):
1705 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1706 _windows_
.PopupTransientWindow_swiginit(self
,_windows_
.new_PopupTransientWindow(*args
, **kwargs
))
1707 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1709 def _setCallbackInfo(*args
, **kwargs
):
1710 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1711 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1713 def Popup(*args
, **kwargs
):
1714 """Popup(self, Window focus=None)"""
1715 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1717 def Dismiss(*args
, **kwargs
):
1719 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1721 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindow
)
1723 def PrePopupTransientWindow(*args
, **kwargs
):
1724 """PrePopupTransientWindow() -> PopupTransientWindow"""
1725 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1728 #---------------------------------------------------------------------------
1730 class TipWindow(PopupTransientWindow
):
1731 """Proxy of C++ TipWindow class"""
1732 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1733 __repr__
= _swig_repr
1734 def __init__(self
, *args
, **kwargs
):
1735 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1736 _windows_
.TipWindow_swiginit(self
,_windows_
.new_TipWindow(*args
, **kwargs
))
1737 self
._setOORInfo
(self
)
1739 def SetBoundingRect(*args
, **kwargs
):
1740 """SetBoundingRect(self, Rect rectBound)"""
1741 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1743 def Close(*args
, **kwargs
):
1747 This function simply generates a EVT_CLOSE event whose handler usually
1748 tries to close the window. It doesn't close the window itself,
1749 however. If force is False (the default) then the window's close
1750 handler will be allowed to veto the destruction of the window.
1752 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1754 _windows_
.TipWindow_swigregister(TipWindow
)
1756 #---------------------------------------------------------------------------
1758 class VScrolledWindow(Panel
):
1759 """Proxy of C++ VScrolledWindow class"""
1760 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1761 __repr__
= _swig_repr
1762 def __init__(self
, *args
, **kwargs
):
1764 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1765 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1767 _windows_
.VScrolledWindow_swiginit(self
,_windows_
.new_VScrolledWindow(*args
, **kwargs
))
1768 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1770 def _setCallbackInfo(*args
, **kwargs
):
1771 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1772 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1774 def Create(*args
, **kwargs
):
1776 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1777 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1779 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1781 def SetLineCount(*args
, **kwargs
):
1782 """SetLineCount(self, size_t count)"""
1783 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1785 def ScrollToLine(*args
, **kwargs
):
1786 """ScrollToLine(self, size_t line) -> bool"""
1787 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1789 def RefreshLine(*args
, **kwargs
):
1790 """RefreshLine(self, size_t line)"""
1791 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1793 def RefreshLines(*args
, **kwargs
):
1794 """RefreshLines(self, size_t from, size_t to)"""
1795 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1797 def HitTestXY(*args
, **kwargs
):
1799 HitTestXY(self, int x, int y) -> int
1801 Test where the given (in client coords) point lies
1803 return _windows_
.VScrolledWindow_HitTestXY(*args
, **kwargs
)
1805 def HitTest(*args
, **kwargs
):
1807 HitTest(self, Point pt) -> int
1809 Test where the given (in client coords) point lies
1811 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1813 def RefreshAll(*args
, **kwargs
):
1814 """RefreshAll(self)"""
1815 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1817 def GetLineCount(*args
, **kwargs
):
1818 """GetLineCount(self) -> size_t"""
1819 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1821 def GetVisibleBegin(*args
, **kwargs
):
1822 """GetVisibleBegin(self) -> size_t"""
1823 return _windows_
.VScrolledWindow_GetVisibleBegin(*args
, **kwargs
)
1825 def GetVisibleEnd(*args
, **kwargs
):
1826 """GetVisibleEnd(self) -> size_t"""
1827 return _windows_
.VScrolledWindow_GetVisibleEnd(*args
, **kwargs
)
1829 def IsVisible(*args
, **kwargs
):
1830 """IsVisible(self, size_t line) -> bool"""
1831 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1833 def GetFirstVisibleLine(*args
, **kwargs
):
1834 """GetFirstVisibleLine(self) -> size_t"""
1835 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1837 def GetLastVisibleLine(*args
, **kwargs
):
1838 """GetLastVisibleLine(self) -> size_t"""
1839 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1841 def FindFirstFromBottom(*args
, **kwargs
):
1842 """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t"""
1843 return _windows_
.VScrolledWindow_FindFirstFromBottom(*args
, **kwargs
)
1845 def GetLinesHeight(*args
, **kwargs
):
1846 """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int"""
1847 return _windows_
.VScrolledWindow_GetLinesHeight(*args
, **kwargs
)
1849 _windows_
.VScrolledWindow_swigregister(VScrolledWindow
)
1851 def PreVScrolledWindow(*args
, **kwargs
):
1852 """PreVScrolledWindow() -> VScrolledWindow"""
1853 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1856 class VListBox(VScrolledWindow
):
1857 """Proxy of C++ VListBox class"""
1858 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1859 __repr__
= _swig_repr
1860 def __init__(self
, *args
, **kwargs
):
1862 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1863 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1865 _windows_
.VListBox_swiginit(self
,_windows_
.new_VListBox(*args
, **kwargs
))
1866 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1868 def _setCallbackInfo(*args
, **kwargs
):
1869 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1870 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1872 def Create(*args
, **kwargs
):
1874 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1875 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1877 return _windows_
.VListBox_Create(*args
, **kwargs
)
1879 def GetItemCount(*args
, **kwargs
):
1880 """GetItemCount(self) -> size_t"""
1881 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1883 def HasMultipleSelection(*args
, **kwargs
):
1884 """HasMultipleSelection(self) -> bool"""
1885 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1887 def GetSelection(*args
, **kwargs
):
1888 """GetSelection(self) -> int"""
1889 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1891 def IsCurrent(*args
, **kwargs
):
1892 """IsCurrent(self, size_t item) -> bool"""
1893 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1895 def IsSelected(*args
, **kwargs
):
1896 """IsSelected(self, size_t item) -> bool"""
1897 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1899 def GetSelectedCount(*args
, **kwargs
):
1900 """GetSelectedCount(self) -> size_t"""
1901 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1903 def GetFirstSelected(*args
, **kwargs
):
1904 """GetFirstSelected(self) -> PyObject"""
1905 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1907 def GetNextSelected(*args
, **kwargs
):
1908 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1909 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1911 def GetMargins(*args
, **kwargs
):
1912 """GetMargins(self) -> Point"""
1913 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1915 def GetSelectionBackground(*args
, **kwargs
):
1916 """GetSelectionBackground(self) -> Colour"""
1917 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1919 def SetItemCount(*args
, **kwargs
):
1920 """SetItemCount(self, size_t count)"""
1921 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1923 def Clear(*args
, **kwargs
):
1925 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1927 def SetSelection(*args
, **kwargs
):
1928 """SetSelection(self, int selection)"""
1929 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1931 def Select(*args
, **kwargs
):
1932 """Select(self, size_t item, bool select=True) -> bool"""
1933 return _windows_
.VListBox_Select(*args
, **kwargs
)
1935 def SelectRange(*args
, **kwargs
):
1936 """SelectRange(self, size_t from, size_t to) -> bool"""
1937 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1939 def Toggle(*args
, **kwargs
):
1940 """Toggle(self, size_t item)"""
1941 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1943 def SelectAll(*args
, **kwargs
):
1944 """SelectAll(self) -> bool"""
1945 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1947 def DeselectAll(*args
, **kwargs
):
1948 """DeselectAll(self) -> bool"""
1949 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1951 def SetMargins(*args
, **kwargs
):
1952 """SetMargins(self, Point pt)"""
1953 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1955 def SetMarginsXY(*args
, **kwargs
):
1956 """SetMarginsXY(self, int x, int y)"""
1957 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1959 def SetSelectionBackground(*args
, **kwargs
):
1960 """SetSelectionBackground(self, Colour col)"""
1961 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1963 def OnDrawSeparator(*args
, **kwargs
):
1964 """OnDrawSeparator(self, DC dc, Rect rect, size_t n)"""
1965 return _windows_
.VListBox_OnDrawSeparator(*args
, **kwargs
)
1967 def OnDrawBackground(*args
, **kwargs
):
1968 """OnDrawBackground(self, DC dc, Rect rect, size_t n)"""
1969 return _windows_
.VListBox_OnDrawBackground(*args
, **kwargs
)
1971 _windows_
.VListBox_swigregister(VListBox
)
1972 VListBoxNameStr
= cvar
.VListBoxNameStr
1974 def PreVListBox(*args
, **kwargs
):
1975 """PreVListBox() -> VListBox"""
1976 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1979 class HtmlListBox(VListBox
):
1980 """Proxy of C++ HtmlListBox class"""
1981 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1982 __repr__
= _swig_repr
1983 def __init__(self
, *args
, **kwargs
):
1985 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1986 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1988 _windows_
.HtmlListBox_swiginit(self
,_windows_
.new_HtmlListBox(*args
, **kwargs
))
1989 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1991 def _setCallbackInfo(*args
, **kwargs
):
1992 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1993 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1995 def Create(*args
, **kwargs
):
1997 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1998 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
2000 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
2002 def SetItemCount(*args
, **kwargs
):
2003 """SetItemCount(self, size_t count)"""
2004 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
2006 def GetFileSystem(*args
, **kwargs
):
2007 """GetFileSystem(self) -> FileSystem"""
2008 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
2010 def OnLinkClicked(*args
, **kwargs
):
2011 """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)"""
2012 return _windows_
.HtmlListBox_OnLinkClicked(*args
, **kwargs
)
2014 FileSystem
= property(GetFileSystem
,doc
="See `GetFileSystem`")
2015 _windows_
.HtmlListBox_swigregister(HtmlListBox
)
2017 def PreHtmlListBox(*args
, **kwargs
):
2018 """PreHtmlListBox() -> HtmlListBox"""
2019 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
2022 #---------------------------------------------------------------------------
2024 class TaskBarIcon(_core
.EvtHandler
):
2025 """Proxy of C++ TaskBarIcon class"""
2026 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2027 __repr__
= _swig_repr
2028 def __init__(self
, *args
, **kwargs
):
2029 """__init__(self) -> TaskBarIcon"""
2030 _windows_
.TaskBarIcon_swiginit(self
,_windows_
.new_TaskBarIcon(*args
, **kwargs
))
2031 self
._setCallbackInfo
(self
, TaskBarIcon
, 0)
2033 __swig_destroy__
= _windows_
.delete_TaskBarIcon
2034 __del__
= lambda self
: None;
2035 def _setCallbackInfo(*args
, **kwargs
):
2036 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
2037 return _windows_
.TaskBarIcon__setCallbackInfo(*args
, **kwargs
)
2039 def Destroy(*args
, **kwargs
):
2043 Deletes the C++ object this Python object is a proxy for.
2045 val
= _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2049 def IsOk(*args
, **kwargs
):
2050 """IsOk(self) -> bool"""
2051 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
2053 def __nonzero__(self
): return self
.IsOk()
2054 def IsIconInstalled(*args
, **kwargs
):
2055 """IsIconInstalled(self) -> bool"""
2056 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
2058 def SetIcon(*args
, **kwargs
):
2059 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2060 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2062 def RemoveIcon(*args
, **kwargs
):
2063 """RemoveIcon(self) -> bool"""
2064 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2066 def PopupMenu(*args
, **kwargs
):
2067 """PopupMenu(self, Menu menu) -> bool"""
2068 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2070 _windows_
.TaskBarIcon_swigregister(TaskBarIcon
)
2072 class TaskBarIconEvent(_core
.Event
):
2073 """Proxy of C++ TaskBarIconEvent class"""
2074 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2075 __repr__
= _swig_repr
2076 def __init__(self
, *args
, **kwargs
):
2077 """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
2078 _windows_
.TaskBarIconEvent_swiginit(self
,_windows_
.new_TaskBarIconEvent(*args
, **kwargs
))
2079 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEvent
)
2081 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2082 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2083 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2084 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2085 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2086 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2087 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2088 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2089 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2090 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2091 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2092 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2093 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2094 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2096 #---------------------------------------------------------------------------
2098 class ColourData(_core
.Object
):
2100 This class holds a variety of information related to the colour
2101 chooser dialog, used to transfer settings and results to and from the
2104 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2105 __repr__
= _swig_repr
2106 def __init__(self
, *args
, **kwargs
):
2108 __init__(self) -> ColourData
2110 Constructor, sets default values.
2112 _windows_
.ColourData_swiginit(self
,_windows_
.new_ColourData(*args
, **kwargs
))
2113 __swig_destroy__
= _windows_
.delete_ColourData
2114 __del__
= lambda self
: None;
2115 def GetChooseFull(*args
, **kwargs
):
2117 GetChooseFull(self) -> bool
2119 Under Windows, determines whether the Windows colour dialog will
2120 display the full dialog with custom colour selection controls. Has no
2121 meaning under other platforms. The default value is true.
2123 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2125 def GetColour(*args
, **kwargs
):
2127 GetColour(self) -> Colour
2129 Gets the colour (pre)selected by the dialog.
2131 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2133 def GetCustomColour(*args
, **kwargs
):
2135 GetCustomColour(self, int i) -> Colour
2137 Gets the i'th custom colour associated with the colour dialog. i
2138 should be an integer between 0 and 15. The default custom colours are
2139 all invalid colours.
2141 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2143 def SetChooseFull(*args
, **kwargs
):
2145 SetChooseFull(self, int flag)
2147 Under Windows, tells the Windows colour dialog to display the full
2148 dialog with custom colour selection controls. Under other platforms,
2149 has no effect. The default value is true.
2151 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2153 def SetColour(*args
, **kwargs
):
2155 SetColour(self, Colour colour)
2157 Sets the default colour for the colour dialog. The default colour is
2160 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2162 def SetCustomColour(*args
, **kwargs
):
2164 SetCustomColour(self, int i, Colour colour)
2166 Sets the i'th custom colour for the colour dialog. i should be an
2167 integer between 0 and 15. The default custom colours are all invalid colours.
2169 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2171 ChooseFull
= property(GetChooseFull
,SetChooseFull
,doc
="See `GetChooseFull` and `SetChooseFull`")
2172 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
2173 CustomColour
= property(GetCustomColour
,SetCustomColour
,doc
="See `GetCustomColour` and `SetCustomColour`")
2174 _windows_
.ColourData_swigregister(ColourData
)
2175 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2176 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2177 DirDialogNameStr
= cvar
.DirDialogNameStr
2178 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2179 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2180 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2182 class ColourDialog(Dialog
):
2183 """This class represents the colour chooser dialog."""
2184 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2185 __repr__
= _swig_repr
2186 def __init__(self
, *args
, **kwargs
):
2188 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2190 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2191 which will be copied to the colour dialog's internal ColourData
2194 _windows_
.ColourDialog_swiginit(self
,_windows_
.new_ColourDialog(*args
, **kwargs
))
2195 self
._setOORInfo
(self
)
2197 def GetColourData(*args
, **kwargs
):
2199 GetColourData(self) -> ColourData
2201 Returns a reference to the `wx.ColourData` used by the dialog.
2203 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2205 ColourData
= property(GetColourData
,doc
="See `GetColourData`")
2206 _windows_
.ColourDialog_swigregister(ColourDialog
)
2209 def GetColourFromUser(*args
, **kwargs
):
2211 GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour,
2212 String caption=EmptyString) -> Colour
2214 return _windows_
.GetColourFromUser(*args
, **kwargs
)
2215 DD_NEW_DIR_BUTTON
= _windows_
.DD_NEW_DIR_BUTTON
2216 DD_DEFAULT_STYLE
= _windows_
.DD_DEFAULT_STYLE
2217 DD_CHANGE_DIR
= _windows_
.DD_CHANGE_DIR
2218 class DirDialog(Dialog
):
2220 wx.DirDialog allows the user to select a directory by browising the
2223 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2224 __repr__
= _swig_repr
2225 def __init__(self
, *args
, **kwargs
):
2227 __init__(self, Window parent, String message=DirSelectorPromptStr,
2228 String defaultPath=EmptyString, long style=DD_DEFAULT_STYLE,
2229 Point pos=DefaultPosition, Size size=DefaultSize,
2230 String name=DirDialogNameStr) -> DirDialog
2232 Constructor. Use ShowModal method to show the dialog.
2234 _windows_
.DirDialog_swiginit(self
,_windows_
.new_DirDialog(*args
, **kwargs
))
2235 self
._setOORInfo
(self
)
2237 def GetPath(*args
, **kwargs
):
2239 GetPath(self) -> String
2241 Returns the default or user-selected path.
2243 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2245 def GetMessage(*args
, **kwargs
):
2247 GetMessage(self) -> String
2249 Returns the message that will be displayed on the dialog.
2251 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2253 def SetMessage(*args
, **kwargs
):
2255 SetMessage(self, String message)
2257 Sets the message that will be displayed on the dialog.
2259 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2261 def SetPath(*args
, **kwargs
):
2263 SetPath(self, String path)
2265 Sets the default path.
2267 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2269 Message
= property(GetMessage
,SetMessage
,doc
="See `GetMessage` and `SetMessage`")
2270 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
2271 _windows_
.DirDialog_swigregister(DirDialog
)
2273 OPEN
= _windows_
.OPEN
2274 SAVE
= _windows_
.SAVE
2275 OVERWRITE_PROMPT
= _windows_
.OVERWRITE_PROMPT
2276 FILE_MUST_EXIST
= _windows_
.FILE_MUST_EXIST
2277 MULTIPLE
= _windows_
.MULTIPLE
2278 CHANGE_DIR
= _windows_
.CHANGE_DIR
2279 HIDE_READONLY
= _windows_
.HIDE_READONLY
2280 FD_OPEN
= _windows_
.FD_OPEN
2281 FD_SAVE
= _windows_
.FD_SAVE
2282 FD_OVERWRITE_PROMPT
= _windows_
.FD_OVERWRITE_PROMPT
2283 FD_FILE_MUST_EXIST
= _windows_
.FD_FILE_MUST_EXIST
2284 FD_MULTIPLE
= _windows_
.FD_MULTIPLE
2285 FD_CHANGE_DIR
= _windows_
.FD_CHANGE_DIR
2286 FD_PREVIEW
= _windows_
.FD_PREVIEW
2287 FD_DEFAULT_STYLE
= _windows_
.FD_DEFAULT_STYLE
2288 class FileDialog(Dialog
):
2290 wx.FileDialog allows the user to select one or more files from the
2293 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2294 __repr__
= _swig_repr
2295 def __init__(self
, *args
, **kwargs
):
2297 __init__(self, Window parent, String message=FileSelectorPromptStr,
2298 String defaultDir=EmptyString, String defaultFile=EmptyString,
2299 String wildcard=FileSelectorDefaultWildcardStr,
2300 long style=FD_DEFAULT_STYLE,
2301 Point pos=DefaultPosition) -> FileDialog
2303 Constructor. Use ShowModal method to show the dialog.
2305 _windows_
.FileDialog_swiginit(self
,_windows_
.new_FileDialog(*args
, **kwargs
))
2306 self
._setOORInfo
(self
)
2308 def SetMessage(*args
, **kwargs
):
2310 SetMessage(self, String message)
2312 Sets the message that will be displayed on the dialog.
2314 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2316 def SetPath(*args
, **kwargs
):
2318 SetPath(self, String path)
2320 Sets the path (the combined directory and filename that will be
2321 returned when the dialog is dismissed).
2323 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2325 def SetDirectory(*args
, **kwargs
):
2327 SetDirectory(self, String dir)
2329 Sets the default directory.
2331 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2333 def SetFilename(*args
, **kwargs
):
2335 SetFilename(self, String name)
2337 Sets the default filename.
2339 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2341 def SetWildcard(*args
, **kwargs
):
2343 SetWildcard(self, String wildCard)
2345 Sets the wildcard, which can contain multiple file types, for
2348 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2351 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2353 def SetFilterIndex(*args
, **kwargs
):
2355 SetFilterIndex(self, int filterIndex)
2357 Sets the default filter index, starting from zero.
2359 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2361 def GetMessage(*args
, **kwargs
):
2363 GetMessage(self) -> String
2365 Returns the message that will be displayed on the dialog.
2367 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2369 def GetPath(*args
, **kwargs
):
2371 GetPath(self) -> String
2373 Returns the full path (directory and filename) of the selected file.
2375 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2377 def GetDirectory(*args
, **kwargs
):
2379 GetDirectory(self) -> String
2381 Returns the default directory.
2383 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2385 def GetFilename(*args
, **kwargs
):
2387 GetFilename(self) -> String
2389 Returns the default filename.
2391 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2393 def GetWildcard(*args
, **kwargs
):
2395 GetWildcard(self) -> String
2397 Returns the file dialog wildcard.
2399 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2401 def GetFilterIndex(*args
, **kwargs
):
2403 GetFilterIndex(self) -> int
2405 Returns the index into the list of filters supplied, optionally, in
2406 the wildcard parameter. Before the dialog is shown, this is the index
2407 which will be used when the dialog is first displayed. After the
2408 dialog is shown, this is the index selected by the user.
2410 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2412 def GetFilenames(*args
, **kwargs
):
2414 GetFilenames(self) -> PyObject
2416 Returns a list of filenames chosen in the dialog. This function
2417 should only be used with the dialogs which have wx.MULTIPLE style, use
2418 GetFilename for the others.
2420 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2422 def GetPaths(*args
, **kwargs
):
2424 GetPaths(self) -> PyObject
2426 Fills the array paths with the full paths of the files chosen. This
2427 function should only be used with the dialogs which have wx.MULTIPLE
2428 style, use GetPath for the others.
2430 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2432 Directory
= property(GetDirectory
,SetDirectory
,doc
="See `GetDirectory` and `SetDirectory`")
2433 Filename
= property(GetFilename
,SetFilename
,doc
="See `GetFilename` and `SetFilename`")
2434 Filenames
= property(GetFilenames
,doc
="See `GetFilenames`")
2435 FilterIndex
= property(GetFilterIndex
,SetFilterIndex
,doc
="See `GetFilterIndex` and `SetFilterIndex`")
2436 Message
= property(GetMessage
,SetMessage
,doc
="See `GetMessage` and `SetMessage`")
2437 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
2438 Paths
= property(GetPaths
,doc
="See `GetPaths`")
2439 Wildcard
= property(GetWildcard
,SetWildcard
,doc
="See `GetWildcard` and `SetWildcard`")
2440 _windows_
.FileDialog_swigregister(FileDialog
)
2442 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2443 class MultiChoiceDialog(Dialog
):
2444 """A simple dialog with a multi selection listbox."""
2445 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2446 __repr__
= _swig_repr
2447 def __init__(self
, *args
, **kwargs
):
2449 __init__(self, Window parent, String message, String caption,
2450 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2451 Point pos=DefaultPosition) -> MultiChoiceDialog
2453 Constructor. Use the `ShowModal` method to show the dialog.
2455 :param parent: The parent window.
2456 :param message: Text to display above the list of selections.
2457 :param caption: Text to use in the title bar of the dialog.
2458 :param choices: A list of strings or unicode objects that the
2459 user is allowed to choose from.
2460 :param style: Styles to apply to the dialog. The default value is
2461 equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
2462 :param pos: Where to position the dialog (not used on Windows)
2466 _windows_
.MultiChoiceDialog_swiginit(self
,_windows_
.new_MultiChoiceDialog(*args
, **kwargs
))
2467 self
._setOORInfo
(self
)
2469 def SetSelections(*args
, **kwargs
):
2471 SetSelections(List selections)
2473 Specify the items in the list that should be selected, using a list of
2474 integers. The list should specify the indexes of the items that
2477 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2479 def GetSelections(*args
, **kwargs
):
2481 GetSelections() -> [selections]
2483 Returns a list of integers representing the items that are selected.
2484 If an item is selected then its index will appear in the list.
2486 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2488 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialog
)
2490 class SingleChoiceDialog(Dialog
):
2491 """A simple dialog with a single selection listbox."""
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__(Window parent, String message, String caption,
2497 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2498 Point pos=DefaultPosition) -> SingleChoiceDialog
2500 Constructor. Use ShowModal method to show the dialog.
2502 _windows_
.SingleChoiceDialog_swiginit(self
,_windows_
.new_SingleChoiceDialog(*args
, **kwargs
))
2503 self
._setOORInfo
(self
)
2505 def GetSelection(*args
, **kwargs
):
2507 GetSelection(self) -> int
2509 Get the index of the currently selected item.
2511 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2513 def GetStringSelection(*args
, **kwargs
):
2515 GetStringSelection(self) -> String
2517 Returns the string value of the currently selected item
2519 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2521 def SetSelection(*args
, **kwargs
):
2523 SetSelection(self, int sel)
2525 Set the current selected item to sel
2527 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2529 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialog
)
2531 TextEntryDialogStyle
= _windows_
.TextEntryDialogStyle
2532 class TextEntryDialog(Dialog
):
2533 """A dialog with text control, [ok] and [cancel] buttons"""
2534 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2535 __repr__
= _swig_repr
2536 def __init__(self
, *args
, **kwargs
):
2538 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2539 String defaultValue=EmptyString,
2540 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
2542 Constructor. Use ShowModal method to show the dialog.
2544 _windows_
.TextEntryDialog_swiginit(self
,_windows_
.new_TextEntryDialog(*args
, **kwargs
))
2545 self
._setOORInfo
(self
)
2547 def GetValue(*args
, **kwargs
):
2549 GetValue(self) -> String
2551 Returns the text that the user has entered if the user has pressed OK,
2552 or the original value if the user has pressed Cancel.
2554 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2556 def SetValue(*args
, **kwargs
):
2558 SetValue(self, String value)
2560 Sets the default text value.
2562 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2564 _windows_
.TextEntryDialog_swigregister(TextEntryDialog
)
2566 class PasswordEntryDialog(TextEntryDialog
):
2567 """Proxy of C++ PasswordEntryDialog class"""
2568 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2569 __repr__
= _swig_repr
2570 def __init__(self
, *args
, **kwargs
):
2572 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2573 String value=EmptyString,
2574 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
2576 _windows_
.PasswordEntryDialog_swiginit(self
,_windows_
.new_PasswordEntryDialog(*args
, **kwargs
))
2577 _windows_
.PasswordEntryDialog_swigregister(PasswordEntryDialog
)
2578 GetPasswordFromUserPromptStr
= cvar
.GetPasswordFromUserPromptStr
2580 class NumberEntryDialog(Dialog
):
2581 """A dialog with spin control, ok and cancel buttons."""
2582 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2583 __repr__
= _swig_repr
2584 def __init__(self
, *args
, **kwargs
):
2586 __init__(self, Window parent, String message, String prompt, String caption,
2587 long value, long min, long max, Point pos=DefaultPosition) -> NumberEntryDialog
2589 Constructor. Use ShowModal method to show the dialog.
2591 _windows_
.NumberEntryDialog_swiginit(self
,_windows_
.new_NumberEntryDialog(*args
, **kwargs
))
2592 self
._setOORInfo
(self
)
2594 def GetValue(*args
, **kwargs
):
2595 """GetValue(self) -> long"""
2596 return _windows_
.NumberEntryDialog_GetValue(*args
, **kwargs
)
2598 _windows_
.NumberEntryDialog_swigregister(NumberEntryDialog
)
2600 class FontData(_core
.Object
):
2602 This class holds a variety of information related to font dialogs and
2603 is used to transfer settings to and results from a `wx.FontDialog`.
2605 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2606 __repr__
= _swig_repr
2607 def __init__(self
, *args
, **kwargs
):
2609 __init__(self) -> FontData
2611 This class holds a variety of information related to font dialogs and
2612 is used to transfer settings to and results from a `wx.FontDialog`.
2614 _windows_
.FontData_swiginit(self
,_windows_
.new_FontData(*args
, **kwargs
))
2615 __swig_destroy__
= _windows_
.delete_FontData
2616 __del__
= lambda self
: None;
2617 def EnableEffects(*args
, **kwargs
):
2619 EnableEffects(self, bool enable)
2621 Enables or disables 'effects' under MS Windows only. This refers to
2622 the controls for manipulating colour, strikeout and underline
2623 properties. The default value is true.
2625 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2627 def GetAllowSymbols(*args
, **kwargs
):
2629 GetAllowSymbols(self) -> bool
2631 Under MS Windows, returns a flag determining whether symbol fonts can
2632 be selected. Has no effect on other platforms. The default value is
2635 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2637 def GetColour(*args
, **kwargs
):
2639 GetColour(self) -> Colour
2641 Gets the colour associated with the font dialog. The default value is
2644 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2646 def GetChosenFont(*args
, **kwargs
):
2648 GetChosenFont(self) -> Font
2650 Gets the font chosen by the user.
2652 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2654 def GetEnableEffects(*args
, **kwargs
):
2656 GetEnableEffects(self) -> bool
2658 Determines whether 'effects' are enabled under Windows.
2660 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2662 def GetInitialFont(*args
, **kwargs
):
2664 GetInitialFont(self) -> Font
2666 Gets the font that will be initially used by the font dialog. This
2667 should have previously been set by the application.
2669 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2671 def GetShowHelp(*args
, **kwargs
):
2673 GetShowHelp(self) -> bool
2675 Returns true if the Help button will be shown (Windows only). The
2676 default value is false.
2678 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2680 def SetAllowSymbols(*args
, **kwargs
):
2682 SetAllowSymbols(self, bool allowSymbols)
2684 Under MS Windows, determines whether symbol fonts can be selected. Has
2685 no effect on other platforms. The default value is true.
2687 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2689 def SetChosenFont(*args
, **kwargs
):
2691 SetChosenFont(self, Font font)
2693 Sets the font that will be returned to the user (normally for internal
2696 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2698 def SetColour(*args
, **kwargs
):
2700 SetColour(self, Colour colour)
2702 Sets the colour that will be used for the font foreground colour. The
2703 default colour is black.
2705 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2707 def SetInitialFont(*args
, **kwargs
):
2709 SetInitialFont(self, Font font)
2711 Sets the font that will be initially used by the font dialog.
2713 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2715 def SetRange(*args
, **kwargs
):
2717 SetRange(self, int min, int max)
2719 Sets the valid range for the font point size (Windows only). The
2720 default is 0, 0 (unrestricted range).
2722 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2724 def SetShowHelp(*args
, **kwargs
):
2726 SetShowHelp(self, bool showHelp)
2728 Determines whether the Help button will be displayed in the font
2729 dialog (Windows only). The default value is false.
2731 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2733 AllowSymbols
= property(GetAllowSymbols
,SetAllowSymbols
,doc
="See `GetAllowSymbols` and `SetAllowSymbols`")
2734 ChosenFont
= property(GetChosenFont
,SetChosenFont
,doc
="See `GetChosenFont` and `SetChosenFont`")
2735 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
2736 EnableEffects
= property(GetEnableEffects
,doc
="See `GetEnableEffects`")
2737 InitialFont
= property(GetInitialFont
,SetInitialFont
,doc
="See `GetInitialFont` and `SetInitialFont`")
2738 ShowHelp
= property(GetShowHelp
,SetShowHelp
,doc
="See `GetShowHelp` and `SetShowHelp`")
2739 _windows_
.FontData_swigregister(FontData
)
2741 class FontDialog(Dialog
):
2743 wx.FontDialog allows the user to select a system font and its attributes.
2748 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2749 __repr__
= _swig_repr
2750 def __init__(self
, *args
, **kwargs
):
2752 __init__(self, Window parent, FontData data) -> FontDialog
2754 Constructor. Pass a parent window and the `wx.FontData` object to be
2755 used to initialize the dialog controls. Call `ShowModal` to display
2756 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2757 results with via the `wx.FontData` returned by `GetFontData`.
2759 _windows_
.FontDialog_swiginit(self
,_windows_
.new_FontDialog(*args
, **kwargs
))
2760 self
._setOORInfo
(self
)
2762 def GetFontData(*args
, **kwargs
):
2764 GetFontData(self) -> FontData
2766 Returns a reference to the internal `wx.FontData` used by the
2769 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2771 FontData
= property(GetFontData
,doc
="See `GetFontData`")
2772 _windows_
.FontDialog_swigregister(FontDialog
)
2775 def GetFontFromUser(*args
, **kwargs
):
2776 """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font"""
2777 return _windows_
.GetFontFromUser(*args
, **kwargs
)
2778 class MessageDialog(Dialog
):
2780 This class provides a simple dialog that shows a single or multi-line
2781 message, with a choice of OK, Yes, No and/or Cancel buttons.
2783 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2784 __repr__
= _swig_repr
2785 def __init__(self
, *args
, **kwargs
):
2787 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2788 long style=wxOK|wxCANCEL|wxCENTRE,
2789 Point pos=DefaultPosition) -> MessageDialog
2791 Constructor, use `ShowModal` to display the dialog.
2793 _windows_
.MessageDialog_swiginit(self
,_windows_
.new_MessageDialog(*args
, **kwargs
))
2794 self
._setOORInfo
(self
)
2796 _windows_
.MessageDialog_swigregister(MessageDialog
)
2798 class ProgressDialog(Frame
):
2800 A dialog that shows a short message and a progress bar. Optionally, it
2801 can display an ABORT button.
2803 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2804 __repr__
= _swig_repr
2805 def __init__(self
, *args
, **kwargs
):
2807 __init__(self, String title, String message, int maximum=100, Window parent=None,
2808 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2810 Constructor. Creates the dialog, displays it and disables user input
2811 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2814 _windows_
.ProgressDialog_swiginit(self
,_windows_
.new_ProgressDialog(*args
, **kwargs
))
2815 self
._setOORInfo
(self
)
2817 def Update(*args
, **kwargs
):
2819 Update(self, int value, String newmsg) --> (continue, skip)
2821 Updates the dialog, setting the progress bar to the new value and, if
2822 given changes the message above it. The value given should be less
2823 than or equal to the maximum value given to the constructor and the
2824 dialog is closed if it is equal to the maximum. Returns a tuple of
2825 boolean values, ``(continue, skip)`` where ``continue`` is ``True``
2826 unless the Cancel button has been pressed, and ``skip`` is ``False``
2827 unless the Skip button (if any) has been pressed.
2829 If the ``continue`` return value is ``false``, the application can either
2830 immediately destroy the dialog or ask the user for confirmation, and if the
2831 abort is not confirmed the dialog may be resumed with `Resume` function.
2834 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2836 def Resume(*args
, **kwargs
):
2840 Can be used to continue with the dialog, after the user had chosen to
2843 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2845 _windows_
.ProgressDialog_swigregister(ProgressDialog
)
2847 FR_DOWN
= _windows_
.FR_DOWN
2848 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2849 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2850 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2851 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2852 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2853 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2854 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2855 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2856 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2857 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2858 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2859 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2860 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2861 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2862 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2863 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2865 # For backwards compatibility. Should they be removed?
2866 EVT_COMMAND_FIND
= EVT_FIND
2867 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2868 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2869 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2870 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2872 class FindDialogEvent(_core
.CommandEvent
):
2873 """Events for the FindReplaceDialog"""
2874 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2875 __repr__
= _swig_repr
2876 def __init__(self
, *args
, **kwargs
):
2878 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2880 Events for the FindReplaceDialog
2882 _windows_
.FindDialogEvent_swiginit(self
,_windows_
.new_FindDialogEvent(*args
, **kwargs
))
2883 def GetFlags(*args
, **kwargs
):
2885 GetFlags(self) -> int
2887 Get the currently selected flags: this is the combination of
2888 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2890 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2892 def GetFindString(*args
, **kwargs
):
2894 GetFindString(self) -> String
2896 Return the string to find (never empty).
2898 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2900 def GetReplaceString(*args
, **kwargs
):
2902 GetReplaceString(self) -> String
2904 Return the string to replace the search string with (only for replace
2905 and replace all events).
2907 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2909 def GetDialog(*args
, **kwargs
):
2911 GetDialog(self) -> FindReplaceDialog
2913 Return the pointer to the dialog which generated this event.
2915 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2917 def SetFlags(*args
, **kwargs
):
2918 """SetFlags(self, int flags)"""
2919 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2921 def SetFindString(*args
, **kwargs
):
2922 """SetFindString(self, String str)"""
2923 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2925 def SetReplaceString(*args
, **kwargs
):
2926 """SetReplaceString(self, String str)"""
2927 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2929 Dialog
= property(GetDialog
,doc
="See `GetDialog`")
2930 FindString
= property(GetFindString
,SetFindString
,doc
="See `GetFindString` and `SetFindString`")
2931 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
2932 ReplaceString
= property(GetReplaceString
,SetReplaceString
,doc
="See `GetReplaceString` and `SetReplaceString`")
2933 _windows_
.FindDialogEvent_swigregister(FindDialogEvent
)
2935 class FindReplaceData(_core
.Object
):
2937 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2938 to initialize the dialog with the default values and will keep the
2939 last values from the dialog when it is closed. It is also updated each
2940 time a `wx.FindDialogEvent` is generated so instead of using the
2941 `wx.FindDialogEvent` methods you can also directly query this object.
2943 Note that all SetXXX() methods may only be called before showing the
2944 dialog and calling them has no effect later.
2946 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2947 __repr__
= _swig_repr
2948 def __init__(self
, *args
, **kwargs
):
2950 __init__(self, int flags=0) -> FindReplaceData
2952 Constuctor initializes the flags to default value (0).
2954 _windows_
.FindReplaceData_swiginit(self
,_windows_
.new_FindReplaceData(*args
, **kwargs
))
2955 __swig_destroy__
= _windows_
.delete_FindReplaceData
2956 __del__
= lambda self
: None;
2957 def GetFindString(*args
, **kwargs
):
2959 GetFindString(self) -> String
2961 Get the string to find.
2963 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
2965 def GetReplaceString(*args
, **kwargs
):
2967 GetReplaceString(self) -> String
2969 Get the replacement string.
2971 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2973 def GetFlags(*args
, **kwargs
):
2975 GetFlags(self) -> int
2977 Get the combination of flag values.
2979 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
2981 def SetFlags(*args
, **kwargs
):
2983 SetFlags(self, int flags)
2985 Set the flags to use to initialize the controls of the dialog.
2987 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
2989 def SetFindString(*args
, **kwargs
):
2991 SetFindString(self, String str)
2993 Set the string to find (used as initial value by the dialog).
2995 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
2997 def SetReplaceString(*args
, **kwargs
):
2999 SetReplaceString(self, String str)
3001 Set the replacement string (used as initial value by the dialog).
3003 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
3005 FindString
= property(GetFindString
,SetFindString
,doc
="See `GetFindString` and `SetFindString`")
3006 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
3007 ReplaceString
= property(GetReplaceString
,SetReplaceString
,doc
="See `GetReplaceString` and `SetReplaceString`")
3008 _windows_
.FindReplaceData_swigregister(FindReplaceData
)
3010 class FindReplaceDialog(Dialog
):
3012 wx.FindReplaceDialog is a standard modeless dialog which is used to
3013 allow the user to search for some text (and possibly replace it with
3014 something else). The actual searching is supposed to be done in the
3015 owner window which is the parent of this dialog. Note that it means
3016 that unlike for the other standard dialogs this one must have a parent
3017 window. Also note that there is no way to use this dialog in a modal
3018 way; it is always, by design and implementation, modeless.
3020 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3021 __repr__
= _swig_repr
3022 def __init__(self
, *args
, **kwargs
):
3024 __init__(self, Window parent, FindReplaceData data, String title,
3025 int style=0) -> FindReplaceDialog
3027 Create a FindReplaceDialog. The parent and data parameters must be
3028 non-None. Use Show to display the dialog.
3030 _windows_
.FindReplaceDialog_swiginit(self
,_windows_
.new_FindReplaceDialog(*args
, **kwargs
))
3031 self
._setOORInfo
(self
)
3033 def Create(*args
, **kwargs
):
3035 Create(self, Window parent, FindReplaceData data, String title,
3036 int style=0) -> bool
3038 Create the dialog, for 2-phase create.
3040 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3042 def GetData(*args
, **kwargs
):
3044 GetData(self) -> FindReplaceData
3046 Get the FindReplaceData object used by this dialog.
3048 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3050 def SetData(*args
, **kwargs
):
3052 SetData(self, FindReplaceData data)
3054 Set the FindReplaceData object used by this dialog.
3056 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3058 Data
= property(GetData
,SetData
,doc
="See `GetData` and `SetData`")
3059 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialog
)
3061 def PreFindReplaceDialog(*args
, **kwargs
):
3063 PreFindReplaceDialog() -> FindReplaceDialog
3065 Precreate a FindReplaceDialog for 2-phase creation
3067 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3070 #---------------------------------------------------------------------------
3072 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3073 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3074 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3075 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3076 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3077 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3078 IDM_WINDOWPREV
= _windows_
.IDM_WINDOWPREV
3079 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3080 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3081 class MDIParentFrame(Frame
):
3082 """Proxy of C++ MDIParentFrame class"""
3083 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3084 __repr__
= _swig_repr
3085 def __init__(self
, *args
, **kwargs
):
3087 __init__(self, Window parent, int id=-1, String title=EmptyString,
3088 Point pos=DefaultPosition, Size size=DefaultSize,
3089 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3090 String name=FrameNameStr) -> MDIParentFrame
3092 _windows_
.MDIParentFrame_swiginit(self
,_windows_
.new_MDIParentFrame(*args
, **kwargs
))
3093 self
._setOORInfo
(self
)
3095 def Create(*args
, **kwargs
):
3097 Create(self, Window parent, int id=-1, String title=EmptyString,
3098 Point pos=DefaultPosition, Size size=DefaultSize,
3099 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3100 String name=FrameNameStr) -> bool
3102 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3104 def ActivateNext(*args
, **kwargs
):
3105 """ActivateNext(self)"""
3106 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3108 def ActivatePrevious(*args
, **kwargs
):
3109 """ActivatePrevious(self)"""
3110 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3112 def ArrangeIcons(*args
, **kwargs
):
3113 """ArrangeIcons(self)"""
3114 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3116 def Cascade(*args
, **kwargs
):
3118 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3120 def GetActiveChild(*args
, **kwargs
):
3121 """GetActiveChild(self) -> MDIChildFrame"""
3122 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3124 def GetClientWindow(*args
, **kwargs
):
3125 """GetClientWindow(self) -> MDIClientWindow"""
3126 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3128 def GetToolBar(*args
, **kwargs
):
3129 """GetToolBar(self) -> Window"""
3130 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3132 def GetWindowMenu(*args
, **kwargs
):
3133 """GetWindowMenu(self) -> Menu"""
3134 return _windows_
.MDIParentFrame_GetWindowMenu(*args
, **kwargs
)
3136 def SetWindowMenu(*args
, **kwargs
):
3137 """SetWindowMenu(self, Menu menu)"""
3138 return _windows_
.MDIParentFrame_SetWindowMenu(*args
, **kwargs
)
3140 def Tile(*args
, **kwargs
):
3141 """Tile(self, int orient=HORIZONTAL)"""
3142 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3144 _windows_
.MDIParentFrame_swigregister(MDIParentFrame
)
3146 def PreMDIParentFrame(*args
, **kwargs
):
3147 """PreMDIParentFrame() -> MDIParentFrame"""
3148 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3151 class MDIChildFrame(Frame
):
3152 """Proxy of C++ MDIChildFrame class"""
3153 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3154 __repr__
= _swig_repr
3155 def __init__(self
, *args
, **kwargs
):
3157 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3158 Point pos=DefaultPosition, Size size=DefaultSize,
3159 long style=DEFAULT_FRAME_STYLE,
3160 String name=FrameNameStr) -> MDIChildFrame
3162 _windows_
.MDIChildFrame_swiginit(self
,_windows_
.new_MDIChildFrame(*args
, **kwargs
))
3163 self
._setOORInfo
(self
)
3165 def Create(*args
, **kwargs
):
3167 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3168 Point pos=DefaultPosition, Size size=DefaultSize,
3169 long style=DEFAULT_FRAME_STYLE,
3170 String name=FrameNameStr) -> bool
3172 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3174 def Activate(*args
, **kwargs
):
3175 """Activate(self)"""
3176 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3178 _windows_
.MDIChildFrame_swigregister(MDIChildFrame
)
3180 def PreMDIChildFrame(*args
, **kwargs
):
3181 """PreMDIChildFrame() -> MDIChildFrame"""
3182 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3185 class MDIClientWindow(_core
.Window
):
3186 """Proxy of C++ MDIClientWindow class"""
3187 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3188 __repr__
= _swig_repr
3189 def __init__(self
, *args
, **kwargs
):
3190 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3191 _windows_
.MDIClientWindow_swiginit(self
,_windows_
.new_MDIClientWindow(*args
, **kwargs
))
3192 self
._setOORInfo
(self
)
3194 def Create(*args
, **kwargs
):
3195 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3196 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3198 _windows_
.MDIClientWindow_swigregister(MDIClientWindow
)
3200 def PreMDIClientWindow(*args
, **kwargs
):
3201 """PreMDIClientWindow() -> MDIClientWindow"""
3202 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3205 #---------------------------------------------------------------------------
3207 class PyWindow(_core
.Window
):
3208 """Proxy of C++ PyWindow class"""
3209 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3210 __repr__
= _swig_repr
3211 def __init__(self
, *args
, **kwargs
):
3213 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3214 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3216 _windows_
.PyWindow_swiginit(self
,_windows_
.new_PyWindow(*args
, **kwargs
))
3217 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3219 def _setCallbackInfo(*args
, **kwargs
):
3220 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3221 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3223 def SetBestSize(*args
, **kwargs
):
3224 """SetBestSize(self, Size size)"""
3225 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3227 def DoEraseBackground(*args
, **kwargs
):
3228 """DoEraseBackground(self, DC dc) -> bool"""
3229 return _windows_
.PyWindow_DoEraseBackground(*args
, **kwargs
)
3231 def DoMoveWindow(*args
, **kwargs
):
3232 """DoMoveWindow(self, int x, int y, int width, int height)"""
3233 return _windows_
.PyWindow_DoMoveWindow(*args
, **kwargs
)
3235 def DoSetSize(*args
, **kwargs
):
3236 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3237 return _windows_
.PyWindow_DoSetSize(*args
, **kwargs
)
3239 def DoSetClientSize(*args
, **kwargs
):
3240 """DoSetClientSize(self, int width, int height)"""
3241 return _windows_
.PyWindow_DoSetClientSize(*args
, **kwargs
)
3243 def DoSetVirtualSize(*args
, **kwargs
):
3244 """DoSetVirtualSize(self, int x, int y)"""
3245 return _windows_
.PyWindow_DoSetVirtualSize(*args
, **kwargs
)
3247 def DoGetSize(*args
, **kwargs
):
3248 """DoGetSize() -> (width, height)"""
3249 return _windows_
.PyWindow_DoGetSize(*args
, **kwargs
)
3251 def DoGetClientSize(*args
, **kwargs
):
3252 """DoGetClientSize() -> (width, height)"""
3253 return _windows_
.PyWindow_DoGetClientSize(*args
, **kwargs
)
3255 def DoGetPosition(*args
, **kwargs
):
3256 """DoGetPosition() -> (x,y)"""
3257 return _windows_
.PyWindow_DoGetPosition(*args
, **kwargs
)
3259 def DoGetVirtualSize(*args
, **kwargs
):
3260 """DoGetVirtualSize(self) -> Size"""
3261 return _windows_
.PyWindow_DoGetVirtualSize(*args
, **kwargs
)
3263 def DoGetBestSize(*args
, **kwargs
):
3264 """DoGetBestSize(self) -> Size"""
3265 return _windows_
.PyWindow_DoGetBestSize(*args
, **kwargs
)
3267 def GetDefaultAttributes(*args
, **kwargs
):
3268 """GetDefaultAttributes(self) -> VisualAttributes"""
3269 return _windows_
.PyWindow_GetDefaultAttributes(*args
, **kwargs
)
3271 def OnInternalIdle(*args
, **kwargs
):
3272 """OnInternalIdle(self)"""
3273 return _windows_
.PyWindow_OnInternalIdle(*args
, **kwargs
)
3275 def base_DoMoveWindow(*args
, **kw
):
3276 return PyWindow
.DoMoveWindow(*args
, **kw
)
3277 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3278 "Please use PyWindow.DoMoveWindow instead.")
3280 def base_DoSetSize(*args
, **kw
):
3281 return PyWindow
.DoSetSize(*args
, **kw
)
3282 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3283 "Please use PyWindow.DoSetSize instead.")
3285 def base_DoSetClientSize(*args
, **kw
):
3286 return PyWindow
.DoSetClientSize(*args
, **kw
)
3287 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3288 "Please use PyWindow.DoSetClientSize instead.")
3290 def base_DoSetVirtualSize(*args
, **kw
):
3291 return PyWindow
.DoSetVirtualSize(*args
, **kw
)
3292 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3293 "Please use PyWindow.DoSetVirtualSize instead.")
3295 def base_DoGetSize(*args
, **kw
):
3296 return PyWindow
.DoGetSize(*args
, **kw
)
3297 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3298 "Please use PyWindow.DoGetSize instead.")
3300 def base_DoGetClientSize(*args
, **kw
):
3301 return PyWindow
.DoGetClientSize(*args
, **kw
)
3302 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3303 "Please use PyWindow.DoGetClientSize instead.")
3305 def base_DoGetPosition(*args
, **kw
):
3306 return PyWindow
.DoGetPosition(*args
, **kw
)
3307 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3308 "Please use PyWindow.DoGetPosition instead.")
3310 def base_DoGetVirtualSize(*args
, **kw
):
3311 return PyWindow
.DoGetVirtualSize(*args
, **kw
)
3312 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3313 "Please use PyWindow.DoGetVirtualSize instead.")
3315 def base_DoGetBestSize(*args
, **kw
):
3316 return PyWindow
.DoGetBestSize(*args
, **kw
)
3317 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3318 "Please use PyWindow.DoGetBestSize instead.")
3320 def base_InitDialog(*args
, **kw
):
3321 return PyWindow
.InitDialog(*args
, **kw
)
3322 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3323 "Please use PyWindow.InitDialog instead.")
3325 def base_TransferDataToWindow(*args
, **kw
):
3326 return PyWindow
.TransferDataToWindow(*args
, **kw
)
3327 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3328 "Please use PyWindow.TransferDataToWindow instead.")
3330 def base_TransferDataFromWindow(*args
, **kw
):
3331 return PyWindow
.TransferDataFromWindow(*args
, **kw
)
3332 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3333 "Please use PyWindow.TransferDataFromWindow instead.")
3335 def base_Validate(*args
, **kw
):
3336 return PyWindow
.Validate(*args
, **kw
)
3337 base_Validate
= wx
._deprecated
(base_Validate
,
3338 "Please use PyWindow.Validate instead.")
3340 def base_AcceptsFocus(*args
, **kw
):
3341 return PyWindow
.AcceptsFocus(*args
, **kw
)
3342 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3343 "Please use PyWindow.AcceptsFocus instead.")
3345 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3346 return PyWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3347 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3348 "Please use PyWindow.AcceptsFocusFromKeyboard instead.")
3350 def base_GetMaxSize(*args
, **kw
):
3351 return PyWindow
.GetMaxSize(*args
, **kw
)
3352 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3353 "Please use PyWindow.GetMaxSize instead.")
3355 def base_AddChild(*args
, **kw
):
3356 return PyWindow
.AddChild(*args
, **kw
)
3357 base_AddChild
= wx
._deprecated
(base_AddChild
,
3358 "Please use PyWindow.AddChild instead.")
3360 def base_RemoveChild(*args
, **kw
):
3361 return PyWindow
.RemoveChild(*args
, **kw
)
3362 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3363 "Please use PyWindow.RemoveChild instead.")
3365 def base_ShouldInheritColours(*args
, **kw
):
3366 return PyWindow
.ShouldInheritColours(*args
, **kw
)
3367 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3368 "Please use PyWindow.ShouldInheritColours instead.")
3370 def base_GetDefaultAttributes(*args
, **kw
):
3371 return PyWindow
.GetDefaultAttributes(*args
, **kw
)
3372 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3373 "Please use PyWindow.GetDefaultAttributes instead.")
3375 def base_OnInternalIdle(*args
, **kw
):
3376 return PyWindow
.OnInternalIdle(*args
, **kw
)
3377 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3378 "Please use PyWindow.OnInternalIdle instead.")
3380 _windows_
.PyWindow_swigregister(PyWindow
)
3382 def PrePyWindow(*args
, **kwargs
):
3383 """PrePyWindow() -> PyWindow"""
3384 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3387 class PyPanel(Panel
):
3388 """Proxy of C++ PyPanel class"""
3389 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3390 __repr__
= _swig_repr
3391 def __init__(self
, *args
, **kwargs
):
3393 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3394 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3396 _windows_
.PyPanel_swiginit(self
,_windows_
.new_PyPanel(*args
, **kwargs
))
3397 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3399 def _setCallbackInfo(*args
, **kwargs
):
3400 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3401 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3403 def SetBestSize(*args
, **kwargs
):
3404 """SetBestSize(self, Size size)"""
3405 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3407 def DoEraseBackground(*args
, **kwargs
):
3408 """DoEraseBackground(self, DC dc) -> bool"""
3409 return _windows_
.PyPanel_DoEraseBackground(*args
, **kwargs
)
3411 def DoMoveWindow(*args
, **kwargs
):
3412 """DoMoveWindow(self, int x, int y, int width, int height)"""
3413 return _windows_
.PyPanel_DoMoveWindow(*args
, **kwargs
)
3415 def DoSetSize(*args
, **kwargs
):
3416 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3417 return _windows_
.PyPanel_DoSetSize(*args
, **kwargs
)
3419 def DoSetClientSize(*args
, **kwargs
):
3420 """DoSetClientSize(self, int width, int height)"""
3421 return _windows_
.PyPanel_DoSetClientSize(*args
, **kwargs
)
3423 def DoSetVirtualSize(*args
, **kwargs
):
3424 """DoSetVirtualSize(self, int x, int y)"""
3425 return _windows_
.PyPanel_DoSetVirtualSize(*args
, **kwargs
)
3427 def DoGetSize(*args
, **kwargs
):
3428 """DoGetSize() -> (width, height)"""
3429 return _windows_
.PyPanel_DoGetSize(*args
, **kwargs
)
3431 def DoGetClientSize(*args
, **kwargs
):
3432 """DoGetClientSize() -> (width, height)"""
3433 return _windows_
.PyPanel_DoGetClientSize(*args
, **kwargs
)
3435 def DoGetPosition(*args
, **kwargs
):
3436 """DoGetPosition() -> (x,y)"""
3437 return _windows_
.PyPanel_DoGetPosition(*args
, **kwargs
)
3439 def DoGetVirtualSize(*args
, **kwargs
):
3440 """DoGetVirtualSize(self) -> Size"""
3441 return _windows_
.PyPanel_DoGetVirtualSize(*args
, **kwargs
)
3443 def DoGetBestSize(*args
, **kwargs
):
3444 """DoGetBestSize(self) -> Size"""
3445 return _windows_
.PyPanel_DoGetBestSize(*args
, **kwargs
)
3447 def GetDefaultAttributes(*args
, **kwargs
):
3448 """GetDefaultAttributes(self) -> VisualAttributes"""
3449 return _windows_
.PyPanel_GetDefaultAttributes(*args
, **kwargs
)
3451 def OnInternalIdle(*args
, **kwargs
):
3452 """OnInternalIdle(self)"""
3453 return _windows_
.PyPanel_OnInternalIdle(*args
, **kwargs
)
3455 def base_DoMoveWindow(*args
, **kw
):
3456 return PyPanel
.DoMoveWindow(*args
, **kw
)
3457 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3458 "Please use PyPanel.DoMoveWindow instead.")
3460 def base_DoSetSize(*args
, **kw
):
3461 return PyPanel
.DoSetSize(*args
, **kw
)
3462 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3463 "Please use PyPanel.DoSetSize instead.")
3465 def base_DoSetClientSize(*args
, **kw
):
3466 return PyPanel
.DoSetClientSize(*args
, **kw
)
3467 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3468 "Please use PyPanel.DoSetClientSize instead.")
3470 def base_DoSetVirtualSize(*args
, **kw
):
3471 return PyPanel
.DoSetVirtualSize(*args
, **kw
)
3472 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3473 "Please use PyPanel.DoSetVirtualSize instead.")
3475 def base_DoGetSize(*args
, **kw
):
3476 return PyPanel
.DoGetSize(*args
, **kw
)
3477 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3478 "Please use PyPanel.DoGetSize instead.")
3480 def base_DoGetClientSize(*args
, **kw
):
3481 return PyPanel
.DoGetClientSize(*args
, **kw
)
3482 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3483 "Please use PyPanel.DoGetClientSize instead.")
3485 def base_DoGetPosition(*args
, **kw
):
3486 return PyPanel
.DoGetPosition(*args
, **kw
)
3487 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3488 "Please use PyPanel.DoGetPosition instead.")
3490 def base_DoGetVirtualSize(*args
, **kw
):
3491 return PyPanel
.DoGetVirtualSize(*args
, **kw
)
3492 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3493 "Please use PyPanel.DoGetVirtualSize instead.")
3495 def base_DoGetBestSize(*args
, **kw
):
3496 return PyPanel
.DoGetBestSize(*args
, **kw
)
3497 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3498 "Please use PyPanel.DoGetBestSize instead.")
3500 def base_InitDialog(*args
, **kw
):
3501 return PyPanel
.InitDialog(*args
, **kw
)
3502 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3503 "Please use PyPanel.InitDialog instead.")
3505 def base_TransferDataToWindow(*args
, **kw
):
3506 return PyPanel
.TransferDataToWindow(*args
, **kw
)
3507 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3508 "Please use PyPanel.TransferDataToWindow instead.")
3510 def base_TransferDataFromWindow(*args
, **kw
):
3511 return PyPanel
.TransferDataFromWindow(*args
, **kw
)
3512 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3513 "Please use PyPanel.TransferDataFromWindow instead.")
3515 def base_Validate(*args
, **kw
):
3516 return PyPanel
.Validate(*args
, **kw
)
3517 base_Validate
= wx
._deprecated
(base_Validate
,
3518 "Please use PyPanel.Validate instead.")
3520 def base_AcceptsFocus(*args
, **kw
):
3521 return PyPanel
.AcceptsFocus(*args
, **kw
)
3522 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3523 "Please use PyPanel.AcceptsFocus instead.")
3525 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3526 return PyPanel
.AcceptsFocusFromKeyboard(*args
, **kw
)
3527 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3528 "Please use PyPanel.AcceptsFocusFromKeyboard instead.")
3530 def base_GetMaxSize(*args
, **kw
):
3531 return PyPanel
.GetMaxSize(*args
, **kw
)
3532 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3533 "Please use PyPanel.GetMaxSize instead.")
3535 def base_AddChild(*args
, **kw
):
3536 return PyPanel
.AddChild(*args
, **kw
)
3537 base_AddChild
= wx
._deprecated
(base_AddChild
,
3538 "Please use PyPanel.AddChild instead.")
3540 def base_RemoveChild(*args
, **kw
):
3541 return PyPanel
.RemoveChild(*args
, **kw
)
3542 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3543 "Please use PyPanel.RemoveChild instead.")
3545 def base_ShouldInheritColours(*args
, **kw
):
3546 return PyPanel
.ShouldInheritColours(*args
, **kw
)
3547 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3548 "Please use PyPanel.ShouldInheritColours instead.")
3550 def base_GetDefaultAttributes(*args
, **kw
):
3551 return PyPanel
.GetDefaultAttributes(*args
, **kw
)
3552 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3553 "Please use PyPanel.GetDefaultAttributes instead.")
3555 def base_OnInternalIdle(*args
, **kw
):
3556 return PyPanel
.OnInternalIdle(*args
, **kw
)
3557 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3558 "Please use PyPanel.OnInternalIdle instead.")
3560 _windows_
.PyPanel_swigregister(PyPanel
)
3562 def PrePyPanel(*args
, **kwargs
):
3563 """PrePyPanel() -> PyPanel"""
3564 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3567 class PyScrolledWindow(ScrolledWindow
):
3568 """Proxy of C++ PyScrolledWindow class"""
3569 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3570 __repr__
= _swig_repr
3571 def __init__(self
, *args
, **kwargs
):
3573 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3574 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3576 _windows_
.PyScrolledWindow_swiginit(self
,_windows_
.new_PyScrolledWindow(*args
, **kwargs
))
3577 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyScrolledWindow
)
3579 def _setCallbackInfo(*args
, **kwargs
):
3580 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3581 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3583 def SetBestSize(*args
, **kwargs
):
3584 """SetBestSize(self, Size size)"""
3585 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3587 def DoEraseBackground(*args
, **kwargs
):
3588 """DoEraseBackground(self, DC dc) -> bool"""
3589 return _windows_
.PyScrolledWindow_DoEraseBackground(*args
, **kwargs
)
3591 def DoMoveWindow(*args
, **kwargs
):
3592 """DoMoveWindow(self, int x, int y, int width, int height)"""
3593 return _windows_
.PyScrolledWindow_DoMoveWindow(*args
, **kwargs
)
3595 def DoSetSize(*args
, **kwargs
):
3596 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3597 return _windows_
.PyScrolledWindow_DoSetSize(*args
, **kwargs
)
3599 def DoSetClientSize(*args
, **kwargs
):
3600 """DoSetClientSize(self, int width, int height)"""
3601 return _windows_
.PyScrolledWindow_DoSetClientSize(*args
, **kwargs
)
3603 def DoSetVirtualSize(*args
, **kwargs
):
3604 """DoSetVirtualSize(self, int x, int y)"""
3605 return _windows_
.PyScrolledWindow_DoSetVirtualSize(*args
, **kwargs
)
3607 def DoGetSize(*args
, **kwargs
):
3608 """DoGetSize() -> (width, height)"""
3609 return _windows_
.PyScrolledWindow_DoGetSize(*args
, **kwargs
)
3611 def DoGetClientSize(*args
, **kwargs
):
3612 """DoGetClientSize() -> (width, height)"""
3613 return _windows_
.PyScrolledWindow_DoGetClientSize(*args
, **kwargs
)
3615 def DoGetPosition(*args
, **kwargs
):
3616 """DoGetPosition() -> (x,y)"""
3617 return _windows_
.PyScrolledWindow_DoGetPosition(*args
, **kwargs
)
3619 def DoGetVirtualSize(*args
, **kwargs
):
3620 """DoGetVirtualSize(self) -> Size"""
3621 return _windows_
.PyScrolledWindow_DoGetVirtualSize(*args
, **kwargs
)
3623 def DoGetBestSize(*args
, **kwargs
):
3624 """DoGetBestSize(self) -> Size"""
3625 return _windows_
.PyScrolledWindow_DoGetBestSize(*args
, **kwargs
)
3627 def GetDefaultAttributes(*args
, **kwargs
):
3628 """GetDefaultAttributes(self) -> VisualAttributes"""
3629 return _windows_
.PyScrolledWindow_GetDefaultAttributes(*args
, **kwargs
)
3631 def OnInternalIdle(*args
, **kwargs
):
3632 """OnInternalIdle(self)"""
3633 return _windows_
.PyScrolledWindow_OnInternalIdle(*args
, **kwargs
)
3635 def base_DoMoveWindow(*args
, **kw
):
3636 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
3637 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3638 "Please use PyScrolledWindow.DoMoveWindow instead.")
3640 def base_DoSetSize(*args
, **kw
):
3641 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
3642 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3643 "Please use PyScrolledWindow.DoSetSize instead.")
3645 def base_DoSetClientSize(*args
, **kw
):
3646 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
3647 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3648 "Please use PyScrolledWindow.DoSetClientSize instead.")
3650 def base_DoSetVirtualSize(*args
, **kw
):
3651 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
3652 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3653 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
3655 def base_DoGetSize(*args
, **kw
):
3656 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
3657 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3658 "Please use PyScrolledWindow.DoGetSize instead.")
3660 def base_DoGetClientSize(*args
, **kw
):
3661 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
3662 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3663 "Please use PyScrolledWindow.DoGetClientSize instead.")
3665 def base_DoGetPosition(*args
, **kw
):
3666 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
3667 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3668 "Please use PyScrolledWindow.DoGetPosition instead.")
3670 def base_DoGetVirtualSize(*args
, **kw
):
3671 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
3672 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3673 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
3675 def base_DoGetBestSize(*args
, **kw
):
3676 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
3677 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3678 "Please use PyScrolledWindow.DoGetBestSize instead.")
3680 def base_InitDialog(*args
, **kw
):
3681 return PyScrolledWindow
.InitDialog(*args
, **kw
)
3682 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3683 "Please use PyScrolledWindow.InitDialog instead.")
3685 def base_TransferDataToWindow(*args
, **kw
):
3686 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
3687 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3688 "Please use PyScrolledWindow.TransferDataToWindow instead.")
3690 def base_TransferDataFromWindow(*args
, **kw
):
3691 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
3692 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3693 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
3695 def base_Validate(*args
, **kw
):
3696 return PyScrolledWindow
.Validate(*args
, **kw
)
3697 base_Validate
= wx
._deprecated
(base_Validate
,
3698 "Please use PyScrolledWindow.Validate instead.")
3700 def base_AcceptsFocus(*args
, **kw
):
3701 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
3702 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3703 "Please use PyScrolledWindow.AcceptsFocus instead.")
3705 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3706 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3707 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3708 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
3710 def base_GetMaxSize(*args
, **kw
):
3711 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
3712 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3713 "Please use PyScrolledWindow.GetMaxSize instead.")
3715 def base_AddChild(*args
, **kw
):
3716 return PyScrolledWindow
.AddChild(*args
, **kw
)
3717 base_AddChild
= wx
._deprecated
(base_AddChild
,
3718 "Please use PyScrolledWindow.AddChild instead.")
3720 def base_RemoveChild(*args
, **kw
):
3721 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
3722 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3723 "Please use PyScrolledWindow.RemoveChild instead.")
3725 def base_ShouldInheritColours(*args
, **kw
):
3726 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
3727 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3728 "Please use PyScrolledWindow.ShouldInheritColours instead.")
3730 def base_GetDefaultAttributes(*args
, **kw
):
3731 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
3732 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3733 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
3735 def base_OnInternalIdle(*args
, **kw
):
3736 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
3737 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3738 "Please use PyScrolledWindow.OnInternalIdle instead.")
3740 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindow
)
3742 def PrePyScrolledWindow(*args
, **kwargs
):
3743 """PrePyScrolledWindow() -> PyScrolledWindow"""
3744 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3747 #---------------------------------------------------------------------------
3749 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3750 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3751 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3752 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3753 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3754 PRINTBIN_DEFAULT
= _windows_
.PRINTBIN_DEFAULT
3755 PRINTBIN_ONLYONE
= _windows_
.PRINTBIN_ONLYONE
3756 PRINTBIN_LOWER
= _windows_
.PRINTBIN_LOWER
3757 PRINTBIN_MIDDLE
= _windows_
.PRINTBIN_MIDDLE
3758 PRINTBIN_MANUAL
= _windows_
.PRINTBIN_MANUAL
3759 PRINTBIN_ENVELOPE
= _windows_
.PRINTBIN_ENVELOPE
3760 PRINTBIN_ENVMANUAL
= _windows_
.PRINTBIN_ENVMANUAL
3761 PRINTBIN_AUTO
= _windows_
.PRINTBIN_AUTO
3762 PRINTBIN_TRACTOR
= _windows_
.PRINTBIN_TRACTOR
3763 PRINTBIN_SMALLFMT
= _windows_
.PRINTBIN_SMALLFMT
3764 PRINTBIN_LARGEFMT
= _windows_
.PRINTBIN_LARGEFMT
3765 PRINTBIN_LARGECAPACITY
= _windows_
.PRINTBIN_LARGECAPACITY
3766 PRINTBIN_CASSETTE
= _windows_
.PRINTBIN_CASSETTE
3767 PRINTBIN_FORMSOURCE
= _windows_
.PRINTBIN_FORMSOURCE
3768 PRINTBIN_USER
= _windows_
.PRINTBIN_USER
3769 class PrintData(_core
.Object
):
3770 """Proxy of C++ PrintData class"""
3771 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3772 __repr__
= _swig_repr
3773 def __init__(self
, *args
):
3775 __init__(self) -> PrintData
3776 __init__(self, PrintData data) -> PrintData
3778 _windows_
.PrintData_swiginit(self
,_windows_
.new_PrintData(*args
))
3779 __swig_destroy__
= _windows_
.delete_PrintData
3780 __del__
= lambda self
: None;
3781 def GetNoCopies(*args
, **kwargs
):
3782 """GetNoCopies(self) -> int"""
3783 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3785 def GetCollate(*args
, **kwargs
):
3786 """GetCollate(self) -> bool"""
3787 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3789 def GetOrientation(*args
, **kwargs
):
3790 """GetOrientation(self) -> int"""
3791 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3793 def Ok(*args
, **kwargs
):
3794 """Ok(self) -> bool"""
3795 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3797 def GetPrinterName(*args
, **kwargs
):
3798 """GetPrinterName(self) -> String"""
3799 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3801 def GetColour(*args
, **kwargs
):
3802 """GetColour(self) -> bool"""
3803 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3805 def GetDuplex(*args
, **kwargs
):
3806 """GetDuplex(self) -> int"""
3807 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3809 def GetPaperId(*args
, **kwargs
):
3810 """GetPaperId(self) -> int"""
3811 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3813 def GetPaperSize(*args
, **kwargs
):
3814 """GetPaperSize(self) -> Size"""
3815 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3817 def GetQuality(*args
, **kwargs
):
3818 """GetQuality(self) -> int"""
3819 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3821 def GetBin(*args
, **kwargs
):
3822 """GetBin(self) -> int"""
3823 return _windows_
.PrintData_GetBin(*args
, **kwargs
)
3825 def GetPrintMode(*args
, **kwargs
):
3826 """GetPrintMode(self) -> int"""
3827 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3829 def SetNoCopies(*args
, **kwargs
):
3830 """SetNoCopies(self, int v)"""
3831 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3833 def SetCollate(*args
, **kwargs
):
3834 """SetCollate(self, bool flag)"""
3835 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3837 def SetOrientation(*args
, **kwargs
):
3838 """SetOrientation(self, int orient)"""
3839 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3841 def SetPrinterName(*args
, **kwargs
):
3842 """SetPrinterName(self, String name)"""
3843 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3845 def SetColour(*args
, **kwargs
):
3846 """SetColour(self, bool colour)"""
3847 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3849 def SetDuplex(*args
, **kwargs
):
3850 """SetDuplex(self, int duplex)"""
3851 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3853 def SetPaperId(*args
, **kwargs
):
3854 """SetPaperId(self, int sizeId)"""
3855 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3857 def SetPaperSize(*args
, **kwargs
):
3858 """SetPaperSize(self, Size sz)"""
3859 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3861 def SetQuality(*args
, **kwargs
):
3862 """SetQuality(self, int quality)"""
3863 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3865 def SetBin(*args
, **kwargs
):
3866 """SetBin(self, int bin)"""
3867 return _windows_
.PrintData_SetBin(*args
, **kwargs
)
3869 def SetPrintMode(*args
, **kwargs
):
3870 """SetPrintMode(self, int printMode)"""
3871 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3873 def GetFilename(*args
, **kwargs
):
3874 """GetFilename(self) -> String"""
3875 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3877 def SetFilename(*args
, **kwargs
):
3878 """SetFilename(self, String filename)"""
3879 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3881 def __nonzero__(self
): return self
.Ok()
3882 def GetPrivData(*args
, **kwargs
):
3883 """GetPrivData(self) -> PyObject"""
3884 return _windows_
.PrintData_GetPrivData(*args
, **kwargs
)
3886 def SetPrivData(*args
, **kwargs
):
3887 """SetPrivData(self, PyObject data)"""
3888 return _windows_
.PrintData_SetPrivData(*args
, **kwargs
)
3890 _windows_
.PrintData_swigregister(PrintData
)
3891 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3892 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3894 class PageSetupDialogData(_core
.Object
):
3895 """Proxy of C++ PageSetupDialogData class"""
3896 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3897 __repr__
= _swig_repr
3898 def __init__(self
, *args
):
3900 __init__(self) -> PageSetupDialogData
3901 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3902 __init__(self, PrintData data) -> PageSetupDialogData
3904 _windows_
.PageSetupDialogData_swiginit(self
,_windows_
.new_PageSetupDialogData(*args
))
3905 __swig_destroy__
= _windows_
.delete_PageSetupDialogData
3906 __del__
= lambda self
: None;
3907 def EnableHelp(*args
, **kwargs
):
3908 """EnableHelp(self, bool flag)"""
3909 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3911 def EnableMargins(*args
, **kwargs
):
3912 """EnableMargins(self, bool flag)"""
3913 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3915 def EnableOrientation(*args
, **kwargs
):
3916 """EnableOrientation(self, bool flag)"""
3917 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3919 def EnablePaper(*args
, **kwargs
):
3920 """EnablePaper(self, bool flag)"""
3921 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3923 def EnablePrinter(*args
, **kwargs
):
3924 """EnablePrinter(self, bool flag)"""
3925 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3927 def GetDefaultMinMargins(*args
, **kwargs
):
3928 """GetDefaultMinMargins(self) -> bool"""
3929 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3931 def GetEnableMargins(*args
, **kwargs
):
3932 """GetEnableMargins(self) -> bool"""
3933 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3935 def GetEnableOrientation(*args
, **kwargs
):
3936 """GetEnableOrientation(self) -> bool"""
3937 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3939 def GetEnablePaper(*args
, **kwargs
):
3940 """GetEnablePaper(self) -> bool"""
3941 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3943 def GetEnablePrinter(*args
, **kwargs
):
3944 """GetEnablePrinter(self) -> bool"""
3945 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3947 def GetEnableHelp(*args
, **kwargs
):
3948 """GetEnableHelp(self) -> bool"""
3949 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3951 def GetDefaultInfo(*args
, **kwargs
):
3952 """GetDefaultInfo(self) -> bool"""
3953 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3955 def GetMarginTopLeft(*args
, **kwargs
):
3956 """GetMarginTopLeft(self) -> Point"""
3957 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3959 def GetMarginBottomRight(*args
, **kwargs
):
3960 """GetMarginBottomRight(self) -> Point"""
3961 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3963 def GetMinMarginTopLeft(*args
, **kwargs
):
3964 """GetMinMarginTopLeft(self) -> Point"""
3965 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3967 def GetMinMarginBottomRight(*args
, **kwargs
):
3968 """GetMinMarginBottomRight(self) -> Point"""
3969 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3971 def GetPaperId(*args
, **kwargs
):
3972 """GetPaperId(self) -> int"""
3973 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3975 def GetPaperSize(*args
, **kwargs
):
3976 """GetPaperSize(self) -> Size"""
3977 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3979 def GetPrintData(*args
, **kwargs
):
3980 """GetPrintData(self) -> PrintData"""
3981 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3983 def Ok(*args
, **kwargs
):
3984 """Ok(self) -> bool"""
3985 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3987 def SetDefaultInfo(*args
, **kwargs
):
3988 """SetDefaultInfo(self, bool flag)"""
3989 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3991 def SetDefaultMinMargins(*args
, **kwargs
):
3992 """SetDefaultMinMargins(self, bool flag)"""
3993 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3995 def SetMarginTopLeft(*args
, **kwargs
):
3996 """SetMarginTopLeft(self, Point pt)"""
3997 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3999 def SetMarginBottomRight(*args
, **kwargs
):
4000 """SetMarginBottomRight(self, Point pt)"""
4001 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
4003 def SetMinMarginTopLeft(*args
, **kwargs
):
4004 """SetMinMarginTopLeft(self, Point pt)"""
4005 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
4007 def SetMinMarginBottomRight(*args
, **kwargs
):
4008 """SetMinMarginBottomRight(self, Point pt)"""
4009 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
4011 def SetPaperId(*args
, **kwargs
):
4012 """SetPaperId(self, int id)"""
4013 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
4015 def SetPaperSize(*args
, **kwargs
):
4016 """SetPaperSize(self, Size size)"""
4017 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
4019 def SetPrintData(*args
, **kwargs
):
4020 """SetPrintData(self, PrintData printData)"""
4021 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
4023 def CalculateIdFromPaperSize(*args
, **kwargs
):
4024 """CalculateIdFromPaperSize(self)"""
4025 return _windows_
.PageSetupDialogData_CalculateIdFromPaperSize(*args
, **kwargs
)
4027 def CalculatePaperSizeFromId(*args
, **kwargs
):
4028 """CalculatePaperSizeFromId(self)"""
4029 return _windows_
.PageSetupDialogData_CalculatePaperSizeFromId(*args
, **kwargs
)
4031 def __nonzero__(self
): return self
.Ok()
4032 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogData
)
4034 class PageSetupDialog(_core
.Object
):
4035 """Proxy of C++ PageSetupDialog class"""
4036 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4037 __repr__
= _swig_repr
4038 def __init__(self
, *args
, **kwargs
):
4039 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4040 _windows_
.PageSetupDialog_swiginit(self
,_windows_
.new_PageSetupDialog(*args
, **kwargs
))
4041 __swig_destroy__
= _windows_
.delete_PageSetupDialog
4042 __del__
= lambda self
: None;
4043 def GetPageSetupData(*args
, **kwargs
):
4044 """GetPageSetupData(self) -> PageSetupDialogData"""
4045 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
4047 def GetPageSetupDialogData(*args
, **kwargs
):
4048 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
4049 return _windows_
.PageSetupDialog_GetPageSetupDialogData(*args
, **kwargs
)
4051 def ShowModal(*args
, **kwargs
):
4052 """ShowModal(self) -> int"""
4053 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
4055 def Destroy(self
): pass
4056 _windows_
.PageSetupDialog_swigregister(PageSetupDialog
)
4058 class PrintDialogData(_core
.Object
):
4059 """Proxy of C++ PrintDialogData class"""
4060 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4061 __repr__
= _swig_repr
4062 def __init__(self
, *args
):
4064 __init__(self) -> PrintDialogData
4065 __init__(self, PrintData printData) -> PrintDialogData
4066 __init__(self, PrintDialogData printData) -> PrintDialogData
4068 _windows_
.PrintDialogData_swiginit(self
,_windows_
.new_PrintDialogData(*args
))
4069 __swig_destroy__
= _windows_
.delete_PrintDialogData
4070 __del__
= lambda self
: None;
4071 def GetFromPage(*args
, **kwargs
):
4072 """GetFromPage(self) -> int"""
4073 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
4075 def GetToPage(*args
, **kwargs
):
4076 """GetToPage(self) -> int"""
4077 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
4079 def GetMinPage(*args
, **kwargs
):
4080 """GetMinPage(self) -> int"""
4081 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
4083 def GetMaxPage(*args
, **kwargs
):
4084 """GetMaxPage(self) -> int"""
4085 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
4087 def GetNoCopies(*args
, **kwargs
):
4088 """GetNoCopies(self) -> int"""
4089 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
4091 def GetAllPages(*args
, **kwargs
):
4092 """GetAllPages(self) -> bool"""
4093 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
4095 def GetSelection(*args
, **kwargs
):
4096 """GetSelection(self) -> bool"""
4097 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
4099 def GetCollate(*args
, **kwargs
):
4100 """GetCollate(self) -> bool"""
4101 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
4103 def GetPrintToFile(*args
, **kwargs
):
4104 """GetPrintToFile(self) -> bool"""
4105 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
4107 def SetFromPage(*args
, **kwargs
):
4108 """SetFromPage(self, int v)"""
4109 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4111 def SetToPage(*args
, **kwargs
):
4112 """SetToPage(self, int v)"""
4113 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4115 def SetMinPage(*args
, **kwargs
):
4116 """SetMinPage(self, int v)"""
4117 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4119 def SetMaxPage(*args
, **kwargs
):
4120 """SetMaxPage(self, int v)"""
4121 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4123 def SetNoCopies(*args
, **kwargs
):
4124 """SetNoCopies(self, int v)"""
4125 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4127 def SetAllPages(*args
, **kwargs
):
4128 """SetAllPages(self, bool flag)"""
4129 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4131 def SetSelection(*args
, **kwargs
):
4132 """SetSelection(self, bool flag)"""
4133 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4135 def SetCollate(*args
, **kwargs
):
4136 """SetCollate(self, bool flag)"""
4137 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4139 def SetPrintToFile(*args
, **kwargs
):
4140 """SetPrintToFile(self, bool flag)"""
4141 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4143 def EnablePrintToFile(*args
, **kwargs
):
4144 """EnablePrintToFile(self, bool flag)"""
4145 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4147 def EnableSelection(*args
, **kwargs
):
4148 """EnableSelection(self, bool flag)"""
4149 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4151 def EnablePageNumbers(*args
, **kwargs
):
4152 """EnablePageNumbers(self, bool flag)"""
4153 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4155 def EnableHelp(*args
, **kwargs
):
4156 """EnableHelp(self, bool flag)"""
4157 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4159 def GetEnablePrintToFile(*args
, **kwargs
):
4160 """GetEnablePrintToFile(self) -> bool"""
4161 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4163 def GetEnableSelection(*args
, **kwargs
):
4164 """GetEnableSelection(self) -> bool"""
4165 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4167 def GetEnablePageNumbers(*args
, **kwargs
):
4168 """GetEnablePageNumbers(self) -> bool"""
4169 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4171 def GetEnableHelp(*args
, **kwargs
):
4172 """GetEnableHelp(self) -> bool"""
4173 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4175 def Ok(*args
, **kwargs
):
4176 """Ok(self) -> bool"""
4177 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4179 def GetPrintData(*args
, **kwargs
):
4180 """GetPrintData(self) -> PrintData"""
4181 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4183 def SetPrintData(*args
, **kwargs
):
4184 """SetPrintData(self, PrintData printData)"""
4185 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4187 def __nonzero__(self
): return self
.Ok()
4188 _windows_
.PrintDialogData_swigregister(PrintDialogData
)
4190 class PrintDialog(_core
.Object
):
4191 """Proxy of C++ PrintDialog class"""
4192 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4193 __repr__
= _swig_repr
4194 def __init__(self
, *args
, **kwargs
):
4195 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4196 _windows_
.PrintDialog_swiginit(self
,_windows_
.new_PrintDialog(*args
, **kwargs
))
4197 __swig_destroy__
= _windows_
.delete_PrintDialog
4198 __del__
= lambda self
: None;
4199 def ShowModal(*args
, **kwargs
):
4200 """ShowModal(self) -> int"""
4201 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4203 def GetPrintDialogData(*args
, **kwargs
):
4204 """GetPrintDialogData(self) -> PrintDialogData"""
4205 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4207 def GetPrintData(*args
, **kwargs
):
4208 """GetPrintData(self) -> PrintData"""
4209 return _windows_
.PrintDialog_GetPrintData(*args
, **kwargs
)
4211 def GetPrintDC(*args
, **kwargs
):
4212 """GetPrintDC(self) -> DC"""
4213 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4215 def Destroy(self
): pass
4216 _windows_
.PrintDialog_swigregister(PrintDialog
)
4218 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4219 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4220 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4221 class Printer(_core
.Object
):
4222 """Proxy of C++ Printer class"""
4223 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4224 __repr__
= _swig_repr
4225 def __init__(self
, *args
, **kwargs
):
4226 """__init__(self, PrintDialogData data=None) -> Printer"""
4227 _windows_
.Printer_swiginit(self
,_windows_
.new_Printer(*args
, **kwargs
))
4228 __swig_destroy__
= _windows_
.delete_Printer
4229 __del__
= lambda self
: None;
4230 def CreateAbortWindow(*args
, **kwargs
):
4231 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
4232 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4234 def ReportError(*args
, **kwargs
):
4235 """ReportError(self, Window parent, Printout printout, String message)"""
4236 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4238 def Setup(*args
, **kwargs
):
4239 """Setup(self, Window parent) -> bool"""
4240 return _windows_
.Printer_Setup(*args
, **kwargs
)
4242 def Print(*args
, **kwargs
):
4243 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
4244 return _windows_
.Printer_Print(*args
, **kwargs
)
4246 def PrintDialog(*args
, **kwargs
):
4247 """PrintDialog(self, Window parent) -> DC"""
4248 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4250 def GetPrintDialogData(*args
, **kwargs
):
4251 """GetPrintDialogData(self) -> PrintDialogData"""
4252 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4254 def GetAbort(*args
, **kwargs
):
4255 """GetAbort(self) -> bool"""
4256 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4258 def GetLastError(*args
, **kwargs
):
4259 """GetLastError() -> int"""
4260 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4262 GetLastError
= staticmethod(GetLastError
)
4263 _windows_
.Printer_swigregister(Printer
)
4265 def Printer_GetLastError(*args
):
4266 """Printer_GetLastError() -> int"""
4267 return _windows_
.Printer_GetLastError(*args
)
4269 class Printout(_core
.Object
):
4270 """Proxy of C++ Printout class"""
4271 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4272 __repr__
= _swig_repr
4273 def __init__(self
, *args
, **kwargs
):
4274 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4275 _windows_
.Printout_swiginit(self
,_windows_
.new_Printout(*args
, **kwargs
))
4276 self
._setCallbackInfo
(self
, Printout
)
4278 __swig_destroy__
= _windows_
.delete_Printout
4279 __del__
= lambda self
: None;
4280 def _setCallbackInfo(*args
, **kwargs
):
4281 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4282 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4284 def GetTitle(*args
, **kwargs
):
4285 """GetTitle(self) -> String"""
4286 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4288 def GetDC(*args
, **kwargs
):
4289 """GetDC(self) -> DC"""
4290 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4292 def SetDC(*args
, **kwargs
):
4293 """SetDC(self, DC dc)"""
4294 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4296 def SetPageSizePixels(*args
, **kwargs
):
4297 """SetPageSizePixels(self, int w, int h)"""
4298 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4300 def GetPageSizePixels(*args
, **kwargs
):
4301 """GetPageSizePixels() -> (w, h)"""
4302 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4304 def SetPageSizeMM(*args
, **kwargs
):
4305 """SetPageSizeMM(self, int w, int h)"""
4306 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4308 def GetPageSizeMM(*args
, **kwargs
):
4309 """GetPageSizeMM() -> (w, h)"""
4310 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4312 def SetPPIScreen(*args
, **kwargs
):
4313 """SetPPIScreen(self, int x, int y)"""
4314 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4316 def GetPPIScreen(*args
, **kwargs
):
4317 """GetPPIScreen() -> (x,y)"""
4318 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4320 def SetPPIPrinter(*args
, **kwargs
):
4321 """SetPPIPrinter(self, int x, int y)"""
4322 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4324 def GetPPIPrinter(*args
, **kwargs
):
4325 """GetPPIPrinter() -> (x,y)"""
4326 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4328 def IsPreview(*args
, **kwargs
):
4329 """IsPreview(self) -> bool"""
4330 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4332 def SetIsPreview(*args
, **kwargs
):
4333 """SetIsPreview(self, bool p)"""
4334 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4336 def OnBeginDocument(*args
, **kwargs
):
4337 """OnBeginDocument(self, int startPage, int endPage) -> bool"""
4338 return _windows_
.Printout_OnBeginDocument(*args
, **kwargs
)
4340 def OnEndDocument(*args
, **kwargs
):
4341 """OnEndDocument(self)"""
4342 return _windows_
.Printout_OnEndDocument(*args
, **kwargs
)
4344 def OnBeginPrinting(*args
, **kwargs
):
4345 """OnBeginPrinting(self)"""
4346 return _windows_
.Printout_OnBeginPrinting(*args
, **kwargs
)
4348 def OnEndPrinting(*args
, **kwargs
):
4349 """OnEndPrinting(self)"""
4350 return _windows_
.Printout_OnEndPrinting(*args
, **kwargs
)
4352 def OnPreparePrinting(*args
, **kwargs
):
4353 """OnPreparePrinting(self)"""
4354 return _windows_
.Printout_OnPreparePrinting(*args
, **kwargs
)
4356 def HasPage(*args
, **kwargs
):
4357 """HasPage(self, int page) -> bool"""
4358 return _windows_
.Printout_HasPage(*args
, **kwargs
)
4360 def GetPageInfo(*args
, **kwargs
):
4361 """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4362 return _windows_
.Printout_GetPageInfo(*args
, **kwargs
)
4364 def base_OnBeginDocument(*args
, **kw
):
4365 return Printout
.OnBeginDocument(*args
, **kw
)
4366 base_OnBeginDocument
= wx
._deprecated
(base_OnBeginDocument
,
4367 "Please use Printout.OnBeginDocument instead.")
4369 def base_OnEndDocument(*args
, **kw
):
4370 return Printout
.OnEndDocument(*args
, **kw
)
4371 base_OnEndDocument
= wx
._deprecated
(base_OnEndDocument
,
4372 "Please use Printout.OnEndDocument instead.")
4374 def base_OnBeginPrinting(*args
, **kw
):
4375 return Printout
.OnBeginPrinting(*args
, **kw
)
4376 base_OnBeginPrinting
= wx
._deprecated
(base_OnBeginPrinting
,
4377 "Please use Printout.OnBeginPrinting instead.")
4379 def base_OnEndPrinting(*args
, **kw
):
4380 return Printout
.OnEndPrinting(*args
, **kw
)
4381 base_OnEndPrinting
= wx
._deprecated
(base_OnEndPrinting
,
4382 "Please use Printout.OnEndPrinting instead.")
4384 def base_OnPreparePrinting(*args
, **kw
):
4385 return Printout
.OnPreparePrinting(*args
, **kw
)
4386 base_OnPreparePrinting
= wx
._deprecated
(base_OnPreparePrinting
,
4387 "Please use Printout.OnPreparePrinting instead.")
4389 def base_GetPageInfo(*args
, **kw
):
4390 return Printout
.GetPageInfo(*args
, **kw
)
4391 base_GetPageInfo
= wx
._deprecated
(base_GetPageInfo
,
4392 "Please use Printout.GetPageInfo instead.")
4394 _windows_
.Printout_swigregister(Printout
)
4396 class PreviewCanvas(ScrolledWindow
):
4397 """Proxy of C++ PreviewCanvas class"""
4398 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4399 __repr__
= _swig_repr
4400 def __init__(self
, *args
, **kwargs
):
4402 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4403 Size size=DefaultSize, long style=0,
4404 String name=PreviewCanvasNameStr) -> PreviewCanvas
4406 _windows_
.PreviewCanvas_swiginit(self
,_windows_
.new_PreviewCanvas(*args
, **kwargs
))
4407 self
._setOORInfo
(self
)
4409 _windows_
.PreviewCanvas_swigregister(PreviewCanvas
)
4411 class PreviewFrame(Frame
):
4412 """Proxy of C++ PreviewFrame class"""
4413 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4414 __repr__
= _swig_repr
4415 def __init__(self
, *args
, **kwargs
):
4417 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4418 Size size=DefaultSize,
4419 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4421 _windows_
.PreviewFrame_swiginit(self
,_windows_
.new_PreviewFrame(*args
, **kwargs
))
4422 self
._setOORInfo
(self
)
4424 def Initialize(*args
, **kwargs
):
4425 """Initialize(self)"""
4426 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4428 def CreateControlBar(*args
, **kwargs
):
4429 """CreateControlBar(self)"""
4430 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4432 def CreateCanvas(*args
, **kwargs
):
4433 """CreateCanvas(self)"""
4434 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4436 def GetControlBar(*args
, **kwargs
):
4437 """GetControlBar(self) -> PreviewControlBar"""
4438 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4440 _windows_
.PreviewFrame_swigregister(PreviewFrame
)
4442 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4443 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4444 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4445 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4446 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4447 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4448 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4449 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4450 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4451 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4452 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4453 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4454 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4455 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4456 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4457 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4458 class PreviewControlBar(Panel
):
4459 """Proxy of C++ PreviewControlBar class"""
4460 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4461 __repr__
= _swig_repr
4462 def __init__(self
, *args
, **kwargs
):
4464 __init__(self, PrintPreview preview, long buttons, Window parent,
4465 Point pos=DefaultPosition, Size size=DefaultSize,
4466 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4468 _windows_
.PreviewControlBar_swiginit(self
,_windows_
.new_PreviewControlBar(*args
, **kwargs
))
4469 self
._setOORInfo
(self
)
4471 def GetZoomControl(*args
, **kwargs
):
4472 """GetZoomControl(self) -> int"""
4473 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4475 def SetZoomControl(*args
, **kwargs
):
4476 """SetZoomControl(self, int zoom)"""
4477 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4479 def GetPrintPreview(*args
, **kwargs
):
4480 """GetPrintPreview(self) -> PrintPreview"""
4481 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4483 def OnNext(*args
, **kwargs
):
4485 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4487 def OnPrevious(*args
, **kwargs
):
4488 """OnPrevious(self)"""
4489 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4491 def OnFirst(*args
, **kwargs
):
4493 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4495 def OnLast(*args
, **kwargs
):
4497 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4499 def OnGoto(*args
, **kwargs
):
4501 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4503 _windows_
.PreviewControlBar_swigregister(PreviewControlBar
)
4505 class PrintPreview(_core
.Object
):
4506 """Proxy of C++ PrintPreview class"""
4507 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4508 __repr__
= _swig_repr
4509 def __init__(self
, *args
):
4511 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4512 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4514 _windows_
.PrintPreview_swiginit(self
,_windows_
.new_PrintPreview(*args
))
4515 __swig_destroy__
= _windows_
.delete_PrintPreview
4516 __del__
= lambda self
: None;
4517 def SetCurrentPage(*args
, **kwargs
):
4518 """SetCurrentPage(self, int pageNum) -> bool"""
4519 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4521 def GetCurrentPage(*args
, **kwargs
):
4522 """GetCurrentPage(self) -> int"""
4523 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4525 def SetPrintout(*args
, **kwargs
):
4526 """SetPrintout(self, Printout printout)"""
4527 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4529 def GetPrintout(*args
, **kwargs
):
4530 """GetPrintout(self) -> Printout"""
4531 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4533 def GetPrintoutForPrinting(*args
, **kwargs
):
4534 """GetPrintoutForPrinting(self) -> Printout"""
4535 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4537 def SetFrame(*args
, **kwargs
):
4538 """SetFrame(self, Frame frame)"""
4539 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4541 def SetCanvas(*args
, **kwargs
):
4542 """SetCanvas(self, PreviewCanvas canvas)"""
4543 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4545 def GetFrame(*args
, **kwargs
):
4546 """GetFrame(self) -> Frame"""
4547 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4549 def GetCanvas(*args
, **kwargs
):
4550 """GetCanvas(self) -> PreviewCanvas"""
4551 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4553 def PaintPage(*args
, **kwargs
):
4554 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4555 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4557 def DrawBlankPage(*args
, **kwargs
):
4558 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4559 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4561 def RenderPage(*args
, **kwargs
):
4562 """RenderPage(self, int pageNum) -> bool"""
4563 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4565 def AdjustScrollbars(*args
, **kwargs
):
4566 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4567 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4569 def GetPrintDialogData(*args
, **kwargs
):
4570 """GetPrintDialogData(self) -> PrintDialogData"""
4571 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4573 def SetZoom(*args
, **kwargs
):
4574 """SetZoom(self, int percent)"""
4575 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4577 def GetZoom(*args
, **kwargs
):
4578 """GetZoom(self) -> int"""
4579 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4581 def GetMaxPage(*args
, **kwargs
):
4582 """GetMaxPage(self) -> int"""
4583 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4585 def GetMinPage(*args
, **kwargs
):
4586 """GetMinPage(self) -> int"""
4587 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4589 def Ok(*args
, **kwargs
):
4590 """Ok(self) -> bool"""
4591 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4593 def SetOk(*args
, **kwargs
):
4594 """SetOk(self, bool ok)"""
4595 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4597 def Print(*args
, **kwargs
):
4598 """Print(self, bool interactive) -> bool"""
4599 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4601 def DetermineScaling(*args
, **kwargs
):
4602 """DetermineScaling(self)"""
4603 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4605 def __nonzero__(self
): return self
.Ok()
4606 _windows_
.PrintPreview_swigregister(PrintPreview
)
4608 class PyPrintPreview(PrintPreview
):
4609 """Proxy of C++ PyPrintPreview class"""
4610 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4611 __repr__
= _swig_repr
4612 def __init__(self
, *args
):
4614 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4615 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4617 _windows_
.PyPrintPreview_swiginit(self
,_windows_
.new_PyPrintPreview(*args
))
4618 self
._setCallbackInfo
(self
, PyPrintPreview
)
4620 def _setCallbackInfo(*args
, **kwargs
):
4621 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4622 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4624 def base_SetCurrentPage(*args
, **kw
):
4625 return PyPrintPreview
.SetCurrentPage(*args
, **kw
)
4626 base_SetCurrentPage
= wx
._deprecated
(base_SetCurrentPage
,
4627 "Please use PyPrintPreview.SetCurrentPage instead.")
4629 def base_PaintPage(*args
, **kw
):
4630 return PyPrintPreview
.PaintPage(*args
, **kw
)
4631 base_PaintPage
= wx
._deprecated
(base_PaintPage
,
4632 "Please use PyPrintPreview.PaintPage instead.")
4634 def base_DrawBlankPage(*args
, **kw
):
4635 return PyPrintPreview
.DrawBlankPage(*args
, **kw
)
4636 base_DrawBlankPage
= wx
._deprecated
(base_DrawBlankPage
,
4637 "Please use PyPrintPreview.DrawBlankPage instead.")
4639 def base_RenderPage(*args
, **kw
):
4640 return PyPrintPreview
.RenderPage(*args
, **kw
)
4641 base_RenderPage
= wx
._deprecated
(base_RenderPage
,
4642 "Please use PyPrintPreview.RenderPage instead.")
4644 def base_SetZoom(*args
, **kw
):
4645 return PyPrintPreview
.SetZoom(*args
, **kw
)
4646 base_SetZoom
= wx
._deprecated
(base_SetZoom
,
4647 "Please use PyPrintPreview.SetZoom instead.")
4649 def base_Print(*args
, **kw
):
4650 return PyPrintPreview
.Print(*args
, **kw
)
4651 base_Print
= wx
._deprecated
(base_Print
,
4652 "Please use PyPrintPreview.Print instead.")
4654 def base_DetermineScaling(*args
, **kw
):
4655 return PyPrintPreview
.DetermineScaling(*args
, **kw
)
4656 base_DetermineScaling
= wx
._deprecated
(base_DetermineScaling
,
4657 "Please use PyPrintPreview.DetermineScaling instead.")
4659 _windows_
.PyPrintPreview_swigregister(PyPrintPreview
)
4661 class PyPreviewFrame(PreviewFrame
):
4662 """Proxy of C++ PyPreviewFrame class"""
4663 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4664 __repr__
= _swig_repr
4665 def __init__(self
, *args
, **kwargs
):
4667 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4668 Size size=DefaultSize,
4669 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4671 _windows_
.PyPreviewFrame_swiginit(self
,_windows_
.new_PyPreviewFrame(*args
, **kwargs
))
4672 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4674 def _setCallbackInfo(*args
, **kwargs
):
4675 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4676 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4678 def SetPreviewCanvas(*args
, **kwargs
):
4679 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4680 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4682 def SetControlBar(*args
, **kwargs
):
4683 """SetControlBar(self, PreviewControlBar bar)"""
4684 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4686 def Initialize(*args
, **kwargs
):
4687 """Initialize(self)"""
4688 return _windows_
.PyPreviewFrame_Initialize(*args
, **kwargs
)
4690 def CreateCanvas(*args
, **kwargs
):
4691 """CreateCanvas(self)"""
4692 return _windows_
.PyPreviewFrame_CreateCanvas(*args
, **kwargs
)
4694 def CreateControlBar(*args
, **kwargs
):
4695 """CreateControlBar(self)"""
4696 return _windows_
.PyPreviewFrame_CreateControlBar(*args
, **kwargs
)
4698 def base_Initialize(*args
, **kw
):
4699 return PyPreviewFrame
.Initialize(*args
, **kw
)
4700 base_Initialize
= wx
._deprecated
(base_Initialize
,
4701 "Please use PyPreviewFrame.Initialize instead.")
4703 def base_CreateCanvas(*args
, **kw
):
4704 return PyPreviewFrame
.CreateCanvas(*args
, **kw
)
4705 base_CreateCanvas
= wx
._deprecated
(base_CreateCanvas
,
4706 "Please use PyPreviewFrame.CreateCanvas instead.")
4708 def base_CreateControlBar(*args
, **kw
):
4709 return PyPreviewFrame
.CreateControlBar(*args
, **kw
)
4710 base_CreateControlBar
= wx
._deprecated
(base_CreateControlBar
,
4711 "Please use PyPreviewFrame.CreateControlBar instead.")
4713 _windows_
.PyPreviewFrame_swigregister(PyPreviewFrame
)
4715 class PyPreviewControlBar(PreviewControlBar
):
4716 """Proxy of C++ PyPreviewControlBar class"""
4717 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4718 __repr__
= _swig_repr
4719 def __init__(self
, *args
, **kwargs
):
4721 __init__(self, PrintPreview preview, long buttons, Window parent,
4722 Point pos=DefaultPosition, Size size=DefaultSize,
4723 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4725 _windows_
.PyPreviewControlBar_swiginit(self
,_windows_
.new_PyPreviewControlBar(*args
, **kwargs
))
4726 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4728 def _setCallbackInfo(*args
, **kwargs
):
4729 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4730 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4732 def SetPrintPreview(*args
, **kwargs
):
4733 """SetPrintPreview(self, PrintPreview preview)"""
4734 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4736 def CreateButtons(*args
, **kwargs
):
4737 """CreateButtons(self)"""
4738 return _windows_
.PyPreviewControlBar_CreateButtons(*args
, **kwargs
)
4740 def SetZoomControl(*args
, **kwargs
):
4741 """SetZoomControl(self, int zoom)"""
4742 return _windows_
.PyPreviewControlBar_SetZoomControl(*args
, **kwargs
)
4744 def base_CreateButtons(*args
, **kw
):
4745 return PreviewControlBar
.CreateButtons(*args
, **kw
)
4746 base_CreateButtons
= wx
._deprecated
(base_CreateButtons
,
4747 "Please use PreviewControlBar.CreateButtons instead.")
4749 def base_SetZoomControl(*args
, **kw
):
4750 return PreviewControlBar
.SetZoomControl(*args
, **kw
)
4751 base_SetZoomControl
= wx
._deprecated
(base_SetZoomControl
,
4752 "Please use PreviewControlBar.SetZoomControl instead.")
4754 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBar
)