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 DoPrepareDC(*args
, **kwargs
):
249 DoPrepareDC(self, DC dc)
251 Normally what is called by `PrepareDC`.
253 return _windows_
.ScrolledWindow_DoPrepareDC(*args
, **kwargs
)
255 def GetClassDefaultAttributes(*args
, **kwargs
):
257 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
259 Get the default attributes for this class. This is useful if you want
260 to use the same font or colour in your own control as in a standard
261 control -- which is a much better idea than hard coding specific
262 colours or fonts which might look completely out of place on the
263 user's system, especially if it uses themes.
265 The variant parameter is only relevant under Mac currently and is
266 ignore under other platforms. Under Mac, it will change the size of
267 the returned font. See `wx.Window.SetWindowVariant` for more about
270 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
272 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
273 _windows_
.ScrolledWindow_swigregister(ScrolledWindow
)
275 def PreScrolledWindow(*args
, **kwargs
):
276 """PreScrolledWindow() -> ScrolledWindow"""
277 val
= _windows_
.new_PreScrolledWindow(*args
, **kwargs
)
280 def ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
):
282 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
284 Get the default attributes for this class. This is useful if you want
285 to use the same font or colour in your own control as in a standard
286 control -- which is a much better idea than hard coding specific
287 colours or fonts which might look completely out of place on the
288 user's system, especially if it uses themes.
290 The variant parameter is only relevant under Mac currently and is
291 ignore under other platforms. Under Mac, it will change the size of
292 the returned font. See `wx.Window.SetWindowVariant` for more about
295 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
297 #---------------------------------------------------------------------------
299 STAY_ON_TOP
= _windows_
.STAY_ON_TOP
300 ICONIZE
= _windows_
.ICONIZE
301 MINIMIZE
= _windows_
.MINIMIZE
302 MAXIMIZE
= _windows_
.MAXIMIZE
303 CLOSE_BOX
= _windows_
.CLOSE_BOX
304 THICK_FRAME
= _windows_
.THICK_FRAME
305 SYSTEM_MENU
= _windows_
.SYSTEM_MENU
306 MINIMIZE_BOX
= _windows_
.MINIMIZE_BOX
307 MAXIMIZE_BOX
= _windows_
.MAXIMIZE_BOX
308 TINY_CAPTION_HORIZ
= _windows_
.TINY_CAPTION_HORIZ
309 TINY_CAPTION_VERT
= _windows_
.TINY_CAPTION_VERT
310 RESIZE_BOX
= _windows_
.RESIZE_BOX
311 RESIZE_BORDER
= _windows_
.RESIZE_BORDER
312 DIALOG_NO_PARENT
= _windows_
.DIALOG_NO_PARENT
313 DEFAULT_FRAME_STYLE
= _windows_
.DEFAULT_FRAME_STYLE
314 DEFAULT_DIALOG_STYLE
= _windows_
.DEFAULT_DIALOG_STYLE
315 FRAME_TOOL_WINDOW
= _windows_
.FRAME_TOOL_WINDOW
316 FRAME_FLOAT_ON_PARENT
= _windows_
.FRAME_FLOAT_ON_PARENT
317 FRAME_NO_WINDOW_MENU
= _windows_
.FRAME_NO_WINDOW_MENU
318 FRAME_NO_TASKBAR
= _windows_
.FRAME_NO_TASKBAR
319 FRAME_SHAPED
= _windows_
.FRAME_SHAPED
320 FRAME_DRAWER
= _windows_
.FRAME_DRAWER
321 FRAME_EX_METAL
= _windows_
.FRAME_EX_METAL
322 DIALOG_EX_METAL
= _windows_
.DIALOG_EX_METAL
323 WS_EX_CONTEXTHELP
= _windows_
.WS_EX_CONTEXTHELP
324 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
325 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
326 USER_COLOURS
= _windows_
.USER_COLOURS
327 NO_3D
= _windows_
.NO_3D
328 FRAME_EX_CONTEXTHELP
= _windows_
.FRAME_EX_CONTEXTHELP
329 DIALOG_EX_CONTEXTHELP
= _windows_
.DIALOG_EX_CONTEXTHELP
330 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
331 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
332 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
333 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
334 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
335 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
336 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
337 USER_ATTENTION_INFO
= _windows_
.USER_ATTENTION_INFO
338 USER_ATTENTION_ERROR
= _windows_
.USER_ATTENTION_ERROR
339 class TopLevelWindow(_core
.Window
):
340 """Proxy of C++ TopLevelWindow class"""
341 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
342 def __init__(self
): raise AttributeError, "No constructor defined"
343 __repr__
= _swig_repr
344 def Maximize(*args
, **kwargs
):
345 """Maximize(self, bool maximize=True)"""
346 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
348 def Restore(*args
, **kwargs
):
350 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
352 def Iconize(*args
, **kwargs
):
353 """Iconize(self, bool iconize=True)"""
354 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
356 def IsMaximized(*args
, **kwargs
):
357 """IsMaximized(self) -> bool"""
358 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
360 def IsAlwaysMaximized(*args
, **kwargs
):
361 """IsAlwaysMaximized(self) -> bool"""
362 return _windows_
.TopLevelWindow_IsAlwaysMaximized(*args
, **kwargs
)
364 def IsIconized(*args
, **kwargs
):
365 """IsIconized(self) -> bool"""
366 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
368 def GetIcon(*args
, **kwargs
):
369 """GetIcon(self) -> Icon"""
370 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
372 def SetIcon(*args
, **kwargs
):
373 """SetIcon(self, Icon icon)"""
374 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
376 def SetIcons(*args
, **kwargs
):
377 """SetIcons(self, wxIconBundle icons)"""
378 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
380 def ShowFullScreen(*args
, **kwargs
):
381 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
382 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
384 def IsFullScreen(*args
, **kwargs
):
385 """IsFullScreen(self) -> bool"""
386 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
388 def SetTitle(*args
, **kwargs
):
389 """SetTitle(self, String title)"""
390 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
392 def GetTitle(*args
, **kwargs
):
393 """GetTitle(self) -> String"""
394 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
396 def SetShape(*args
, **kwargs
):
397 """SetShape(self, Region region) -> bool"""
398 return _windows_
.TopLevelWindow_SetShape(*args
, **kwargs
)
400 def RequestUserAttention(*args
, **kwargs
):
401 """RequestUserAttention(self, int flags=USER_ATTENTION_INFO)"""
402 return _windows_
.TopLevelWindow_RequestUserAttention(*args
, **kwargs
)
404 def IsActive(*args
, **kwargs
):
405 """IsActive(self) -> bool"""
406 return _windows_
.TopLevelWindow_IsActive(*args
, **kwargs
)
408 def MacSetMetalAppearance(*args
, **kwargs
):
409 """MacSetMetalAppearance(self, bool on)"""
410 return _windows_
.TopLevelWindow_MacSetMetalAppearance(*args
, **kwargs
)
412 def MacGetMetalAppearance(*args
, **kwargs
):
413 """MacGetMetalAppearance(self) -> bool"""
414 return _windows_
.TopLevelWindow_MacGetMetalAppearance(*args
, **kwargs
)
416 def CenterOnScreen(*args
, **kwargs
):
418 CenterOnScreen(self, int dir=BOTH)
420 Center the window on screen
422 return _windows_
.TopLevelWindow_CenterOnScreen(*args
, **kwargs
)
424 CentreOnScreen
= CenterOnScreen
425 def EnableCloseButton(*args
, **kwargs
):
426 """EnableCloseButton(self, bool enable=True) -> bool"""
427 return _windows_
.TopLevelWindow_EnableCloseButton(*args
, **kwargs
)
429 def GetDefaultItem(*args
, **kwargs
):
431 GetDefaultItem(self) -> Window
433 Get the default child of this parent, i.e. the one which is activated
434 by pressing <Enter> such as the OK button on a wx.Dialog.
436 return _windows_
.TopLevelWindow_GetDefaultItem(*args
, **kwargs
)
438 def SetDefaultItem(*args
, **kwargs
):
440 SetDefaultItem(self, Window child) -> Window
442 Set this child as default, return the old default.
444 return _windows_
.TopLevelWindow_SetDefaultItem(*args
, **kwargs
)
446 def SetTmpDefaultItem(*args
, **kwargs
):
448 SetTmpDefaultItem(self, Window win)
450 Set this child as temporary default
452 return _windows_
.TopLevelWindow_SetTmpDefaultItem(*args
, **kwargs
)
454 def GetTmpDefaultItem(*args
, **kwargs
):
456 GetTmpDefaultItem(self) -> Window
458 Return the temporary default item, which can be None.
460 return _windows_
.TopLevelWindow_GetTmpDefaultItem(*args
, **kwargs
)
462 _windows_
.TopLevelWindow_swigregister(TopLevelWindow
)
463 cvar
= _windows_
.cvar
464 FrameNameStr
= cvar
.FrameNameStr
465 DialogNameStr
= cvar
.DialogNameStr
466 StatusLineNameStr
= cvar
.StatusLineNameStr
467 ToolBarNameStr
= cvar
.ToolBarNameStr
469 #---------------------------------------------------------------------------
471 class Frame(TopLevelWindow
):
472 """Proxy of C++ Frame class"""
473 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
474 __repr__
= _swig_repr
475 def __init__(self
, *args
, **kwargs
):
477 __init__(self, Window parent, int id=-1, String title=EmptyString,
478 Point pos=DefaultPosition, Size size=DefaultSize,
479 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
481 _windows_
.Frame_swiginit(self
,_windows_
.new_Frame(*args
, **kwargs
))
482 self
._setOORInfo
(self
)
484 def Create(*args
, **kwargs
):
486 Create(self, Window parent, int id=-1, String title=EmptyString,
487 Point pos=DefaultPosition, Size size=DefaultSize,
488 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
490 return _windows_
.Frame_Create(*args
, **kwargs
)
492 def SendSizeEvent(*args
, **kwargs
):
493 """SendSizeEvent(self)"""
494 return _windows_
.Frame_SendSizeEvent(*args
, **kwargs
)
496 def SetMenuBar(*args
, **kwargs
):
497 """SetMenuBar(self, MenuBar menubar)"""
498 return _windows_
.Frame_SetMenuBar(*args
, **kwargs
)
500 def GetMenuBar(*args
, **kwargs
):
501 """GetMenuBar(self) -> MenuBar"""
502 return _windows_
.Frame_GetMenuBar(*args
, **kwargs
)
504 def ProcessCommand(*args
, **kwargs
):
505 """ProcessCommand(self, int winid) -> bool"""
506 return _windows_
.Frame_ProcessCommand(*args
, **kwargs
)
508 Command
= ProcessCommand
509 def CreateStatusBar(*args
, **kwargs
):
511 CreateStatusBar(self, int number=1, long style=DEFAULT_STATUSBAR_STYLE, int winid=0,
512 String name=StatusLineNameStr) -> StatusBar
514 return _windows_
.Frame_CreateStatusBar(*args
, **kwargs
)
516 def GetStatusBar(*args
, **kwargs
):
517 """GetStatusBar(self) -> StatusBar"""
518 return _windows_
.Frame_GetStatusBar(*args
, **kwargs
)
520 def SetStatusBar(*args
, **kwargs
):
521 """SetStatusBar(self, StatusBar statBar)"""
522 return _windows_
.Frame_SetStatusBar(*args
, **kwargs
)
524 def SetStatusText(*args
, **kwargs
):
525 """SetStatusText(self, String text, int number=0)"""
526 return _windows_
.Frame_SetStatusText(*args
, **kwargs
)
528 def SetStatusWidths(*args
, **kwargs
):
529 """SetStatusWidths(self, int widths)"""
530 return _windows_
.Frame_SetStatusWidths(*args
, **kwargs
)
532 def PushStatusText(*args
, **kwargs
):
533 """PushStatusText(self, String text, int number=0)"""
534 return _windows_
.Frame_PushStatusText(*args
, **kwargs
)
536 def PopStatusText(*args
, **kwargs
):
537 """PopStatusText(self, int number=0)"""
538 return _windows_
.Frame_PopStatusText(*args
, **kwargs
)
540 def SetStatusBarPane(*args
, **kwargs
):
541 """SetStatusBarPane(self, int n)"""
542 return _windows_
.Frame_SetStatusBarPane(*args
, **kwargs
)
544 def GetStatusBarPane(*args
, **kwargs
):
545 """GetStatusBarPane(self) -> int"""
546 return _windows_
.Frame_GetStatusBarPane(*args
, **kwargs
)
548 def CreateToolBar(*args
, **kwargs
):
549 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
550 return _windows_
.Frame_CreateToolBar(*args
, **kwargs
)
552 def GetToolBar(*args
, **kwargs
):
553 """GetToolBar(self) -> wxToolBar"""
554 return _windows_
.Frame_GetToolBar(*args
, **kwargs
)
556 def SetToolBar(*args
, **kwargs
):
557 """SetToolBar(self, wxToolBar toolbar)"""
558 return _windows_
.Frame_SetToolBar(*args
, **kwargs
)
560 def DoGiveHelp(*args
, **kwargs
):
561 """DoGiveHelp(self, String text, bool show)"""
562 return _windows_
.Frame_DoGiveHelp(*args
, **kwargs
)
564 def DoMenuUpdates(*args
, **kwargs
):
565 """DoMenuUpdates(self, Menu menu=None)"""
566 return _windows_
.Frame_DoMenuUpdates(*args
, **kwargs
)
568 def GetClassDefaultAttributes(*args
, **kwargs
):
570 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
572 Get the default attributes for this class. This is useful if you want
573 to use the same font or colour in your own control as in a standard
574 control -- which is a much better idea than hard coding specific
575 colours or fonts which might look completely out of place on the
576 user's system, especially if it uses themes.
578 The variant parameter is only relevant under Mac currently and is
579 ignore under other platforms. Under Mac, it will change the size of
580 the returned font. See `wx.Window.SetWindowVariant` for more about
583 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
585 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
586 MenuBar
= property(GetMenuBar
,SetMenuBar
,doc
="See `GetMenuBar` and `SetMenuBar`")
587 StatusBar
= property(GetStatusBar
,SetStatusBar
,doc
="See `GetStatusBar` and `SetStatusBar`")
588 StatusBarPane
= property(GetStatusBarPane
,SetStatusBarPane
,doc
="See `GetStatusBarPane` and `SetStatusBarPane`")
589 ToolBar
= property(GetToolBar
,SetToolBar
,doc
="See `GetToolBar` and `SetToolBar`")
590 _windows_
.Frame_swigregister(Frame
)
592 def PreFrame(*args
, **kwargs
):
593 """PreFrame() -> Frame"""
594 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
597 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
599 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
601 Get the default attributes for this class. This is useful if you want
602 to use the same font or colour in your own control as in a standard
603 control -- which is a much better idea than hard coding specific
604 colours or fonts which might look completely out of place on the
605 user's system, especially if it uses themes.
607 The variant parameter is only relevant under Mac currently and is
608 ignore under other platforms. Under Mac, it will change the size of
609 the returned font. See `wx.Window.SetWindowVariant` for more about
612 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
614 #---------------------------------------------------------------------------
616 class Dialog(TopLevelWindow
):
617 """Proxy of C++ Dialog class"""
618 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
619 __repr__
= _swig_repr
620 ButtonSizerFlags
= _windows_
.Dialog_ButtonSizerFlags
621 def __init__(self
, *args
, **kwargs
):
623 __init__(self, Window parent, int id=-1, String title=EmptyString,
624 Point pos=DefaultPosition, Size size=DefaultSize,
625 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
627 _windows_
.Dialog_swiginit(self
,_windows_
.new_Dialog(*args
, **kwargs
))
628 self
._setOORInfo
(self
)
630 def Create(*args
, **kwargs
):
632 Create(self, Window parent, int id=-1, String title=EmptyString,
633 Point pos=DefaultPosition, Size size=DefaultSize,
634 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
636 return _windows_
.Dialog_Create(*args
, **kwargs
)
638 def SetReturnCode(*args
, **kwargs
):
639 """SetReturnCode(self, int returnCode)"""
640 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
642 def GetReturnCode(*args
, **kwargs
):
643 """GetReturnCode(self) -> int"""
644 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
646 def SetAffirmativeId(*args
, **kwargs
):
647 """SetAffirmativeId(self, int affirmativeId)"""
648 return _windows_
.Dialog_SetAffirmativeId(*args
, **kwargs
)
650 def GetAffirmativeId(*args
, **kwargs
):
651 """GetAffirmativeId(self) -> int"""
652 return _windows_
.Dialog_GetAffirmativeId(*args
, **kwargs
)
654 def SetEscapeId(*args
, **kwargs
):
655 """SetEscapeId(self, int escapeId)"""
656 return _windows_
.Dialog_SetEscapeId(*args
, **kwargs
)
658 def GetEscapeId(*args
, **kwargs
):
659 """GetEscapeId(self) -> int"""
660 return _windows_
.Dialog_GetEscapeId(*args
, **kwargs
)
662 def CreateTextSizer(*args
, **kwargs
):
663 """CreateTextSizer(self, String message) -> Sizer"""
664 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
666 def CreateButtonSizer(*args
, **kwargs
):
667 """CreateButtonSizer(self, long flags, bool separated=False, int distance=0) -> Sizer"""
668 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
670 def CreateStdDialogButtonSizer(*args
, **kwargs
):
671 """CreateStdDialogButtonSizer(self, long flags) -> StdDialogButtonSizer"""
672 return _windows_
.Dialog_CreateStdDialogButtonSizer(*args
, **kwargs
)
674 def IsModal(*args
, **kwargs
):
675 """IsModal(self) -> bool"""
676 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
678 def ShowModal(*args
, **kwargs
):
679 """ShowModal(self) -> int"""
680 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
682 def EndModal(*args
, **kwargs
):
683 """EndModal(self, int retCode)"""
684 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
686 def GetClassDefaultAttributes(*args
, **kwargs
):
688 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
690 Get the default attributes for this class. This is useful if you want
691 to use the same font or colour in your own control as in a standard
692 control -- which is a much better idea than hard coding specific
693 colours or fonts which might look completely out of place on the
694 user's system, especially if it uses themes.
696 The variant parameter is only relevant under Mac currently and is
697 ignore under other platforms. Under Mac, it will change the size of
698 the returned font. See `wx.Window.SetWindowVariant` for more about
701 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
703 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
704 AffirmativeId
= property(GetAffirmativeId
,SetAffirmativeId
,doc
="See `GetAffirmativeId` and `SetAffirmativeId`")
705 EscapeId
= property(GetEscapeId
,SetEscapeId
,doc
="See `GetEscapeId` and `SetEscapeId`")
706 ReturnCode
= property(GetReturnCode
,SetReturnCode
,doc
="See `GetReturnCode` and `SetReturnCode`")
707 _windows_
.Dialog_swigregister(Dialog
)
709 def PreDialog(*args
, **kwargs
):
710 """PreDialog() -> Dialog"""
711 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
714 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
716 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
718 Get the default attributes for this class. This is useful if you want
719 to use the same font or colour in your own control as in a standard
720 control -- which is a much better idea than hard coding specific
721 colours or fonts which might look completely out of place on the
722 user's system, especially if it uses themes.
724 The variant parameter is only relevant under Mac currently and is
725 ignore under other platforms. Under Mac, it will change the size of
726 the returned font. See `wx.Window.SetWindowVariant` for more about
729 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
731 #---------------------------------------------------------------------------
733 class MiniFrame(Frame
):
734 """Proxy of C++ MiniFrame class"""
735 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
736 __repr__
= _swig_repr
737 def __init__(self
, *args
, **kwargs
):
739 __init__(self, Window parent, int id=-1, String title=EmptyString,
740 Point pos=DefaultPosition, Size size=DefaultSize,
741 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
743 _windows_
.MiniFrame_swiginit(self
,_windows_
.new_MiniFrame(*args
, **kwargs
))
744 self
._setOORInfo
(self
)
746 def Create(*args
, **kwargs
):
748 Create(self, Window parent, int id=-1, String title=EmptyString,
749 Point pos=DefaultPosition, Size size=DefaultSize,
750 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
752 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
754 _windows_
.MiniFrame_swigregister(MiniFrame
)
756 def PreMiniFrame(*args
, **kwargs
):
757 """PreMiniFrame() -> MiniFrame"""
758 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
761 #---------------------------------------------------------------------------
763 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
764 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
765 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
766 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
767 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
768 class SplashScreenWindow(_core
.Window
):
769 """Proxy of C++ SplashScreenWindow class"""
770 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
771 __repr__
= _swig_repr
772 def __init__(self
, *args
, **kwargs
):
774 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
775 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
777 _windows_
.SplashScreenWindow_swiginit(self
,_windows_
.new_SplashScreenWindow(*args
, **kwargs
))
778 self
._setOORInfo
(self
)
780 def SetBitmap(*args
, **kwargs
):
781 """SetBitmap(self, Bitmap bitmap)"""
782 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
784 def GetBitmap(*args
, **kwargs
):
785 """GetBitmap(self) -> Bitmap"""
786 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
788 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindow
)
790 class SplashScreen(Frame
):
791 """Proxy of C++ SplashScreen class"""
792 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
793 __repr__
= _swig_repr
794 def __init__(self
, *args
, **kwargs
):
796 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
797 Window parent, int id=-1, Point pos=DefaultPosition,
798 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
800 _windows_
.SplashScreen_swiginit(self
,_windows_
.new_SplashScreen(*args
, **kwargs
))
801 self
._setOORInfo
(self
)
803 def GetSplashStyle(*args
, **kwargs
):
804 """GetSplashStyle(self) -> long"""
805 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
807 def GetSplashWindow(*args
, **kwargs
):
808 """GetSplashWindow(self) -> SplashScreenWindow"""
809 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
811 def GetTimeout(*args
, **kwargs
):
812 """GetTimeout(self) -> int"""
813 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
815 _windows_
.SplashScreen_swigregister(SplashScreen
)
817 #---------------------------------------------------------------------------
819 SB_NORMAL
= _windows_
.SB_NORMAL
820 SB_FLAT
= _windows_
.SB_FLAT
821 SB_RAISED
= _windows_
.SB_RAISED
822 class StatusBar(_core
.Window
):
823 """Proxy of C++ StatusBar class"""
824 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
825 __repr__
= _swig_repr
826 def __init__(self
, *args
, **kwargs
):
828 __init__(self, Window parent, int id=-1, long style=DEFAULT_STATUSBAR_STYLE,
829 String name=StatusLineNameStr) -> StatusBar
831 _windows_
.StatusBar_swiginit(self
,_windows_
.new_StatusBar(*args
, **kwargs
))
832 self
._setOORInfo
(self
)
834 def Create(*args
, **kwargs
):
835 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
836 return _windows_
.StatusBar_Create(*args
, **kwargs
)
838 def SetFieldsCount(*args
, **kwargs
):
839 """SetFieldsCount(self, int number=1)"""
840 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
842 def GetFieldsCount(*args
, **kwargs
):
843 """GetFieldsCount(self) -> int"""
844 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
846 def SetStatusText(*args
, **kwargs
):
847 """SetStatusText(self, String text, int number=0)"""
848 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
850 def GetStatusText(*args
, **kwargs
):
851 """GetStatusText(self, int number=0) -> String"""
852 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
854 def PushStatusText(*args
, **kwargs
):
855 """PushStatusText(self, String text, int number=0)"""
856 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
858 def PopStatusText(*args
, **kwargs
):
859 """PopStatusText(self, int number=0)"""
860 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
862 def SetStatusWidths(*args
, **kwargs
):
863 """SetStatusWidths(self, int widths)"""
864 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
866 def SetStatusStyles(*args
, **kwargs
):
867 """SetStatusStyles(self, int styles)"""
868 return _windows_
.StatusBar_SetStatusStyles(*args
, **kwargs
)
870 def GetFieldRect(*args
, **kwargs
):
871 """GetFieldRect(self, int i) -> Rect"""
872 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
874 def SetMinHeight(*args
, **kwargs
):
875 """SetMinHeight(self, int height)"""
876 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
878 def GetBorderX(*args
, **kwargs
):
879 """GetBorderX(self) -> int"""
880 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
882 def GetBorderY(*args
, **kwargs
):
883 """GetBorderY(self) -> int"""
884 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
886 def GetClassDefaultAttributes(*args
, **kwargs
):
888 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
890 Get the default attributes for this class. This is useful if you want
891 to use the same font or colour in your own control as in a standard
892 control -- which is a much better idea than hard coding specific
893 colours or fonts which might look completely out of place on the
894 user's system, especially if it uses themes.
896 The variant parameter is only relevant under Mac currently and is
897 ignore under other platforms. Under Mac, it will change the size of
898 the returned font. See `wx.Window.SetWindowVariant` for more about
901 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
903 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
905 """Return a list of field values in the status bar. """
906 return [self
.GetStatusText(i
) for i
in range(self
.GetFieldsCount())]
908 def SetFields(self
, items
):
909 """Set the values of the statusbar fields from a list of strings. """
910 self
.SetFieldsCount(len(items
))
911 for i
in range(len(items
)):
912 self
.SetStatusText(items
[i
], i
)
914 Fields
= property(GetFields
,SetFields
)
915 _windows_
.StatusBar_swigregister(StatusBar
)
917 def PreStatusBar(*args
, **kwargs
):
918 """PreStatusBar() -> StatusBar"""
919 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
922 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
924 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
926 Get the default attributes for this class. This is useful if you want
927 to use the same font or colour in your own control as in a standard
928 control -- which is a much better idea than hard coding specific
929 colours or fonts which might look completely out of place on the
930 user's system, especially if it uses themes.
932 The variant parameter is only relevant under Mac currently and is
933 ignore under other platforms. Under Mac, it will change the size of
934 the returned font. See `wx.Window.SetWindowVariant` for more about
937 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
939 #---------------------------------------------------------------------------
941 SP_NOBORDER
= _windows_
.SP_NOBORDER
942 SP_NOSASH
= _windows_
.SP_NOSASH
943 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
944 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
945 SP_3DSASH
= _windows_
.SP_3DSASH
946 SP_3DBORDER
= _windows_
.SP_3DBORDER
947 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
948 SP_BORDER
= _windows_
.SP_BORDER
949 SP_3D
= _windows_
.SP_3D
950 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
951 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
952 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
953 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
954 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
955 class SplitterWindow(_core
.Window
):
957 wx.SplitterWindow manages up to two subwindows or panes, with an
958 optional vertical or horizontal split which can be used with the mouse
961 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
962 __repr__
= _swig_repr
963 def __init__(self
, *args
, **kwargs
):
965 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
966 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
968 Constructor. Creates and shows a SplitterWindow.
970 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
971 _windows_
.SplitterWindow_swiginit(self
,_windows_
.new_SplitterWindow(*args
, **kwargs
))
972 self
._setOORInfo
(self
)
974 def Create(*args
, **kwargs
):
976 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
977 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
979 Create the GUI part of the SplitterWindow for the 2-phase create.
981 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
983 def GetWindow1(*args
, **kwargs
):
985 GetWindow1(self) -> Window
987 Gets the only or left/top pane.
989 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
991 def GetWindow2(*args
, **kwargs
):
993 GetWindow2(self) -> Window
995 Gets the right/bottom pane.
997 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
999 def SetSplitMode(*args
, **kwargs
):
1001 SetSplitMode(self, int mode)
1003 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
1004 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
1007 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
1009 def GetSplitMode(*args
, **kwargs
):
1011 GetSplitMode(self) -> int
1015 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
1017 def Initialize(*args
, **kwargs
):
1019 Initialize(self, Window window)
1021 Initializes the splitter window to have one pane. This should be
1022 called if you wish to initially view only a single pane in the
1023 splitter window. The child window is shown if it is currently hidden.
1025 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
1027 def SplitVertically(*args
, **kwargs
):
1029 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
1031 Initializes the left and right panes of the splitter window. The
1032 child windows are shown if they are currently hidden.
1034 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
1036 def SplitHorizontally(*args
, **kwargs
):
1038 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
1040 Initializes the top and bottom panes of the splitter window. The
1041 child windows are shown if they are currently hidden.
1043 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
1045 def Unsplit(*args
, **kwargs
):
1047 Unsplit(self, Window toRemove=None) -> bool
1049 Unsplits the window. Pass the pane to remove, or None to remove the
1050 right or bottom pane. Returns True if successful, False otherwise (the
1051 window was not split).
1053 This function will not actually delete the pane being
1054 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
1055 for the desired behaviour. By default, the pane being
1056 removed is only hidden.
1058 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
1060 def ReplaceWindow(*args
, **kwargs
):
1062 ReplaceWindow(self, Window winOld, Window winNew) -> bool
1064 This function replaces one of the windows managed by the
1065 SplitterWindow with another one. It is in general better to use it
1066 instead of calling Unsplit() and then resplitting the window back
1067 because it will provoke much less flicker. It is valid to call this
1068 function whether the splitter has two windows or only one.
1070 Both parameters should be non-None and winOld must specify one of the
1071 windows managed by the splitter. If the parameters are incorrect or
1072 the window couldn't be replaced, False is returned. Otherwise the
1073 function will return True, but please notice that it will not Destroy
1074 the replaced window and you may wish to do it yourself.
1076 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1078 def UpdateSize(*args
, **kwargs
):
1082 Causes any pending sizing of the sash and child panes to take place
1085 Such resizing normally takes place in idle time, in order to wait for
1086 layout to be completed. However, this can cause unacceptable flicker
1087 as the panes are resized after the window has been shown. To work
1088 around this, you can perform window layout (for example by sending a
1089 size event to the parent window), and then call this function, before
1090 showing the top-level window.
1092 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1094 def IsSplit(*args
, **kwargs
):
1096 IsSplit(self) -> bool
1098 Is the window split?
1100 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1102 def SetSashSize(*args
, **kwargs
):
1104 SetSashSize(self, int width)
1108 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1110 def SetBorderSize(*args
, **kwargs
):
1112 SetBorderSize(self, int width)
1114 Sets the border size. Currently a NOP.
1116 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1118 def GetSashSize(*args
, **kwargs
):
1120 GetSashSize(self) -> int
1124 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1126 def GetBorderSize(*args
, **kwargs
):
1128 GetBorderSize(self) -> int
1130 Gets the border size
1132 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1134 def SetSashPosition(*args
, **kwargs
):
1136 SetSashPosition(self, int position, bool redraw=True)
1138 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1139 are resized and the sash and border are redrawn.
1141 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1143 def GetSashPosition(*args
, **kwargs
):
1145 GetSashPosition(self) -> int
1147 Returns the surrent sash position.
1149 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1151 def SetSashGravity(*args
, **kwargs
):
1153 SetSashGravity(self, double gravity)
1155 Set the sash gravity. Gravity is a floating-point factor between 0.0
1156 and 1.0 which controls position of sash while resizing the
1157 `wx.SplitterWindow`. The gravity specifies how much the left/top
1158 window will grow while resizing.
1160 return _windows_
.SplitterWindow_SetSashGravity(*args
, **kwargs
)
1162 def GetSashGravity(*args
, **kwargs
):
1164 GetSashGravity(self) -> double
1166 Gets the sash gravity.
1168 :see: `SetSashGravity`
1171 return _windows_
.SplitterWindow_GetSashGravity(*args
, **kwargs
)
1173 def SetMinimumPaneSize(*args
, **kwargs
):
1175 SetMinimumPaneSize(self, int min)
1177 Sets the minimum pane size in pixels.
1179 The default minimum pane size is zero, which means that either pane
1180 can be reduced to zero by dragging the sash, thus removing one of the
1181 panes. To prevent this behaviour (and veto out-of-range sash
1182 dragging), set a minimum size, for example 20 pixels. If the
1183 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1184 the window may be unsplit even if minimum size is non-zero.
1186 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1188 def GetMinimumPaneSize(*args
, **kwargs
):
1190 GetMinimumPaneSize(self) -> int
1192 Gets the minimum pane size in pixels.
1194 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1196 def SashHitTest(*args
, **kwargs
):
1198 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1200 Tests for x, y over the sash
1202 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1204 def SizeWindows(*args
, **kwargs
):
1210 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1212 def SetNeedUpdating(*args
, **kwargs
):
1213 """SetNeedUpdating(self, bool needUpdating)"""
1214 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1216 def GetNeedUpdating(*args
, **kwargs
):
1217 """GetNeedUpdating(self) -> bool"""
1218 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1220 def GetClassDefaultAttributes(*args
, **kwargs
):
1222 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1224 Get the default attributes for this class. This is useful if you want
1225 to use the same font or colour in your own control as in a standard
1226 control -- which is a much better idea than hard coding specific
1227 colours or fonts which might look completely out of place on the
1228 user's system, especially if it uses themes.
1230 The variant parameter is only relevant under Mac currently and is
1231 ignore under other platforms. Under Mac, it will change the size of
1232 the returned font. See `wx.Window.SetWindowVariant` for more about
1235 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1237 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1238 _windows_
.SplitterWindow_swigregister(SplitterWindow
)
1239 SplitterNameStr
= cvar
.SplitterNameStr
1241 def PreSplitterWindow(*args
, **kwargs
):
1243 PreSplitterWindow() -> SplitterWindow
1245 Precreate a SplitterWindow for 2-phase creation.
1247 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1250 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1252 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1254 Get the default attributes for this class. This is useful if you want
1255 to use the same font or colour in your own control as in a standard
1256 control -- which is a much better idea than hard coding specific
1257 colours or fonts which might look completely out of place on the
1258 user's system, especially if it uses themes.
1260 The variant parameter is only relevant under Mac currently and is
1261 ignore under other platforms. Under Mac, it will change the size of
1262 the returned font. See `wx.Window.SetWindowVariant` for more about
1265 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1267 class SplitterEvent(_core
.NotifyEvent
):
1268 """This class represents the events generated by a splitter control."""
1269 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1270 __repr__
= _swig_repr
1271 def __init__(self
, *args
, **kwargs
):
1273 __init__(self, EventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1275 This class represents the events generated by a splitter control.
1277 _windows_
.SplitterEvent_swiginit(self
,_windows_
.new_SplitterEvent(*args
, **kwargs
))
1278 def SetSashPosition(*args
, **kwargs
):
1280 SetSashPosition(self, int pos)
1282 This function is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1283 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1284 events, sets the the new sash position. In the case of _CHANGING
1285 events, sets the new tracking bar position so visual feedback during
1286 dragging will represent that change that will actually take place. Set
1287 to -1 from the event handler code to prevent repositioning.
1289 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1291 def GetSashPosition(*args
, **kwargs
):
1293 GetSashPosition(self) -> int
1295 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1296 and EVT_SPLITTER_SASH_POS_CHANGED events.
1298 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1300 def GetWindowBeingRemoved(*args
, **kwargs
):
1302 GetWindowBeingRemoved(self) -> Window
1304 Returns a pointer to the window being removed when a splitter window
1307 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1309 def GetX(*args
, **kwargs
):
1313 Returns the x coordinate of the double-click point in a
1314 EVT_SPLITTER_DCLICK event.
1316 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1318 def GetY(*args
, **kwargs
):
1322 Returns the y coordinate of the double-click point in a
1323 EVT_SPLITTER_DCLICK event.
1325 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1327 _windows_
.SplitterEvent_swigregister(SplitterEvent
)
1329 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1330 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1331 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1332 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1333 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1334 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1335 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1336 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1337 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1339 #---------------------------------------------------------------------------
1341 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1342 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1343 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1344 SW_NOBORDER
= _windows_
.SW_NOBORDER
1345 SW_BORDER
= _windows_
.SW_BORDER
1346 SW_3DSASH
= _windows_
.SW_3DSASH
1347 SW_3DBORDER
= _windows_
.SW_3DBORDER
1348 SW_3D
= _windows_
.SW_3D
1349 SASH_TOP
= _windows_
.SASH_TOP
1350 SASH_RIGHT
= _windows_
.SASH_RIGHT
1351 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1352 SASH_LEFT
= _windows_
.SASH_LEFT
1353 SASH_NONE
= _windows_
.SASH_NONE
1354 class SashWindow(_core
.Window
):
1355 """Proxy of C++ SashWindow class"""
1356 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1357 __repr__
= _swig_repr
1358 def __init__(self
, *args
, **kwargs
):
1360 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1361 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1362 String name=SashNameStr) -> SashWindow
1364 _windows_
.SashWindow_swiginit(self
,_windows_
.new_SashWindow(*args
, **kwargs
))
1365 self
._setOORInfo
(self
)
1367 def Create(*args
, **kwargs
):
1369 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1370 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1371 String name=SashNameStr) -> bool
1373 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1375 def SetSashVisible(*args
, **kwargs
):
1376 """SetSashVisible(self, int edge, bool sash)"""
1377 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1379 def GetSashVisible(*args
, **kwargs
):
1380 """GetSashVisible(self, int edge) -> bool"""
1381 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1383 def SetSashBorder(*args
, **kwargs
):
1384 """SetSashBorder(self, int edge, bool border)"""
1385 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1387 def HasBorder(*args
, **kwargs
):
1388 """HasBorder(self, int edge) -> bool"""
1389 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1391 def GetEdgeMargin(*args
, **kwargs
):
1392 """GetEdgeMargin(self, int edge) -> int"""
1393 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1395 def SetDefaultBorderSize(*args
, **kwargs
):
1396 """SetDefaultBorderSize(self, int width)"""
1397 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1399 def GetDefaultBorderSize(*args
, **kwargs
):
1400 """GetDefaultBorderSize(self) -> int"""
1401 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1403 def SetExtraBorderSize(*args
, **kwargs
):
1404 """SetExtraBorderSize(self, int width)"""
1405 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1407 def GetExtraBorderSize(*args
, **kwargs
):
1408 """GetExtraBorderSize(self) -> int"""
1409 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1411 def SetMinimumSizeX(*args
, **kwargs
):
1412 """SetMinimumSizeX(self, int min)"""
1413 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1415 def SetMinimumSizeY(*args
, **kwargs
):
1416 """SetMinimumSizeY(self, int min)"""
1417 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1419 def GetMinimumSizeX(*args
, **kwargs
):
1420 """GetMinimumSizeX(self) -> int"""
1421 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1423 def GetMinimumSizeY(*args
, **kwargs
):
1424 """GetMinimumSizeY(self) -> int"""
1425 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1427 def SetMaximumSizeX(*args
, **kwargs
):
1428 """SetMaximumSizeX(self, int max)"""
1429 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1431 def SetMaximumSizeY(*args
, **kwargs
):
1432 """SetMaximumSizeY(self, int max)"""
1433 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1435 def GetMaximumSizeX(*args
, **kwargs
):
1436 """GetMaximumSizeX(self) -> int"""
1437 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1439 def GetMaximumSizeY(*args
, **kwargs
):
1440 """GetMaximumSizeY(self) -> int"""
1441 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1443 def SashHitTest(*args
, **kwargs
):
1444 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1445 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1447 def SizeWindows(*args
, **kwargs
):
1448 """SizeWindows(self)"""
1449 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1451 _windows_
.SashWindow_swigregister(SashWindow
)
1452 SashNameStr
= cvar
.SashNameStr
1453 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1455 def PreSashWindow(*args
, **kwargs
):
1456 """PreSashWindow() -> SashWindow"""
1457 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1460 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1461 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1462 class SashEvent(_core
.CommandEvent
):
1463 """Proxy of C++ SashEvent class"""
1464 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1465 __repr__
= _swig_repr
1466 def __init__(self
, *args
, **kwargs
):
1467 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1468 _windows_
.SashEvent_swiginit(self
,_windows_
.new_SashEvent(*args
, **kwargs
))
1469 def SetEdge(*args
, **kwargs
):
1470 """SetEdge(self, int edge)"""
1471 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1473 def GetEdge(*args
, **kwargs
):
1474 """GetEdge(self) -> int"""
1475 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1477 def SetDragRect(*args
, **kwargs
):
1478 """SetDragRect(self, Rect rect)"""
1479 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1481 def GetDragRect(*args
, **kwargs
):
1482 """GetDragRect(self) -> Rect"""
1483 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1485 def SetDragStatus(*args
, **kwargs
):
1486 """SetDragStatus(self, int status)"""
1487 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1489 def GetDragStatus(*args
, **kwargs
):
1490 """GetDragStatus(self) -> int"""
1491 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1493 _windows_
.SashEvent_swigregister(SashEvent
)
1495 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1496 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1497 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1499 #---------------------------------------------------------------------------
1501 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1502 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1503 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1504 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1505 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1506 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1507 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1508 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1509 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1510 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1511 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1512 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1513 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1514 class QueryLayoutInfoEvent(_core
.Event
):
1515 """Proxy of C++ QueryLayoutInfoEvent class"""
1516 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1517 __repr__
= _swig_repr
1518 def __init__(self
, *args
, **kwargs
):
1519 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1520 _windows_
.QueryLayoutInfoEvent_swiginit(self
,_windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
))
1521 def SetRequestedLength(*args
, **kwargs
):
1522 """SetRequestedLength(self, int length)"""
1523 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1525 def GetRequestedLength(*args
, **kwargs
):
1526 """GetRequestedLength(self) -> int"""
1527 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1529 def SetFlags(*args
, **kwargs
):
1530 """SetFlags(self, int flags)"""
1531 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1533 def GetFlags(*args
, **kwargs
):
1534 """GetFlags(self) -> int"""
1535 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1537 def SetSize(*args
, **kwargs
):
1538 """SetSize(self, Size size)"""
1539 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1541 def GetSize(*args
, **kwargs
):
1542 """GetSize(self) -> Size"""
1543 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1545 def SetOrientation(*args
, **kwargs
):
1546 """SetOrientation(self, int orient)"""
1547 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1549 def GetOrientation(*args
, **kwargs
):
1550 """GetOrientation(self) -> int"""
1551 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1553 def SetAlignment(*args
, **kwargs
):
1554 """SetAlignment(self, int align)"""
1555 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1557 def GetAlignment(*args
, **kwargs
):
1558 """GetAlignment(self) -> int"""
1559 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1561 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEvent
)
1563 class CalculateLayoutEvent(_core
.Event
):
1564 """Proxy of C++ CalculateLayoutEvent class"""
1565 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1566 __repr__
= _swig_repr
1567 def __init__(self
, *args
, **kwargs
):
1568 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1569 _windows_
.CalculateLayoutEvent_swiginit(self
,_windows_
.new_CalculateLayoutEvent(*args
, **kwargs
))
1570 def SetFlags(*args
, **kwargs
):
1571 """SetFlags(self, int flags)"""
1572 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1574 def GetFlags(*args
, **kwargs
):
1575 """GetFlags(self) -> int"""
1576 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1578 def SetRect(*args
, **kwargs
):
1579 """SetRect(self, Rect rect)"""
1580 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1582 def GetRect(*args
, **kwargs
):
1583 """GetRect(self) -> Rect"""
1584 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1586 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
1587 Rect
= property(GetRect
,SetRect
,doc
="See `GetRect` and `SetRect`")
1588 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEvent
)
1590 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1591 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1593 class SashLayoutWindow(SashWindow
):
1594 """Proxy of C++ SashLayoutWindow class"""
1595 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1596 __repr__
= _swig_repr
1597 def __init__(self
, *args
, **kwargs
):
1599 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1600 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1601 String name=SashLayoutNameStr) -> SashLayoutWindow
1603 _windows_
.SashLayoutWindow_swiginit(self
,_windows_
.new_SashLayoutWindow(*args
, **kwargs
))
1604 self
._setOORInfo
(self
)
1606 def Create(*args
, **kwargs
):
1608 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1609 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1610 String name=SashLayoutNameStr) -> bool
1612 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1614 def GetAlignment(*args
, **kwargs
):
1615 """GetAlignment(self) -> int"""
1616 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1618 def GetOrientation(*args
, **kwargs
):
1619 """GetOrientation(self) -> int"""
1620 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1622 def SetAlignment(*args
, **kwargs
):
1623 """SetAlignment(self, int alignment)"""
1624 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1626 def SetDefaultSize(*args
, **kwargs
):
1627 """SetDefaultSize(self, Size size)"""
1628 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1630 def SetOrientation(*args
, **kwargs
):
1631 """SetOrientation(self, int orientation)"""
1632 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1634 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindow
)
1636 def PreSashLayoutWindow(*args
, **kwargs
):
1637 """PreSashLayoutWindow() -> SashLayoutWindow"""
1638 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1641 class LayoutAlgorithm(_core
.Object
):
1642 """Proxy of C++ LayoutAlgorithm class"""
1643 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1644 __repr__
= _swig_repr
1645 def __init__(self
, *args
, **kwargs
):
1646 """__init__(self) -> LayoutAlgorithm"""
1647 _windows_
.LayoutAlgorithm_swiginit(self
,_windows_
.new_LayoutAlgorithm(*args
, **kwargs
))
1648 __swig_destroy__
= _windows_
.delete_LayoutAlgorithm
1649 __del__
= lambda self
: None;
1650 def LayoutMDIFrame(*args
, **kwargs
):
1651 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1652 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1654 def LayoutFrame(*args
, **kwargs
):
1655 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1656 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1658 def LayoutWindow(*args
, **kwargs
):
1659 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1660 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1662 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithm
)
1664 #---------------------------------------------------------------------------
1666 class PopupWindow(_core
.Window
):
1667 """Proxy of C++ PopupWindow class"""
1668 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1669 __repr__
= _swig_repr
1670 def __init__(self
, *args
, **kwargs
):
1671 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1672 _windows_
.PopupWindow_swiginit(self
,_windows_
.new_PopupWindow(*args
, **kwargs
))
1673 self
._setOORInfo
(self
)
1675 def Create(*args
, **kwargs
):
1676 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1677 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1679 def Position(*args
, **kwargs
):
1680 """Position(self, Point ptOrigin, Size size)"""
1681 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1683 _windows_
.PopupWindow_swigregister(PopupWindow
)
1685 def PrePopupWindow(*args
, **kwargs
):
1686 """PrePopupWindow() -> PopupWindow"""
1687 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1690 #---------------------------------------------------------------------------
1692 class PopupTransientWindow(PopupWindow
):
1693 """Proxy of C++ PopupTransientWindow class"""
1694 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1695 __repr__
= _swig_repr
1696 def __init__(self
, *args
, **kwargs
):
1697 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1698 _windows_
.PopupTransientWindow_swiginit(self
,_windows_
.new_PopupTransientWindow(*args
, **kwargs
))
1699 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1701 def _setCallbackInfo(*args
, **kwargs
):
1702 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1703 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1705 def Popup(*args
, **kwargs
):
1706 """Popup(self, Window focus=None)"""
1707 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1709 def Dismiss(*args
, **kwargs
):
1711 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1713 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindow
)
1715 def PrePopupTransientWindow(*args
, **kwargs
):
1716 """PrePopupTransientWindow() -> PopupTransientWindow"""
1717 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1720 #---------------------------------------------------------------------------
1722 class TipWindow(PopupTransientWindow
):
1723 """Proxy of C++ TipWindow class"""
1724 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1725 __repr__
= _swig_repr
1726 def __init__(self
, *args
, **kwargs
):
1727 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1728 _windows_
.TipWindow_swiginit(self
,_windows_
.new_TipWindow(*args
, **kwargs
))
1729 self
._setOORInfo
(self
)
1731 def SetBoundingRect(*args
, **kwargs
):
1732 """SetBoundingRect(self, Rect rectBound)"""
1733 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1735 def Close(*args
, **kwargs
):
1739 This function simply generates a EVT_CLOSE event whose handler usually
1740 tries to close the window. It doesn't close the window itself,
1741 however. If force is False (the default) then the window's close
1742 handler will be allowed to veto the destruction of the window.
1744 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1746 _windows_
.TipWindow_swigregister(TipWindow
)
1748 #---------------------------------------------------------------------------
1750 class VScrolledWindow(Panel
):
1751 """Proxy of C++ VScrolledWindow class"""
1752 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1753 __repr__
= _swig_repr
1754 def __init__(self
, *args
, **kwargs
):
1756 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1757 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1759 _windows_
.VScrolledWindow_swiginit(self
,_windows_
.new_VScrolledWindow(*args
, **kwargs
))
1760 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1762 def _setCallbackInfo(*args
, **kwargs
):
1763 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1764 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1766 def Create(*args
, **kwargs
):
1768 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1769 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1771 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1773 def SetLineCount(*args
, **kwargs
):
1774 """SetLineCount(self, size_t count)"""
1775 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1777 def ScrollToLine(*args
, **kwargs
):
1778 """ScrollToLine(self, size_t line) -> bool"""
1779 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1781 def RefreshLine(*args
, **kwargs
):
1782 """RefreshLine(self, size_t line)"""
1783 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1785 def RefreshLines(*args
, **kwargs
):
1786 """RefreshLines(self, size_t from, size_t to)"""
1787 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1789 def HitTestXY(*args
, **kwargs
):
1791 HitTestXY(self, int x, int y) -> int
1793 Test where the given (in client coords) point lies
1795 return _windows_
.VScrolledWindow_HitTestXY(*args
, **kwargs
)
1797 def HitTest(*args
, **kwargs
):
1799 HitTest(self, Point pt) -> int
1801 Test where the given (in client coords) point lies
1803 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1805 def RefreshAll(*args
, **kwargs
):
1806 """RefreshAll(self)"""
1807 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1809 def GetLineCount(*args
, **kwargs
):
1810 """GetLineCount(self) -> size_t"""
1811 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1813 def GetVisibleBegin(*args
, **kwargs
):
1814 """GetVisibleBegin(self) -> size_t"""
1815 return _windows_
.VScrolledWindow_GetVisibleBegin(*args
, **kwargs
)
1817 def GetVisibleEnd(*args
, **kwargs
):
1818 """GetVisibleEnd(self) -> size_t"""
1819 return _windows_
.VScrolledWindow_GetVisibleEnd(*args
, **kwargs
)
1821 def IsVisible(*args
, **kwargs
):
1822 """IsVisible(self, size_t line) -> bool"""
1823 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1825 def GetFirstVisibleLine(*args
, **kwargs
):
1826 """GetFirstVisibleLine(self) -> size_t"""
1827 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1829 def GetLastVisibleLine(*args
, **kwargs
):
1830 """GetLastVisibleLine(self) -> size_t"""
1831 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1833 def FindFirstFromBottom(*args
, **kwargs
):
1834 """FindFirstFromBottom(self, size_t lineLast, bool fullyVisible=False) -> size_t"""
1835 return _windows_
.VScrolledWindow_FindFirstFromBottom(*args
, **kwargs
)
1837 def GetLinesHeight(*args
, **kwargs
):
1838 """GetLinesHeight(self, size_t lineMin, size_t lineMax) -> int"""
1839 return _windows_
.VScrolledWindow_GetLinesHeight(*args
, **kwargs
)
1841 _windows_
.VScrolledWindow_swigregister(VScrolledWindow
)
1843 def PreVScrolledWindow(*args
, **kwargs
):
1844 """PreVScrolledWindow() -> VScrolledWindow"""
1845 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1848 class VListBox(VScrolledWindow
):
1849 """Proxy of C++ VListBox class"""
1850 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1851 __repr__
= _swig_repr
1852 def __init__(self
, *args
, **kwargs
):
1854 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1855 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1857 _windows_
.VListBox_swiginit(self
,_windows_
.new_VListBox(*args
, **kwargs
))
1858 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1860 def _setCallbackInfo(*args
, **kwargs
):
1861 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1862 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1864 def Create(*args
, **kwargs
):
1866 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1867 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1869 return _windows_
.VListBox_Create(*args
, **kwargs
)
1871 def GetItemCount(*args
, **kwargs
):
1872 """GetItemCount(self) -> size_t"""
1873 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1875 def HasMultipleSelection(*args
, **kwargs
):
1876 """HasMultipleSelection(self) -> bool"""
1877 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1879 def GetSelection(*args
, **kwargs
):
1880 """GetSelection(self) -> int"""
1881 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1883 def IsCurrent(*args
, **kwargs
):
1884 """IsCurrent(self, size_t item) -> bool"""
1885 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1887 def IsSelected(*args
, **kwargs
):
1888 """IsSelected(self, size_t item) -> bool"""
1889 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1891 def GetSelectedCount(*args
, **kwargs
):
1892 """GetSelectedCount(self) -> size_t"""
1893 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1895 def GetFirstSelected(*args
, **kwargs
):
1896 """GetFirstSelected(self) -> PyObject"""
1897 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1899 def GetNextSelected(*args
, **kwargs
):
1900 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1901 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1903 def GetMargins(*args
, **kwargs
):
1904 """GetMargins(self) -> Point"""
1905 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1907 def GetSelectionBackground(*args
, **kwargs
):
1908 """GetSelectionBackground(self) -> Colour"""
1909 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1911 def SetItemCount(*args
, **kwargs
):
1912 """SetItemCount(self, size_t count)"""
1913 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1915 def Clear(*args
, **kwargs
):
1917 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1919 def SetSelection(*args
, **kwargs
):
1920 """SetSelection(self, int selection)"""
1921 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1923 def Select(*args
, **kwargs
):
1924 """Select(self, size_t item, bool select=True) -> bool"""
1925 return _windows_
.VListBox_Select(*args
, **kwargs
)
1927 def SelectRange(*args
, **kwargs
):
1928 """SelectRange(self, size_t from, size_t to) -> bool"""
1929 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1931 def Toggle(*args
, **kwargs
):
1932 """Toggle(self, size_t item)"""
1933 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1935 def SelectAll(*args
, **kwargs
):
1936 """SelectAll(self) -> bool"""
1937 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1939 def DeselectAll(*args
, **kwargs
):
1940 """DeselectAll(self) -> bool"""
1941 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1943 def SetMargins(*args
, **kwargs
):
1944 """SetMargins(self, Point pt)"""
1945 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1947 def SetMarginsXY(*args
, **kwargs
):
1948 """SetMarginsXY(self, int x, int y)"""
1949 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1951 def SetSelectionBackground(*args
, **kwargs
):
1952 """SetSelectionBackground(self, Colour col)"""
1953 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1955 def OnDrawSeparator(*args
, **kwargs
):
1956 """OnDrawSeparator(self, DC dc, Rect rect, size_t n)"""
1957 return _windows_
.VListBox_OnDrawSeparator(*args
, **kwargs
)
1959 def OnDrawBackground(*args
, **kwargs
):
1960 """OnDrawBackground(self, DC dc, Rect rect, size_t n)"""
1961 return _windows_
.VListBox_OnDrawBackground(*args
, **kwargs
)
1963 _windows_
.VListBox_swigregister(VListBox
)
1964 VListBoxNameStr
= cvar
.VListBoxNameStr
1966 def PreVListBox(*args
, **kwargs
):
1967 """PreVListBox() -> VListBox"""
1968 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1971 class HtmlListBox(VListBox
):
1972 """Proxy of C++ HtmlListBox class"""
1973 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
1974 __repr__
= _swig_repr
1975 def __init__(self
, *args
, **kwargs
):
1977 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1978 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1980 _windows_
.HtmlListBox_swiginit(self
,_windows_
.new_HtmlListBox(*args
, **kwargs
))
1981 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1983 def _setCallbackInfo(*args
, **kwargs
):
1984 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1985 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1987 def Create(*args
, **kwargs
):
1989 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1990 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1992 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1994 def SetItemCount(*args
, **kwargs
):
1995 """SetItemCount(self, size_t count)"""
1996 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1998 def GetFileSystem(*args
, **kwargs
):
1999 """GetFileSystem(self) -> FileSystem"""
2000 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
2002 def OnLinkClicked(*args
, **kwargs
):
2003 """OnLinkClicked(self, size_t n, wxHtmlLinkInfo link)"""
2004 return _windows_
.HtmlListBox_OnLinkClicked(*args
, **kwargs
)
2006 FileSystem
= property(GetFileSystem
,doc
="See `GetFileSystem`")
2007 _windows_
.HtmlListBox_swigregister(HtmlListBox
)
2009 def PreHtmlListBox(*args
, **kwargs
):
2010 """PreHtmlListBox() -> HtmlListBox"""
2011 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
2014 #---------------------------------------------------------------------------
2016 class TaskBarIcon(_core
.EvtHandler
):
2017 """Proxy of C++ TaskBarIcon class"""
2018 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2019 __repr__
= _swig_repr
2020 def __init__(self
, *args
, **kwargs
):
2021 """__init__(self) -> TaskBarIcon"""
2022 _windows_
.TaskBarIcon_swiginit(self
,_windows_
.new_TaskBarIcon(*args
, **kwargs
))
2023 self
._setCallbackInfo
(self
, TaskBarIcon
, 0)
2025 __swig_destroy__
= _windows_
.delete_TaskBarIcon
2026 __del__
= lambda self
: None;
2027 def _setCallbackInfo(*args
, **kwargs
):
2028 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
2029 return _windows_
.TaskBarIcon__setCallbackInfo(*args
, **kwargs
)
2031 def Destroy(*args
, **kwargs
):
2035 Deletes the C++ object this Python object is a proxy for.
2037 val
= _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2041 def IsOk(*args
, **kwargs
):
2042 """IsOk(self) -> bool"""
2043 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
2045 def __nonzero__(self
): return self
.IsOk()
2046 def IsIconInstalled(*args
, **kwargs
):
2047 """IsIconInstalled(self) -> bool"""
2048 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
2050 def SetIcon(*args
, **kwargs
):
2051 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2052 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2054 def RemoveIcon(*args
, **kwargs
):
2055 """RemoveIcon(self) -> bool"""
2056 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2058 def PopupMenu(*args
, **kwargs
):
2059 """PopupMenu(self, Menu menu) -> bool"""
2060 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2062 _windows_
.TaskBarIcon_swigregister(TaskBarIcon
)
2064 class TaskBarIconEvent(_core
.Event
):
2065 """Proxy of C++ TaskBarIconEvent class"""
2066 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2067 __repr__
= _swig_repr
2068 def __init__(self
, *args
, **kwargs
):
2069 """__init__(self, EventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
2070 _windows_
.TaskBarIconEvent_swiginit(self
,_windows_
.new_TaskBarIconEvent(*args
, **kwargs
))
2071 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEvent
)
2073 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2074 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2075 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2076 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2077 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2078 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2079 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2080 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2081 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2082 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2083 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2084 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2085 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2086 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2088 #---------------------------------------------------------------------------
2090 class ColourData(_core
.Object
):
2092 This class holds a variety of information related to the colour
2093 chooser dialog, used to transfer settings and results to and from the
2096 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2097 __repr__
= _swig_repr
2098 def __init__(self
, *args
, **kwargs
):
2100 __init__(self) -> ColourData
2102 Constructor, sets default values.
2104 _windows_
.ColourData_swiginit(self
,_windows_
.new_ColourData(*args
, **kwargs
))
2105 __swig_destroy__
= _windows_
.delete_ColourData
2106 __del__
= lambda self
: None;
2107 def GetChooseFull(*args
, **kwargs
):
2109 GetChooseFull(self) -> bool
2111 Under Windows, determines whether the Windows colour dialog will
2112 display the full dialog with custom colour selection controls. Has no
2113 meaning under other platforms. The default value is true.
2115 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2117 def GetColour(*args
, **kwargs
):
2119 GetColour(self) -> Colour
2121 Gets the colour (pre)selected by the dialog.
2123 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2125 def GetCustomColour(*args
, **kwargs
):
2127 GetCustomColour(self, int i) -> Colour
2129 Gets the i'th custom colour associated with the colour dialog. i
2130 should be an integer between 0 and 15. The default custom colours are
2131 all invalid colours.
2133 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2135 def SetChooseFull(*args
, **kwargs
):
2137 SetChooseFull(self, int flag)
2139 Under Windows, tells the Windows colour dialog to display the full
2140 dialog with custom colour selection controls. Under other platforms,
2141 has no effect. The default value is true.
2143 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2145 def SetColour(*args
, **kwargs
):
2147 SetColour(self, Colour colour)
2149 Sets the default colour for the colour dialog. The default colour is
2152 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2154 def SetCustomColour(*args
, **kwargs
):
2156 SetCustomColour(self, int i, Colour colour)
2158 Sets the i'th custom colour for the colour dialog. i should be an
2159 integer between 0 and 15. The default custom colours are all invalid colours.
2161 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2163 ChooseFull
= property(GetChooseFull
,SetChooseFull
,doc
="See `GetChooseFull` and `SetChooseFull`")
2164 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
2165 CustomColour
= property(GetCustomColour
,SetCustomColour
,doc
="See `GetCustomColour` and `SetCustomColour`")
2166 _windows_
.ColourData_swigregister(ColourData
)
2167 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2168 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2169 DirDialogNameStr
= cvar
.DirDialogNameStr
2170 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2171 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2172 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2174 class ColourDialog(Dialog
):
2175 """This class represents the colour chooser dialog."""
2176 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2177 __repr__
= _swig_repr
2178 def __init__(self
, *args
, **kwargs
):
2180 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2182 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2183 which will be copied to the colour dialog's internal ColourData
2186 _windows_
.ColourDialog_swiginit(self
,_windows_
.new_ColourDialog(*args
, **kwargs
))
2187 self
._setOORInfo
(self
)
2189 def GetColourData(*args
, **kwargs
):
2191 GetColourData(self) -> ColourData
2193 Returns a reference to the `wx.ColourData` used by the dialog.
2195 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2197 ColourData
= property(GetColourData
,doc
="See `GetColourData`")
2198 _windows_
.ColourDialog_swigregister(ColourDialog
)
2201 def GetColourFromUser(*args
, **kwargs
):
2203 GetColourFromUser(Window parent=(wxWindow *) NULL, Colour colInit=wxNullColour,
2204 String caption=EmptyString) -> Colour
2206 return _windows_
.GetColourFromUser(*args
, **kwargs
)
2207 DD_NEW_DIR_BUTTON
= _windows_
.DD_NEW_DIR_BUTTON
2208 DD_DEFAULT_STYLE
= _windows_
.DD_DEFAULT_STYLE
2209 DD_CHANGE_DIR
= _windows_
.DD_CHANGE_DIR
2210 class DirDialog(Dialog
):
2212 wx.DirDialog allows the user to select a directory by browising the
2215 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2216 __repr__
= _swig_repr
2217 def __init__(self
, *args
, **kwargs
):
2219 __init__(self, Window parent, String message=DirSelectorPromptStr,
2220 String defaultPath=EmptyString, long style=DD_DEFAULT_STYLE,
2221 Point pos=DefaultPosition, Size size=DefaultSize,
2222 String name=DirDialogNameStr) -> DirDialog
2224 Constructor. Use ShowModal method to show the dialog.
2226 _windows_
.DirDialog_swiginit(self
,_windows_
.new_DirDialog(*args
, **kwargs
))
2227 self
._setOORInfo
(self
)
2229 def GetPath(*args
, **kwargs
):
2231 GetPath(self) -> String
2233 Returns the default or user-selected path.
2235 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2237 def GetMessage(*args
, **kwargs
):
2239 GetMessage(self) -> String
2241 Returns the message that will be displayed on the dialog.
2243 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2245 def SetMessage(*args
, **kwargs
):
2247 SetMessage(self, String message)
2249 Sets the message that will be displayed on the dialog.
2251 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2253 def SetPath(*args
, **kwargs
):
2255 SetPath(self, String path)
2257 Sets the default path.
2259 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2261 Message
= property(GetMessage
,SetMessage
,doc
="See `GetMessage` and `SetMessage`")
2262 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
2263 _windows_
.DirDialog_swigregister(DirDialog
)
2265 OPEN
= _windows_
.OPEN
2266 SAVE
= _windows_
.SAVE
2267 OVERWRITE_PROMPT
= _windows_
.OVERWRITE_PROMPT
2268 FILE_MUST_EXIST
= _windows_
.FILE_MUST_EXIST
2269 MULTIPLE
= _windows_
.MULTIPLE
2270 CHANGE_DIR
= _windows_
.CHANGE_DIR
2271 HIDE_READONLY
= _windows_
.HIDE_READONLY
2272 FD_OPEN
= _windows_
.FD_OPEN
2273 FD_SAVE
= _windows_
.FD_SAVE
2274 FD_OVERWRITE_PROMPT
= _windows_
.FD_OVERWRITE_PROMPT
2275 FD_FILE_MUST_EXIST
= _windows_
.FD_FILE_MUST_EXIST
2276 FD_MULTIPLE
= _windows_
.FD_MULTIPLE
2277 FD_CHANGE_DIR
= _windows_
.FD_CHANGE_DIR
2278 FD_PREVIEW
= _windows_
.FD_PREVIEW
2279 FD_DEFAULT_STYLE
= _windows_
.FD_DEFAULT_STYLE
2280 class FileDialog(Dialog
):
2282 wx.FileDialog allows the user to select one or more files from the
2285 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2286 __repr__
= _swig_repr
2287 def __init__(self
, *args
, **kwargs
):
2289 __init__(self, Window parent, String message=FileSelectorPromptStr,
2290 String defaultDir=EmptyString, String defaultFile=EmptyString,
2291 String wildcard=FileSelectorDefaultWildcardStr,
2292 long style=FD_DEFAULT_STYLE,
2293 Point pos=DefaultPosition) -> FileDialog
2295 Constructor. Use ShowModal method to show the dialog.
2297 _windows_
.FileDialog_swiginit(self
,_windows_
.new_FileDialog(*args
, **kwargs
))
2298 self
._setOORInfo
(self
)
2300 def SetMessage(*args
, **kwargs
):
2302 SetMessage(self, String message)
2304 Sets the message that will be displayed on the dialog.
2306 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2308 def SetPath(*args
, **kwargs
):
2310 SetPath(self, String path)
2312 Sets the path (the combined directory and filename that will be
2313 returned when the dialog is dismissed).
2315 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2317 def SetDirectory(*args
, **kwargs
):
2319 SetDirectory(self, String dir)
2321 Sets the default directory.
2323 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2325 def SetFilename(*args
, **kwargs
):
2327 SetFilename(self, String name)
2329 Sets the default filename.
2331 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2333 def SetWildcard(*args
, **kwargs
):
2335 SetWildcard(self, String wildCard)
2337 Sets the wildcard, which can contain multiple file types, for
2340 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2343 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2345 def SetFilterIndex(*args
, **kwargs
):
2347 SetFilterIndex(self, int filterIndex)
2349 Sets the default filter index, starting from zero.
2351 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2353 def GetMessage(*args
, **kwargs
):
2355 GetMessage(self) -> String
2357 Returns the message that will be displayed on the dialog.
2359 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2361 def GetPath(*args
, **kwargs
):
2363 GetPath(self) -> String
2365 Returns the full path (directory and filename) of the selected file.
2367 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2369 def GetDirectory(*args
, **kwargs
):
2371 GetDirectory(self) -> String
2373 Returns the default directory.
2375 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2377 def GetFilename(*args
, **kwargs
):
2379 GetFilename(self) -> String
2381 Returns the default filename.
2383 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2385 def GetWildcard(*args
, **kwargs
):
2387 GetWildcard(self) -> String
2389 Returns the file dialog wildcard.
2391 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2393 def GetFilterIndex(*args
, **kwargs
):
2395 GetFilterIndex(self) -> int
2397 Returns the index into the list of filters supplied, optionally, in
2398 the wildcard parameter. Before the dialog is shown, this is the index
2399 which will be used when the dialog is first displayed. After the
2400 dialog is shown, this is the index selected by the user.
2402 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2404 def GetFilenames(*args
, **kwargs
):
2406 GetFilenames(self) -> PyObject
2408 Returns a list of filenames chosen in the dialog. This function
2409 should only be used with the dialogs which have wx.MULTIPLE style, use
2410 GetFilename for the others.
2412 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2414 def GetPaths(*args
, **kwargs
):
2416 GetPaths(self) -> PyObject
2418 Fills the array paths with the full paths of the files chosen. This
2419 function should only be used with the dialogs which have wx.MULTIPLE
2420 style, use GetPath for the others.
2422 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2424 Directory
= property(GetDirectory
,SetDirectory
,doc
="See `GetDirectory` and `SetDirectory`")
2425 Filename
= property(GetFilename
,SetFilename
,doc
="See `GetFilename` and `SetFilename`")
2426 Filenames
= property(GetFilenames
,doc
="See `GetFilenames`")
2427 FilterIndex
= property(GetFilterIndex
,SetFilterIndex
,doc
="See `GetFilterIndex` and `SetFilterIndex`")
2428 Message
= property(GetMessage
,SetMessage
,doc
="See `GetMessage` and `SetMessage`")
2429 Path
= property(GetPath
,SetPath
,doc
="See `GetPath` and `SetPath`")
2430 Paths
= property(GetPaths
,doc
="See `GetPaths`")
2431 Wildcard
= property(GetWildcard
,SetWildcard
,doc
="See `GetWildcard` and `SetWildcard`")
2432 _windows_
.FileDialog_swigregister(FileDialog
)
2434 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2435 class MultiChoiceDialog(Dialog
):
2436 """A simple dialog with a multi selection listbox."""
2437 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2438 __repr__
= _swig_repr
2439 def __init__(self
, *args
, **kwargs
):
2441 __init__(self, Window parent, String message, String caption,
2442 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2443 Point pos=DefaultPosition) -> MultiChoiceDialog
2445 Constructor. Use the `ShowModal` method to show the dialog.
2447 :param parent: The parent window.
2448 :param message: Text to display above the list of selections.
2449 :param caption: Text to use in the title bar of the dialog.
2450 :param choices: A list of strings or unicode objects that the
2451 user is allowed to choose from.
2452 :param style: Styles to apply to the dialog. The default value is
2453 equivallent to wx.DEFAULT_DIALOG_STYLE|wx.RESIZE_BORDER|wx.OK|wx.CANCEL|wx.CENTER.
2454 :param pos: Where to position the dialog (not used on Windows)
2458 _windows_
.MultiChoiceDialog_swiginit(self
,_windows_
.new_MultiChoiceDialog(*args
, **kwargs
))
2459 self
._setOORInfo
(self
)
2461 def SetSelections(*args
, **kwargs
):
2463 SetSelections(List selections)
2465 Specify the items in the list that should be selected, using a list of
2466 integers. The list should specify the indexes of the items that
2469 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2471 def GetSelections(*args
, **kwargs
):
2473 GetSelections() -> [selections]
2475 Returns a list of integers representing the items that are selected.
2476 If an item is selected then its index will appear in the list.
2478 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2480 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialog
)
2482 class SingleChoiceDialog(Dialog
):
2483 """A simple dialog with a single selection listbox."""
2484 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2485 __repr__
= _swig_repr
2486 def __init__(self
, *args
, **kwargs
):
2488 __init__(Window parent, String message, String caption,
2489 List choices=EmptyList, long style=CHOICEDLG_STYLE,
2490 Point pos=DefaultPosition) -> SingleChoiceDialog
2492 Constructor. Use ShowModal method to show the dialog.
2494 _windows_
.SingleChoiceDialog_swiginit(self
,_windows_
.new_SingleChoiceDialog(*args
, **kwargs
))
2495 self
._setOORInfo
(self
)
2497 def GetSelection(*args
, **kwargs
):
2499 GetSelection(self) -> int
2501 Get the index of the currently selected item.
2503 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2505 def GetStringSelection(*args
, **kwargs
):
2507 GetStringSelection(self) -> String
2509 Returns the string value of the currently selected item
2511 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2513 def SetSelection(*args
, **kwargs
):
2515 SetSelection(self, int sel)
2517 Set the current selected item to sel
2519 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2521 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialog
)
2523 TextEntryDialogStyle
= _windows_
.TextEntryDialogStyle
2524 class TextEntryDialog(Dialog
):
2525 """A dialog with text control, [ok] and [cancel] buttons"""
2526 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2527 __repr__
= _swig_repr
2528 def __init__(self
, *args
, **kwargs
):
2530 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2531 String defaultValue=EmptyString,
2532 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
2534 Constructor. Use ShowModal method to show the dialog.
2536 _windows_
.TextEntryDialog_swiginit(self
,_windows_
.new_TextEntryDialog(*args
, **kwargs
))
2537 self
._setOORInfo
(self
)
2539 def GetValue(*args
, **kwargs
):
2541 GetValue(self) -> String
2543 Returns the text that the user has entered if the user has pressed OK,
2544 or the original value if the user has pressed Cancel.
2546 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2548 def SetValue(*args
, **kwargs
):
2550 SetValue(self, String value)
2552 Sets the default text value.
2554 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2556 _windows_
.TextEntryDialog_swigregister(TextEntryDialog
)
2558 class PasswordEntryDialog(TextEntryDialog
):
2559 """Proxy of C++ PasswordEntryDialog class"""
2560 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2561 __repr__
= _swig_repr
2562 def __init__(self
, *args
, **kwargs
):
2564 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2565 String value=EmptyString,
2566 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
2568 _windows_
.PasswordEntryDialog_swiginit(self
,_windows_
.new_PasswordEntryDialog(*args
, **kwargs
))
2569 _windows_
.PasswordEntryDialog_swigregister(PasswordEntryDialog
)
2570 GetPasswordFromUserPromptStr
= cvar
.GetPasswordFromUserPromptStr
2572 class NumberEntryDialog(Dialog
):
2573 """A dialog with spin control, ok and cancel buttons."""
2574 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2575 __repr__
= _swig_repr
2576 def __init__(self
, *args
, **kwargs
):
2578 __init__(self, Window parent, String message, String prompt, String caption,
2579 long value, long min, long max, Point pos=DefaultPosition) -> NumberEntryDialog
2581 Constructor. Use ShowModal method to show the dialog.
2583 _windows_
.NumberEntryDialog_swiginit(self
,_windows_
.new_NumberEntryDialog(*args
, **kwargs
))
2584 self
._setOORInfo
(self
)
2586 def GetValue(*args
, **kwargs
):
2587 """GetValue(self) -> long"""
2588 return _windows_
.NumberEntryDialog_GetValue(*args
, **kwargs
)
2590 _windows_
.NumberEntryDialog_swigregister(NumberEntryDialog
)
2592 class FontData(_core
.Object
):
2594 This class holds a variety of information related to font dialogs and
2595 is used to transfer settings to and results from a `wx.FontDialog`.
2597 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2598 __repr__
= _swig_repr
2599 def __init__(self
, *args
, **kwargs
):
2601 __init__(self) -> FontData
2603 This class holds a variety of information related to font dialogs and
2604 is used to transfer settings to and results from a `wx.FontDialog`.
2606 _windows_
.FontData_swiginit(self
,_windows_
.new_FontData(*args
, **kwargs
))
2607 __swig_destroy__
= _windows_
.delete_FontData
2608 __del__
= lambda self
: None;
2609 def EnableEffects(*args
, **kwargs
):
2611 EnableEffects(self, bool enable)
2613 Enables or disables 'effects' under MS Windows only. This refers to
2614 the controls for manipulating colour, strikeout and underline
2615 properties. The default value is true.
2617 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2619 def GetAllowSymbols(*args
, **kwargs
):
2621 GetAllowSymbols(self) -> bool
2623 Under MS Windows, returns a flag determining whether symbol fonts can
2624 be selected. Has no effect on other platforms. The default value is
2627 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2629 def GetColour(*args
, **kwargs
):
2631 GetColour(self) -> Colour
2633 Gets the colour associated with the font dialog. The default value is
2636 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2638 def GetChosenFont(*args
, **kwargs
):
2640 GetChosenFont(self) -> Font
2642 Gets the font chosen by the user.
2644 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2646 def GetEnableEffects(*args
, **kwargs
):
2648 GetEnableEffects(self) -> bool
2650 Determines whether 'effects' are enabled under Windows.
2652 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2654 def GetInitialFont(*args
, **kwargs
):
2656 GetInitialFont(self) -> Font
2658 Gets the font that will be initially used by the font dialog. This
2659 should have previously been set by the application.
2661 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2663 def GetShowHelp(*args
, **kwargs
):
2665 GetShowHelp(self) -> bool
2667 Returns true if the Help button will be shown (Windows only). The
2668 default value is false.
2670 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2672 def SetAllowSymbols(*args
, **kwargs
):
2674 SetAllowSymbols(self, bool allowSymbols)
2676 Under MS Windows, determines whether symbol fonts can be selected. Has
2677 no effect on other platforms. The default value is true.
2679 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2681 def SetChosenFont(*args
, **kwargs
):
2683 SetChosenFont(self, Font font)
2685 Sets the font that will be returned to the user (normally for internal
2688 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2690 def SetColour(*args
, **kwargs
):
2692 SetColour(self, Colour colour)
2694 Sets the colour that will be used for the font foreground colour. The
2695 default colour is black.
2697 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2699 def SetInitialFont(*args
, **kwargs
):
2701 SetInitialFont(self, Font font)
2703 Sets the font that will be initially used by the font dialog.
2705 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2707 def SetRange(*args
, **kwargs
):
2709 SetRange(self, int min, int max)
2711 Sets the valid range for the font point size (Windows only). The
2712 default is 0, 0 (unrestricted range).
2714 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2716 def SetShowHelp(*args
, **kwargs
):
2718 SetShowHelp(self, bool showHelp)
2720 Determines whether the Help button will be displayed in the font
2721 dialog (Windows only). The default value is false.
2723 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2725 AllowSymbols
= property(GetAllowSymbols
,SetAllowSymbols
,doc
="See `GetAllowSymbols` and `SetAllowSymbols`")
2726 ChosenFont
= property(GetChosenFont
,SetChosenFont
,doc
="See `GetChosenFont` and `SetChosenFont`")
2727 Colour
= property(GetColour
,SetColour
,doc
="See `GetColour` and `SetColour`")
2728 EnableEffects
= property(GetEnableEffects
,doc
="See `GetEnableEffects`")
2729 InitialFont
= property(GetInitialFont
,SetInitialFont
,doc
="See `GetInitialFont` and `SetInitialFont`")
2730 ShowHelp
= property(GetShowHelp
,SetShowHelp
,doc
="See `GetShowHelp` and `SetShowHelp`")
2731 _windows_
.FontData_swigregister(FontData
)
2733 class FontDialog(Dialog
):
2735 wx.FontDialog allows the user to select a system font and its attributes.
2740 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2741 __repr__
= _swig_repr
2742 def __init__(self
, *args
, **kwargs
):
2744 __init__(self, Window parent, FontData data) -> FontDialog
2746 Constructor. Pass a parent window and the `wx.FontData` object to be
2747 used to initialize the dialog controls. Call `ShowModal` to display
2748 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2749 results with via the `wx.FontData` returned by `GetFontData`.
2751 _windows_
.FontDialog_swiginit(self
,_windows_
.new_FontDialog(*args
, **kwargs
))
2752 self
._setOORInfo
(self
)
2754 def GetFontData(*args
, **kwargs
):
2756 GetFontData(self) -> FontData
2758 Returns a reference to the internal `wx.FontData` used by the
2761 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2763 FontData
= property(GetFontData
,doc
="See `GetFontData`")
2764 _windows_
.FontDialog_swigregister(FontDialog
)
2767 def GetFontFromUser(*args
, **kwargs
):
2768 """GetFontFromUser(Window parent=None, Font fontInit=wxNullFont, String caption=EmptyString) -> Font"""
2769 return _windows_
.GetFontFromUser(*args
, **kwargs
)
2770 class MessageDialog(Dialog
):
2772 This class provides a simple dialog that shows a single or multi-line
2773 message, with a choice of OK, Yes, No and/or Cancel buttons.
2775 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2776 __repr__
= _swig_repr
2777 def __init__(self
, *args
, **kwargs
):
2779 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2780 long style=wxOK|wxCANCEL|wxCENTRE,
2781 Point pos=DefaultPosition) -> MessageDialog
2783 Constructor, use `ShowModal` to display the dialog.
2785 _windows_
.MessageDialog_swiginit(self
,_windows_
.new_MessageDialog(*args
, **kwargs
))
2786 self
._setOORInfo
(self
)
2788 _windows_
.MessageDialog_swigregister(MessageDialog
)
2790 class ProgressDialog(Frame
):
2792 A dialog that shows a short message and a progress bar. Optionally, it
2793 can display an ABORT button.
2795 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2796 __repr__
= _swig_repr
2797 def __init__(self
, *args
, **kwargs
):
2799 __init__(self, String title, String message, int maximum=100, Window parent=None,
2800 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2802 Constructor. Creates the dialog, displays it and disables user input
2803 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2806 _windows_
.ProgressDialog_swiginit(self
,_windows_
.new_ProgressDialog(*args
, **kwargs
))
2807 self
._setOORInfo
(self
)
2809 def Update(*args
, **kwargs
):
2811 Update(self, int value, String newmsg) --> (continue, skip)
2813 Updates the dialog, setting the progress bar to the new value and, if
2814 given changes the message above it. The value given should be less
2815 than or equal to the maximum value given to the constructor and the
2816 dialog is closed if it is equal to the maximum. Returns a tuple of
2817 boolean values, ``(continue, skip)`` where ``continue`` is ``True``
2818 unless the Cancel button has been pressed, and ``skip`` is ``False``
2819 unless the Skip button (if any) has been pressed.
2821 If the ``continue`` return value is ``false``, the application can either
2822 immediately destroy the dialog or ask the user for confirmation, and if the
2823 abort is not confirmed the dialog may be resumed with `Resume` function.
2826 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2828 def Resume(*args
, **kwargs
):
2832 Can be used to continue with the dialog, after the user had chosen to
2835 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2837 _windows_
.ProgressDialog_swigregister(ProgressDialog
)
2839 FR_DOWN
= _windows_
.FR_DOWN
2840 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2841 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2842 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2843 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2844 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2845 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2846 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2847 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2848 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2849 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2850 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2851 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2852 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2853 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2854 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2855 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2857 # For backwards compatibility. Should they be removed?
2858 EVT_COMMAND_FIND
= EVT_FIND
2859 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2860 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2861 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2862 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2864 class FindDialogEvent(_core
.CommandEvent
):
2865 """Events for the FindReplaceDialog"""
2866 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2867 __repr__
= _swig_repr
2868 def __init__(self
, *args
, **kwargs
):
2870 __init__(self, EventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2872 Events for the FindReplaceDialog
2874 _windows_
.FindDialogEvent_swiginit(self
,_windows_
.new_FindDialogEvent(*args
, **kwargs
))
2875 def GetFlags(*args
, **kwargs
):
2877 GetFlags(self) -> int
2879 Get the currently selected flags: this is the combination of
2880 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2882 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2884 def GetFindString(*args
, **kwargs
):
2886 GetFindString(self) -> String
2888 Return the string to find (never empty).
2890 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2892 def GetReplaceString(*args
, **kwargs
):
2894 GetReplaceString(self) -> String
2896 Return the string to replace the search string with (only for replace
2897 and replace all events).
2899 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2901 def GetDialog(*args
, **kwargs
):
2903 GetDialog(self) -> FindReplaceDialog
2905 Return the pointer to the dialog which generated this event.
2907 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2909 def SetFlags(*args
, **kwargs
):
2910 """SetFlags(self, int flags)"""
2911 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2913 def SetFindString(*args
, **kwargs
):
2914 """SetFindString(self, String str)"""
2915 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2917 def SetReplaceString(*args
, **kwargs
):
2918 """SetReplaceString(self, String str)"""
2919 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2921 Dialog
= property(GetDialog
,doc
="See `GetDialog`")
2922 FindString
= property(GetFindString
,SetFindString
,doc
="See `GetFindString` and `SetFindString`")
2923 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
2924 ReplaceString
= property(GetReplaceString
,SetReplaceString
,doc
="See `GetReplaceString` and `SetReplaceString`")
2925 _windows_
.FindDialogEvent_swigregister(FindDialogEvent
)
2927 class FindReplaceData(_core
.Object
):
2929 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2930 to initialize the dialog with the default values and will keep the
2931 last values from the dialog when it is closed. It is also updated each
2932 time a `wx.FindDialogEvent` is generated so instead of using the
2933 `wx.FindDialogEvent` methods you can also directly query this object.
2935 Note that all SetXXX() methods may only be called before showing the
2936 dialog and calling them has no effect later.
2938 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
2939 __repr__
= _swig_repr
2940 def __init__(self
, *args
, **kwargs
):
2942 __init__(self, int flags=0) -> FindReplaceData
2944 Constuctor initializes the flags to default value (0).
2946 _windows_
.FindReplaceData_swiginit(self
,_windows_
.new_FindReplaceData(*args
, **kwargs
))
2947 __swig_destroy__
= _windows_
.delete_FindReplaceData
2948 __del__
= lambda self
: None;
2949 def GetFindString(*args
, **kwargs
):
2951 GetFindString(self) -> String
2953 Get the string to find.
2955 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
2957 def GetReplaceString(*args
, **kwargs
):
2959 GetReplaceString(self) -> String
2961 Get the replacement string.
2963 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2965 def GetFlags(*args
, **kwargs
):
2967 GetFlags(self) -> int
2969 Get the combination of flag values.
2971 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
2973 def SetFlags(*args
, **kwargs
):
2975 SetFlags(self, int flags)
2977 Set the flags to use to initialize the controls of the dialog.
2979 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
2981 def SetFindString(*args
, **kwargs
):
2983 SetFindString(self, String str)
2985 Set the string to find (used as initial value by the dialog).
2987 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
2989 def SetReplaceString(*args
, **kwargs
):
2991 SetReplaceString(self, String str)
2993 Set the replacement string (used as initial value by the dialog).
2995 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
2997 FindString
= property(GetFindString
,SetFindString
,doc
="See `GetFindString` and `SetFindString`")
2998 Flags
= property(GetFlags
,SetFlags
,doc
="See `GetFlags` and `SetFlags`")
2999 ReplaceString
= property(GetReplaceString
,SetReplaceString
,doc
="See `GetReplaceString` and `SetReplaceString`")
3000 _windows_
.FindReplaceData_swigregister(FindReplaceData
)
3002 class FindReplaceDialog(Dialog
):
3004 wx.FindReplaceDialog is a standard modeless dialog which is used to
3005 allow the user to search for some text (and possibly replace it with
3006 something else). The actual searching is supposed to be done in the
3007 owner window which is the parent of this dialog. Note that it means
3008 that unlike for the other standard dialogs this one must have a parent
3009 window. Also note that there is no way to use this dialog in a modal
3010 way; it is always, by design and implementation, modeless.
3012 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3013 __repr__
= _swig_repr
3014 def __init__(self
, *args
, **kwargs
):
3016 __init__(self, Window parent, FindReplaceData data, String title,
3017 int style=0) -> FindReplaceDialog
3019 Create a FindReplaceDialog. The parent and data parameters must be
3020 non-None. Use Show to display the dialog.
3022 _windows_
.FindReplaceDialog_swiginit(self
,_windows_
.new_FindReplaceDialog(*args
, **kwargs
))
3023 self
._setOORInfo
(self
)
3025 def Create(*args
, **kwargs
):
3027 Create(self, Window parent, FindReplaceData data, String title,
3028 int style=0) -> bool
3030 Create the dialog, for 2-phase create.
3032 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3034 def GetData(*args
, **kwargs
):
3036 GetData(self) -> FindReplaceData
3038 Get the FindReplaceData object used by this dialog.
3040 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3042 def SetData(*args
, **kwargs
):
3044 SetData(self, FindReplaceData data)
3046 Set the FindReplaceData object used by this dialog.
3048 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3050 Data
= property(GetData
,SetData
,doc
="See `GetData` and `SetData`")
3051 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialog
)
3053 def PreFindReplaceDialog(*args
, **kwargs
):
3055 PreFindReplaceDialog() -> FindReplaceDialog
3057 Precreate a FindReplaceDialog for 2-phase creation
3059 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3062 #---------------------------------------------------------------------------
3064 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3065 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3066 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3067 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3068 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3069 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3070 IDM_WINDOWPREV
= _windows_
.IDM_WINDOWPREV
3071 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3072 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3073 class MDIParentFrame(Frame
):
3074 """Proxy of C++ MDIParentFrame class"""
3075 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3076 __repr__
= _swig_repr
3077 def __init__(self
, *args
, **kwargs
):
3079 __init__(self, Window parent, int id=-1, String title=EmptyString,
3080 Point pos=DefaultPosition, Size size=DefaultSize,
3081 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3082 String name=FrameNameStr) -> MDIParentFrame
3084 _windows_
.MDIParentFrame_swiginit(self
,_windows_
.new_MDIParentFrame(*args
, **kwargs
))
3085 self
._setOORInfo
(self
)
3087 def Create(*args
, **kwargs
):
3089 Create(self, Window parent, int id=-1, String title=EmptyString,
3090 Point pos=DefaultPosition, Size size=DefaultSize,
3091 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3092 String name=FrameNameStr) -> bool
3094 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3096 def ActivateNext(*args
, **kwargs
):
3097 """ActivateNext(self)"""
3098 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3100 def ActivatePrevious(*args
, **kwargs
):
3101 """ActivatePrevious(self)"""
3102 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3104 def ArrangeIcons(*args
, **kwargs
):
3105 """ArrangeIcons(self)"""
3106 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3108 def Cascade(*args
, **kwargs
):
3110 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3112 def GetActiveChild(*args
, **kwargs
):
3113 """GetActiveChild(self) -> MDIChildFrame"""
3114 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3116 def GetClientWindow(*args
, **kwargs
):
3117 """GetClientWindow(self) -> MDIClientWindow"""
3118 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3120 def GetToolBar(*args
, **kwargs
):
3121 """GetToolBar(self) -> Window"""
3122 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3124 def Tile(*args
, **kwargs
):
3125 """Tile(self, int orient=HORIZONTAL)"""
3126 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3128 _windows_
.MDIParentFrame_swigregister(MDIParentFrame
)
3130 def PreMDIParentFrame(*args
, **kwargs
):
3131 """PreMDIParentFrame() -> MDIParentFrame"""
3132 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3135 class MDIChildFrame(Frame
):
3136 """Proxy of C++ MDIChildFrame class"""
3137 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3138 __repr__
= _swig_repr
3139 def __init__(self
, *args
, **kwargs
):
3141 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3142 Point pos=DefaultPosition, Size size=DefaultSize,
3143 long style=DEFAULT_FRAME_STYLE,
3144 String name=FrameNameStr) -> MDIChildFrame
3146 _windows_
.MDIChildFrame_swiginit(self
,_windows_
.new_MDIChildFrame(*args
, **kwargs
))
3147 self
._setOORInfo
(self
)
3149 def Create(*args
, **kwargs
):
3151 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3152 Point pos=DefaultPosition, Size size=DefaultSize,
3153 long style=DEFAULT_FRAME_STYLE,
3154 String name=FrameNameStr) -> bool
3156 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3158 def Activate(*args
, **kwargs
):
3159 """Activate(self)"""
3160 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3162 _windows_
.MDIChildFrame_swigregister(MDIChildFrame
)
3164 def PreMDIChildFrame(*args
, **kwargs
):
3165 """PreMDIChildFrame() -> MDIChildFrame"""
3166 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3169 class MDIClientWindow(_core
.Window
):
3170 """Proxy of C++ MDIClientWindow class"""
3171 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3172 __repr__
= _swig_repr
3173 def __init__(self
, *args
, **kwargs
):
3174 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3175 _windows_
.MDIClientWindow_swiginit(self
,_windows_
.new_MDIClientWindow(*args
, **kwargs
))
3176 self
._setOORInfo
(self
)
3178 def Create(*args
, **kwargs
):
3179 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3180 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3182 _windows_
.MDIClientWindow_swigregister(MDIClientWindow
)
3184 def PreMDIClientWindow(*args
, **kwargs
):
3185 """PreMDIClientWindow() -> MDIClientWindow"""
3186 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3189 #---------------------------------------------------------------------------
3191 class PyWindow(_core
.Window
):
3192 """Proxy of C++ PyWindow class"""
3193 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3194 __repr__
= _swig_repr
3195 def __init__(self
, *args
, **kwargs
):
3197 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3198 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3200 _windows_
.PyWindow_swiginit(self
,_windows_
.new_PyWindow(*args
, **kwargs
))
3201 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3203 def _setCallbackInfo(*args
, **kwargs
):
3204 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3205 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3207 def SetBestSize(*args
, **kwargs
):
3208 """SetBestSize(self, Size size)"""
3209 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3211 def DoEraseBackground(*args
, **kwargs
):
3212 """DoEraseBackground(self, DC dc) -> bool"""
3213 return _windows_
.PyWindow_DoEraseBackground(*args
, **kwargs
)
3215 def DoMoveWindow(*args
, **kwargs
):
3216 """DoMoveWindow(self, int x, int y, int width, int height)"""
3217 return _windows_
.PyWindow_DoMoveWindow(*args
, **kwargs
)
3219 def DoSetSize(*args
, **kwargs
):
3220 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3221 return _windows_
.PyWindow_DoSetSize(*args
, **kwargs
)
3223 def DoSetClientSize(*args
, **kwargs
):
3224 """DoSetClientSize(self, int width, int height)"""
3225 return _windows_
.PyWindow_DoSetClientSize(*args
, **kwargs
)
3227 def DoSetVirtualSize(*args
, **kwargs
):
3228 """DoSetVirtualSize(self, int x, int y)"""
3229 return _windows_
.PyWindow_DoSetVirtualSize(*args
, **kwargs
)
3231 def DoGetSize(*args
, **kwargs
):
3232 """DoGetSize() -> (width, height)"""
3233 return _windows_
.PyWindow_DoGetSize(*args
, **kwargs
)
3235 def DoGetClientSize(*args
, **kwargs
):
3236 """DoGetClientSize() -> (width, height)"""
3237 return _windows_
.PyWindow_DoGetClientSize(*args
, **kwargs
)
3239 def DoGetPosition(*args
, **kwargs
):
3240 """DoGetPosition() -> (x,y)"""
3241 return _windows_
.PyWindow_DoGetPosition(*args
, **kwargs
)
3243 def DoGetVirtualSize(*args
, **kwargs
):
3244 """DoGetVirtualSize(self) -> Size"""
3245 return _windows_
.PyWindow_DoGetVirtualSize(*args
, **kwargs
)
3247 def DoGetBestSize(*args
, **kwargs
):
3248 """DoGetBestSize(self) -> Size"""
3249 return _windows_
.PyWindow_DoGetBestSize(*args
, **kwargs
)
3251 def GetDefaultAttributes(*args
, **kwargs
):
3252 """GetDefaultAttributes(self) -> VisualAttributes"""
3253 return _windows_
.PyWindow_GetDefaultAttributes(*args
, **kwargs
)
3255 def OnInternalIdle(*args
, **kwargs
):
3256 """OnInternalIdle(self)"""
3257 return _windows_
.PyWindow_OnInternalIdle(*args
, **kwargs
)
3259 def base_DoMoveWindow(*args
, **kw
):
3260 return PyWindow
.DoMoveWindow(*args
, **kw
)
3261 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3262 "Please use PyWindow.DoMoveWindow instead.")
3264 def base_DoSetSize(*args
, **kw
):
3265 return PyWindow
.DoSetSize(*args
, **kw
)
3266 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3267 "Please use PyWindow.DoSetSize instead.")
3269 def base_DoSetClientSize(*args
, **kw
):
3270 return PyWindow
.DoSetClientSize(*args
, **kw
)
3271 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3272 "Please use PyWindow.DoSetClientSize instead.")
3274 def base_DoSetVirtualSize(*args
, **kw
):
3275 return PyWindow
.DoSetVirtualSize(*args
, **kw
)
3276 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3277 "Please use PyWindow.DoSetVirtualSize instead.")
3279 def base_DoGetSize(*args
, **kw
):
3280 return PyWindow
.DoGetSize(*args
, **kw
)
3281 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3282 "Please use PyWindow.DoGetSize instead.")
3284 def base_DoGetClientSize(*args
, **kw
):
3285 return PyWindow
.DoGetClientSize(*args
, **kw
)
3286 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3287 "Please use PyWindow.DoGetClientSize instead.")
3289 def base_DoGetPosition(*args
, **kw
):
3290 return PyWindow
.DoGetPosition(*args
, **kw
)
3291 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3292 "Please use PyWindow.DoGetPosition instead.")
3294 def base_DoGetVirtualSize(*args
, **kw
):
3295 return PyWindow
.DoGetVirtualSize(*args
, **kw
)
3296 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3297 "Please use PyWindow.DoGetVirtualSize instead.")
3299 def base_DoGetBestSize(*args
, **kw
):
3300 return PyWindow
.DoGetBestSize(*args
, **kw
)
3301 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3302 "Please use PyWindow.DoGetBestSize instead.")
3304 def base_InitDialog(*args
, **kw
):
3305 return PyWindow
.InitDialog(*args
, **kw
)
3306 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3307 "Please use PyWindow.InitDialog instead.")
3309 def base_TransferDataToWindow(*args
, **kw
):
3310 return PyWindow
.TransferDataToWindow(*args
, **kw
)
3311 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3312 "Please use PyWindow.TransferDataToWindow instead.")
3314 def base_TransferDataFromWindow(*args
, **kw
):
3315 return PyWindow
.TransferDataFromWindow(*args
, **kw
)
3316 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3317 "Please use PyWindow.TransferDataFromWindow instead.")
3319 def base_Validate(*args
, **kw
):
3320 return PyWindow
.Validate(*args
, **kw
)
3321 base_Validate
= wx
._deprecated
(base_Validate
,
3322 "Please use PyWindow.Validate instead.")
3324 def base_AcceptsFocus(*args
, **kw
):
3325 return PyWindow
.AcceptsFocus(*args
, **kw
)
3326 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3327 "Please use PyWindow.AcceptsFocus instead.")
3329 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3330 return PyWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3331 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3332 "Please use PyWindow.AcceptsFocusFromKeyboard instead.")
3334 def base_GetMaxSize(*args
, **kw
):
3335 return PyWindow
.GetMaxSize(*args
, **kw
)
3336 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3337 "Please use PyWindow.GetMaxSize instead.")
3339 def base_AddChild(*args
, **kw
):
3340 return PyWindow
.AddChild(*args
, **kw
)
3341 base_AddChild
= wx
._deprecated
(base_AddChild
,
3342 "Please use PyWindow.AddChild instead.")
3344 def base_RemoveChild(*args
, **kw
):
3345 return PyWindow
.RemoveChild(*args
, **kw
)
3346 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3347 "Please use PyWindow.RemoveChild instead.")
3349 def base_ShouldInheritColours(*args
, **kw
):
3350 return PyWindow
.ShouldInheritColours(*args
, **kw
)
3351 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3352 "Please use PyWindow.ShouldInheritColours instead.")
3354 def base_GetDefaultAttributes(*args
, **kw
):
3355 return PyWindow
.GetDefaultAttributes(*args
, **kw
)
3356 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3357 "Please use PyWindow.GetDefaultAttributes instead.")
3359 def base_OnInternalIdle(*args
, **kw
):
3360 return PyWindow
.OnInternalIdle(*args
, **kw
)
3361 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3362 "Please use PyWindow.OnInternalIdle instead.")
3364 _windows_
.PyWindow_swigregister(PyWindow
)
3366 def PrePyWindow(*args
, **kwargs
):
3367 """PrePyWindow() -> PyWindow"""
3368 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3371 class PyPanel(Panel
):
3372 """Proxy of C++ PyPanel class"""
3373 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3374 __repr__
= _swig_repr
3375 def __init__(self
, *args
, **kwargs
):
3377 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3378 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3380 _windows_
.PyPanel_swiginit(self
,_windows_
.new_PyPanel(*args
, **kwargs
))
3381 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3383 def _setCallbackInfo(*args
, **kwargs
):
3384 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3385 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3387 def SetBestSize(*args
, **kwargs
):
3388 """SetBestSize(self, Size size)"""
3389 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3391 def DoEraseBackground(*args
, **kwargs
):
3392 """DoEraseBackground(self, DC dc) -> bool"""
3393 return _windows_
.PyPanel_DoEraseBackground(*args
, **kwargs
)
3395 def DoMoveWindow(*args
, **kwargs
):
3396 """DoMoveWindow(self, int x, int y, int width, int height)"""
3397 return _windows_
.PyPanel_DoMoveWindow(*args
, **kwargs
)
3399 def DoSetSize(*args
, **kwargs
):
3400 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3401 return _windows_
.PyPanel_DoSetSize(*args
, **kwargs
)
3403 def DoSetClientSize(*args
, **kwargs
):
3404 """DoSetClientSize(self, int width, int height)"""
3405 return _windows_
.PyPanel_DoSetClientSize(*args
, **kwargs
)
3407 def DoSetVirtualSize(*args
, **kwargs
):
3408 """DoSetVirtualSize(self, int x, int y)"""
3409 return _windows_
.PyPanel_DoSetVirtualSize(*args
, **kwargs
)
3411 def DoGetSize(*args
, **kwargs
):
3412 """DoGetSize() -> (width, height)"""
3413 return _windows_
.PyPanel_DoGetSize(*args
, **kwargs
)
3415 def DoGetClientSize(*args
, **kwargs
):
3416 """DoGetClientSize() -> (width, height)"""
3417 return _windows_
.PyPanel_DoGetClientSize(*args
, **kwargs
)
3419 def DoGetPosition(*args
, **kwargs
):
3420 """DoGetPosition() -> (x,y)"""
3421 return _windows_
.PyPanel_DoGetPosition(*args
, **kwargs
)
3423 def DoGetVirtualSize(*args
, **kwargs
):
3424 """DoGetVirtualSize(self) -> Size"""
3425 return _windows_
.PyPanel_DoGetVirtualSize(*args
, **kwargs
)
3427 def DoGetBestSize(*args
, **kwargs
):
3428 """DoGetBestSize(self) -> Size"""
3429 return _windows_
.PyPanel_DoGetBestSize(*args
, **kwargs
)
3431 def GetDefaultAttributes(*args
, **kwargs
):
3432 """GetDefaultAttributes(self) -> VisualAttributes"""
3433 return _windows_
.PyPanel_GetDefaultAttributes(*args
, **kwargs
)
3435 def OnInternalIdle(*args
, **kwargs
):
3436 """OnInternalIdle(self)"""
3437 return _windows_
.PyPanel_OnInternalIdle(*args
, **kwargs
)
3439 def base_DoMoveWindow(*args
, **kw
):
3440 return PyPanel
.DoMoveWindow(*args
, **kw
)
3441 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3442 "Please use PyPanel.DoMoveWindow instead.")
3444 def base_DoSetSize(*args
, **kw
):
3445 return PyPanel
.DoSetSize(*args
, **kw
)
3446 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3447 "Please use PyPanel.DoSetSize instead.")
3449 def base_DoSetClientSize(*args
, **kw
):
3450 return PyPanel
.DoSetClientSize(*args
, **kw
)
3451 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3452 "Please use PyPanel.DoSetClientSize instead.")
3454 def base_DoSetVirtualSize(*args
, **kw
):
3455 return PyPanel
.DoSetVirtualSize(*args
, **kw
)
3456 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3457 "Please use PyPanel.DoSetVirtualSize instead.")
3459 def base_DoGetSize(*args
, **kw
):
3460 return PyPanel
.DoGetSize(*args
, **kw
)
3461 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3462 "Please use PyPanel.DoGetSize instead.")
3464 def base_DoGetClientSize(*args
, **kw
):
3465 return PyPanel
.DoGetClientSize(*args
, **kw
)
3466 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3467 "Please use PyPanel.DoGetClientSize instead.")
3469 def base_DoGetPosition(*args
, **kw
):
3470 return PyPanel
.DoGetPosition(*args
, **kw
)
3471 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3472 "Please use PyPanel.DoGetPosition instead.")
3474 def base_DoGetVirtualSize(*args
, **kw
):
3475 return PyPanel
.DoGetVirtualSize(*args
, **kw
)
3476 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3477 "Please use PyPanel.DoGetVirtualSize instead.")
3479 def base_DoGetBestSize(*args
, **kw
):
3480 return PyPanel
.DoGetBestSize(*args
, **kw
)
3481 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3482 "Please use PyPanel.DoGetBestSize instead.")
3484 def base_InitDialog(*args
, **kw
):
3485 return PyPanel
.InitDialog(*args
, **kw
)
3486 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3487 "Please use PyPanel.InitDialog instead.")
3489 def base_TransferDataToWindow(*args
, **kw
):
3490 return PyPanel
.TransferDataToWindow(*args
, **kw
)
3491 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3492 "Please use PyPanel.TransferDataToWindow instead.")
3494 def base_TransferDataFromWindow(*args
, **kw
):
3495 return PyPanel
.TransferDataFromWindow(*args
, **kw
)
3496 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3497 "Please use PyPanel.TransferDataFromWindow instead.")
3499 def base_Validate(*args
, **kw
):
3500 return PyPanel
.Validate(*args
, **kw
)
3501 base_Validate
= wx
._deprecated
(base_Validate
,
3502 "Please use PyPanel.Validate instead.")
3504 def base_AcceptsFocus(*args
, **kw
):
3505 return PyPanel
.AcceptsFocus(*args
, **kw
)
3506 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3507 "Please use PyPanel.AcceptsFocus instead.")
3509 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3510 return PyPanel
.AcceptsFocusFromKeyboard(*args
, **kw
)
3511 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3512 "Please use PyPanel.AcceptsFocusFromKeyboard instead.")
3514 def base_GetMaxSize(*args
, **kw
):
3515 return PyPanel
.GetMaxSize(*args
, **kw
)
3516 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3517 "Please use PyPanel.GetMaxSize instead.")
3519 def base_AddChild(*args
, **kw
):
3520 return PyPanel
.AddChild(*args
, **kw
)
3521 base_AddChild
= wx
._deprecated
(base_AddChild
,
3522 "Please use PyPanel.AddChild instead.")
3524 def base_RemoveChild(*args
, **kw
):
3525 return PyPanel
.RemoveChild(*args
, **kw
)
3526 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3527 "Please use PyPanel.RemoveChild instead.")
3529 def base_ShouldInheritColours(*args
, **kw
):
3530 return PyPanel
.ShouldInheritColours(*args
, **kw
)
3531 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3532 "Please use PyPanel.ShouldInheritColours instead.")
3534 def base_GetDefaultAttributes(*args
, **kw
):
3535 return PyPanel
.GetDefaultAttributes(*args
, **kw
)
3536 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3537 "Please use PyPanel.GetDefaultAttributes instead.")
3539 def base_OnInternalIdle(*args
, **kw
):
3540 return PyPanel
.OnInternalIdle(*args
, **kw
)
3541 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3542 "Please use PyPanel.OnInternalIdle instead.")
3544 _windows_
.PyPanel_swigregister(PyPanel
)
3546 def PrePyPanel(*args
, **kwargs
):
3547 """PrePyPanel() -> PyPanel"""
3548 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3551 class PyScrolledWindow(ScrolledWindow
):
3552 """Proxy of C++ PyScrolledWindow class"""
3553 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3554 __repr__
= _swig_repr
3555 def __init__(self
, *args
, **kwargs
):
3557 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3558 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3560 _windows_
.PyScrolledWindow_swiginit(self
,_windows_
.new_PyScrolledWindow(*args
, **kwargs
))
3561 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyScrolledWindow
)
3563 def _setCallbackInfo(*args
, **kwargs
):
3564 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3565 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3567 def SetBestSize(*args
, **kwargs
):
3568 """SetBestSize(self, Size size)"""
3569 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3571 def DoEraseBackground(*args
, **kwargs
):
3572 """DoEraseBackground(self, DC dc) -> bool"""
3573 return _windows_
.PyScrolledWindow_DoEraseBackground(*args
, **kwargs
)
3575 def DoMoveWindow(*args
, **kwargs
):
3576 """DoMoveWindow(self, int x, int y, int width, int height)"""
3577 return _windows_
.PyScrolledWindow_DoMoveWindow(*args
, **kwargs
)
3579 def DoSetSize(*args
, **kwargs
):
3580 """DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3581 return _windows_
.PyScrolledWindow_DoSetSize(*args
, **kwargs
)
3583 def DoSetClientSize(*args
, **kwargs
):
3584 """DoSetClientSize(self, int width, int height)"""
3585 return _windows_
.PyScrolledWindow_DoSetClientSize(*args
, **kwargs
)
3587 def DoSetVirtualSize(*args
, **kwargs
):
3588 """DoSetVirtualSize(self, int x, int y)"""
3589 return _windows_
.PyScrolledWindow_DoSetVirtualSize(*args
, **kwargs
)
3591 def DoGetSize(*args
, **kwargs
):
3592 """DoGetSize() -> (width, height)"""
3593 return _windows_
.PyScrolledWindow_DoGetSize(*args
, **kwargs
)
3595 def DoGetClientSize(*args
, **kwargs
):
3596 """DoGetClientSize() -> (width, height)"""
3597 return _windows_
.PyScrolledWindow_DoGetClientSize(*args
, **kwargs
)
3599 def DoGetPosition(*args
, **kwargs
):
3600 """DoGetPosition() -> (x,y)"""
3601 return _windows_
.PyScrolledWindow_DoGetPosition(*args
, **kwargs
)
3603 def DoGetVirtualSize(*args
, **kwargs
):
3604 """DoGetVirtualSize(self) -> Size"""
3605 return _windows_
.PyScrolledWindow_DoGetVirtualSize(*args
, **kwargs
)
3607 def DoGetBestSize(*args
, **kwargs
):
3608 """DoGetBestSize(self) -> Size"""
3609 return _windows_
.PyScrolledWindow_DoGetBestSize(*args
, **kwargs
)
3611 def GetDefaultAttributes(*args
, **kwargs
):
3612 """GetDefaultAttributes(self) -> VisualAttributes"""
3613 return _windows_
.PyScrolledWindow_GetDefaultAttributes(*args
, **kwargs
)
3615 def OnInternalIdle(*args
, **kwargs
):
3616 """OnInternalIdle(self)"""
3617 return _windows_
.PyScrolledWindow_OnInternalIdle(*args
, **kwargs
)
3619 def base_DoMoveWindow(*args
, **kw
):
3620 return PyScrolledWindow
.DoMoveWindow(*args
, **kw
)
3621 base_DoMoveWindow
= wx
._deprecated
(base_DoMoveWindow
,
3622 "Please use PyScrolledWindow.DoMoveWindow instead.")
3624 def base_DoSetSize(*args
, **kw
):
3625 return PyScrolledWindow
.DoSetSize(*args
, **kw
)
3626 base_DoSetSize
= wx
._deprecated
(base_DoSetSize
,
3627 "Please use PyScrolledWindow.DoSetSize instead.")
3629 def base_DoSetClientSize(*args
, **kw
):
3630 return PyScrolledWindow
.DoSetClientSize(*args
, **kw
)
3631 base_DoSetClientSize
= wx
._deprecated
(base_DoSetClientSize
,
3632 "Please use PyScrolledWindow.DoSetClientSize instead.")
3634 def base_DoSetVirtualSize(*args
, **kw
):
3635 return PyScrolledWindow
.DoSetVirtualSize(*args
, **kw
)
3636 base_DoSetVirtualSize
= wx
._deprecated
(base_DoSetVirtualSize
,
3637 "Please use PyScrolledWindow.DoSetVirtualSize instead.")
3639 def base_DoGetSize(*args
, **kw
):
3640 return PyScrolledWindow
.DoGetSize(*args
, **kw
)
3641 base_DoGetSize
= wx
._deprecated
(base_DoGetSize
,
3642 "Please use PyScrolledWindow.DoGetSize instead.")
3644 def base_DoGetClientSize(*args
, **kw
):
3645 return PyScrolledWindow
.DoGetClientSize(*args
, **kw
)
3646 base_DoGetClientSize
= wx
._deprecated
(base_DoGetClientSize
,
3647 "Please use PyScrolledWindow.DoGetClientSize instead.")
3649 def base_DoGetPosition(*args
, **kw
):
3650 return PyScrolledWindow
.DoGetPosition(*args
, **kw
)
3651 base_DoGetPosition
= wx
._deprecated
(base_DoGetPosition
,
3652 "Please use PyScrolledWindow.DoGetPosition instead.")
3654 def base_DoGetVirtualSize(*args
, **kw
):
3655 return PyScrolledWindow
.DoGetVirtualSize(*args
, **kw
)
3656 base_DoGetVirtualSize
= wx
._deprecated
(base_DoGetVirtualSize
,
3657 "Please use PyScrolledWindow.DoGetVirtualSize instead.")
3659 def base_DoGetBestSize(*args
, **kw
):
3660 return PyScrolledWindow
.DoGetBestSize(*args
, **kw
)
3661 base_DoGetBestSize
= wx
._deprecated
(base_DoGetBestSize
,
3662 "Please use PyScrolledWindow.DoGetBestSize instead.")
3664 def base_InitDialog(*args
, **kw
):
3665 return PyScrolledWindow
.InitDialog(*args
, **kw
)
3666 base_InitDialog
= wx
._deprecated
(base_InitDialog
,
3667 "Please use PyScrolledWindow.InitDialog instead.")
3669 def base_TransferDataToWindow(*args
, **kw
):
3670 return PyScrolledWindow
.TransferDataToWindow(*args
, **kw
)
3671 base_TransferDataToWindow
= wx
._deprecated
(base_TransferDataToWindow
,
3672 "Please use PyScrolledWindow.TransferDataToWindow instead.")
3674 def base_TransferDataFromWindow(*args
, **kw
):
3675 return PyScrolledWindow
.TransferDataFromWindow(*args
, **kw
)
3676 base_TransferDataFromWindow
= wx
._deprecated
(base_TransferDataFromWindow
,
3677 "Please use PyScrolledWindow.TransferDataFromWindow instead.")
3679 def base_Validate(*args
, **kw
):
3680 return PyScrolledWindow
.Validate(*args
, **kw
)
3681 base_Validate
= wx
._deprecated
(base_Validate
,
3682 "Please use PyScrolledWindow.Validate instead.")
3684 def base_AcceptsFocus(*args
, **kw
):
3685 return PyScrolledWindow
.AcceptsFocus(*args
, **kw
)
3686 base_AcceptsFocus
= wx
._deprecated
(base_AcceptsFocus
,
3687 "Please use PyScrolledWindow.AcceptsFocus instead.")
3689 def base_AcceptsFocusFromKeyboard(*args
, **kw
):
3690 return PyScrolledWindow
.AcceptsFocusFromKeyboard(*args
, **kw
)
3691 base_AcceptsFocusFromKeyboard
= wx
._deprecated
(base_AcceptsFocusFromKeyboard
,
3692 "Please use PyScrolledWindow.AcceptsFocusFromKeyboard instead.")
3694 def base_GetMaxSize(*args
, **kw
):
3695 return PyScrolledWindow
.GetMaxSize(*args
, **kw
)
3696 base_GetMaxSize
= wx
._deprecated
(base_GetMaxSize
,
3697 "Please use PyScrolledWindow.GetMaxSize instead.")
3699 def base_AddChild(*args
, **kw
):
3700 return PyScrolledWindow
.AddChild(*args
, **kw
)
3701 base_AddChild
= wx
._deprecated
(base_AddChild
,
3702 "Please use PyScrolledWindow.AddChild instead.")
3704 def base_RemoveChild(*args
, **kw
):
3705 return PyScrolledWindow
.RemoveChild(*args
, **kw
)
3706 base_RemoveChild
= wx
._deprecated
(base_RemoveChild
,
3707 "Please use PyScrolledWindow.RemoveChild instead.")
3709 def base_ShouldInheritColours(*args
, **kw
):
3710 return PyScrolledWindow
.ShouldInheritColours(*args
, **kw
)
3711 base_ShouldInheritColours
= wx
._deprecated
(base_ShouldInheritColours
,
3712 "Please use PyScrolledWindow.ShouldInheritColours instead.")
3714 def base_GetDefaultAttributes(*args
, **kw
):
3715 return PyScrolledWindow
.GetDefaultAttributes(*args
, **kw
)
3716 base_GetDefaultAttributes
= wx
._deprecated
(base_GetDefaultAttributes
,
3717 "Please use PyScrolledWindow.GetDefaultAttributes instead.")
3719 def base_OnInternalIdle(*args
, **kw
):
3720 return PyScrolledWindow
.OnInternalIdle(*args
, **kw
)
3721 base_OnInternalIdle
= wx
._deprecated
(base_OnInternalIdle
,
3722 "Please use PyScrolledWindow.OnInternalIdle instead.")
3724 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindow
)
3726 def PrePyScrolledWindow(*args
, **kwargs
):
3727 """PrePyScrolledWindow() -> PyScrolledWindow"""
3728 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3731 #---------------------------------------------------------------------------
3733 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3734 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3735 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3736 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3737 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3738 PRINTBIN_DEFAULT
= _windows_
.PRINTBIN_DEFAULT
3739 PRINTBIN_ONLYONE
= _windows_
.PRINTBIN_ONLYONE
3740 PRINTBIN_LOWER
= _windows_
.PRINTBIN_LOWER
3741 PRINTBIN_MIDDLE
= _windows_
.PRINTBIN_MIDDLE
3742 PRINTBIN_MANUAL
= _windows_
.PRINTBIN_MANUAL
3743 PRINTBIN_ENVELOPE
= _windows_
.PRINTBIN_ENVELOPE
3744 PRINTBIN_ENVMANUAL
= _windows_
.PRINTBIN_ENVMANUAL
3745 PRINTBIN_AUTO
= _windows_
.PRINTBIN_AUTO
3746 PRINTBIN_TRACTOR
= _windows_
.PRINTBIN_TRACTOR
3747 PRINTBIN_SMALLFMT
= _windows_
.PRINTBIN_SMALLFMT
3748 PRINTBIN_LARGEFMT
= _windows_
.PRINTBIN_LARGEFMT
3749 PRINTBIN_LARGECAPACITY
= _windows_
.PRINTBIN_LARGECAPACITY
3750 PRINTBIN_CASSETTE
= _windows_
.PRINTBIN_CASSETTE
3751 PRINTBIN_FORMSOURCE
= _windows_
.PRINTBIN_FORMSOURCE
3752 PRINTBIN_USER
= _windows_
.PRINTBIN_USER
3753 class PrintData(_core
.Object
):
3754 """Proxy of C++ PrintData class"""
3755 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3756 __repr__
= _swig_repr
3757 def __init__(self
, *args
):
3759 __init__(self) -> PrintData
3760 __init__(self, PrintData data) -> PrintData
3762 _windows_
.PrintData_swiginit(self
,_windows_
.new_PrintData(*args
))
3763 __swig_destroy__
= _windows_
.delete_PrintData
3764 __del__
= lambda self
: None;
3765 def GetNoCopies(*args
, **kwargs
):
3766 """GetNoCopies(self) -> int"""
3767 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3769 def GetCollate(*args
, **kwargs
):
3770 """GetCollate(self) -> bool"""
3771 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3773 def GetOrientation(*args
, **kwargs
):
3774 """GetOrientation(self) -> int"""
3775 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3777 def Ok(*args
, **kwargs
):
3778 """Ok(self) -> bool"""
3779 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3781 def GetPrinterName(*args
, **kwargs
):
3782 """GetPrinterName(self) -> String"""
3783 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3785 def GetColour(*args
, **kwargs
):
3786 """GetColour(self) -> bool"""
3787 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3789 def GetDuplex(*args
, **kwargs
):
3790 """GetDuplex(self) -> int"""
3791 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3793 def GetPaperId(*args
, **kwargs
):
3794 """GetPaperId(self) -> int"""
3795 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3797 def GetPaperSize(*args
, **kwargs
):
3798 """GetPaperSize(self) -> Size"""
3799 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3801 def GetQuality(*args
, **kwargs
):
3802 """GetQuality(self) -> int"""
3803 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3805 def GetBin(*args
, **kwargs
):
3806 """GetBin(self) -> int"""
3807 return _windows_
.PrintData_GetBin(*args
, **kwargs
)
3809 def GetPrintMode(*args
, **kwargs
):
3810 """GetPrintMode(self) -> int"""
3811 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3813 def SetNoCopies(*args
, **kwargs
):
3814 """SetNoCopies(self, int v)"""
3815 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3817 def SetCollate(*args
, **kwargs
):
3818 """SetCollate(self, bool flag)"""
3819 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3821 def SetOrientation(*args
, **kwargs
):
3822 """SetOrientation(self, int orient)"""
3823 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3825 def SetPrinterName(*args
, **kwargs
):
3826 """SetPrinterName(self, String name)"""
3827 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3829 def SetColour(*args
, **kwargs
):
3830 """SetColour(self, bool colour)"""
3831 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3833 def SetDuplex(*args
, **kwargs
):
3834 """SetDuplex(self, int duplex)"""
3835 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3837 def SetPaperId(*args
, **kwargs
):
3838 """SetPaperId(self, int sizeId)"""
3839 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3841 def SetPaperSize(*args
, **kwargs
):
3842 """SetPaperSize(self, Size sz)"""
3843 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3845 def SetQuality(*args
, **kwargs
):
3846 """SetQuality(self, int quality)"""
3847 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3849 def SetBin(*args
, **kwargs
):
3850 """SetBin(self, int bin)"""
3851 return _windows_
.PrintData_SetBin(*args
, **kwargs
)
3853 def SetPrintMode(*args
, **kwargs
):
3854 """SetPrintMode(self, int printMode)"""
3855 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3857 def GetFilename(*args
, **kwargs
):
3858 """GetFilename(self) -> String"""
3859 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3861 def SetFilename(*args
, **kwargs
):
3862 """SetFilename(self, String filename)"""
3863 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3865 def __nonzero__(self
): return self
.Ok()
3866 def GetPrivData(*args
, **kwargs
):
3867 """GetPrivData(self) -> PyObject"""
3868 return _windows_
.PrintData_GetPrivData(*args
, **kwargs
)
3870 def SetPrivData(*args
, **kwargs
):
3871 """SetPrivData(self, PyObject data)"""
3872 return _windows_
.PrintData_SetPrivData(*args
, **kwargs
)
3874 _windows_
.PrintData_swigregister(PrintData
)
3875 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3876 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3878 class PageSetupDialogData(_core
.Object
):
3879 """Proxy of C++ PageSetupDialogData class"""
3880 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
3881 __repr__
= _swig_repr
3882 def __init__(self
, *args
):
3884 __init__(self) -> PageSetupDialogData
3885 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3886 __init__(self, PrintData data) -> PageSetupDialogData
3888 _windows_
.PageSetupDialogData_swiginit(self
,_windows_
.new_PageSetupDialogData(*args
))
3889 __swig_destroy__
= _windows_
.delete_PageSetupDialogData
3890 __del__
= lambda self
: None;
3891 def EnableHelp(*args
, **kwargs
):
3892 """EnableHelp(self, bool flag)"""
3893 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3895 def EnableMargins(*args
, **kwargs
):
3896 """EnableMargins(self, bool flag)"""
3897 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3899 def EnableOrientation(*args
, **kwargs
):
3900 """EnableOrientation(self, bool flag)"""
3901 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3903 def EnablePaper(*args
, **kwargs
):
3904 """EnablePaper(self, bool flag)"""
3905 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3907 def EnablePrinter(*args
, **kwargs
):
3908 """EnablePrinter(self, bool flag)"""
3909 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3911 def GetDefaultMinMargins(*args
, **kwargs
):
3912 """GetDefaultMinMargins(self) -> bool"""
3913 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3915 def GetEnableMargins(*args
, **kwargs
):
3916 """GetEnableMargins(self) -> bool"""
3917 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3919 def GetEnableOrientation(*args
, **kwargs
):
3920 """GetEnableOrientation(self) -> bool"""
3921 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3923 def GetEnablePaper(*args
, **kwargs
):
3924 """GetEnablePaper(self) -> bool"""
3925 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3927 def GetEnablePrinter(*args
, **kwargs
):
3928 """GetEnablePrinter(self) -> bool"""
3929 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3931 def GetEnableHelp(*args
, **kwargs
):
3932 """GetEnableHelp(self) -> bool"""
3933 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3935 def GetDefaultInfo(*args
, **kwargs
):
3936 """GetDefaultInfo(self) -> bool"""
3937 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3939 def GetMarginTopLeft(*args
, **kwargs
):
3940 """GetMarginTopLeft(self) -> Point"""
3941 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3943 def GetMarginBottomRight(*args
, **kwargs
):
3944 """GetMarginBottomRight(self) -> Point"""
3945 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3947 def GetMinMarginTopLeft(*args
, **kwargs
):
3948 """GetMinMarginTopLeft(self) -> Point"""
3949 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3951 def GetMinMarginBottomRight(*args
, **kwargs
):
3952 """GetMinMarginBottomRight(self) -> Point"""
3953 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3955 def GetPaperId(*args
, **kwargs
):
3956 """GetPaperId(self) -> int"""
3957 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3959 def GetPaperSize(*args
, **kwargs
):
3960 """GetPaperSize(self) -> Size"""
3961 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3963 def GetPrintData(*args
, **kwargs
):
3964 """GetPrintData(self) -> PrintData"""
3965 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3967 def Ok(*args
, **kwargs
):
3968 """Ok(self) -> bool"""
3969 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3971 def SetDefaultInfo(*args
, **kwargs
):
3972 """SetDefaultInfo(self, bool flag)"""
3973 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3975 def SetDefaultMinMargins(*args
, **kwargs
):
3976 """SetDefaultMinMargins(self, bool flag)"""
3977 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3979 def SetMarginTopLeft(*args
, **kwargs
):
3980 """SetMarginTopLeft(self, Point pt)"""
3981 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3983 def SetMarginBottomRight(*args
, **kwargs
):
3984 """SetMarginBottomRight(self, Point pt)"""
3985 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3987 def SetMinMarginTopLeft(*args
, **kwargs
):
3988 """SetMinMarginTopLeft(self, Point pt)"""
3989 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3991 def SetMinMarginBottomRight(*args
, **kwargs
):
3992 """SetMinMarginBottomRight(self, Point pt)"""
3993 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3995 def SetPaperId(*args
, **kwargs
):
3996 """SetPaperId(self, int id)"""
3997 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3999 def SetPaperSize(*args
, **kwargs
):
4000 """SetPaperSize(self, Size size)"""
4001 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
4003 def SetPrintData(*args
, **kwargs
):
4004 """SetPrintData(self, PrintData printData)"""
4005 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
4007 def CalculateIdFromPaperSize(*args
, **kwargs
):
4008 """CalculateIdFromPaperSize(self)"""
4009 return _windows_
.PageSetupDialogData_CalculateIdFromPaperSize(*args
, **kwargs
)
4011 def CalculatePaperSizeFromId(*args
, **kwargs
):
4012 """CalculatePaperSizeFromId(self)"""
4013 return _windows_
.PageSetupDialogData_CalculatePaperSizeFromId(*args
, **kwargs
)
4015 def __nonzero__(self
): return self
.Ok()
4016 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogData
)
4018 class PageSetupDialog(_core
.Object
):
4019 """Proxy of C++ PageSetupDialog class"""
4020 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4021 __repr__
= _swig_repr
4022 def __init__(self
, *args
, **kwargs
):
4023 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4024 _windows_
.PageSetupDialog_swiginit(self
,_windows_
.new_PageSetupDialog(*args
, **kwargs
))
4025 __swig_destroy__
= _windows_
.delete_PageSetupDialog
4026 __del__
= lambda self
: None;
4027 def GetPageSetupData(*args
, **kwargs
):
4028 """GetPageSetupData(self) -> PageSetupDialogData"""
4029 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
4031 def GetPageSetupDialogData(*args
, **kwargs
):
4032 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
4033 return _windows_
.PageSetupDialog_GetPageSetupDialogData(*args
, **kwargs
)
4035 def ShowModal(*args
, **kwargs
):
4036 """ShowModal(self) -> int"""
4037 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
4039 def Destroy(self
): pass
4040 _windows_
.PageSetupDialog_swigregister(PageSetupDialog
)
4042 class PrintDialogData(_core
.Object
):
4043 """Proxy of C++ PrintDialogData class"""
4044 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4045 __repr__
= _swig_repr
4046 def __init__(self
, *args
):
4048 __init__(self) -> PrintDialogData
4049 __init__(self, PrintData printData) -> PrintDialogData
4050 __init__(self, PrintDialogData printData) -> PrintDialogData
4052 _windows_
.PrintDialogData_swiginit(self
,_windows_
.new_PrintDialogData(*args
))
4053 __swig_destroy__
= _windows_
.delete_PrintDialogData
4054 __del__
= lambda self
: None;
4055 def GetFromPage(*args
, **kwargs
):
4056 """GetFromPage(self) -> int"""
4057 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
4059 def GetToPage(*args
, **kwargs
):
4060 """GetToPage(self) -> int"""
4061 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
4063 def GetMinPage(*args
, **kwargs
):
4064 """GetMinPage(self) -> int"""
4065 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
4067 def GetMaxPage(*args
, **kwargs
):
4068 """GetMaxPage(self) -> int"""
4069 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
4071 def GetNoCopies(*args
, **kwargs
):
4072 """GetNoCopies(self) -> int"""
4073 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
4075 def GetAllPages(*args
, **kwargs
):
4076 """GetAllPages(self) -> bool"""
4077 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
4079 def GetSelection(*args
, **kwargs
):
4080 """GetSelection(self) -> bool"""
4081 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
4083 def GetCollate(*args
, **kwargs
):
4084 """GetCollate(self) -> bool"""
4085 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
4087 def GetPrintToFile(*args
, **kwargs
):
4088 """GetPrintToFile(self) -> bool"""
4089 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
4091 def SetFromPage(*args
, **kwargs
):
4092 """SetFromPage(self, int v)"""
4093 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4095 def SetToPage(*args
, **kwargs
):
4096 """SetToPage(self, int v)"""
4097 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4099 def SetMinPage(*args
, **kwargs
):
4100 """SetMinPage(self, int v)"""
4101 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4103 def SetMaxPage(*args
, **kwargs
):
4104 """SetMaxPage(self, int v)"""
4105 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4107 def SetNoCopies(*args
, **kwargs
):
4108 """SetNoCopies(self, int v)"""
4109 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4111 def SetAllPages(*args
, **kwargs
):
4112 """SetAllPages(self, bool flag)"""
4113 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4115 def SetSelection(*args
, **kwargs
):
4116 """SetSelection(self, bool flag)"""
4117 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4119 def SetCollate(*args
, **kwargs
):
4120 """SetCollate(self, bool flag)"""
4121 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4123 def SetPrintToFile(*args
, **kwargs
):
4124 """SetPrintToFile(self, bool flag)"""
4125 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4127 def EnablePrintToFile(*args
, **kwargs
):
4128 """EnablePrintToFile(self, bool flag)"""
4129 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4131 def EnableSelection(*args
, **kwargs
):
4132 """EnableSelection(self, bool flag)"""
4133 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4135 def EnablePageNumbers(*args
, **kwargs
):
4136 """EnablePageNumbers(self, bool flag)"""
4137 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4139 def EnableHelp(*args
, **kwargs
):
4140 """EnableHelp(self, bool flag)"""
4141 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4143 def GetEnablePrintToFile(*args
, **kwargs
):
4144 """GetEnablePrintToFile(self) -> bool"""
4145 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4147 def GetEnableSelection(*args
, **kwargs
):
4148 """GetEnableSelection(self) -> bool"""
4149 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4151 def GetEnablePageNumbers(*args
, **kwargs
):
4152 """GetEnablePageNumbers(self) -> bool"""
4153 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4155 def GetEnableHelp(*args
, **kwargs
):
4156 """GetEnableHelp(self) -> bool"""
4157 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4159 def Ok(*args
, **kwargs
):
4160 """Ok(self) -> bool"""
4161 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4163 def GetPrintData(*args
, **kwargs
):
4164 """GetPrintData(self) -> PrintData"""
4165 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4167 def SetPrintData(*args
, **kwargs
):
4168 """SetPrintData(self, PrintData printData)"""
4169 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4171 def __nonzero__(self
): return self
.Ok()
4172 _windows_
.PrintDialogData_swigregister(PrintDialogData
)
4174 class PrintDialog(_core
.Object
):
4175 """Proxy of C++ PrintDialog class"""
4176 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4177 __repr__
= _swig_repr
4178 def __init__(self
, *args
, **kwargs
):
4179 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4180 _windows_
.PrintDialog_swiginit(self
,_windows_
.new_PrintDialog(*args
, **kwargs
))
4181 __swig_destroy__
= _windows_
.delete_PrintDialog
4182 __del__
= lambda self
: None;
4183 def ShowModal(*args
, **kwargs
):
4184 """ShowModal(self) -> int"""
4185 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4187 def GetPrintDialogData(*args
, **kwargs
):
4188 """GetPrintDialogData(self) -> PrintDialogData"""
4189 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4191 def GetPrintData(*args
, **kwargs
):
4192 """GetPrintData(self) -> PrintData"""
4193 return _windows_
.PrintDialog_GetPrintData(*args
, **kwargs
)
4195 def GetPrintDC(*args
, **kwargs
):
4196 """GetPrintDC(self) -> DC"""
4197 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4199 def Destroy(self
): pass
4200 _windows_
.PrintDialog_swigregister(PrintDialog
)
4202 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4203 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4204 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4205 class Printer(_core
.Object
):
4206 """Proxy of C++ Printer class"""
4207 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4208 __repr__
= _swig_repr
4209 def __init__(self
, *args
, **kwargs
):
4210 """__init__(self, PrintDialogData data=None) -> Printer"""
4211 _windows_
.Printer_swiginit(self
,_windows_
.new_Printer(*args
, **kwargs
))
4212 __swig_destroy__
= _windows_
.delete_Printer
4213 __del__
= lambda self
: None;
4214 def CreateAbortWindow(*args
, **kwargs
):
4215 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
4216 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4218 def ReportError(*args
, **kwargs
):
4219 """ReportError(self, Window parent, Printout printout, String message)"""
4220 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4222 def Setup(*args
, **kwargs
):
4223 """Setup(self, Window parent) -> bool"""
4224 return _windows_
.Printer_Setup(*args
, **kwargs
)
4226 def Print(*args
, **kwargs
):
4227 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
4228 return _windows_
.Printer_Print(*args
, **kwargs
)
4230 def PrintDialog(*args
, **kwargs
):
4231 """PrintDialog(self, Window parent) -> DC"""
4232 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4234 def GetPrintDialogData(*args
, **kwargs
):
4235 """GetPrintDialogData(self) -> PrintDialogData"""
4236 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4238 def GetAbort(*args
, **kwargs
):
4239 """GetAbort(self) -> bool"""
4240 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4242 def GetLastError(*args
, **kwargs
):
4243 """GetLastError() -> int"""
4244 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4246 GetLastError
= staticmethod(GetLastError
)
4247 _windows_
.Printer_swigregister(Printer
)
4249 def Printer_GetLastError(*args
):
4250 """Printer_GetLastError() -> int"""
4251 return _windows_
.Printer_GetLastError(*args
)
4253 class Printout(_core
.Object
):
4254 """Proxy of C++ Printout class"""
4255 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4256 __repr__
= _swig_repr
4257 def __init__(self
, *args
, **kwargs
):
4258 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4259 _windows_
.Printout_swiginit(self
,_windows_
.new_Printout(*args
, **kwargs
))
4260 self
._setCallbackInfo
(self
, Printout
)
4262 __swig_destroy__
= _windows_
.delete_Printout
4263 __del__
= lambda self
: None;
4264 def _setCallbackInfo(*args
, **kwargs
):
4265 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4266 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4268 def GetTitle(*args
, **kwargs
):
4269 """GetTitle(self) -> String"""
4270 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4272 def GetDC(*args
, **kwargs
):
4273 """GetDC(self) -> DC"""
4274 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4276 def SetDC(*args
, **kwargs
):
4277 """SetDC(self, DC dc)"""
4278 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4280 def SetPageSizePixels(*args
, **kwargs
):
4281 """SetPageSizePixels(self, int w, int h)"""
4282 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4284 def GetPageSizePixels(*args
, **kwargs
):
4285 """GetPageSizePixels() -> (w, h)"""
4286 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4288 def SetPageSizeMM(*args
, **kwargs
):
4289 """SetPageSizeMM(self, int w, int h)"""
4290 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4292 def GetPageSizeMM(*args
, **kwargs
):
4293 """GetPageSizeMM() -> (w, h)"""
4294 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4296 def SetPPIScreen(*args
, **kwargs
):
4297 """SetPPIScreen(self, int x, int y)"""
4298 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4300 def GetPPIScreen(*args
, **kwargs
):
4301 """GetPPIScreen() -> (x,y)"""
4302 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4304 def SetPPIPrinter(*args
, **kwargs
):
4305 """SetPPIPrinter(self, int x, int y)"""
4306 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4308 def GetPPIPrinter(*args
, **kwargs
):
4309 """GetPPIPrinter() -> (x,y)"""
4310 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4312 def IsPreview(*args
, **kwargs
):
4313 """IsPreview(self) -> bool"""
4314 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4316 def SetIsPreview(*args
, **kwargs
):
4317 """SetIsPreview(self, bool p)"""
4318 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4320 def OnBeginDocument(*args
, **kwargs
):
4321 """OnBeginDocument(self, int startPage, int endPage) -> bool"""
4322 return _windows_
.Printout_OnBeginDocument(*args
, **kwargs
)
4324 def OnEndDocument(*args
, **kwargs
):
4325 """OnEndDocument(self)"""
4326 return _windows_
.Printout_OnEndDocument(*args
, **kwargs
)
4328 def OnBeginPrinting(*args
, **kwargs
):
4329 """OnBeginPrinting(self)"""
4330 return _windows_
.Printout_OnBeginPrinting(*args
, **kwargs
)
4332 def OnEndPrinting(*args
, **kwargs
):
4333 """OnEndPrinting(self)"""
4334 return _windows_
.Printout_OnEndPrinting(*args
, **kwargs
)
4336 def OnPreparePrinting(*args
, **kwargs
):
4337 """OnPreparePrinting(self)"""
4338 return _windows_
.Printout_OnPreparePrinting(*args
, **kwargs
)
4340 def HasPage(*args
, **kwargs
):
4341 """HasPage(self, int page) -> bool"""
4342 return _windows_
.Printout_HasPage(*args
, **kwargs
)
4344 def GetPageInfo(*args
, **kwargs
):
4345 """GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4346 return _windows_
.Printout_GetPageInfo(*args
, **kwargs
)
4348 def base_OnBeginDocument(*args
, **kw
):
4349 return Printout
.OnBeginDocument(*args
, **kw
)
4350 base_OnBeginDocument
= wx
._deprecated
(base_OnBeginDocument
,
4351 "Please use Printout.OnBeginDocument instead.")
4353 def base_OnEndDocument(*args
, **kw
):
4354 return Printout
.OnEndDocument(*args
, **kw
)
4355 base_OnEndDocument
= wx
._deprecated
(base_OnEndDocument
,
4356 "Please use Printout.OnEndDocument instead.")
4358 def base_OnBeginPrinting(*args
, **kw
):
4359 return Printout
.OnBeginPrinting(*args
, **kw
)
4360 base_OnBeginPrinting
= wx
._deprecated
(base_OnBeginPrinting
,
4361 "Please use Printout.OnBeginPrinting instead.")
4363 def base_OnEndPrinting(*args
, **kw
):
4364 return Printout
.OnEndPrinting(*args
, **kw
)
4365 base_OnEndPrinting
= wx
._deprecated
(base_OnEndPrinting
,
4366 "Please use Printout.OnEndPrinting instead.")
4368 def base_OnPreparePrinting(*args
, **kw
):
4369 return Printout
.OnPreparePrinting(*args
, **kw
)
4370 base_OnPreparePrinting
= wx
._deprecated
(base_OnPreparePrinting
,
4371 "Please use Printout.OnPreparePrinting instead.")
4373 def base_GetPageInfo(*args
, **kw
):
4374 return Printout
.GetPageInfo(*args
, **kw
)
4375 base_GetPageInfo
= wx
._deprecated
(base_GetPageInfo
,
4376 "Please use Printout.GetPageInfo instead.")
4378 _windows_
.Printout_swigregister(Printout
)
4380 class PreviewCanvas(ScrolledWindow
):
4381 """Proxy of C++ PreviewCanvas class"""
4382 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4383 __repr__
= _swig_repr
4384 def __init__(self
, *args
, **kwargs
):
4386 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4387 Size size=DefaultSize, long style=0,
4388 String name=PreviewCanvasNameStr) -> PreviewCanvas
4390 _windows_
.PreviewCanvas_swiginit(self
,_windows_
.new_PreviewCanvas(*args
, **kwargs
))
4391 self
._setOORInfo
(self
)
4393 _windows_
.PreviewCanvas_swigregister(PreviewCanvas
)
4395 class PreviewFrame(Frame
):
4396 """Proxy of C++ PreviewFrame class"""
4397 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4398 __repr__
= _swig_repr
4399 def __init__(self
, *args
, **kwargs
):
4401 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4402 Size size=DefaultSize,
4403 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4405 _windows_
.PreviewFrame_swiginit(self
,_windows_
.new_PreviewFrame(*args
, **kwargs
))
4406 self
._setOORInfo
(self
)
4408 def Initialize(*args
, **kwargs
):
4409 """Initialize(self)"""
4410 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4412 def CreateControlBar(*args
, **kwargs
):
4413 """CreateControlBar(self)"""
4414 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4416 def CreateCanvas(*args
, **kwargs
):
4417 """CreateCanvas(self)"""
4418 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4420 def GetControlBar(*args
, **kwargs
):
4421 """GetControlBar(self) -> PreviewControlBar"""
4422 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4424 _windows_
.PreviewFrame_swigregister(PreviewFrame
)
4426 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4427 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4428 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4429 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4430 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4431 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4432 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4433 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4434 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4435 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4436 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4437 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4438 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4439 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4440 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4441 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4442 class PreviewControlBar(Panel
):
4443 """Proxy of C++ PreviewControlBar class"""
4444 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4445 __repr__
= _swig_repr
4446 def __init__(self
, *args
, **kwargs
):
4448 __init__(self, PrintPreview preview, long buttons, Window parent,
4449 Point pos=DefaultPosition, Size size=DefaultSize,
4450 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4452 _windows_
.PreviewControlBar_swiginit(self
,_windows_
.new_PreviewControlBar(*args
, **kwargs
))
4453 self
._setOORInfo
(self
)
4455 def GetZoomControl(*args
, **kwargs
):
4456 """GetZoomControl(self) -> int"""
4457 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4459 def SetZoomControl(*args
, **kwargs
):
4460 """SetZoomControl(self, int zoom)"""
4461 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4463 def GetPrintPreview(*args
, **kwargs
):
4464 """GetPrintPreview(self) -> PrintPreview"""
4465 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4467 def OnNext(*args
, **kwargs
):
4469 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4471 def OnPrevious(*args
, **kwargs
):
4472 """OnPrevious(self)"""
4473 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4475 def OnFirst(*args
, **kwargs
):
4477 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4479 def OnLast(*args
, **kwargs
):
4481 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4483 def OnGoto(*args
, **kwargs
):
4485 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4487 _windows_
.PreviewControlBar_swigregister(PreviewControlBar
)
4489 class PrintPreview(_core
.Object
):
4490 """Proxy of C++ PrintPreview class"""
4491 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4492 __repr__
= _swig_repr
4493 def __init__(self
, *args
):
4495 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4496 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4498 _windows_
.PrintPreview_swiginit(self
,_windows_
.new_PrintPreview(*args
))
4499 __swig_destroy__
= _windows_
.delete_PrintPreview
4500 __del__
= lambda self
: None;
4501 def SetCurrentPage(*args
, **kwargs
):
4502 """SetCurrentPage(self, int pageNum) -> bool"""
4503 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4505 def GetCurrentPage(*args
, **kwargs
):
4506 """GetCurrentPage(self) -> int"""
4507 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4509 def SetPrintout(*args
, **kwargs
):
4510 """SetPrintout(self, Printout printout)"""
4511 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4513 def GetPrintout(*args
, **kwargs
):
4514 """GetPrintout(self) -> Printout"""
4515 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4517 def GetPrintoutForPrinting(*args
, **kwargs
):
4518 """GetPrintoutForPrinting(self) -> Printout"""
4519 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4521 def SetFrame(*args
, **kwargs
):
4522 """SetFrame(self, Frame frame)"""
4523 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4525 def SetCanvas(*args
, **kwargs
):
4526 """SetCanvas(self, PreviewCanvas canvas)"""
4527 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4529 def GetFrame(*args
, **kwargs
):
4530 """GetFrame(self) -> Frame"""
4531 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4533 def GetCanvas(*args
, **kwargs
):
4534 """GetCanvas(self) -> PreviewCanvas"""
4535 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4537 def PaintPage(*args
, **kwargs
):
4538 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4539 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4541 def DrawBlankPage(*args
, **kwargs
):
4542 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4543 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4545 def RenderPage(*args
, **kwargs
):
4546 """RenderPage(self, int pageNum) -> bool"""
4547 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4549 def AdjustScrollbars(*args
, **kwargs
):
4550 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4551 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4553 def GetPrintDialogData(*args
, **kwargs
):
4554 """GetPrintDialogData(self) -> PrintDialogData"""
4555 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4557 def SetZoom(*args
, **kwargs
):
4558 """SetZoom(self, int percent)"""
4559 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4561 def GetZoom(*args
, **kwargs
):
4562 """GetZoom(self) -> int"""
4563 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4565 def GetMaxPage(*args
, **kwargs
):
4566 """GetMaxPage(self) -> int"""
4567 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4569 def GetMinPage(*args
, **kwargs
):
4570 """GetMinPage(self) -> int"""
4571 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4573 def Ok(*args
, **kwargs
):
4574 """Ok(self) -> bool"""
4575 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4577 def SetOk(*args
, **kwargs
):
4578 """SetOk(self, bool ok)"""
4579 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4581 def Print(*args
, **kwargs
):
4582 """Print(self, bool interactive) -> bool"""
4583 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4585 def DetermineScaling(*args
, **kwargs
):
4586 """DetermineScaling(self)"""
4587 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4589 def __nonzero__(self
): return self
.Ok()
4590 _windows_
.PrintPreview_swigregister(PrintPreview
)
4592 class PyPrintPreview(PrintPreview
):
4593 """Proxy of C++ PyPrintPreview class"""
4594 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4595 __repr__
= _swig_repr
4596 def __init__(self
, *args
):
4598 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4599 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4601 _windows_
.PyPrintPreview_swiginit(self
,_windows_
.new_PyPrintPreview(*args
))
4602 self
._setCallbackInfo
(self
, PyPrintPreview
)
4604 def _setCallbackInfo(*args
, **kwargs
):
4605 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4606 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4608 def base_SetCurrentPage(*args
, **kw
):
4609 return PyPrintPreview
.SetCurrentPage(*args
, **kw
)
4610 base_SetCurrentPage
= wx
._deprecated
(base_SetCurrentPage
,
4611 "Please use PyPrintPreview.SetCurrentPage instead.")
4613 def base_PaintPage(*args
, **kw
):
4614 return PyPrintPreview
.PaintPage(*args
, **kw
)
4615 base_PaintPage
= wx
._deprecated
(base_PaintPage
,
4616 "Please use PyPrintPreview.PaintPage instead.")
4618 def base_DrawBlankPage(*args
, **kw
):
4619 return PyPrintPreview
.DrawBlankPage(*args
, **kw
)
4620 base_DrawBlankPage
= wx
._deprecated
(base_DrawBlankPage
,
4621 "Please use PyPrintPreview.DrawBlankPage instead.")
4623 def base_RenderPage(*args
, **kw
):
4624 return PyPrintPreview
.RenderPage(*args
, **kw
)
4625 base_RenderPage
= wx
._deprecated
(base_RenderPage
,
4626 "Please use PyPrintPreview.RenderPage instead.")
4628 def base_SetZoom(*args
, **kw
):
4629 return PyPrintPreview
.SetZoom(*args
, **kw
)
4630 base_SetZoom
= wx
._deprecated
(base_SetZoom
,
4631 "Please use PyPrintPreview.SetZoom instead.")
4633 def base_Print(*args
, **kw
):
4634 return PyPrintPreview
.Print(*args
, **kw
)
4635 base_Print
= wx
._deprecated
(base_Print
,
4636 "Please use PyPrintPreview.Print instead.")
4638 def base_DetermineScaling(*args
, **kw
):
4639 return PyPrintPreview
.DetermineScaling(*args
, **kw
)
4640 base_DetermineScaling
= wx
._deprecated
(base_DetermineScaling
,
4641 "Please use PyPrintPreview.DetermineScaling instead.")
4643 _windows_
.PyPrintPreview_swigregister(PyPrintPreview
)
4645 class PyPreviewFrame(PreviewFrame
):
4646 """Proxy of C++ PyPreviewFrame class"""
4647 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4648 __repr__
= _swig_repr
4649 def __init__(self
, *args
, **kwargs
):
4651 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4652 Size size=DefaultSize,
4653 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4655 _windows_
.PyPreviewFrame_swiginit(self
,_windows_
.new_PyPreviewFrame(*args
, **kwargs
))
4656 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4658 def _setCallbackInfo(*args
, **kwargs
):
4659 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4660 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4662 def SetPreviewCanvas(*args
, **kwargs
):
4663 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4664 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4666 def SetControlBar(*args
, **kwargs
):
4667 """SetControlBar(self, PreviewControlBar bar)"""
4668 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4670 def Initialize(*args
, **kwargs
):
4671 """Initialize(self)"""
4672 return _windows_
.PyPreviewFrame_Initialize(*args
, **kwargs
)
4674 def CreateCanvas(*args
, **kwargs
):
4675 """CreateCanvas(self)"""
4676 return _windows_
.PyPreviewFrame_CreateCanvas(*args
, **kwargs
)
4678 def CreateControlBar(*args
, **kwargs
):
4679 """CreateControlBar(self)"""
4680 return _windows_
.PyPreviewFrame_CreateControlBar(*args
, **kwargs
)
4682 def base_Initialize(*args
, **kw
):
4683 return PyPreviewFrame
.Initialize(*args
, **kw
)
4684 base_Initialize
= wx
._deprecated
(base_Initialize
,
4685 "Please use PyPreviewFrame.Initialize instead.")
4687 def base_CreateCanvas(*args
, **kw
):
4688 return PyPreviewFrame
.CreateCanvas(*args
, **kw
)
4689 base_CreateCanvas
= wx
._deprecated
(base_CreateCanvas
,
4690 "Please use PyPreviewFrame.CreateCanvas instead.")
4692 def base_CreateControlBar(*args
, **kw
):
4693 return PyPreviewFrame
.CreateControlBar(*args
, **kw
)
4694 base_CreateControlBar
= wx
._deprecated
(base_CreateControlBar
,
4695 "Please use PyPreviewFrame.CreateControlBar instead.")
4697 _windows_
.PyPreviewFrame_swigregister(PyPreviewFrame
)
4699 class PyPreviewControlBar(PreviewControlBar
):
4700 """Proxy of C++ PyPreviewControlBar class"""
4701 thisown
= property(lambda x
: x
.this
.own(), lambda x
, v
: x
.this
.own(v
), doc
='The membership flag')
4702 __repr__
= _swig_repr
4703 def __init__(self
, *args
, **kwargs
):
4705 __init__(self, PrintPreview preview, long buttons, Window parent,
4706 Point pos=DefaultPosition, Size size=DefaultSize,
4707 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4709 _windows_
.PyPreviewControlBar_swiginit(self
,_windows_
.new_PyPreviewControlBar(*args
, **kwargs
))
4710 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4712 def _setCallbackInfo(*args
, **kwargs
):
4713 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4714 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4716 def SetPrintPreview(*args
, **kwargs
):
4717 """SetPrintPreview(self, PrintPreview preview)"""
4718 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4720 def CreateButtons(*args
, **kwargs
):
4721 """CreateButtons(self)"""
4722 return _windows_
.PyPreviewControlBar_CreateButtons(*args
, **kwargs
)
4724 def SetZoomControl(*args
, **kwargs
):
4725 """SetZoomControl(self, int zoom)"""
4726 return _windows_
.PyPreviewControlBar_SetZoomControl(*args
, **kwargs
)
4728 def base_CreateButtons(*args
, **kw
):
4729 return PreviewControlBar
.CreateButtons(*args
, **kw
)
4730 base_CreateButtons
= wx
._deprecated
(base_CreateButtons
,
4731 "Please use PreviewControlBar.CreateButtons instead.")
4733 def base_SetZoomControl(*args
, **kw
):
4734 return PreviewControlBar
.SetZoomControl(*args
, **kw
)
4735 base_SetZoomControl
= wx
._deprecated
(base_SetZoomControl
,
4736 "Please use PreviewControlBar.SetZoomControl instead.")
4738 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBar
)