1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
8 #---------------------------------------------------------------------------
10 class Panel(core
.Window
):
12 return "<%s.%s; proxy of C++ wxPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
13 def __init__(self
, *args
, **kwargs
):
15 __init__(Window parent, int id=-1, Point pos=DefaultPosition,
16 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
17 String name=PanelNameStr) -> Panel
19 newobj
= _windows
.new_Panel(*args
, **kwargs
)
20 self
.this
= newobj
.this
23 self
._setOORInfo
(self
)
25 def Create(*args
, **kwargs
):
27 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
28 long style=wxTAB_TRAVERSAL|wxNO_BORDER,
29 String name=PanelNameStr) -> bool
31 return _windows
.Panel_Create(*args
, **kwargs
)
33 def InitDialog(*args
, **kwargs
):
35 return _windows
.Panel_InitDialog(*args
, **kwargs
)
38 class PanelPtr(Panel
):
39 def __init__(self
, this
):
41 if not hasattr(self
,"thisown"): self
.thisown
= 0
42 self
.__class
__ = Panel
43 _windows
.Panel_swigregister(PanelPtr
)
45 def PrePanel(*args
, **kwargs
):
46 """PrePanel() -> Panel"""
47 val
= _windows
.new_PrePanel(*args
, **kwargs
)
51 #---------------------------------------------------------------------------
53 class ScrolledWindow(Panel
):
55 return "<%s.%s; proxy of C++ wxScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
56 def __init__(self
, *args
, **kwargs
):
58 __init__(Window parent, int id=-1, Point pos=DefaultPosition,
59 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
60 String name=PanelNameStr) -> ScrolledWindow
62 newobj
= _windows
.new_ScrolledWindow(*args
, **kwargs
)
63 self
.this
= newobj
.this
66 self
._setOORInfo
(self
)
68 def Create(*args
, **kwargs
):
70 Create(Window parent, int id=-1, Point pos=DefaultPosition,
71 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
72 String name=PanelNameStr) -> bool
74 return _windows
.ScrolledWindow_Create(*args
, **kwargs
)
76 def SetScrollbars(*args
, **kwargs
):
78 SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
79 int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
81 return _windows
.ScrolledWindow_SetScrollbars(*args
, **kwargs
)
83 def Scroll(*args
, **kwargs
):
84 """Scroll(int x, int y)"""
85 return _windows
.ScrolledWindow_Scroll(*args
, **kwargs
)
87 def GetScrollPageSize(*args
, **kwargs
):
88 """GetScrollPageSize(int orient) -> int"""
89 return _windows
.ScrolledWindow_GetScrollPageSize(*args
, **kwargs
)
91 def SetScrollPageSize(*args
, **kwargs
):
92 """SetScrollPageSize(int orient, int pageSize)"""
93 return _windows
.ScrolledWindow_SetScrollPageSize(*args
, **kwargs
)
95 def SetScrollRate(*args
, **kwargs
):
96 """SetScrollRate(int xstep, int ystep)"""
97 return _windows
.ScrolledWindow_SetScrollRate(*args
, **kwargs
)
99 def GetScrollPixelsPerUnit(*args
, **kwargs
):
101 GetScrollPixelsPerUnit() -> (xUnit, yUnit)
103 Get the size of one logical unit in physical units.
105 return _windows
.ScrolledWindow_GetScrollPixelsPerUnit(*args
, **kwargs
)
107 def EnableScrolling(*args
, **kwargs
):
108 """EnableScrolling(bool x_scrolling, bool y_scrolling)"""
109 return _windows
.ScrolledWindow_EnableScrolling(*args
, **kwargs
)
111 def GetViewStart(*args
, **kwargs
):
113 GetViewStart() -> (x,y)
117 return _windows
.ScrolledWindow_GetViewStart(*args
, **kwargs
)
119 def SetScale(*args
, **kwargs
):
120 """SetScale(double xs, double ys)"""
121 return _windows
.ScrolledWindow_SetScale(*args
, **kwargs
)
123 def GetScaleX(*args
, **kwargs
):
124 """GetScaleX() -> double"""
125 return _windows
.ScrolledWindow_GetScaleX(*args
, **kwargs
)
127 def GetScaleY(*args
, **kwargs
):
128 """GetScaleY() -> double"""
129 return _windows
.ScrolledWindow_GetScaleY(*args
, **kwargs
)
131 def CalcScrolledPosition(*args
):
133 CalcScrolledPosition(Point pt) -> Point
134 CalcScrolledPosition(int x, int y) -> (sx, sy)
136 Translate between scrolled and unscrolled coordinates.
138 return _windows
.ScrolledWindow_CalcScrolledPosition(*args
)
140 def CalcUnscrolledPosition(*args
):
142 CalcUnscrolledPosition(Point pt) -> Point
143 CalcUnscrolledPosition(int x, int y) -> (ux, uy)
145 Translate between scrolled and unscrolled coordinates.
147 return _windows
.ScrolledWindow_CalcUnscrolledPosition(*args
)
149 def AdjustScrollbars(*args
, **kwargs
):
150 """AdjustScrollbars()"""
151 return _windows
.ScrolledWindow_AdjustScrollbars(*args
, **kwargs
)
153 def CalcScrollInc(*args
, **kwargs
):
154 """CalcScrollInc(ScrollWinEvent event) -> int"""
155 return _windows
.ScrolledWindow_CalcScrollInc(*args
, **kwargs
)
157 def SetTargetWindow(*args
, **kwargs
):
158 """SetTargetWindow(Window target)"""
159 return _windows
.ScrolledWindow_SetTargetWindow(*args
, **kwargs
)
161 def GetTargetWindow(*args
, **kwargs
):
162 """GetTargetWindow() -> Window"""
163 return _windows
.ScrolledWindow_GetTargetWindow(*args
, **kwargs
)
165 def SetTargetRect(*args
, **kwargs
):
166 """SetTargetRect(Rect rect)"""
167 return _windows
.ScrolledWindow_SetTargetRect(*args
, **kwargs
)
169 def GetTargetRect(*args
, **kwargs
):
170 """GetTargetRect() -> Rect"""
171 return _windows
.ScrolledWindow_GetTargetRect(*args
, **kwargs
)
174 class ScrolledWindowPtr(ScrolledWindow
):
175 def __init__(self
, this
):
177 if not hasattr(self
,"thisown"): self
.thisown
= 0
178 self
.__class
__ = ScrolledWindow
179 _windows
.ScrolledWindow_swigregister(ScrolledWindowPtr
)
181 def PreScrolledWindow(*args
, **kwargs
):
182 """PreScrolledWindow() -> ScrolledWindow"""
183 val
= _windows
.new_PreScrolledWindow(*args
, **kwargs
)
187 #---------------------------------------------------------------------------
189 FULLSCREEN_NOMENUBAR
= _windows
.FULLSCREEN_NOMENUBAR
190 FULLSCREEN_NOTOOLBAR
= _windows
.FULLSCREEN_NOTOOLBAR
191 FULLSCREEN_NOSTATUSBAR
= _windows
.FULLSCREEN_NOSTATUSBAR
192 FULLSCREEN_NOBORDER
= _windows
.FULLSCREEN_NOBORDER
193 FULLSCREEN_NOCAPTION
= _windows
.FULLSCREEN_NOCAPTION
194 FULLSCREEN_ALL
= _windows
.FULLSCREEN_ALL
195 TOPLEVEL_EX_DIALOG
= _windows
.TOPLEVEL_EX_DIALOG
196 class TopLevelWindow(core
.Window
):
197 def __init__(self
): raise RuntimeError, "No constructor defined"
199 return "<%s.%s; proxy of C++ wxTopLevelWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
200 def Maximize(*args
, **kwargs
):
201 """Maximize(bool maximize=True)"""
202 return _windows
.TopLevelWindow_Maximize(*args
, **kwargs
)
204 def Restore(*args
, **kwargs
):
206 return _windows
.TopLevelWindow_Restore(*args
, **kwargs
)
208 def Iconize(*args
, **kwargs
):
209 """Iconize(bool iconize=True)"""
210 return _windows
.TopLevelWindow_Iconize(*args
, **kwargs
)
212 def IsMaximized(*args
, **kwargs
):
213 """IsMaximized() -> bool"""
214 return _windows
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
216 def IsIconized(*args
, **kwargs
):
217 """IsIconized() -> bool"""
218 return _windows
.TopLevelWindow_IsIconized(*args
, **kwargs
)
220 def GetIcon(*args
, **kwargs
):
221 """GetIcon() -> Icon"""
222 return _windows
.TopLevelWindow_GetIcon(*args
, **kwargs
)
224 def SetIcon(*args
, **kwargs
):
225 """SetIcon(Icon icon)"""
226 return _windows
.TopLevelWindow_SetIcon(*args
, **kwargs
)
228 def SetIcons(*args
, **kwargs
):
229 """SetIcons(wxIconBundle icons)"""
230 return _windows
.TopLevelWindow_SetIcons(*args
, **kwargs
)
232 def ShowFullScreen(*args
, **kwargs
):
233 """ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -> bool"""
234 return _windows
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
236 def IsFullScreen(*args
, **kwargs
):
237 """IsFullScreen() -> bool"""
238 return _windows
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
240 def SetTitle(*args
, **kwargs
):
241 """SetTitle(String title)"""
242 return _windows
.TopLevelWindow_SetTitle(*args
, **kwargs
)
244 def GetTitle(*args
, **kwargs
):
245 """GetTitle() -> String"""
246 return _windows
.TopLevelWindow_GetTitle(*args
, **kwargs
)
248 def SetShape(*args
, **kwargs
):
249 """SetShape(Region region) -> bool"""
250 return _windows
.TopLevelWindow_SetShape(*args
, **kwargs
)
253 class TopLevelWindowPtr(TopLevelWindow
):
254 def __init__(self
, this
):
256 if not hasattr(self
,"thisown"): self
.thisown
= 0
257 self
.__class
__ = TopLevelWindow
258 _windows
.TopLevelWindow_swigregister(TopLevelWindowPtr
)
260 FrameNameStr
= cvar
.FrameNameStr
261 DialogNameStr
= cvar
.DialogNameStr
262 StatusLineNameStr
= cvar
.StatusLineNameStr
263 ToolBarNameStr
= cvar
.ToolBarNameStr
265 #---------------------------------------------------------------------------
267 class Frame(TopLevelWindow
):
269 return "<%s.%s; proxy of C++ wxFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
270 def __init__(self
, *args
, **kwargs
):
272 __init__(Window parent, int id, String title, Point pos=DefaultPosition,
273 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
274 String name=FrameNameStr) -> Frame
276 newobj
= _windows
.new_Frame(*args
, **kwargs
)
277 self
.this
= newobj
.this
280 self
._setOORInfo
(self
)
282 def Create(*args
, **kwargs
):
284 Create(Window parent, int id, String title, Point pos=DefaultPosition,
285 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
286 String name=FrameNameStr) -> bool
288 return _windows
.Frame_Create(*args
, **kwargs
)
290 def GetClientAreaOrigin(*args
, **kwargs
):
291 """GetClientAreaOrigin() -> Point"""
292 return _windows
.Frame_GetClientAreaOrigin(*args
, **kwargs
)
294 def SendSizeEvent(*args
, **kwargs
):
295 """SendSizeEvent()"""
296 return _windows
.Frame_SendSizeEvent(*args
, **kwargs
)
298 def SetMenuBar(*args
, **kwargs
):
299 """SetMenuBar(MenuBar menubar)"""
300 return _windows
.Frame_SetMenuBar(*args
, **kwargs
)
302 def GetMenuBar(*args
, **kwargs
):
303 """GetMenuBar() -> MenuBar"""
304 return _windows
.Frame_GetMenuBar(*args
, **kwargs
)
306 def ProcessCommand(*args
, **kwargs
):
307 """ProcessCommand(int winid) -> bool"""
308 return _windows
.Frame_ProcessCommand(*args
, **kwargs
)
310 Command
= ProcessCommand
311 def CreateStatusBar(*args
, **kwargs
):
313 CreateStatusBar(int number=1, long style=ST_SIZEGRIP, int winid=0,
314 String name=StatusLineNameStr) -> StatusBar
316 return _windows
.Frame_CreateStatusBar(*args
, **kwargs
)
318 def GetStatusBar(*args
, **kwargs
):
319 """GetStatusBar() -> StatusBar"""
320 return _windows
.Frame_GetStatusBar(*args
, **kwargs
)
322 def SetStatusBar(*args
, **kwargs
):
323 """SetStatusBar(StatusBar statBar)"""
324 return _windows
.Frame_SetStatusBar(*args
, **kwargs
)
326 def SetStatusText(*args
, **kwargs
):
327 """SetStatusText(String text, int number=0)"""
328 return _windows
.Frame_SetStatusText(*args
, **kwargs
)
330 def SetStatusWidths(*args
, **kwargs
):
331 """SetStatusWidths(int widths, int widths_field)"""
332 return _windows
.Frame_SetStatusWidths(*args
, **kwargs
)
334 def PushStatusText(*args
, **kwargs
):
335 """PushStatusText(String text, int number=0)"""
336 return _windows
.Frame_PushStatusText(*args
, **kwargs
)
338 def PopStatusText(*args
, **kwargs
):
339 """PopStatusText(int number=0)"""
340 return _windows
.Frame_PopStatusText(*args
, **kwargs
)
342 def SetStatusBarPane(*args
, **kwargs
):
343 """SetStatusBarPane(int n)"""
344 return _windows
.Frame_SetStatusBarPane(*args
, **kwargs
)
346 def GetStatusBarPane(*args
, **kwargs
):
347 """GetStatusBarPane() -> int"""
348 return _windows
.Frame_GetStatusBarPane(*args
, **kwargs
)
350 def CreateToolBar(*args
, **kwargs
):
351 """CreateToolBar(long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
352 return _windows
.Frame_CreateToolBar(*args
, **kwargs
)
354 def GetToolBar(*args
, **kwargs
):
355 """GetToolBar() -> wxToolBar"""
356 return _windows
.Frame_GetToolBar(*args
, **kwargs
)
358 def SetToolBar(*args
, **kwargs
):
359 """SetToolBar(wxToolBar toolbar)"""
360 return _windows
.Frame_SetToolBar(*args
, **kwargs
)
362 def DoGiveHelp(*args
, **kwargs
):
363 """DoGiveHelp(String text, bool show)"""
364 return _windows
.Frame_DoGiveHelp(*args
, **kwargs
)
366 def DoMenuUpdates(*args
, **kwargs
):
367 """DoMenuUpdates(Menu menu=None)"""
368 return _windows
.Frame_DoMenuUpdates(*args
, **kwargs
)
371 class FramePtr(Frame
):
372 def __init__(self
, this
):
374 if not hasattr(self
,"thisown"): self
.thisown
= 0
375 self
.__class
__ = Frame
376 _windows
.Frame_swigregister(FramePtr
)
378 def PreFrame(*args
, **kwargs
):
379 """PreFrame() -> Frame"""
380 val
= _windows
.new_PreFrame(*args
, **kwargs
)
384 #---------------------------------------------------------------------------
386 class Dialog(TopLevelWindow
):
388 return "<%s.%s; proxy of C++ wxDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
389 def __init__(self
, *args
, **kwargs
):
391 __init__(Window parent, int id, String title, Point pos=DefaultPosition,
392 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
393 String name=DialogNameStr) -> Dialog
395 newobj
= _windows
.new_Dialog(*args
, **kwargs
)
396 self
.this
= newobj
.this
399 self
._setOORInfo
(self
)
401 def Create(*args
, **kwargs
):
403 Create(Window parent, int id, String title, Point pos=DefaultPosition,
404 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
405 String name=DialogNameStr) -> bool
407 return _windows
.Dialog_Create(*args
, **kwargs
)
409 def SetReturnCode(*args
, **kwargs
):
410 """SetReturnCode(int returnCode)"""
411 return _windows
.Dialog_SetReturnCode(*args
, **kwargs
)
413 def GetReturnCode(*args
, **kwargs
):
414 """GetReturnCode() -> int"""
415 return _windows
.Dialog_GetReturnCode(*args
, **kwargs
)
417 def CreateTextSizer(*args
, **kwargs
):
418 """CreateTextSizer(String message) -> Sizer"""
419 return _windows
.Dialog_CreateTextSizer(*args
, **kwargs
)
421 def CreateButtonSizer(*args
, **kwargs
):
422 """CreateButtonSizer(long flags) -> Sizer"""
423 return _windows
.Dialog_CreateButtonSizer(*args
, **kwargs
)
425 def IsModal(*args
, **kwargs
):
426 """IsModal() -> bool"""
427 return _windows
.Dialog_IsModal(*args
, **kwargs
)
429 def ShowModal(*args
, **kwargs
):
430 """ShowModal() -> int"""
431 return _windows
.Dialog_ShowModal(*args
, **kwargs
)
433 def EndModal(*args
, **kwargs
):
434 """EndModal(int retCode)"""
435 return _windows
.Dialog_EndModal(*args
, **kwargs
)
437 def IsModalShowing(*args
, **kwargs
):
438 """IsModalShowing() -> bool"""
439 return _windows
.Dialog_IsModalShowing(*args
, **kwargs
)
442 class DialogPtr(Dialog
):
443 def __init__(self
, this
):
445 if not hasattr(self
,"thisown"): self
.thisown
= 0
446 self
.__class
__ = Dialog
447 _windows
.Dialog_swigregister(DialogPtr
)
449 def PreDialog(*args
, **kwargs
):
450 """PreDialog() -> Dialog"""
451 val
= _windows
.new_PreDialog(*args
, **kwargs
)
455 #---------------------------------------------------------------------------
457 class MiniFrame(Frame
):
459 return "<%s.%s; proxy of C++ wxMiniFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
460 def __init__(self
, *args
, **kwargs
):
462 __init__(Window parent, int id, String title, Point pos=DefaultPosition,
463 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
464 String name=FrameNameStr) -> MiniFrame
466 newobj
= _windows
.new_MiniFrame(*args
, **kwargs
)
467 self
.this
= newobj
.this
470 self
._setOORInfo
(self
)
472 def Create(*args
, **kwargs
):
474 Create(Window parent, int id, String title, Point pos=DefaultPosition,
475 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
476 String name=FrameNameStr) -> bool
478 return _windows
.MiniFrame_Create(*args
, **kwargs
)
481 class MiniFramePtr(MiniFrame
):
482 def __init__(self
, this
):
484 if not hasattr(self
,"thisown"): self
.thisown
= 0
485 self
.__class
__ = MiniFrame
486 _windows
.MiniFrame_swigregister(MiniFramePtr
)
488 def PreMiniFrame(*args
, **kwargs
):
489 """PreMiniFrame() -> MiniFrame"""
490 val
= _windows
.new_PreMiniFrame(*args
, **kwargs
)
494 #---------------------------------------------------------------------------
496 SPLASH_CENTRE_ON_PARENT
= _windows
.SPLASH_CENTRE_ON_PARENT
497 SPLASH_CENTRE_ON_SCREEN
= _windows
.SPLASH_CENTRE_ON_SCREEN
498 SPLASH_NO_CENTRE
= _windows
.SPLASH_NO_CENTRE
499 SPLASH_TIMEOUT
= _windows
.SPLASH_TIMEOUT
500 SPLASH_NO_TIMEOUT
= _windows
.SPLASH_NO_TIMEOUT
501 class SplashScreenWindow(core
.Window
):
503 return "<%s.%s; proxy of C++ wxSplashScreenWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
504 def __init__(self
, *args
, **kwargs
):
506 __init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
507 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
509 newobj
= _windows
.new_SplashScreenWindow(*args
, **kwargs
)
510 self
.this
= newobj
.this
513 self
._setOORInfo
(self
)
515 def SetBitmap(*args
, **kwargs
):
516 """SetBitmap(Bitmap bitmap)"""
517 return _windows
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
519 def GetBitmap(*args
, **kwargs
):
520 """GetBitmap() -> Bitmap"""
521 return _windows
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
524 class SplashScreenWindowPtr(SplashScreenWindow
):
525 def __init__(self
, this
):
527 if not hasattr(self
,"thisown"): self
.thisown
= 0
528 self
.__class
__ = SplashScreenWindow
529 _windows
.SplashScreenWindow_swigregister(SplashScreenWindowPtr
)
531 class SplashScreen(Frame
):
533 return "<%s.%s; proxy of C++ wxSplashScreen instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
534 def __init__(self
, *args
, **kwargs
):
536 __init__(Bitmap bitmap, long splashStyle, int milliseconds,
537 Window parent, int id, Point pos=DefaultPosition,
538 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
540 newobj
= _windows
.new_SplashScreen(*args
, **kwargs
)
541 self
.this
= newobj
.this
544 self
._setOORInfo
(self
)
546 def GetSplashStyle(*args
, **kwargs
):
547 """GetSplashStyle() -> long"""
548 return _windows
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
550 def GetSplashWindow(*args
, **kwargs
):
551 """GetSplashWindow() -> SplashScreenWindow"""
552 return _windows
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
554 def GetTimeout(*args
, **kwargs
):
555 """GetTimeout() -> int"""
556 return _windows
.SplashScreen_GetTimeout(*args
, **kwargs
)
559 class SplashScreenPtr(SplashScreen
):
560 def __init__(self
, this
):
562 if not hasattr(self
,"thisown"): self
.thisown
= 0
563 self
.__class
__ = SplashScreen
564 _windows
.SplashScreen_swigregister(SplashScreenPtr
)
566 #---------------------------------------------------------------------------
568 class StatusBar(core
.Window
):
570 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
571 def __init__(self
, *args
, **kwargs
):
572 """__init__(Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> StatusBar"""
573 newobj
= _windows
.new_StatusBar(*args
, **kwargs
)
574 self
.this
= newobj
.this
577 self
._setOORInfo
(self
)
579 def Create(*args
, **kwargs
):
580 """Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
581 return _windows
.StatusBar_Create(*args
, **kwargs
)
583 def SetFieldsCount(*args
, **kwargs
):
584 """SetFieldsCount(int number=1)"""
585 return _windows
.StatusBar_SetFieldsCount(*args
, **kwargs
)
587 def GetFieldsCount(*args
, **kwargs
):
588 """GetFieldsCount() -> int"""
589 return _windows
.StatusBar_GetFieldsCount(*args
, **kwargs
)
591 def SetStatusText(*args
, **kwargs
):
592 """SetStatusText(String text, int number=0)"""
593 return _windows
.StatusBar_SetStatusText(*args
, **kwargs
)
595 def GetStatusText(*args
, **kwargs
):
596 """GetStatusText(int number=0) -> String"""
597 return _windows
.StatusBar_GetStatusText(*args
, **kwargs
)
599 def PushStatusText(*args
, **kwargs
):
600 """PushStatusText(String text, int number=0)"""
601 return _windows
.StatusBar_PushStatusText(*args
, **kwargs
)
603 def PopStatusText(*args
, **kwargs
):
604 """PopStatusText(int number=0)"""
605 return _windows
.StatusBar_PopStatusText(*args
, **kwargs
)
607 def SetStatusWidths(*args
, **kwargs
):
608 """SetStatusWidths(int widths, int widths_field)"""
609 return _windows
.StatusBar_SetStatusWidths(*args
, **kwargs
)
611 def GetFieldRect(*args
, **kwargs
):
612 """GetFieldRect(int i) -> Rect"""
613 return _windows
.StatusBar_GetFieldRect(*args
, **kwargs
)
615 def SetMinHeight(*args
, **kwargs
):
616 """SetMinHeight(int height)"""
617 return _windows
.StatusBar_SetMinHeight(*args
, **kwargs
)
619 def GetBorderX(*args
, **kwargs
):
620 """GetBorderX() -> int"""
621 return _windows
.StatusBar_GetBorderX(*args
, **kwargs
)
623 def GetBorderY(*args
, **kwargs
):
624 """GetBorderY() -> int"""
625 return _windows
.StatusBar_GetBorderY(*args
, **kwargs
)
628 class StatusBarPtr(StatusBar
):
629 def __init__(self
, this
):
631 if not hasattr(self
,"thisown"): self
.thisown
= 0
632 self
.__class
__ = StatusBar
633 _windows
.StatusBar_swigregister(StatusBarPtr
)
635 def PreStatusBar(*args
, **kwargs
):
636 """PreStatusBar() -> StatusBar"""
637 val
= _windows
.new_PreStatusBar(*args
, **kwargs
)
641 #---------------------------------------------------------------------------
643 SP_NOBORDER
= _windows
.SP_NOBORDER
644 SP_NOSASH
= _windows
.SP_NOSASH
645 SP_PERMIT_UNSPLIT
= _windows
.SP_PERMIT_UNSPLIT
646 SP_LIVE_UPDATE
= _windows
.SP_LIVE_UPDATE
647 SP_3DSASH
= _windows
.SP_3DSASH
648 SP_3DBORDER
= _windows
.SP_3DBORDER
649 SP_BORDER
= _windows
.SP_BORDER
650 SP_3D
= _windows
.SP_3D
651 SPLIT_HORIZONTAL
= _windows
.SPLIT_HORIZONTAL
652 SPLIT_VERTICAL
= _windows
.SPLIT_VERTICAL
653 SPLIT_DRAG_NONE
= _windows
.SPLIT_DRAG_NONE
654 SPLIT_DRAG_DRAGGING
= _windows
.SPLIT_DRAG_DRAGGING
655 SPLIT_DRAG_LEFT_DOWN
= _windows
.SPLIT_DRAG_LEFT_DOWN
656 class SplitterWindow(core
.Window
):
658 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
659 def __init__(self
, *args
, **kwargs
):
661 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
662 long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
664 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point']
665 newobj
= _windows
.new_SplitterWindow(*args
, **kwargs
)
666 self
.this
= newobj
.this
669 self
._setOORInfo
(self
)
671 def Create(*args
, **kwargs
):
673 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
674 long style=SP_3D, String name=SplitterNameStr) -> bool
676 return _windows
.SplitterWindow_Create(*args
, **kwargs
)
678 def GetWindow1(*args
, **kwargs
):
679 """GetWindow1() -> Window"""
680 return _windows
.SplitterWindow_GetWindow1(*args
, **kwargs
)
682 def GetWindow2(*args
, **kwargs
):
683 """GetWindow2() -> Window"""
684 return _windows
.SplitterWindow_GetWindow2(*args
, **kwargs
)
686 def SetSplitMode(*args
, **kwargs
):
687 """SetSplitMode(int mode)"""
688 return _windows
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
690 def GetSplitMode(*args
, **kwargs
):
691 """GetSplitMode() -> int"""
692 return _windows
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
694 def Initialize(*args
, **kwargs
):
695 """Initialize(Window window)"""
696 return _windows
.SplitterWindow_Initialize(*args
, **kwargs
)
698 def SplitVertically(*args
, **kwargs
):
699 """SplitVertically(Window window1, Window window2, int sashPosition=0) -> bool"""
700 return _windows
.SplitterWindow_SplitVertically(*args
, **kwargs
)
702 def SplitHorizontally(*args
, **kwargs
):
703 """SplitHorizontally(Window window1, Window window2, int sashPosition=0) -> bool"""
704 return _windows
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
706 def Unsplit(*args
, **kwargs
):
707 """Unsplit(Window toRemove=None) -> bool"""
708 return _windows
.SplitterWindow_Unsplit(*args
, **kwargs
)
710 def ReplaceWindow(*args
, **kwargs
):
711 """ReplaceWindow(Window winOld, Window winNew) -> bool"""
712 return _windows
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
714 def IsSplit(*args
, **kwargs
):
715 """IsSplit() -> bool"""
716 return _windows
.SplitterWindow_IsSplit(*args
, **kwargs
)
718 def SetSashSize(*args
, **kwargs
):
719 """SetSashSize(int width)"""
720 return _windows
.SplitterWindow_SetSashSize(*args
, **kwargs
)
722 def SetBorderSize(*args
, **kwargs
):
723 """SetBorderSize(int width)"""
724 return _windows
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
726 def GetSashSize(*args
, **kwargs
):
727 """GetSashSize() -> int"""
728 return _windows
.SplitterWindow_GetSashSize(*args
, **kwargs
)
730 def GetBorderSize(*args
, **kwargs
):
731 """GetBorderSize() -> int"""
732 return _windows
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
734 def SetSashPosition(*args
, **kwargs
):
735 """SetSashPosition(int position, bool redraw=True)"""
736 return _windows
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
738 def GetSashPosition(*args
, **kwargs
):
739 """GetSashPosition() -> int"""
740 return _windows
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
742 def SetMinimumPaneSize(*args
, **kwargs
):
743 """SetMinimumPaneSize(int min)"""
744 return _windows
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
746 def GetMinimumPaneSize(*args
, **kwargs
):
747 """GetMinimumPaneSize() -> int"""
748 return _windows
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
750 def SashHitTest(*args
, **kwargs
):
751 """SashHitTest(int x, int y, int tolerance=5) -> bool"""
752 return _windows
.SplitterWindow_SashHitTest(*args
, **kwargs
)
754 def SizeWindows(*args
, **kwargs
):
756 return _windows
.SplitterWindow_SizeWindows(*args
, **kwargs
)
758 def SetNeedUpdating(*args
, **kwargs
):
759 """SetNeedUpdating(bool needUpdating)"""
760 return _windows
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
762 def GetNeedUpdating(*args
, **kwargs
):
763 """GetNeedUpdating() -> bool"""
764 return _windows
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
767 class SplitterWindowPtr(SplitterWindow
):
768 def __init__(self
, this
):
770 if not hasattr(self
,"thisown"): self
.thisown
= 0
771 self
.__class
__ = SplitterWindow
772 _windows
.SplitterWindow_swigregister(SplitterWindowPtr
)
773 SplitterNameStr
= cvar
.SplitterNameStr
775 def PreSplitterWindow(*args
, **kwargs
):
776 """PreSplitterWindow() -> SplitterWindow"""
777 val
= _windows
.new_PreSplitterWindow(*args
, **kwargs
)
781 class SplitterEvent(core
.NotifyEvent
):
783 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
784 def __init__(self
, *args
, **kwargs
):
785 """__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent"""
786 newobj
= _windows
.new_SplitterEvent(*args
, **kwargs
)
787 self
.this
= newobj
.this
790 def SetSashPosition(*args
, **kwargs
):
791 """SetSashPosition(int pos)"""
792 return _windows
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
794 def GetSashPosition(*args
, **kwargs
):
795 """GetSashPosition() -> int"""
796 return _windows
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
798 def GetWindowBeingRemoved(*args
, **kwargs
):
799 """GetWindowBeingRemoved() -> Window"""
800 return _windows
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
802 def GetX(*args
, **kwargs
):
804 return _windows
.SplitterEvent_GetX(*args
, **kwargs
)
806 def GetY(*args
, **kwargs
):
808 return _windows
.SplitterEvent_GetY(*args
, **kwargs
)
811 class SplitterEventPtr(SplitterEvent
):
812 def __init__(self
, this
):
814 if not hasattr(self
,"thisown"): self
.thisown
= 0
815 self
.__class
__ = SplitterEvent
816 _windows
.SplitterEvent_swigregister(SplitterEventPtr
)
818 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
819 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
820 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
821 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows
.wxEVT_COMMAND_SPLITTER_UNSPLIT
822 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
823 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
824 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
825 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
827 #---------------------------------------------------------------------------
829 SASH_DRAG_NONE
= _windows
.SASH_DRAG_NONE
830 SASH_DRAG_DRAGGING
= _windows
.SASH_DRAG_DRAGGING
831 SASH_DRAG_LEFT_DOWN
= _windows
.SASH_DRAG_LEFT_DOWN
832 SW_NOBORDER
= _windows
.SW_NOBORDER
833 SW_BORDER
= _windows
.SW_BORDER
834 SW_3DSASH
= _windows
.SW_3DSASH
835 SW_3DBORDER
= _windows
.SW_3DBORDER
836 SW_3D
= _windows
.SW_3D
837 SASH_TOP
= _windows
.SASH_TOP
838 SASH_RIGHT
= _windows
.SASH_RIGHT
839 SASH_BOTTOM
= _windows
.SASH_BOTTOM
840 SASH_LEFT
= _windows
.SASH_LEFT
841 SASH_NONE
= _windows
.SASH_NONE
842 class SashWindow(core
.Window
):
844 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
845 def __init__(self
, *args
, **kwargs
):
847 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
848 long style=wxCLIP_CHILDREN|wxSW_3D,
849 String name=SashNameStr) -> SashWindow
851 newobj
= _windows
.new_SashWindow(*args
, **kwargs
)
852 self
.this
= newobj
.this
855 self
._setOORInfo
(self
)
857 def Create(*args
, **kwargs
):
859 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
860 long style=wxCLIP_CHILDREN|wxSW_3D,
861 String name=SashNameStr) -> bool
863 return _windows
.SashWindow_Create(*args
, **kwargs
)
865 def SetSashVisible(*args
, **kwargs
):
866 """SetSashVisible(int edge, bool sash)"""
867 return _windows
.SashWindow_SetSashVisible(*args
, **kwargs
)
869 def GetSashVisible(*args
, **kwargs
):
870 """GetSashVisible(int edge) -> bool"""
871 return _windows
.SashWindow_GetSashVisible(*args
, **kwargs
)
873 def SetSashBorder(*args
, **kwargs
):
874 """SetSashBorder(int edge, bool border)"""
875 return _windows
.SashWindow_SetSashBorder(*args
, **kwargs
)
877 def HasBorder(*args
, **kwargs
):
878 """HasBorder(int edge) -> bool"""
879 return _windows
.SashWindow_HasBorder(*args
, **kwargs
)
881 def GetEdgeMargin(*args
, **kwargs
):
882 """GetEdgeMargin(int edge) -> int"""
883 return _windows
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
885 def SetDefaultBorderSize(*args
, **kwargs
):
886 """SetDefaultBorderSize(int width)"""
887 return _windows
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
889 def GetDefaultBorderSize(*args
, **kwargs
):
890 """GetDefaultBorderSize() -> int"""
891 return _windows
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
893 def SetExtraBorderSize(*args
, **kwargs
):
894 """SetExtraBorderSize(int width)"""
895 return _windows
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
897 def GetExtraBorderSize(*args
, **kwargs
):
898 """GetExtraBorderSize() -> int"""
899 return _windows
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
901 def SetMinimumSizeX(*args
, **kwargs
):
902 """SetMinimumSizeX(int min)"""
903 return _windows
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
905 def SetMinimumSizeY(*args
, **kwargs
):
906 """SetMinimumSizeY(int min)"""
907 return _windows
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
909 def GetMinimumSizeX(*args
, **kwargs
):
910 """GetMinimumSizeX() -> int"""
911 return _windows
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
913 def GetMinimumSizeY(*args
, **kwargs
):
914 """GetMinimumSizeY() -> int"""
915 return _windows
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
917 def SetMaximumSizeX(*args
, **kwargs
):
918 """SetMaximumSizeX(int max)"""
919 return _windows
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
921 def SetMaximumSizeY(*args
, **kwargs
):
922 """SetMaximumSizeY(int max)"""
923 return _windows
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
925 def GetMaximumSizeX(*args
, **kwargs
):
926 """GetMaximumSizeX() -> int"""
927 return _windows
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
929 def GetMaximumSizeY(*args
, **kwargs
):
930 """GetMaximumSizeY() -> int"""
931 return _windows
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
933 def SashHitTest(*args
, **kwargs
):
934 """SashHitTest(int x, int y, int tolerance=2) -> int"""
935 return _windows
.SashWindow_SashHitTest(*args
, **kwargs
)
937 def SizeWindows(*args
, **kwargs
):
939 return _windows
.SashWindow_SizeWindows(*args
, **kwargs
)
942 class SashWindowPtr(SashWindow
):
943 def __init__(self
, this
):
945 if not hasattr(self
,"thisown"): self
.thisown
= 0
946 self
.__class
__ = SashWindow
947 _windows
.SashWindow_swigregister(SashWindowPtr
)
948 SashNameStr
= cvar
.SashNameStr
949 SashLayoutNameStr
= cvar
.SashLayoutNameStr
951 def PreSashWindow(*args
, **kwargs
):
952 """PreSashWindow() -> SashWindow"""
953 val
= _windows
.new_PreSashWindow(*args
, **kwargs
)
957 SASH_STATUS_OK
= _windows
.SASH_STATUS_OK
958 SASH_STATUS_OUT_OF_RANGE
= _windows
.SASH_STATUS_OUT_OF_RANGE
959 class SashEvent(core
.CommandEvent
):
961 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
962 def __init__(self
, *args
, **kwargs
):
963 """__init__(int id=0, int edge=SASH_NONE) -> SashEvent"""
964 newobj
= _windows
.new_SashEvent(*args
, **kwargs
)
965 self
.this
= newobj
.this
968 def SetEdge(*args
, **kwargs
):
969 """SetEdge(int edge)"""
970 return _windows
.SashEvent_SetEdge(*args
, **kwargs
)
972 def GetEdge(*args
, **kwargs
):
973 """GetEdge() -> int"""
974 return _windows
.SashEvent_GetEdge(*args
, **kwargs
)
976 def SetDragRect(*args
, **kwargs
):
977 """SetDragRect(Rect rect)"""
978 return _windows
.SashEvent_SetDragRect(*args
, **kwargs
)
980 def GetDragRect(*args
, **kwargs
):
981 """GetDragRect() -> Rect"""
982 return _windows
.SashEvent_GetDragRect(*args
, **kwargs
)
984 def SetDragStatus(*args
, **kwargs
):
985 """SetDragStatus(int status)"""
986 return _windows
.SashEvent_SetDragStatus(*args
, **kwargs
)
988 def GetDragStatus(*args
, **kwargs
):
989 """GetDragStatus() -> int"""
990 return _windows
.SashEvent_GetDragStatus(*args
, **kwargs
)
993 class SashEventPtr(SashEvent
):
994 def __init__(self
, this
):
996 if not hasattr(self
,"thisown"): self
.thisown
= 0
997 self
.__class
__ = SashEvent
998 _windows
.SashEvent_swigregister(SashEventPtr
)
1000 wxEVT_SASH_DRAGGED
= _windows
.wxEVT_SASH_DRAGGED
1001 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1002 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1004 #---------------------------------------------------------------------------
1006 LAYOUT_HORIZONTAL
= _windows
.LAYOUT_HORIZONTAL
1007 LAYOUT_VERTICAL
= _windows
.LAYOUT_VERTICAL
1008 LAYOUT_NONE
= _windows
.LAYOUT_NONE
1009 LAYOUT_TOP
= _windows
.LAYOUT_TOP
1010 LAYOUT_LEFT
= _windows
.LAYOUT_LEFT
1011 LAYOUT_RIGHT
= _windows
.LAYOUT_RIGHT
1012 LAYOUT_BOTTOM
= _windows
.LAYOUT_BOTTOM
1013 LAYOUT_LENGTH_Y
= _windows
.LAYOUT_LENGTH_Y
1014 LAYOUT_LENGTH_X
= _windows
.LAYOUT_LENGTH_X
1015 LAYOUT_MRU_LENGTH
= _windows
.LAYOUT_MRU_LENGTH
1016 LAYOUT_QUERY
= _windows
.LAYOUT_QUERY
1017 wxEVT_QUERY_LAYOUT_INFO
= _windows
.wxEVT_QUERY_LAYOUT_INFO
1018 wxEVT_CALCULATE_LAYOUT
= _windows
.wxEVT_CALCULATE_LAYOUT
1019 class QueryLayoutInfoEvent(core
.Event
):
1021 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1022 def __init__(self
, *args
, **kwargs
):
1023 """__init__(int id=0) -> QueryLayoutInfoEvent"""
1024 newobj
= _windows
.new_QueryLayoutInfoEvent(*args
, **kwargs
)
1025 self
.this
= newobj
.this
1028 def SetRequestedLength(*args
, **kwargs
):
1029 """SetRequestedLength(int length)"""
1030 return _windows
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1032 def GetRequestedLength(*args
, **kwargs
):
1033 """GetRequestedLength() -> int"""
1034 return _windows
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1036 def SetFlags(*args
, **kwargs
):
1037 """SetFlags(int flags)"""
1038 return _windows
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1040 def GetFlags(*args
, **kwargs
):
1041 """GetFlags() -> int"""
1042 return _windows
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1044 def SetSize(*args
, **kwargs
):
1045 """SetSize(Size size)"""
1046 return _windows
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1048 def GetSize(*args
, **kwargs
):
1049 """GetSize() -> Size"""
1050 return _windows
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1052 def SetOrientation(*args
, **kwargs
):
1053 """SetOrientation(int orient)"""
1054 return _windows
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1056 def GetOrientation(*args
, **kwargs
):
1057 """GetOrientation() -> int"""
1058 return _windows
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1060 def SetAlignment(*args
, **kwargs
):
1061 """SetAlignment(int align)"""
1062 return _windows
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1064 def GetAlignment(*args
, **kwargs
):
1065 """GetAlignment() -> int"""
1066 return _windows
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1069 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent
):
1070 def __init__(self
, this
):
1072 if not hasattr(self
,"thisown"): self
.thisown
= 0
1073 self
.__class
__ = QueryLayoutInfoEvent
1074 _windows
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr
)
1076 class CalculateLayoutEvent(core
.Event
):
1078 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1079 def __init__(self
, *args
, **kwargs
):
1080 """__init__(int id=0) -> CalculateLayoutEvent"""
1081 newobj
= _windows
.new_CalculateLayoutEvent(*args
, **kwargs
)
1082 self
.this
= newobj
.this
1085 def SetFlags(*args
, **kwargs
):
1086 """SetFlags(int flags)"""
1087 return _windows
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1089 def GetFlags(*args
, **kwargs
):
1090 """GetFlags() -> int"""
1091 return _windows
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1093 def SetRect(*args
, **kwargs
):
1094 """SetRect(Rect rect)"""
1095 return _windows
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1097 def GetRect(*args
, **kwargs
):
1098 """GetRect() -> Rect"""
1099 return _windows
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1102 class CalculateLayoutEventPtr(CalculateLayoutEvent
):
1103 def __init__(self
, this
):
1105 if not hasattr(self
,"thisown"): self
.thisown
= 0
1106 self
.__class
__ = CalculateLayoutEvent
1107 _windows
.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr
)
1109 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1110 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1112 class SashLayoutWindow(SashWindow
):
1114 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1115 def __init__(self
, *args
, **kwargs
):
1117 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1118 long style=wxCLIP_CHILDREN|wxSW_3D,
1119 String name=SashLayoutNameStr) -> SashLayoutWindow
1121 newobj
= _windows
.new_SashLayoutWindow(*args
, **kwargs
)
1122 self
.this
= newobj
.this
1125 self
._setOORInfo
(self
)
1127 def Create(*args
, **kwargs
):
1129 Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1130 long style=wxCLIP_CHILDREN|wxSW_3D,
1131 String name=SashLayoutNameStr) -> bool
1133 return _windows
.SashLayoutWindow_Create(*args
, **kwargs
)
1135 def GetAlignment(*args
, **kwargs
):
1136 """GetAlignment() -> int"""
1137 return _windows
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1139 def GetOrientation(*args
, **kwargs
):
1140 """GetOrientation() -> int"""
1141 return _windows
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1143 def SetAlignment(*args
, **kwargs
):
1144 """SetAlignment(int alignment)"""
1145 return _windows
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1147 def SetDefaultSize(*args
, **kwargs
):
1148 """SetDefaultSize(Size size)"""
1149 return _windows
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1151 def SetOrientation(*args
, **kwargs
):
1152 """SetOrientation(int orientation)"""
1153 return _windows
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1156 class SashLayoutWindowPtr(SashLayoutWindow
):
1157 def __init__(self
, this
):
1159 if not hasattr(self
,"thisown"): self
.thisown
= 0
1160 self
.__class
__ = SashLayoutWindow
1161 _windows
.SashLayoutWindow_swigregister(SashLayoutWindowPtr
)
1163 def PreSashLayoutWindow(*args
, **kwargs
):
1164 """PreSashLayoutWindow() -> SashLayoutWindow"""
1165 val
= _windows
.new_PreSashLayoutWindow(*args
, **kwargs
)
1169 class LayoutAlgorithm(core
.Object
):
1171 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1172 def __init__(self
, *args
, **kwargs
):
1173 """__init__() -> LayoutAlgorithm"""
1174 newobj
= _windows
.new_LayoutAlgorithm(*args
, **kwargs
)
1175 self
.this
= newobj
.this
1178 def __del__(self
, destroy
=_windows
.delete_LayoutAlgorithm
):
1181 if self
.thisown
: destroy(self
)
1184 def LayoutMDIFrame(*args
, **kwargs
):
1185 """LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -> bool"""
1186 return _windows
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1188 def LayoutFrame(*args
, **kwargs
):
1189 """LayoutFrame(Frame frame, Window mainWindow=None) -> bool"""
1190 return _windows
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1192 def LayoutWindow(*args
, **kwargs
):
1193 """LayoutWindow(Window parent, Window mainWindow=None) -> bool"""
1194 return _windows
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1197 class LayoutAlgorithmPtr(LayoutAlgorithm
):
1198 def __init__(self
, this
):
1200 if not hasattr(self
,"thisown"): self
.thisown
= 0
1201 self
.__class
__ = LayoutAlgorithm
1202 _windows
.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr
)
1204 class PopupWindow(core
.Window
):
1206 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1207 def __init__(self
, *args
, **kwargs
):
1208 """__init__(Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1209 newobj
= _windows
.new_PopupWindow(*args
, **kwargs
)
1210 self
.this
= newobj
.this
1214 class PopupWindowPtr(PopupWindow
):
1215 def __init__(self
, this
):
1217 if not hasattr(self
,"thisown"): self
.thisown
= 0
1218 self
.__class
__ = PopupWindow
1219 _windows
.PopupWindow_swigregister(PopupWindowPtr
)
1221 def PrePopupWindow(*args
, **kwargs
):
1222 """PrePopupWindow() -> PopupWindow"""
1223 val
= _windows
.new_PrePopupWindow(*args
, **kwargs
)
1227 class PopupTransientWindow(PopupWindow
):
1229 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1230 def __init__(self
, *args
, **kwargs
):
1231 """__init__(Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1232 newobj
= _windows
.new_PopupTransientWindow(*args
, **kwargs
)
1233 self
.this
= newobj
.this
1237 class PopupTransientWindowPtr(PopupTransientWindow
):
1238 def __init__(self
, this
):
1240 if not hasattr(self
,"thisown"): self
.thisown
= 0
1241 self
.__class
__ = PopupTransientWindow
1242 _windows
.PopupTransientWindow_swigregister(PopupTransientWindowPtr
)
1244 def PrePopupTransientWindow(*args
, **kwargs
):
1245 """PrePopupTransientWindow() -> PopupTransientWindow"""
1246 val
= _windows
.new_PrePopupTransientWindow(*args
, **kwargs
)
1250 #---------------------------------------------------------------------------
1252 class TipWindow(Frame
):
1254 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1255 def __init__(self
, *args
, **kwargs
):
1256 """__init__(Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1257 newobj
= _windows
.new_TipWindow(*args
, **kwargs
)
1258 self
.this
= newobj
.this
1261 self
._setOORInfo
(self
)
1263 def SetBoundingRect(*args
, **kwargs
):
1264 """SetBoundingRect(Rect rectBound)"""
1265 return _windows
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1267 def Close(*args
, **kwargs
):
1269 return _windows
.TipWindow_Close(*args
, **kwargs
)
1272 class TipWindowPtr(TipWindow
):
1273 def __init__(self
, this
):
1275 if not hasattr(self
,"thisown"): self
.thisown
= 0
1276 self
.__class
__ = TipWindow
1277 _windows
.TipWindow_swigregister(TipWindowPtr
)
1279 #---------------------------------------------------------------------------
1281 class VScrolledWindow(Panel
):
1283 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1284 def __init__(self
, *args
, **kwargs
):
1286 __init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1287 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1289 newobj
= _windows
.new_VScrolledWindow(*args
, **kwargs
)
1290 self
.this
= newobj
.this
1293 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1295 def _setCallbackInfo(*args
, **kwargs
):
1296 """_setCallbackInfo(PyObject self, PyObject _class)"""
1297 return _windows
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1299 def Create(*args
, **kwargs
):
1301 Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1302 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1304 return _windows
.VScrolledWindow_Create(*args
, **kwargs
)
1306 def SetLineCount(*args
, **kwargs
):
1307 """SetLineCount(size_t count)"""
1308 return _windows
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1310 def ScrollToLine(*args
, **kwargs
):
1311 """ScrollToLine(size_t line) -> bool"""
1312 return _windows
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1314 def ScrollLines(*args
, **kwargs
):
1315 """ScrollLines(int lines) -> bool"""
1316 return _windows
.VScrolledWindow_ScrollLines(*args
, **kwargs
)
1318 def ScrollPages(*args
, **kwargs
):
1319 """ScrollPages(int pages) -> bool"""
1320 return _windows
.VScrolledWindow_ScrollPages(*args
, **kwargs
)
1322 def RefreshLine(*args
, **kwargs
):
1323 """RefreshLine(size_t line)"""
1324 return _windows
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1326 def RefreshLines(*args
, **kwargs
):
1327 """RefreshLines(size_t from, size_t to)"""
1328 return _windows
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1330 def HitTestXT(*args
, **kwargs
):
1331 """HitTestXT(int x, int y) -> int"""
1332 return _windows
.VScrolledWindow_HitTestXT(*args
, **kwargs
)
1334 def HitTest(*args
, **kwargs
):
1335 """HitTest(Point pt) -> int"""
1336 return _windows
.VScrolledWindow_HitTest(*args
, **kwargs
)
1338 def RefreshAll(*args
, **kwargs
):
1340 return _windows
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1342 def GetLineCount(*args
, **kwargs
):
1343 """GetLineCount() -> size_t"""
1344 return _windows
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1346 def GetFirstVisibleLine(*args
, **kwargs
):
1347 """GetFirstVisibleLine() -> size_t"""
1348 return _windows
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1350 def GetLastVisibleLine(*args
, **kwargs
):
1351 """GetLastVisibleLine() -> size_t"""
1352 return _windows
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1354 def IsVisible(*args
, **kwargs
):
1355 """IsVisible(size_t line) -> bool"""
1356 return _windows
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1359 class VScrolledWindowPtr(VScrolledWindow
):
1360 def __init__(self
, this
):
1362 if not hasattr(self
,"thisown"): self
.thisown
= 0
1363 self
.__class
__ = VScrolledWindow
1364 _windows
.VScrolledWindow_swigregister(VScrolledWindowPtr
)
1366 def PreVScrolledWindow(*args
, **kwargs
):
1367 """PreVScrolledWindow() -> VScrolledWindow"""
1368 val
= _windows
.new_PreVScrolledWindow(*args
, **kwargs
)
1372 class VListBox(VScrolledWindow
):
1374 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1375 def __init__(self
, *args
, **kwargs
):
1377 __init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1378 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1380 newobj
= _windows
.new_VListBox(*args
, **kwargs
)
1381 self
.this
= newobj
.this
1384 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1386 def _setCallbackInfo(*args
, **kwargs
):
1387 """_setCallbackInfo(PyObject self, PyObject _class)"""
1388 return _windows
.VListBox__setCallbackInfo(*args
, **kwargs
)
1390 def Create(*args
, **kwargs
):
1392 Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1393 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1395 return _windows
.VListBox_Create(*args
, **kwargs
)
1397 def GetItemCount(*args
, **kwargs
):
1398 """GetItemCount() -> size_t"""
1399 return _windows
.VListBox_GetItemCount(*args
, **kwargs
)
1401 def HasMultipleSelection(*args
, **kwargs
):
1402 """HasMultipleSelection() -> bool"""
1403 return _windows
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1405 def GetSelection(*args
, **kwargs
):
1406 """GetSelection() -> int"""
1407 return _windows
.VListBox_GetSelection(*args
, **kwargs
)
1409 def IsCurrent(*args
, **kwargs
):
1410 """IsCurrent(size_t item) -> bool"""
1411 return _windows
.VListBox_IsCurrent(*args
, **kwargs
)
1413 def IsSelected(*args
, **kwargs
):
1414 """IsSelected(size_t item) -> bool"""
1415 return _windows
.VListBox_IsSelected(*args
, **kwargs
)
1417 def GetSelectedCount(*args
, **kwargs
):
1418 """GetSelectedCount() -> size_t"""
1419 return _windows
.VListBox_GetSelectedCount(*args
, **kwargs
)
1421 def GetFirstSelected(*args
, **kwargs
):
1422 """GetFirstSelected(unsigned long cookie) -> int"""
1423 return _windows
.VListBox_GetFirstSelected(*args
, **kwargs
)
1425 def GetNextSelected(*args
, **kwargs
):
1426 """GetNextSelected(unsigned long cookie) -> int"""
1427 return _windows
.VListBox_GetNextSelected(*args
, **kwargs
)
1429 def GetMargins(*args
, **kwargs
):
1430 """GetMargins() -> Point"""
1431 return _windows
.VListBox_GetMargins(*args
, **kwargs
)
1433 def GetSelectionBackground(*args
, **kwargs
):
1434 """GetSelectionBackground() -> Colour"""
1435 return _windows
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1437 def SetItemCount(*args
, **kwargs
):
1438 """SetItemCount(size_t count)"""
1439 return _windows
.VListBox_SetItemCount(*args
, **kwargs
)
1441 def Clear(*args
, **kwargs
):
1443 return _windows
.VListBox_Clear(*args
, **kwargs
)
1445 def SetSelection(*args
, **kwargs
):
1446 """SetSelection(int selection)"""
1447 return _windows
.VListBox_SetSelection(*args
, **kwargs
)
1449 def Select(*args
, **kwargs
):
1450 """Select(size_t item, bool select=True) -> bool"""
1451 return _windows
.VListBox_Select(*args
, **kwargs
)
1453 def SelectRange(*args
, **kwargs
):
1454 """SelectRange(size_t from, size_t to) -> bool"""
1455 return _windows
.VListBox_SelectRange(*args
, **kwargs
)
1457 def Toggle(*args
, **kwargs
):
1458 """Toggle(size_t item)"""
1459 return _windows
.VListBox_Toggle(*args
, **kwargs
)
1461 def SelectAll(*args
, **kwargs
):
1462 """SelectAll() -> bool"""
1463 return _windows
.VListBox_SelectAll(*args
, **kwargs
)
1465 def DeselectAll(*args
, **kwargs
):
1466 """DeselectAll() -> bool"""
1467 return _windows
.VListBox_DeselectAll(*args
, **kwargs
)
1469 def SetMargins(*args
, **kwargs
):
1470 """SetMargins(Point pt)"""
1471 return _windows
.VListBox_SetMargins(*args
, **kwargs
)
1473 def SetMarginsXY(*args
, **kwargs
):
1474 """SetMarginsXY(int x, int y)"""
1475 return _windows
.VListBox_SetMarginsXY(*args
, **kwargs
)
1477 def SetSelectionBackground(*args
, **kwargs
):
1478 """SetSelectionBackground(Colour col)"""
1479 return _windows
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1482 class VListBoxPtr(VListBox
):
1483 def __init__(self
, this
):
1485 if not hasattr(self
,"thisown"): self
.thisown
= 0
1486 self
.__class
__ = VListBox
1487 _windows
.VListBox_swigregister(VListBoxPtr
)
1488 VListBoxNameStr
= cvar
.VListBoxNameStr
1490 def PreVListBox(*args
, **kwargs
):
1491 """PreVListBox() -> VListBox"""
1492 val
= _windows
.new_PreVListBox(*args
, **kwargs
)
1496 class HtmlListBox(VListBox
):
1498 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1499 def __init__(self
, *args
, **kwargs
):
1501 __init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1502 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1504 newobj
= _windows
.new_HtmlListBox(*args
, **kwargs
)
1505 self
.this
= newobj
.this
1508 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1510 def _setCallbackInfo(*args
, **kwargs
):
1511 """_setCallbackInfo(PyObject self, PyObject _class)"""
1512 return _windows
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1514 def Create(*args
, **kwargs
):
1516 Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1517 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1519 return _windows
.HtmlListBox_Create(*args
, **kwargs
)
1521 def RefreshAll(*args
, **kwargs
):
1523 return _windows
.HtmlListBox_RefreshAll(*args
, **kwargs
)
1525 def SetItemCount(*args
, **kwargs
):
1526 """SetItemCount(size_t count)"""
1527 return _windows
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1530 class HtmlListBoxPtr(HtmlListBox
):
1531 def __init__(self
, this
):
1533 if not hasattr(self
,"thisown"): self
.thisown
= 0
1534 self
.__class
__ = HtmlListBox
1535 _windows
.HtmlListBox_swigregister(HtmlListBoxPtr
)
1537 def PreHtmlListBox(*args
, **kwargs
):
1538 """PreHtmlListBox() -> HtmlListBox"""
1539 val
= _windows
.new_PreHtmlListBox(*args
, **kwargs
)
1543 #---------------------------------------------------------------------------
1545 class TaskBarIcon(core
.EvtHandler
):
1547 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1548 def __init__(self
, *args
, **kwargs
):
1549 """__init__() -> TaskBarIcon"""
1550 newobj
= _windows
.new_TaskBarIcon(*args
, **kwargs
)
1551 self
.this
= newobj
.this
1554 def __del__(self
, destroy
=_windows
.delete_TaskBarIcon
):
1557 if self
.thisown
: destroy(self
)
1561 class TaskBarIconPtr(TaskBarIcon
):
1562 def __init__(self
, this
):
1564 if not hasattr(self
,"thisown"): self
.thisown
= 0
1565 self
.__class
__ = TaskBarIcon
1566 _windows
.TaskBarIcon_swigregister(TaskBarIconPtr
)
1568 class TaskBarIconEvent(core
.Event
):
1570 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1571 def __init__(self
, *args
, **kwargs
):
1572 """__init__(wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
1573 newobj
= _windows
.new_TaskBarIconEvent(*args
, **kwargs
)
1574 self
.this
= newobj
.this
1578 class TaskBarIconEventPtr(TaskBarIconEvent
):
1579 def __init__(self
, this
):
1581 if not hasattr(self
,"thisown"): self
.thisown
= 0
1582 self
.__class
__ = TaskBarIconEvent
1583 _windows
.TaskBarIconEvent_swigregister(TaskBarIconEventPtr
)
1585 wxEVT_TASKBAR_MOVE
= _windows
.wxEVT_TASKBAR_MOVE
1586 wxEVT_TASKBAR_LEFT_DOWN
= _windows
.wxEVT_TASKBAR_LEFT_DOWN
1587 wxEVT_TASKBAR_LEFT_UP
= _windows
.wxEVT_TASKBAR_LEFT_UP
1588 wxEVT_TASKBAR_RIGHT_DOWN
= _windows
.wxEVT_TASKBAR_RIGHT_DOWN
1589 wxEVT_TASKBAR_RIGHT_UP
= _windows
.wxEVT_TASKBAR_RIGHT_UP
1590 wxEVT_TASKBAR_LEFT_DCLICK
= _windows
.wxEVT_TASKBAR_LEFT_DCLICK
1591 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows
.wxEVT_TASKBAR_RIGHT_DCLICK
1592 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
1593 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
1594 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
1595 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
1596 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
1597 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
1598 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
1600 #---------------------------------------------------------------------------
1602 class ColourData(core
.Object
):
1603 """This class holds a variety of information related to colour dialogs."""
1605 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1606 def __init__(self
, *args
, **kwargs
):
1608 __init__() -> ColourData
1610 Constructor, sets default values.
1612 newobj
= _windows
.new_ColourData(*args
, **kwargs
)
1613 self
.this
= newobj
.this
1616 def __del__(self
, destroy
=_windows
.delete_ColourData
):
1619 if self
.thisown
: destroy(self
)
1622 def GetChooseFull(*args
, **kwargs
):
1624 GetChooseFull() -> bool
1626 Under Windows, determines whether the Windows colour dialog will display
1627 the full dialog with custom colour selection controls. Has no meaning
1628 under other platforms. The default value is true.
1630 return _windows
.ColourData_GetChooseFull(*args
, **kwargs
)
1632 def GetColour(*args
, **kwargs
):
1634 GetColour() -> Colour
1636 Gets the colour (pre)selected by the dialog.
1638 return _windows
.ColourData_GetColour(*args
, **kwargs
)
1640 def GetCustomColour(*args
, **kwargs
):
1642 GetCustomColour(int i) -> Colour
1644 Gets the i'th custom colour associated with the colour dialog. i should
1645 be an integer between 0 and 15. The default custom colours are all white.
1647 return _windows
.ColourData_GetCustomColour(*args
, **kwargs
)
1649 def SetChooseFull(*args
, **kwargs
):
1651 SetChooseFull(int flag)
1653 Under Windows, tells the Windows colour dialog to display the full dialog
1654 with custom colour selection controls. Under other platforms, has no effect.
1655 The default value is true.
1657 return _windows
.ColourData_SetChooseFull(*args
, **kwargs
)
1659 def SetColour(*args
, **kwargs
):
1661 SetColour(Colour colour)
1663 Sets the default colour for the colour dialog. The default colour is black.
1665 return _windows
.ColourData_SetColour(*args
, **kwargs
)
1667 def SetCustomColour(*args
, **kwargs
):
1669 SetCustomColour(int i, Colour colour)
1671 Sets the i'th custom colour for the colour dialog. i should be an integer
1672 between 0 and 15. The default custom colours are all white.
1674 return _windows
.ColourData_SetCustomColour(*args
, **kwargs
)
1677 class ColourDataPtr(ColourData
):
1678 def __init__(self
, this
):
1680 if not hasattr(self
,"thisown"): self
.thisown
= 0
1681 self
.__class
__ = ColourData
1682 _windows
.ColourData_swigregister(ColourDataPtr
)
1683 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
1684 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
1685 DirDialogNameStr
= cvar
.DirDialogNameStr
1686 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
1687 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
1688 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
1690 class ColourDialog(Dialog
):
1691 """This class represents the colour chooser dialog."""
1693 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1694 def __init__(self
, *args
, **kwargs
):
1696 __init__(Window parent, ColourData data=None) -> ColourDialog
1698 Constructor. Pass a parent window, and optionally a ColourData, which
1699 will be copied to the colour dialog's internal ColourData instance.
1701 newobj
= _windows
.new_ColourDialog(*args
, **kwargs
)
1702 self
.this
= newobj
.this
1705 self
._setOORInfo
(self
)
1707 def GetColourData(*args
, **kwargs
):
1709 GetColourData() -> ColourData
1711 Returns a reference to the ColourData used by the dialog.
1713 return _windows
.ColourDialog_GetColourData(*args
, **kwargs
)
1716 class ColourDialogPtr(ColourDialog
):
1717 def __init__(self
, this
):
1719 if not hasattr(self
,"thisown"): self
.thisown
= 0
1720 self
.__class
__ = ColourDialog
1721 _windows
.ColourDialog_swigregister(ColourDialogPtr
)
1723 class DirDialog(Dialog
):
1724 """This class represents the directory chooser dialog."""
1726 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1727 def __init__(self
, *args
, **kwargs
):
1729 __init__(Window parent, String message=DirSelectorPromptStr,
1730 String defaultPath=EmptyString, long style=0,
1731 Point pos=DefaultPosition, Size size=DefaultSize,
1732 String name=DirDialogNameStr) -> DirDialog
1734 Constructor. Use ShowModal method to show the dialog.
1736 newobj
= _windows
.new_DirDialog(*args
, **kwargs
)
1737 self
.this
= newobj
.this
1740 self
._setOORInfo
(self
)
1742 def GetPath(*args
, **kwargs
):
1746 Returns the default or user-selected path.
1748 return _windows
.DirDialog_GetPath(*args
, **kwargs
)
1750 def GetMessage(*args
, **kwargs
):
1752 GetMessage() -> String
1754 Returns the message that will be displayed on the dialog.
1756 return _windows
.DirDialog_GetMessage(*args
, **kwargs
)
1758 def GetStyle(*args
, **kwargs
):
1762 Returns the dialog style.
1764 return _windows
.DirDialog_GetStyle(*args
, **kwargs
)
1766 def SetMessage(*args
, **kwargs
):
1768 SetMessage(String message)
1770 Sets the message that will be displayed on the dialog.
1772 return _windows
.DirDialog_SetMessage(*args
, **kwargs
)
1774 def SetPath(*args
, **kwargs
):
1776 SetPath(String path)
1778 Sets the default path.
1780 return _windows
.DirDialog_SetPath(*args
, **kwargs
)
1783 class DirDialogPtr(DirDialog
):
1784 def __init__(self
, this
):
1786 if not hasattr(self
,"thisown"): self
.thisown
= 0
1787 self
.__class
__ = DirDialog
1788 _windows
.DirDialog_swigregister(DirDialogPtr
)
1790 class FileDialog(Dialog
):
1791 """This class represents the file chooser dialog."""
1793 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1794 def __init__(self
, *args
, **kwargs
):
1796 __init__(Window parent, String message=FileSelectorPromptStr,
1797 String defaultDir=EmptyString, String defaultFile=EmptyString,
1798 String wildcard=FileSelectorDefaultWildcardStr,
1799 long style=0, Point pos=DefaultPosition) -> FileDialog
1801 Constructor. Use ShowModal method to show the dialog.
1803 newobj
= _windows
.new_FileDialog(*args
, **kwargs
)
1804 self
.this
= newobj
.this
1807 self
._setOORInfo
(self
)
1809 def SetMessage(*args
, **kwargs
):
1811 SetMessage(String message)
1813 Sets the message that will be displayed on the dialog.
1815 return _windows
.FileDialog_SetMessage(*args
, **kwargs
)
1817 def SetPath(*args
, **kwargs
):
1819 SetPath(String path)
1821 Sets the path (the combined directory and filename that will
1822 be returned when the dialog is dismissed).
1824 return _windows
.FileDialog_SetPath(*args
, **kwargs
)
1826 def SetDirectory(*args
, **kwargs
):
1828 SetDirectory(String dir)
1830 Sets the default directory.
1832 return _windows
.FileDialog_SetDirectory(*args
, **kwargs
)
1834 def SetFilename(*args
, **kwargs
):
1836 SetFilename(String name)
1838 Sets the default filename.
1840 return _windows
.FileDialog_SetFilename(*args
, **kwargs
)
1842 def SetWildcard(*args
, **kwargs
):
1844 SetWildcard(String wildCard)
1846 Sets the wildcard, which can contain multiple file types, for example:
1847 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
1849 return _windows
.FileDialog_SetWildcard(*args
, **kwargs
)
1851 def SetStyle(*args
, **kwargs
):
1853 SetStyle(long style)
1855 Sets the dialog style.
1857 return _windows
.FileDialog_SetStyle(*args
, **kwargs
)
1859 def SetFilterIndex(*args
, **kwargs
):
1861 SetFilterIndex(int filterIndex)
1863 Sets the default filter index, starting from zero.
1865 return _windows
.FileDialog_SetFilterIndex(*args
, **kwargs
)
1867 def GetMessage(*args
, **kwargs
):
1869 GetMessage() -> String
1871 Returns the message that will be displayed on the dialog.
1873 return _windows
.FileDialog_GetMessage(*args
, **kwargs
)
1875 def GetPath(*args
, **kwargs
):
1879 Returns the full path (directory and filename) of the selected file.
1881 return _windows
.FileDialog_GetPath(*args
, **kwargs
)
1883 def GetDirectory(*args
, **kwargs
):
1885 GetDirectory() -> String
1887 Returns the default directory.
1889 return _windows
.FileDialog_GetDirectory(*args
, **kwargs
)
1891 def GetFilename(*args
, **kwargs
):
1893 GetFilename() -> String
1895 Returns the default filename.
1897 return _windows
.FileDialog_GetFilename(*args
, **kwargs
)
1899 def GetWildcard(*args
, **kwargs
):
1901 GetWildcard() -> String
1903 Returns the file dialog wildcard.
1905 return _windows
.FileDialog_GetWildcard(*args
, **kwargs
)
1907 def GetStyle(*args
, **kwargs
):
1911 Returns the dialog style.
1913 return _windows
.FileDialog_GetStyle(*args
, **kwargs
)
1915 def GetFilterIndex(*args
, **kwargs
):
1917 GetFilterIndex() -> int
1919 Returns the index into the list of filters supplied, optionally, in
1920 the wildcard parameter. Before the dialog is shown, this is the index
1921 which will be used when the dialog is first displayed. After the dialog
1922 is shown, this is the index selected by the user.
1924 return _windows
.FileDialog_GetFilterIndex(*args
, **kwargs
)
1926 def GetFilenames(*args
, **kwargs
):
1928 GetFilenames() -> PyObject
1930 Returns a list of filenames chosen in the dialog. This function should
1931 only be used with the dialogs which have wx.MULTIPLE style, use
1932 GetFilename for the others.
1934 return _windows
.FileDialog_GetFilenames(*args
, **kwargs
)
1936 def GetPaths(*args
, **kwargs
):
1938 GetPaths() -> PyObject
1940 Fills the array paths with the full paths of the files chosen. This
1941 function should only be used with the dialogs which have wx.MULTIPLE style,
1942 use GetPath for the others.
1944 return _windows
.FileDialog_GetPaths(*args
, **kwargs
)
1947 class FileDialogPtr(FileDialog
):
1948 def __init__(self
, this
):
1950 if not hasattr(self
,"thisown"): self
.thisown
= 0
1951 self
.__class
__ = FileDialog
1952 _windows
.FileDialog_swigregister(FileDialogPtr
)
1954 CHOICEDLG_STYLE
= _windows
.CHOICEDLG_STYLE
1955 class MultiChoiceDialog(Dialog
):
1956 """A simple dialog with a multi selection listbox."""
1958 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1959 def __init__(self
, *args
, **kwargs
):
1961 __init__(Window parent, String message, String caption,
1962 List choices=[], long style=CHOICEDLG_STYLE,
1963 Point pos=DefaultPosition) -> MultiChoiceDialog
1965 Constructor. Use ShowModal method to show the dialog.
1967 newobj
= _windows
.new_MultiChoiceDialog(*args
, **kwargs
)
1968 self
.this
= newobj
.this
1971 self
._setOORInfo
(self
)
1973 def SetSelections(*args
, **kwargs
):
1975 SetSelections(List selections)
1977 Specify the items in the list that shoudl be selected, using a list of integers.
1979 return _windows
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
1981 def GetSelections(*args
, **kwargs
):
1983 GetSelections() -> [selections]
1985 Returns a list of integers representing the items that are selected.
1987 return _windows
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
1990 class MultiChoiceDialogPtr(MultiChoiceDialog
):
1991 def __init__(self
, this
):
1993 if not hasattr(self
,"thisown"): self
.thisown
= 0
1994 self
.__class
__ = MultiChoiceDialog
1995 _windows
.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr
)
1997 class SingleChoiceDialog(Dialog
):
1998 """A simple dialog with a single selection listbox."""
2000 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2001 def __init__(self
, *args
, **kwargs
):
2003 __init__(Window parent, String message, String caption,
2004 List choices=[], long style=CHOICEDLG_STYLE,
2005 Point pos=DefaultPosition) -> SingleChoiceDialog
2007 Constructor. Use ShowModal method to show the dialog.
2009 newobj
= _windows
.new_SingleChoiceDialog(*args
, **kwargs
)
2010 self
.this
= newobj
.this
2013 self
._setOORInfo
(self
)
2015 def GetSelection(*args
, **kwargs
):
2017 GetSelection() -> int
2019 Get the index of teh currently selected item.
2021 return _windows
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2023 def GetStringSelection(*args
, **kwargs
):
2025 GetStringSelection() -> String
2027 Returns the string value of the currently selected item
2029 return _windows
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2031 def SetSelection(*args
, **kwargs
):
2033 SetSelection(int sel)
2035 Set the current selected item to sel
2037 return _windows
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2040 class SingleChoiceDialogPtr(SingleChoiceDialog
):
2041 def __init__(self
, this
):
2043 if not hasattr(self
,"thisown"): self
.thisown
= 0
2044 self
.__class
__ = SingleChoiceDialog
2045 _windows
.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr
)
2047 class TextEntryDialog(Dialog
):
2048 """A dialog with text control, [ok] and [cancel] buttons"""
2050 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2051 def __init__(self
, *args
, **kwargs
):
2053 __init__(Window parent, String message, String caption=GetTextFromUserPromptStr,
2054 String defaultValue=EmptyString,
2055 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2057 Constructor. Use ShowModal method to show the dialog.
2059 newobj
= _windows
.new_TextEntryDialog(*args
, **kwargs
)
2060 self
.this
= newobj
.this
2063 self
._setOORInfo
(self
)
2065 def GetValue(*args
, **kwargs
):
2067 GetValue() -> String
2069 Returns the text that the user has entered if the user has pressed OK,
2070 or the original value if the user has pressed Cancel.
2072 return _windows
.TextEntryDialog_GetValue(*args
, **kwargs
)
2074 def SetValue(*args
, **kwargs
):
2076 SetValue(String value)
2078 Sets the default text value.
2080 return _windows
.TextEntryDialog_SetValue(*args
, **kwargs
)
2083 class TextEntryDialogPtr(TextEntryDialog
):
2084 def __init__(self
, this
):
2086 if not hasattr(self
,"thisown"): self
.thisown
= 0
2087 self
.__class
__ = TextEntryDialog
2088 _windows
.TextEntryDialog_swigregister(TextEntryDialogPtr
)
2090 class FontData(core
.Object
):
2091 """This class holds a variety of information related to font dialogs."""
2093 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2094 def __init__(self
, *args
, **kwargs
):
2096 __init__() -> FontData
2098 This class holds a variety of information related to font dialogs.
2100 newobj
= _windows
.new_FontData(*args
, **kwargs
)
2101 self
.this
= newobj
.this
2104 def __del__(self
, destroy
=_windows
.delete_FontData
):
2107 if self
.thisown
: destroy(self
)
2110 def EnableEffects(*args
, **kwargs
):
2112 EnableEffects(bool enable)
2114 Enables or disables 'effects' under MS Windows only. This refers
2115 to the controls for manipulating colour, strikeout and underline
2116 properties. The default value is true.
2118 return _windows
.FontData_EnableEffects(*args
, **kwargs
)
2120 def GetAllowSymbols(*args
, **kwargs
):
2122 GetAllowSymbols() -> bool
2124 Under MS Windows, returns a flag determining whether symbol fonts can be
2125 selected. Has no effect on other platforms. The default value is true.
2127 return _windows
.FontData_GetAllowSymbols(*args
, **kwargs
)
2129 def GetColour(*args
, **kwargs
):
2131 GetColour() -> Colour
2133 Gets the colour associated with the font dialog. The default value is black.
2135 return _windows
.FontData_GetColour(*args
, **kwargs
)
2137 def GetChosenFont(*args
, **kwargs
):
2139 GetChosenFont() -> Font
2141 Gets the font chosen by the user.
2143 return _windows
.FontData_GetChosenFont(*args
, **kwargs
)
2145 def GetEnableEffects(*args
, **kwargs
):
2147 GetEnableEffects() -> bool
2149 Determines whether 'effects' are enabled under Windows.
2151 return _windows
.FontData_GetEnableEffects(*args
, **kwargs
)
2153 def GetInitialFont(*args
, **kwargs
):
2155 GetInitialFont() -> Font
2157 Gets the font that will be initially used by the font dialog. This should have
2158 previously been set by the application.
2160 return _windows
.FontData_GetInitialFont(*args
, **kwargs
)
2162 def GetShowHelp(*args
, **kwargs
):
2164 GetShowHelp() -> bool
2166 Returns true if the Help button will be shown (Windows only). The default
2169 return _windows
.FontData_GetShowHelp(*args
, **kwargs
)
2171 def SetAllowSymbols(*args
, **kwargs
):
2173 SetAllowSymbols(bool allowSymbols)
2175 Under MS Windows, determines whether symbol fonts can be selected. Has no
2176 effect on other platforms. The default value is true.
2178 return _windows
.FontData_SetAllowSymbols(*args
, **kwargs
)
2180 def SetChosenFont(*args
, **kwargs
):
2182 SetChosenFont(Font font)
2184 Sets the font that will be returned to the user (for internal use only).
2186 return _windows
.FontData_SetChosenFont(*args
, **kwargs
)
2188 def SetColour(*args
, **kwargs
):
2190 SetColour(Colour colour)
2192 Sets the colour that will be used for the font foreground colour. The default
2195 return _windows
.FontData_SetColour(*args
, **kwargs
)
2197 def SetInitialFont(*args
, **kwargs
):
2199 SetInitialFont(Font font)
2201 Sets the font that will be initially used by the font dialog.
2203 return _windows
.FontData_SetInitialFont(*args
, **kwargs
)
2205 def SetRange(*args
, **kwargs
):
2207 SetRange(int min, int max)
2209 Sets the valid range for the font point size (Windows only). The default is
2210 0, 0 (unrestricted range).
2212 return _windows
.FontData_SetRange(*args
, **kwargs
)
2214 def SetShowHelp(*args
, **kwargs
):
2216 SetShowHelp(bool showHelp)
2218 Determines whether the Help button will be displayed in the font dialog
2219 (Windows only). The default value is false.
2221 return _windows
.FontData_SetShowHelp(*args
, **kwargs
)
2224 class FontDataPtr(FontData
):
2225 def __init__(self
, this
):
2227 if not hasattr(self
,"thisown"): self
.thisown
= 0
2228 self
.__class
__ = FontData
2229 _windows
.FontData_swigregister(FontDataPtr
)
2231 class FontDialog(Dialog
):
2232 """This class represents the font chooser dialog."""
2234 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2235 def __init__(self
, *args
, **kwargs
):
2237 __init__(Window parent, FontData data) -> FontDialog
2239 Constructor. Pass a parent window and the FontData object to be
2240 used to initialize the dialog controls.
2242 newobj
= _windows
.new_FontDialog(*args
, **kwargs
)
2243 self
.this
= newobj
.this
2246 self
._setOORInfo
(self
)
2248 def GetFontData(*args
, **kwargs
):
2250 GetFontData() -> FontData
2252 Returns a reference to the internal FontData used by the FontDialog.
2254 return _windows
.FontDialog_GetFontData(*args
, **kwargs
)
2257 class FontDialogPtr(FontDialog
):
2258 def __init__(self
, this
):
2260 if not hasattr(self
,"thisown"): self
.thisown
= 0
2261 self
.__class
__ = FontDialog
2262 _windows
.FontDialog_swigregister(FontDialogPtr
)
2264 class MessageDialog(Dialog
):
2266 This class provides a dialog that shows a single or multi-line message, with
2267 a choice of OK, Yes, No and Cancel buttons.
2270 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2271 def __init__(self
, *args
, **kwargs
):
2273 __init__(Window parent, String message, String caption=MessageBoxCaptionStr,
2274 long style=wxOK|wxCANCEL|wxCENTRE,
2275 Point pos=DefaultPosition) -> MessageDialog
2277 This class provides a dialog that shows a single or multi-line message, with
2278 a choice of OK, Yes, No and Cancel buttons.
2280 newobj
= _windows
.new_MessageDialog(*args
, **kwargs
)
2281 self
.this
= newobj
.this
2284 self
._setOORInfo
(self
)
2287 class MessageDialogPtr(MessageDialog
):
2288 def __init__(self
, this
):
2290 if not hasattr(self
,"thisown"): self
.thisown
= 0
2291 self
.__class
__ = MessageDialog
2292 _windows
.MessageDialog_swigregister(MessageDialogPtr
)
2294 class ProgressDialog(Frame
):
2296 A dialog that shows a short message and a progress bar. Optionally, it can
2297 display an ABORT button.
2300 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2301 def __init__(self
, *args
, **kwargs
):
2303 __init__(String title, String message, int maximum=100, Window parent=None,
2304 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2306 Constructor. Creates the dialog, displays it and disables user input for other
2307 windows, or, if wxPD_APP_MODAL flag is not given, for its parent window only.
2309 newobj
= _windows
.new_ProgressDialog(*args
, **kwargs
)
2310 self
.this
= newobj
.this
2313 self
._setOORInfo
(self
)
2315 def Update(*args
, **kwargs
):
2317 Update(int value, String newmsg=EmptyString) -> bool
2319 Updates the dialog, setting the progress bar to the new value and, if given
2320 changes the message above it. Returns true unless the Cancel button has been
2323 If false is returned, the application can either immediately destroy the
2324 dialog or ask the user for the confirmation and if the abort is not confirmed
2325 the dialog may be resumed with Resume function.
2327 return _windows
.ProgressDialog_Update(*args
, **kwargs
)
2329 def Resume(*args
, **kwargs
):
2333 Can be used to continue with the dialog, after the user had chosen to abort.
2335 return _windows
.ProgressDialog_Resume(*args
, **kwargs
)
2338 class ProgressDialogPtr(ProgressDialog
):
2339 def __init__(self
, this
):
2341 if not hasattr(self
,"thisown"): self
.thisown
= 0
2342 self
.__class
__ = ProgressDialog
2343 _windows
.ProgressDialog_swigregister(ProgressDialogPtr
)
2345 FR_DOWN
= _windows
.FR_DOWN
2346 FR_WHOLEWORD
= _windows
.FR_WHOLEWORD
2347 FR_MATCHCASE
= _windows
.FR_MATCHCASE
2348 FR_REPLACEDIALOG
= _windows
.FR_REPLACEDIALOG
2349 FR_NOUPDOWN
= _windows
.FR_NOUPDOWN
2350 FR_NOMATCHCASE
= _windows
.FR_NOMATCHCASE
2351 FR_NOWHOLEWORD
= _windows
.FR_NOWHOLEWORD
2352 wxEVT_COMMAND_FIND
= _windows
.wxEVT_COMMAND_FIND
2353 wxEVT_COMMAND_FIND_NEXT
= _windows
.wxEVT_COMMAND_FIND_NEXT
2354 wxEVT_COMMAND_FIND_REPLACE
= _windows
.wxEVT_COMMAND_FIND_REPLACE
2355 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows
.wxEVT_COMMAND_FIND_REPLACE_ALL
2356 wxEVT_COMMAND_FIND_CLOSE
= _windows
.wxEVT_COMMAND_FIND_CLOSE
2357 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2358 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2359 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2360 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2361 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2363 # For backwards compatibility. Should they be removed?
2364 EVT_COMMAND_FIND
= EVT_FIND
2365 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2366 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2367 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2368 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2370 class FindDialogEvent(core
.CommandEvent
):
2371 """Events for the FindReplaceDialog"""
2373 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2374 def __init__(self
, *args
, **kwargs
):
2376 __init__(wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2378 Events for the FindReplaceDialog
2380 newobj
= _windows
.new_FindDialogEvent(*args
, **kwargs
)
2381 self
.this
= newobj
.this
2384 def GetFlags(*args
, **kwargs
):
2388 Get the currently selected flags: this is the combination of
2389 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2391 return _windows
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2393 def GetFindString(*args
, **kwargs
):
2395 GetFindString() -> String
2397 Return the string to find (never empty).
2399 return _windows
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2401 def GetReplaceString(*args
, **kwargs
):
2403 GetReplaceString() -> String
2405 Return the string to replace the search string with (only
2406 for replace and replace all events).
2408 return _windows
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2410 def GetDialog(*args
, **kwargs
):
2412 GetDialog() -> FindReplaceDialog
2414 Return the pointer to the dialog which generated this event.
2416 return _windows
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2418 def SetFlags(*args
, **kwargs
):
2419 """SetFlags(int flags)"""
2420 return _windows
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2422 def SetFindString(*args
, **kwargs
):
2423 """SetFindString(String str)"""
2424 return _windows
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2426 def SetReplaceString(*args
, **kwargs
):
2427 """SetReplaceString(String str)"""
2428 return _windows
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2431 class FindDialogEventPtr(FindDialogEvent
):
2432 def __init__(self
, this
):
2434 if not hasattr(self
,"thisown"): self
.thisown
= 0
2435 self
.__class
__ = FindDialogEvent
2436 _windows
.FindDialogEvent_swigregister(FindDialogEventPtr
)
2438 class FindReplaceData(core
.Object
):
2440 FindReplaceData holds the data for FindReplaceDialog. It is used to initialize
2441 the dialog with the default values and will keep the last values from the
2442 dialog when it is closed. It is also updated each time a wxFindDialogEvent is
2443 generated so instead of using the wxFindDialogEvent methods you can also
2444 directly query this object.
2446 Note that all SetXXX() methods may only be called before showing the dialog
2447 and calling them has no effect later.
2450 wxFR_DOWN: downward search/replace selected (otherwise, upwards)
2452 wxFR_WHOLEWORD: whole word search/replace selected
2454 wxFR_MATCHCASE: case sensitive search/replace selected (otherwise,
2459 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2460 def __init__(self
, *args
, **kwargs
):
2462 __init__(int flags=0) -> FindReplaceData
2464 Constuctor initializes the flags to default value (0).
2466 newobj
= _windows
.new_FindReplaceData(*args
, **kwargs
)
2467 self
.this
= newobj
.this
2470 def __del__(self
, destroy
=_windows
.delete_FindReplaceData
):
2473 if self
.thisown
: destroy(self
)
2476 def GetFindString(*args
, **kwargs
):
2478 GetFindString() -> String
2480 Get the string to find.
2482 return _windows
.FindReplaceData_GetFindString(*args
, **kwargs
)
2484 def GetReplaceString(*args
, **kwargs
):
2486 GetReplaceString() -> String
2488 Get the replacement string.
2490 return _windows
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2492 def GetFlags(*args
, **kwargs
):
2496 Get the combination of flag values.
2498 return _windows
.FindReplaceData_GetFlags(*args
, **kwargs
)
2500 def SetFlags(*args
, **kwargs
):
2504 Set the flags to use to initialize the controls of the dialog.
2506 return _windows
.FindReplaceData_SetFlags(*args
, **kwargs
)
2508 def SetFindString(*args
, **kwargs
):
2510 SetFindString(String str)
2512 Set the string to find (used as initial value by the dialog).
2514 return _windows
.FindReplaceData_SetFindString(*args
, **kwargs
)
2516 def SetReplaceString(*args
, **kwargs
):
2518 SetReplaceString(String str)
2520 Set the replacement string (used as initial value by the dialog).
2522 return _windows
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
2525 class FindReplaceDataPtr(FindReplaceData
):
2526 def __init__(self
, this
):
2528 if not hasattr(self
,"thisown"): self
.thisown
= 0
2529 self
.__class
__ = FindReplaceData
2530 _windows
.FindReplaceData_swigregister(FindReplaceDataPtr
)
2532 class FindReplaceDialog(Dialog
):
2534 FindReplaceDialog is a standard modeless dialog which is used to allow the
2535 user to search for some text (and possibly replace it with something
2536 else). The actual searching is supposed to be done in the owner window which
2537 is the parent of this dialog. Note that it means that unlike for the other
2538 standard dialogs this one must have a parent window. Also note that there is
2539 no way to use this dialog in a modal way; it is always, by design and
2540 implementation, modeless.
2543 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2544 def __init__(self
, *args
, **kwargs
):
2546 __init__(Window parent, FindReplaceData data, String title,
2547 int style=0) -> FindReplaceDialog
2549 Create a FindReplaceDialog. The parent and data parameters must be
2550 non-None. Use Show to display the dialog.
2552 newobj
= _windows
.new_FindReplaceDialog(*args
, **kwargs
)
2553 self
.this
= newobj
.this
2556 self
._setOORInfo
(self
)
2558 def Create(*args
, **kwargs
):
2560 Create(Window parent, FindReplaceData data, String title,
2561 int style=0) -> bool
2563 Create the dialog, for 2-phase create.
2565 return _windows
.FindReplaceDialog_Create(*args
, **kwargs
)
2567 def GetData(*args
, **kwargs
):
2569 GetData() -> FindReplaceData
2571 Get the FindReplaceData object used by this dialog.
2573 return _windows
.FindReplaceDialog_GetData(*args
, **kwargs
)
2575 def SetData(*args
, **kwargs
):
2577 SetData(FindReplaceData data)
2579 Set the FindReplaceData object used by this dialog.
2581 return _windows
.FindReplaceDialog_SetData(*args
, **kwargs
)
2584 class FindReplaceDialogPtr(FindReplaceDialog
):
2585 def __init__(self
, this
):
2587 if not hasattr(self
,"thisown"): self
.thisown
= 0
2588 self
.__class
__ = FindReplaceDialog
2589 _windows
.FindReplaceDialog_swigregister(FindReplaceDialogPtr
)
2591 def PreFindReplaceDialog(*args
, **kwargs
):
2593 PreFindReplaceDialog() -> FindReplaceDialog
2595 Precreate a FindReplaceDialog for 2-phase creation
2597 val
= _windows
.new_PreFindReplaceDialog(*args
, **kwargs
)
2601 #---------------------------------------------------------------------------
2603 IDM_WINDOWTILE
= _windows
.IDM_WINDOWTILE
2604 IDM_WINDOWTILEHOR
= _windows
.IDM_WINDOWTILEHOR
2605 IDM_WINDOWCASCADE
= _windows
.IDM_WINDOWCASCADE
2606 IDM_WINDOWICONS
= _windows
.IDM_WINDOWICONS
2607 IDM_WINDOWNEXT
= _windows
.IDM_WINDOWNEXT
2608 IDM_WINDOWTILEVERT
= _windows
.IDM_WINDOWTILEVERT
2609 FIRST_MDI_CHILD
= _windows
.FIRST_MDI_CHILD
2610 LAST_MDI_CHILD
= _windows
.LAST_MDI_CHILD
2611 class MDIParentFrame(Frame
):
2613 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2614 def __init__(self
, *args
, **kwargs
):
2616 __init__(Window parent, int id, String title, Point pos=DefaultPosition,
2617 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2618 String name=FrameNameStr) -> MDIParentFrame
2620 newobj
= _windows
.new_MDIParentFrame(*args
, **kwargs
)
2621 self
.this
= newobj
.this
2624 self
._setOORInfo
(self
)
2626 def Create(*args
, **kwargs
):
2628 Create(Window parent, int id, String title, Point pos=DefaultPosition,
2629 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
2630 String name=FrameNameStr) -> bool
2632 return _windows
.MDIParentFrame_Create(*args
, **kwargs
)
2634 def ActivateNext(*args
, **kwargs
):
2635 """ActivateNext()"""
2636 return _windows
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
2638 def ActivatePrevious(*args
, **kwargs
):
2639 """ActivatePrevious()"""
2640 return _windows
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
2642 def ArrangeIcons(*args
, **kwargs
):
2643 """ArrangeIcons()"""
2644 return _windows
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
2646 def Cascade(*args
, **kwargs
):
2648 return _windows
.MDIParentFrame_Cascade(*args
, **kwargs
)
2650 def GetActiveChild(*args
, **kwargs
):
2651 """GetActiveChild() -> MDIChildFrame"""
2652 return _windows
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
2654 def GetClientWindow(*args
, **kwargs
):
2655 """GetClientWindow() -> MDIClientWindow"""
2656 return _windows
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
2658 def GetToolBar(*args
, **kwargs
):
2659 """GetToolBar() -> Window"""
2660 return _windows
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
2662 def Tile(*args
, **kwargs
):
2664 return _windows
.MDIParentFrame_Tile(*args
, **kwargs
)
2667 class MDIParentFramePtr(MDIParentFrame
):
2668 def __init__(self
, this
):
2670 if not hasattr(self
,"thisown"): self
.thisown
= 0
2671 self
.__class
__ = MDIParentFrame
2672 _windows
.MDIParentFrame_swigregister(MDIParentFramePtr
)
2674 def PreMDIParentFrame(*args
, **kwargs
):
2675 """PreMDIParentFrame() -> MDIParentFrame"""
2676 val
= _windows
.new_PreMDIParentFrame(*args
, **kwargs
)
2680 class MDIChildFrame(Frame
):
2682 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2683 def __init__(self
, *args
, **kwargs
):
2685 __init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
2686 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
2687 String name=FrameNameStr) -> MDIChildFrame
2689 newobj
= _windows
.new_MDIChildFrame(*args
, **kwargs
)
2690 self
.this
= newobj
.this
2693 self
._setOORInfo
(self
)
2695 def Create(*args
, **kwargs
):
2697 Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
2698 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
2699 String name=FrameNameStr) -> bool
2701 return _windows
.MDIChildFrame_Create(*args
, **kwargs
)
2703 def Activate(*args
, **kwargs
):
2705 return _windows
.MDIChildFrame_Activate(*args
, **kwargs
)
2707 def Maximize(*args
, **kwargs
):
2708 """Maximize(bool maximize)"""
2709 return _windows
.MDIChildFrame_Maximize(*args
, **kwargs
)
2711 def Restore(*args
, **kwargs
):
2713 return _windows
.MDIChildFrame_Restore(*args
, **kwargs
)
2716 class MDIChildFramePtr(MDIChildFrame
):
2717 def __init__(self
, this
):
2719 if not hasattr(self
,"thisown"): self
.thisown
= 0
2720 self
.__class
__ = MDIChildFrame
2721 _windows
.MDIChildFrame_swigregister(MDIChildFramePtr
)
2723 def PreMDIChildFrame(*args
, **kwargs
):
2724 """PreMDIChildFrame() -> MDIChildFrame"""
2725 val
= _windows
.new_PreMDIChildFrame(*args
, **kwargs
)
2729 class MDIClientWindow(core
.Window
):
2731 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2732 def __init__(self
, *args
, **kwargs
):
2733 """__init__(MDIParentFrame parent, long style=0) -> MDIClientWindow"""
2734 newobj
= _windows
.new_MDIClientWindow(*args
, **kwargs
)
2735 self
.this
= newobj
.this
2738 self
._setOORInfo
(self
)
2740 def Create(*args
, **kwargs
):
2741 """Create(MDIParentFrame parent, long style=0) -> bool"""
2742 return _windows
.MDIClientWindow_Create(*args
, **kwargs
)
2745 class MDIClientWindowPtr(MDIClientWindow
):
2746 def __init__(self
, this
):
2748 if not hasattr(self
,"thisown"): self
.thisown
= 0
2749 self
.__class
__ = MDIClientWindow
2750 _windows
.MDIClientWindow_swigregister(MDIClientWindowPtr
)
2752 def PreMDIClientWindow(*args
, **kwargs
):
2753 """PreMDIClientWindow() -> MDIClientWindow"""
2754 val
= _windows
.new_PreMDIClientWindow(*args
, **kwargs
)
2758 #---------------------------------------------------------------------------
2760 class PyWindow(core
.Window
):
2762 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2763 def __init__(self
, *args
, **kwargs
):
2765 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2766 long style=0, String name=PanelNameStr) -> PyWindow
2768 newobj
= _windows
.new_PyWindow(*args
, **kwargs
)
2769 self
.this
= newobj
.this
2772 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
2774 def _setCallbackInfo(*args
, **kwargs
):
2775 """_setCallbackInfo(PyObject self, PyObject _class)"""
2776 return _windows
.PyWindow__setCallbackInfo(*args
, **kwargs
)
2778 def base_DoMoveWindow(*args
, **kwargs
):
2779 """base_DoMoveWindow(int x, int y, int width, int height)"""
2780 return _windows
.PyWindow_base_DoMoveWindow(*args
, **kwargs
)
2782 def base_DoSetSize(*args
, **kwargs
):
2783 """base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
2784 return _windows
.PyWindow_base_DoSetSize(*args
, **kwargs
)
2786 def base_DoSetClientSize(*args
, **kwargs
):
2787 """base_DoSetClientSize(int width, int height)"""
2788 return _windows
.PyWindow_base_DoSetClientSize(*args
, **kwargs
)
2790 def base_DoSetVirtualSize(*args
, **kwargs
):
2791 """base_DoSetVirtualSize(int x, int y)"""
2792 return _windows
.PyWindow_base_DoSetVirtualSize(*args
, **kwargs
)
2794 def base_DoGetSize(*args
, **kwargs
):
2795 """base_DoGetSize() -> (width, height)"""
2796 return _windows
.PyWindow_base_DoGetSize(*args
, **kwargs
)
2798 def base_DoGetClientSize(*args
, **kwargs
):
2799 """base_DoGetClientSize() -> (width, height)"""
2800 return _windows
.PyWindow_base_DoGetClientSize(*args
, **kwargs
)
2802 def base_DoGetPosition(*args
, **kwargs
):
2803 """base_DoGetPosition() -> (x,y)"""
2804 return _windows
.PyWindow_base_DoGetPosition(*args
, **kwargs
)
2806 def base_DoGetVirtualSize(*args
, **kwargs
):
2807 """base_DoGetVirtualSize() -> Size"""
2808 return _windows
.PyWindow_base_DoGetVirtualSize(*args
, **kwargs
)
2810 def base_DoGetBestSize(*args
, **kwargs
):
2811 """base_DoGetBestSize() -> Size"""
2812 return _windows
.PyWindow_base_DoGetBestSize(*args
, **kwargs
)
2814 def base_InitDialog(*args
, **kwargs
):
2815 """base_InitDialog()"""
2816 return _windows
.PyWindow_base_InitDialog(*args
, **kwargs
)
2818 def base_TransferDataToWindow(*args
, **kwargs
):
2819 """base_TransferDataToWindow() -> bool"""
2820 return _windows
.PyWindow_base_TransferDataToWindow(*args
, **kwargs
)
2822 def base_TransferDataFromWindow(*args
, **kwargs
):
2823 """base_TransferDataFromWindow() -> bool"""
2824 return _windows
.PyWindow_base_TransferDataFromWindow(*args
, **kwargs
)
2826 def base_Validate(*args
, **kwargs
):
2827 """base_Validate() -> bool"""
2828 return _windows
.PyWindow_base_Validate(*args
, **kwargs
)
2830 def base_AcceptsFocus(*args
, **kwargs
):
2831 """base_AcceptsFocus() -> bool"""
2832 return _windows
.PyWindow_base_AcceptsFocus(*args
, **kwargs
)
2834 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
2835 """base_AcceptsFocusFromKeyboard() -> bool"""
2836 return _windows
.PyWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
2838 def base_GetMaxSize(*args
, **kwargs
):
2839 """base_GetMaxSize() -> Size"""
2840 return _windows
.PyWindow_base_GetMaxSize(*args
, **kwargs
)
2842 def base_AddChild(*args
, **kwargs
):
2843 """base_AddChild(Window child)"""
2844 return _windows
.PyWindow_base_AddChild(*args
, **kwargs
)
2846 def base_RemoveChild(*args
, **kwargs
):
2847 """base_RemoveChild(Window child)"""
2848 return _windows
.PyWindow_base_RemoveChild(*args
, **kwargs
)
2851 class PyWindowPtr(PyWindow
):
2852 def __init__(self
, this
):
2854 if not hasattr(self
,"thisown"): self
.thisown
= 0
2855 self
.__class
__ = PyWindow
2856 _windows
.PyWindow_swigregister(PyWindowPtr
)
2858 class PyPanel(Panel
):
2860 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2861 def __init__(self
, *args
, **kwargs
):
2863 __init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
2864 long style=0, String name=PanelNameStr) -> PyPanel
2866 newobj
= _windows
.new_PyPanel(*args
, **kwargs
)
2867 self
.this
= newobj
.this
2870 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
2872 def _setCallbackInfo(*args
, **kwargs
):
2873 """_setCallbackInfo(PyObject self, PyObject _class)"""
2874 return _windows
.PyPanel__setCallbackInfo(*args
, **kwargs
)
2876 def base_DoMoveWindow(*args
, **kwargs
):
2877 """base_DoMoveWindow(int x, int y, int width, int height)"""
2878 return _windows
.PyPanel_base_DoMoveWindow(*args
, **kwargs
)
2880 def base_DoSetSize(*args
, **kwargs
):
2881 """base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
2882 return _windows
.PyPanel_base_DoSetSize(*args
, **kwargs
)
2884 def base_DoSetClientSize(*args
, **kwargs
):
2885 """base_DoSetClientSize(int width, int height)"""
2886 return _windows
.PyPanel_base_DoSetClientSize(*args
, **kwargs
)
2888 def base_DoSetVirtualSize(*args
, **kwargs
):
2889 """base_DoSetVirtualSize(int x, int y)"""
2890 return _windows
.PyPanel_base_DoSetVirtualSize(*args
, **kwargs
)
2892 def base_DoGetSize(*args
, **kwargs
):
2893 """base_DoGetSize() -> (width, height)"""
2894 return _windows
.PyPanel_base_DoGetSize(*args
, **kwargs
)
2896 def base_DoGetClientSize(*args
, **kwargs
):
2897 """base_DoGetClientSize() -> (width, height)"""
2898 return _windows
.PyPanel_base_DoGetClientSize(*args
, **kwargs
)
2900 def base_DoGetPosition(*args
, **kwargs
):
2901 """base_DoGetPosition() -> (x,y)"""
2902 return _windows
.PyPanel_base_DoGetPosition(*args
, **kwargs
)
2904 def base_DoGetVirtualSize(*args
, **kwargs
):
2905 """base_DoGetVirtualSize() -> Size"""
2906 return _windows
.PyPanel_base_DoGetVirtualSize(*args
, **kwargs
)
2908 def base_DoGetBestSize(*args
, **kwargs
):
2909 """base_DoGetBestSize() -> Size"""
2910 return _windows
.PyPanel_base_DoGetBestSize(*args
, **kwargs
)
2912 def base_InitDialog(*args
, **kwargs
):
2913 """base_InitDialog()"""
2914 return _windows
.PyPanel_base_InitDialog(*args
, **kwargs
)
2916 def base_TransferDataToWindow(*args
, **kwargs
):
2917 """base_TransferDataToWindow() -> bool"""
2918 return _windows
.PyPanel_base_TransferDataToWindow(*args
, **kwargs
)
2920 def base_TransferDataFromWindow(*args
, **kwargs
):
2921 """base_TransferDataFromWindow() -> bool"""
2922 return _windows
.PyPanel_base_TransferDataFromWindow(*args
, **kwargs
)
2924 def base_Validate(*args
, **kwargs
):
2925 """base_Validate() -> bool"""
2926 return _windows
.PyPanel_base_Validate(*args
, **kwargs
)
2928 def base_AcceptsFocus(*args
, **kwargs
):
2929 """base_AcceptsFocus() -> bool"""
2930 return _windows
.PyPanel_base_AcceptsFocus(*args
, **kwargs
)
2932 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
2933 """base_AcceptsFocusFromKeyboard() -> bool"""
2934 return _windows
.PyPanel_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
2936 def base_GetMaxSize(*args
, **kwargs
):
2937 """base_GetMaxSize() -> Size"""
2938 return _windows
.PyPanel_base_GetMaxSize(*args
, **kwargs
)
2940 def base_AddChild(*args
, **kwargs
):
2941 """base_AddChild(Window child)"""
2942 return _windows
.PyPanel_base_AddChild(*args
, **kwargs
)
2944 def base_RemoveChild(*args
, **kwargs
):
2945 """base_RemoveChild(Window child)"""
2946 return _windows
.PyPanel_base_RemoveChild(*args
, **kwargs
)
2949 class PyPanelPtr(PyPanel
):
2950 def __init__(self
, this
):
2952 if not hasattr(self
,"thisown"): self
.thisown
= 0
2953 self
.__class
__ = PyPanel
2954 _windows
.PyPanel_swigregister(PyPanelPtr
)
2956 #---------------------------------------------------------------------------
2958 PRINT_MODE_NONE
= _windows
.PRINT_MODE_NONE
2959 PRINT_MODE_PREVIEW
= _windows
.PRINT_MODE_PREVIEW
2960 PRINT_MODE_FILE
= _windows
.PRINT_MODE_FILE
2961 PRINT_MODE_PRINTER
= _windows
.PRINT_MODE_PRINTER
2962 PRINT_MODE_STREAM
= _windows
.PRINT_MODE_STREAM
2963 class PrintData(core
.Object
):
2965 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2966 def __init__(self
, *args
, **kwargs
):
2967 """__init__() -> PrintData"""
2968 newobj
= _windows
.new_PrintData(*args
, **kwargs
)
2969 self
.this
= newobj
.this
2972 def __del__(self
, destroy
=_windows
.delete_PrintData
):
2975 if self
.thisown
: destroy(self
)
2978 def GetNoCopies(*args
, **kwargs
):
2979 """GetNoCopies() -> int"""
2980 return _windows
.PrintData_GetNoCopies(*args
, **kwargs
)
2982 def GetCollate(*args
, **kwargs
):
2983 """GetCollate() -> bool"""
2984 return _windows
.PrintData_GetCollate(*args
, **kwargs
)
2986 def GetOrientation(*args
, **kwargs
):
2987 """GetOrientation() -> int"""
2988 return _windows
.PrintData_GetOrientation(*args
, **kwargs
)
2990 def Ok(*args
, **kwargs
):
2992 return _windows
.PrintData_Ok(*args
, **kwargs
)
2994 def GetPrinterName(*args
, **kwargs
):
2995 """GetPrinterName() -> String"""
2996 return _windows
.PrintData_GetPrinterName(*args
, **kwargs
)
2998 def GetColour(*args
, **kwargs
):
2999 """GetColour() -> bool"""
3000 return _windows
.PrintData_GetColour(*args
, **kwargs
)
3002 def GetDuplex(*args
, **kwargs
):
3003 """GetDuplex() -> int"""
3004 return _windows
.PrintData_GetDuplex(*args
, **kwargs
)
3006 def GetPaperId(*args
, **kwargs
):
3007 """GetPaperId() -> int"""
3008 return _windows
.PrintData_GetPaperId(*args
, **kwargs
)
3010 def GetPaperSize(*args
, **kwargs
):
3011 """GetPaperSize() -> Size"""
3012 return _windows
.PrintData_GetPaperSize(*args
, **kwargs
)
3014 def GetQuality(*args
, **kwargs
):
3015 """GetQuality() -> int"""
3016 return _windows
.PrintData_GetQuality(*args
, **kwargs
)
3018 def SetNoCopies(*args
, **kwargs
):
3019 """SetNoCopies(int v)"""
3020 return _windows
.PrintData_SetNoCopies(*args
, **kwargs
)
3022 def SetCollate(*args
, **kwargs
):
3023 """SetCollate(bool flag)"""
3024 return _windows
.PrintData_SetCollate(*args
, **kwargs
)
3026 def SetOrientation(*args
, **kwargs
):
3027 """SetOrientation(int orient)"""
3028 return _windows
.PrintData_SetOrientation(*args
, **kwargs
)
3030 def SetPrinterName(*args
, **kwargs
):
3031 """SetPrinterName(String name)"""
3032 return _windows
.PrintData_SetPrinterName(*args
, **kwargs
)
3034 def SetColour(*args
, **kwargs
):
3035 """SetColour(bool colour)"""
3036 return _windows
.PrintData_SetColour(*args
, **kwargs
)
3038 def SetDuplex(*args
, **kwargs
):
3039 """SetDuplex(int duplex)"""
3040 return _windows
.PrintData_SetDuplex(*args
, **kwargs
)
3042 def SetPaperId(*args
, **kwargs
):
3043 """SetPaperId(int sizeId)"""
3044 return _windows
.PrintData_SetPaperId(*args
, **kwargs
)
3046 def SetPaperSize(*args
, **kwargs
):
3047 """SetPaperSize(Size sz)"""
3048 return _windows
.PrintData_SetPaperSize(*args
, **kwargs
)
3050 def SetQuality(*args
, **kwargs
):
3051 """SetQuality(int quality)"""
3052 return _windows
.PrintData_SetQuality(*args
, **kwargs
)
3054 def GetPrinterCommand(*args
, **kwargs
):
3055 """GetPrinterCommand() -> String"""
3056 return _windows
.PrintData_GetPrinterCommand(*args
, **kwargs
)
3058 def GetPrinterOptions(*args
, **kwargs
):
3059 """GetPrinterOptions() -> String"""
3060 return _windows
.PrintData_GetPrinterOptions(*args
, **kwargs
)
3062 def GetPreviewCommand(*args
, **kwargs
):
3063 """GetPreviewCommand() -> String"""
3064 return _windows
.PrintData_GetPreviewCommand(*args
, **kwargs
)
3066 def GetFilename(*args
, **kwargs
):
3067 """GetFilename() -> String"""
3068 return _windows
.PrintData_GetFilename(*args
, **kwargs
)
3070 def GetFontMetricPath(*args
, **kwargs
):
3071 """GetFontMetricPath() -> String"""
3072 return _windows
.PrintData_GetFontMetricPath(*args
, **kwargs
)
3074 def GetPrinterScaleX(*args
, **kwargs
):
3075 """GetPrinterScaleX() -> double"""
3076 return _windows
.PrintData_GetPrinterScaleX(*args
, **kwargs
)
3078 def GetPrinterScaleY(*args
, **kwargs
):
3079 """GetPrinterScaleY() -> double"""
3080 return _windows
.PrintData_GetPrinterScaleY(*args
, **kwargs
)
3082 def GetPrinterTranslateX(*args
, **kwargs
):
3083 """GetPrinterTranslateX() -> long"""
3084 return _windows
.PrintData_GetPrinterTranslateX(*args
, **kwargs
)
3086 def GetPrinterTranslateY(*args
, **kwargs
):
3087 """GetPrinterTranslateY() -> long"""
3088 return _windows
.PrintData_GetPrinterTranslateY(*args
, **kwargs
)
3090 def GetPrintMode(*args
, **kwargs
):
3091 """GetPrintMode() -> int"""
3092 return _windows
.PrintData_GetPrintMode(*args
, **kwargs
)
3094 def SetPrinterCommand(*args
, **kwargs
):
3095 """SetPrinterCommand(String command)"""
3096 return _windows
.PrintData_SetPrinterCommand(*args
, **kwargs
)
3098 def SetPrinterOptions(*args
, **kwargs
):
3099 """SetPrinterOptions(String options)"""
3100 return _windows
.PrintData_SetPrinterOptions(*args
, **kwargs
)
3102 def SetPreviewCommand(*args
, **kwargs
):
3103 """SetPreviewCommand(String command)"""
3104 return _windows
.PrintData_SetPreviewCommand(*args
, **kwargs
)
3106 def SetFilename(*args
, **kwargs
):
3107 """SetFilename(String filename)"""
3108 return _windows
.PrintData_SetFilename(*args
, **kwargs
)
3110 def SetFontMetricPath(*args
, **kwargs
):
3111 """SetFontMetricPath(String path)"""
3112 return _windows
.PrintData_SetFontMetricPath(*args
, **kwargs
)
3114 def SetPrinterScaleX(*args
, **kwargs
):
3115 """SetPrinterScaleX(double x)"""
3116 return _windows
.PrintData_SetPrinterScaleX(*args
, **kwargs
)
3118 def SetPrinterScaleY(*args
, **kwargs
):
3119 """SetPrinterScaleY(double y)"""
3120 return _windows
.PrintData_SetPrinterScaleY(*args
, **kwargs
)
3122 def SetPrinterScaling(*args
, **kwargs
):
3123 """SetPrinterScaling(double x, double y)"""
3124 return _windows
.PrintData_SetPrinterScaling(*args
, **kwargs
)
3126 def SetPrinterTranslateX(*args
, **kwargs
):
3127 """SetPrinterTranslateX(long x)"""
3128 return _windows
.PrintData_SetPrinterTranslateX(*args
, **kwargs
)
3130 def SetPrinterTranslateY(*args
, **kwargs
):
3131 """SetPrinterTranslateY(long y)"""
3132 return _windows
.PrintData_SetPrinterTranslateY(*args
, **kwargs
)
3134 def SetPrinterTranslation(*args
, **kwargs
):
3135 """SetPrinterTranslation(long x, long y)"""
3136 return _windows
.PrintData_SetPrinterTranslation(*args
, **kwargs
)
3138 def SetPrintMode(*args
, **kwargs
):
3139 """SetPrintMode(int printMode)"""
3140 return _windows
.PrintData_SetPrintMode(*args
, **kwargs
)
3142 def GetOutputStream(*args
, **kwargs
):
3143 """GetOutputStream() -> OutputStream"""
3144 return _windows
.PrintData_GetOutputStream(*args
, **kwargs
)
3146 def SetOutputStream(*args
, **kwargs
):
3147 """SetOutputStream(OutputStream outputstream)"""
3148 return _windows
.PrintData_SetOutputStream(*args
, **kwargs
)
3150 def __nonzero__(self
): return self
.Ok()
3152 class PrintDataPtr(PrintData
):
3153 def __init__(self
, this
):
3155 if not hasattr(self
,"thisown"): self
.thisown
= 0
3156 self
.__class
__ = PrintData
3157 _windows
.PrintData_swigregister(PrintDataPtr
)
3158 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3159 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3161 class PageSetupDialogData(core
.Object
):
3163 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3164 def __init__(self
, *args
, **kwargs
):
3165 """__init__() -> PageSetupDialogData"""
3166 newobj
= _windows
.new_PageSetupDialogData(*args
, **kwargs
)
3167 self
.this
= newobj
.this
3170 def __del__(self
, destroy
=_windows
.delete_PageSetupDialogData
):
3173 if self
.thisown
: destroy(self
)
3176 def EnableHelp(*args
, **kwargs
):
3177 """EnableHelp(bool flag)"""
3178 return _windows
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3180 def EnableMargins(*args
, **kwargs
):
3181 """EnableMargins(bool flag)"""
3182 return _windows
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3184 def EnableOrientation(*args
, **kwargs
):
3185 """EnableOrientation(bool flag)"""
3186 return _windows
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3188 def EnablePaper(*args
, **kwargs
):
3189 """EnablePaper(bool flag)"""
3190 return _windows
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3192 def EnablePrinter(*args
, **kwargs
):
3193 """EnablePrinter(bool flag)"""
3194 return _windows
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3196 def GetDefaultMinMargins(*args
, **kwargs
):
3197 """GetDefaultMinMargins() -> bool"""
3198 return _windows
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3200 def GetEnableMargins(*args
, **kwargs
):
3201 """GetEnableMargins() -> bool"""
3202 return _windows
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3204 def GetEnableOrientation(*args
, **kwargs
):
3205 """GetEnableOrientation() -> bool"""
3206 return _windows
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3208 def GetEnablePaper(*args
, **kwargs
):
3209 """GetEnablePaper() -> bool"""
3210 return _windows
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3212 def GetEnablePrinter(*args
, **kwargs
):
3213 """GetEnablePrinter() -> bool"""
3214 return _windows
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3216 def GetEnableHelp(*args
, **kwargs
):
3217 """GetEnableHelp() -> bool"""
3218 return _windows
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3220 def GetDefaultInfo(*args
, **kwargs
):
3221 """GetDefaultInfo() -> bool"""
3222 return _windows
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3224 def GetMarginTopLeft(*args
, **kwargs
):
3225 """GetMarginTopLeft() -> Point"""
3226 return _windows
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3228 def GetMarginBottomRight(*args
, **kwargs
):
3229 """GetMarginBottomRight() -> Point"""
3230 return _windows
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3232 def GetMinMarginTopLeft(*args
, **kwargs
):
3233 """GetMinMarginTopLeft() -> Point"""
3234 return _windows
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3236 def GetMinMarginBottomRight(*args
, **kwargs
):
3237 """GetMinMarginBottomRight() -> Point"""
3238 return _windows
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3240 def GetPaperId(*args
, **kwargs
):
3241 """GetPaperId() -> int"""
3242 return _windows
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3244 def GetPaperSize(*args
, **kwargs
):
3245 """GetPaperSize() -> Size"""
3246 return _windows
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3248 def GetPrintData(*args
, **kwargs
):
3249 """GetPrintData() -> PrintData"""
3250 return _windows
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3252 def Ok(*args
, **kwargs
):
3254 return _windows
.PageSetupDialogData_Ok(*args
, **kwargs
)
3256 def SetDefaultInfo(*args
, **kwargs
):
3257 """SetDefaultInfo(bool flag)"""
3258 return _windows
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3260 def SetDefaultMinMargins(*args
, **kwargs
):
3261 """SetDefaultMinMargins(bool flag)"""
3262 return _windows
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3264 def SetMarginTopLeft(*args
, **kwargs
):
3265 """SetMarginTopLeft(Point pt)"""
3266 return _windows
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3268 def SetMarginBottomRight(*args
, **kwargs
):
3269 """SetMarginBottomRight(Point pt)"""
3270 return _windows
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3272 def SetMinMarginTopLeft(*args
, **kwargs
):
3273 """SetMinMarginTopLeft(Point pt)"""
3274 return _windows
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3276 def SetMinMarginBottomRight(*args
, **kwargs
):
3277 """SetMinMarginBottomRight(Point pt)"""
3278 return _windows
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3280 def SetPaperId(*args
, **kwargs
):
3281 """SetPaperId(int id)"""
3282 return _windows
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3284 def SetPaperSize(*args
, **kwargs
):
3285 """SetPaperSize(Size size)"""
3286 return _windows
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3288 def SetPrintData(*args
, **kwargs
):
3289 """SetPrintData(PrintData printData)"""
3290 return _windows
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3292 def __nonzero__(self
): return self
.Ok()
3294 class PageSetupDialogDataPtr(PageSetupDialogData
):
3295 def __init__(self
, this
):
3297 if not hasattr(self
,"thisown"): self
.thisown
= 0
3298 self
.__class
__ = PageSetupDialogData
3299 _windows
.PageSetupDialogData_swigregister(PageSetupDialogDataPtr
)
3301 class PageSetupDialog(Dialog
):
3303 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3304 def __init__(self
, *args
, **kwargs
):
3305 """__init__(Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
3306 newobj
= _windows
.new_PageSetupDialog(*args
, **kwargs
)
3307 self
.this
= newobj
.this
3310 self
._setOORInfo
(self
)
3312 def GetPageSetupData(*args
, **kwargs
):
3313 """GetPageSetupData() -> PageSetupDialogData"""
3314 return _windows
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
3316 def ShowModal(*args
, **kwargs
):
3317 """ShowModal() -> int"""
3318 return _windows
.PageSetupDialog_ShowModal(*args
, **kwargs
)
3321 class PageSetupDialogPtr(PageSetupDialog
):
3322 def __init__(self
, this
):
3324 if not hasattr(self
,"thisown"): self
.thisown
= 0
3325 self
.__class
__ = PageSetupDialog
3326 _windows
.PageSetupDialog_swigregister(PageSetupDialogPtr
)
3328 class PrintDialogData(core
.Object
):
3330 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3331 def __init__(self
, *args
, **kwargs
):
3332 """__init__() -> PrintDialogData"""
3333 newobj
= _windows
.new_PrintDialogData(*args
, **kwargs
)
3334 self
.this
= newobj
.this
3337 def __del__(self
, destroy
=_windows
.delete_PrintDialogData
):
3340 if self
.thisown
: destroy(self
)
3343 def GetFromPage(*args
, **kwargs
):
3344 """GetFromPage() -> int"""
3345 return _windows
.PrintDialogData_GetFromPage(*args
, **kwargs
)
3347 def GetToPage(*args
, **kwargs
):
3348 """GetToPage() -> int"""
3349 return _windows
.PrintDialogData_GetToPage(*args
, **kwargs
)
3351 def GetMinPage(*args
, **kwargs
):
3352 """GetMinPage() -> int"""
3353 return _windows
.PrintDialogData_GetMinPage(*args
, **kwargs
)
3355 def GetMaxPage(*args
, **kwargs
):
3356 """GetMaxPage() -> int"""
3357 return _windows
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
3359 def GetNoCopies(*args
, **kwargs
):
3360 """GetNoCopies() -> int"""
3361 return _windows
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
3363 def GetAllPages(*args
, **kwargs
):
3364 """GetAllPages() -> bool"""
3365 return _windows
.PrintDialogData_GetAllPages(*args
, **kwargs
)
3367 def GetSelection(*args
, **kwargs
):
3368 """GetSelection() -> bool"""
3369 return _windows
.PrintDialogData_GetSelection(*args
, **kwargs
)
3371 def GetCollate(*args
, **kwargs
):
3372 """GetCollate() -> bool"""
3373 return _windows
.PrintDialogData_GetCollate(*args
, **kwargs
)
3375 def GetPrintToFile(*args
, **kwargs
):
3376 """GetPrintToFile() -> bool"""
3377 return _windows
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
3379 def GetSetupDialog(*args
, **kwargs
):
3380 """GetSetupDialog() -> bool"""
3381 return _windows
.PrintDialogData_GetSetupDialog(*args
, **kwargs
)
3383 def SetFromPage(*args
, **kwargs
):
3384 """SetFromPage(int v)"""
3385 return _windows
.PrintDialogData_SetFromPage(*args
, **kwargs
)
3387 def SetToPage(*args
, **kwargs
):
3388 """SetToPage(int v)"""
3389 return _windows
.PrintDialogData_SetToPage(*args
, **kwargs
)
3391 def SetMinPage(*args
, **kwargs
):
3392 """SetMinPage(int v)"""
3393 return _windows
.PrintDialogData_SetMinPage(*args
, **kwargs
)
3395 def SetMaxPage(*args
, **kwargs
):
3396 """SetMaxPage(int v)"""
3397 return _windows
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
3399 def SetNoCopies(*args
, **kwargs
):
3400 """SetNoCopies(int v)"""
3401 return _windows
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
3403 def SetAllPages(*args
, **kwargs
):
3404 """SetAllPages(bool flag)"""
3405 return _windows
.PrintDialogData_SetAllPages(*args
, **kwargs
)
3407 def SetSelection(*args
, **kwargs
):
3408 """SetSelection(bool flag)"""
3409 return _windows
.PrintDialogData_SetSelection(*args
, **kwargs
)
3411 def SetCollate(*args
, **kwargs
):
3412 """SetCollate(bool flag)"""
3413 return _windows
.PrintDialogData_SetCollate(*args
, **kwargs
)
3415 def SetPrintToFile(*args
, **kwargs
):
3416 """SetPrintToFile(bool flag)"""
3417 return _windows
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
3419 def SetSetupDialog(*args
, **kwargs
):
3420 """SetSetupDialog(bool flag)"""
3421 return _windows
.PrintDialogData_SetSetupDialog(*args
, **kwargs
)
3423 def EnablePrintToFile(*args
, **kwargs
):
3424 """EnablePrintToFile(bool flag)"""
3425 return _windows
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
3427 def EnableSelection(*args
, **kwargs
):
3428 """EnableSelection(bool flag)"""
3429 return _windows
.PrintDialogData_EnableSelection(*args
, **kwargs
)
3431 def EnablePageNumbers(*args
, **kwargs
):
3432 """EnablePageNumbers(bool flag)"""
3433 return _windows
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
3435 def EnableHelp(*args
, **kwargs
):
3436 """EnableHelp(bool flag)"""
3437 return _windows
.PrintDialogData_EnableHelp(*args
, **kwargs
)
3439 def GetEnablePrintToFile(*args
, **kwargs
):
3440 """GetEnablePrintToFile() -> bool"""
3441 return _windows
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
3443 def GetEnableSelection(*args
, **kwargs
):
3444 """GetEnableSelection() -> bool"""
3445 return _windows
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
3447 def GetEnablePageNumbers(*args
, **kwargs
):
3448 """GetEnablePageNumbers() -> bool"""
3449 return _windows
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
3451 def GetEnableHelp(*args
, **kwargs
):
3452 """GetEnableHelp() -> bool"""
3453 return _windows
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
3455 def Ok(*args
, **kwargs
):
3457 return _windows
.PrintDialogData_Ok(*args
, **kwargs
)
3459 def GetPrintData(*args
, **kwargs
):
3460 """GetPrintData() -> PrintData"""
3461 return _windows
.PrintDialogData_GetPrintData(*args
, **kwargs
)
3463 def SetPrintData(*args
, **kwargs
):
3464 """SetPrintData(PrintData printData)"""
3465 return _windows
.PrintDialogData_SetPrintData(*args
, **kwargs
)
3467 def __nonzero__(self
): return self
.Ok()
3469 class PrintDialogDataPtr(PrintDialogData
):
3470 def __init__(self
, this
):
3472 if not hasattr(self
,"thisown"): self
.thisown
= 0
3473 self
.__class
__ = PrintDialogData
3474 _windows
.PrintDialogData_swigregister(PrintDialogDataPtr
)
3476 class PrintDialog(Dialog
):
3478 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3479 def __init__(self
, *args
, **kwargs
):
3480 """__init__(Window parent, PrintDialogData data=None) -> PrintDialog"""
3481 newobj
= _windows
.new_PrintDialog(*args
, **kwargs
)
3482 self
.this
= newobj
.this
3485 self
._setOORInfo
(self
)
3487 def GetPrintDialogData(*args
, **kwargs
):
3488 """GetPrintDialogData() -> PrintDialogData"""
3489 return _windows
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
3491 def GetPrintDC(*args
, **kwargs
):
3492 """GetPrintDC() -> DC"""
3493 return _windows
.PrintDialog_GetPrintDC(*args
, **kwargs
)
3495 def ShowModal(*args
, **kwargs
):
3496 """ShowModal() -> int"""
3497 return _windows
.PrintDialog_ShowModal(*args
, **kwargs
)
3500 class PrintDialogPtr(PrintDialog
):
3501 def __init__(self
, this
):
3503 if not hasattr(self
,"thisown"): self
.thisown
= 0
3504 self
.__class
__ = PrintDialog
3505 _windows
.PrintDialog_swigregister(PrintDialogPtr
)
3507 PRINTER_NO_ERROR
= _windows
.PRINTER_NO_ERROR
3508 PRINTER_CANCELLED
= _windows
.PRINTER_CANCELLED
3509 PRINTER_ERROR
= _windows
.PRINTER_ERROR
3510 class Printer(core
.Object
):
3512 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3513 def __init__(self
, *args
, **kwargs
):
3514 """__init__(PrintDialogData data=None) -> Printer"""
3515 newobj
= _windows
.new_Printer(*args
, **kwargs
)
3516 self
.this
= newobj
.this
3519 def __del__(self
, destroy
=_windows
.delete_Printer
):
3522 if self
.thisown
: destroy(self
)
3525 def CreateAbortWindow(*args
, **kwargs
):
3526 """CreateAbortWindow(Window parent, Printout printout)"""
3527 return _windows
.Printer_CreateAbortWindow(*args
, **kwargs
)
3529 def GetPrintDialogData(*args
, **kwargs
):
3530 """GetPrintDialogData() -> PrintDialogData"""
3531 return _windows
.Printer_GetPrintDialogData(*args
, **kwargs
)
3533 def Print(*args
, **kwargs
):
3534 """Print(Window parent, Printout printout, int prompt=True) -> bool"""
3535 return _windows
.Printer_Print(*args
, **kwargs
)
3537 def PrintDialog(*args
, **kwargs
):
3538 """PrintDialog(Window parent) -> DC"""
3539 return _windows
.Printer_PrintDialog(*args
, **kwargs
)
3541 def ReportError(*args
, **kwargs
):
3542 """ReportError(Window parent, Printout printout, String message)"""
3543 return _windows
.Printer_ReportError(*args
, **kwargs
)
3545 def Setup(*args
, **kwargs
):
3546 """Setup(Window parent) -> bool"""
3547 return _windows
.Printer_Setup(*args
, **kwargs
)
3549 def GetAbort(*args
, **kwargs
):
3550 """GetAbort() -> bool"""
3551 return _windows
.Printer_GetAbort(*args
, **kwargs
)
3553 def GetLastError(*args
, **kwargs
):
3554 """GetLastError() -> int"""
3555 return _windows
.Printer_GetLastError(*args
, **kwargs
)
3557 GetLastError
= staticmethod(GetLastError
)
3559 class PrinterPtr(Printer
):
3560 def __init__(self
, this
):
3562 if not hasattr(self
,"thisown"): self
.thisown
= 0
3563 self
.__class
__ = Printer
3564 _windows
.Printer_swigregister(PrinterPtr
)
3566 def Printer_GetLastError(*args
, **kwargs
):
3567 """Printer_GetLastError() -> int"""
3568 return _windows
.Printer_GetLastError(*args
, **kwargs
)
3570 class Printout(core
.Object
):
3572 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3573 def __init__(self
, *args
, **kwargs
):
3574 """__init__(String title=PrintoutTitleStr) -> Printout"""
3575 newobj
= _windows
.new_Printout(*args
, **kwargs
)
3576 self
.this
= newobj
.this
3579 self
._setCallbackInfo
(self
, Printout
)
3581 def _setCallbackInfo(*args
, **kwargs
):
3582 """_setCallbackInfo(PyObject self, PyObject _class)"""
3583 return _windows
.Printout__setCallbackInfo(*args
, **kwargs
)
3585 def GetTitle(*args
, **kwargs
):
3586 """GetTitle() -> String"""
3587 return _windows
.Printout_GetTitle(*args
, **kwargs
)
3589 def GetDC(*args
, **kwargs
):
3591 return _windows
.Printout_GetDC(*args
, **kwargs
)
3593 def SetDC(*args
, **kwargs
):
3595 return _windows
.Printout_SetDC(*args
, **kwargs
)
3597 def SetPageSizePixels(*args
, **kwargs
):
3598 """SetPageSizePixels(int w, int h)"""
3599 return _windows
.Printout_SetPageSizePixels(*args
, **kwargs
)
3601 def GetPageSizePixels(*args
, **kwargs
):
3602 """GetPageSizePixels() -> (w, h)"""
3603 return _windows
.Printout_GetPageSizePixels(*args
, **kwargs
)
3605 def SetPageSizeMM(*args
, **kwargs
):
3606 """SetPageSizeMM(int w, int h)"""
3607 return _windows
.Printout_SetPageSizeMM(*args
, **kwargs
)
3609 def GetPageSizeMM(*args
, **kwargs
):
3610 """GetPageSizeMM() -> (w, h)"""
3611 return _windows
.Printout_GetPageSizeMM(*args
, **kwargs
)
3613 def SetPPIScreen(*args
, **kwargs
):
3614 """SetPPIScreen(int x, int y)"""
3615 return _windows
.Printout_SetPPIScreen(*args
, **kwargs
)
3617 def GetPPIScreen(*args
, **kwargs
):
3618 """GetPPIScreen() -> (x,y)"""
3619 return _windows
.Printout_GetPPIScreen(*args
, **kwargs
)
3621 def SetPPIPrinter(*args
, **kwargs
):
3622 """SetPPIPrinter(int x, int y)"""
3623 return _windows
.Printout_SetPPIPrinter(*args
, **kwargs
)
3625 def GetPPIPrinter(*args
, **kwargs
):
3626 """GetPPIPrinter() -> (x,y)"""
3627 return _windows
.Printout_GetPPIPrinter(*args
, **kwargs
)
3629 def IsPreview(*args
, **kwargs
):
3630 """IsPreview() -> bool"""
3631 return _windows
.Printout_IsPreview(*args
, **kwargs
)
3633 def SetIsPreview(*args
, **kwargs
):
3634 """SetIsPreview(bool p)"""
3635 return _windows
.Printout_SetIsPreview(*args
, **kwargs
)
3637 def base_OnBeginDocument(*args
, **kwargs
):
3638 """base_OnBeginDocument(int startPage, int endPage) -> bool"""
3639 return _windows
.Printout_base_OnBeginDocument(*args
, **kwargs
)
3641 def base_OnEndDocument(*args
, **kwargs
):
3642 """base_OnEndDocument()"""
3643 return _windows
.Printout_base_OnEndDocument(*args
, **kwargs
)
3645 def base_OnBeginPrinting(*args
, **kwargs
):
3646 """base_OnBeginPrinting()"""
3647 return _windows
.Printout_base_OnBeginPrinting(*args
, **kwargs
)
3649 def base_OnEndPrinting(*args
, **kwargs
):
3650 """base_OnEndPrinting()"""
3651 return _windows
.Printout_base_OnEndPrinting(*args
, **kwargs
)
3653 def base_OnPreparePrinting(*args
, **kwargs
):
3654 """base_OnPreparePrinting()"""
3655 return _windows
.Printout_base_OnPreparePrinting(*args
, **kwargs
)
3657 def base_HasPage(*args
, **kwargs
):
3658 """base_HasPage(int page) -> bool"""
3659 return _windows
.Printout_base_HasPage(*args
, **kwargs
)
3661 def base_GetPageInfo(*args
, **kwargs
):
3662 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
3663 return _windows
.Printout_base_GetPageInfo(*args
, **kwargs
)
3666 class PrintoutPtr(Printout
):
3667 def __init__(self
, this
):
3669 if not hasattr(self
,"thisown"): self
.thisown
= 0
3670 self
.__class
__ = Printout
3671 _windows
.Printout_swigregister(PrintoutPtr
)
3673 class PreviewCanvas(ScrolledWindow
):
3675 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3676 def __init__(self
, *args
, **kwargs
):
3678 __init__(PrintPreview preview, Window parent, Point pos=DefaultPosition,
3679 Size size=DefaultSize, long style=0,
3680 String name=PreviewCanvasNameStr) -> PreviewCanvas
3682 newobj
= _windows
.new_PreviewCanvas(*args
, **kwargs
)
3683 self
.this
= newobj
.this
3686 self
._setOORInfo
(self
)
3689 class PreviewCanvasPtr(PreviewCanvas
):
3690 def __init__(self
, this
):
3692 if not hasattr(self
,"thisown"): self
.thisown
= 0
3693 self
.__class
__ = PreviewCanvas
3694 _windows
.PreviewCanvas_swigregister(PreviewCanvasPtr
)
3696 class PreviewFrame(Frame
):
3698 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3699 def __init__(self
, *args
, **kwargs
):
3701 __init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
3702 Size size=DefaultSize,
3703 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
3705 newobj
= _windows
.new_PreviewFrame(*args
, **kwargs
)
3706 self
.this
= newobj
.this
3709 self
._setOORInfo
(self
)
3711 def Initialize(*args
, **kwargs
):
3713 return _windows
.PreviewFrame_Initialize(*args
, **kwargs
)
3715 def CreateControlBar(*args
, **kwargs
):
3716 """CreateControlBar()"""
3717 return _windows
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
3719 def CreateCanvas(*args
, **kwargs
):
3720 """CreateCanvas()"""
3721 return _windows
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
3723 def GetControlBar(*args
, **kwargs
):
3724 """GetControlBar() -> PreviewControlBar"""
3725 return _windows
.PreviewFrame_GetControlBar(*args
, **kwargs
)
3728 class PreviewFramePtr(PreviewFrame
):
3729 def __init__(self
, this
):
3731 if not hasattr(self
,"thisown"): self
.thisown
= 0
3732 self
.__class
__ = PreviewFrame
3733 _windows
.PreviewFrame_swigregister(PreviewFramePtr
)
3735 PREVIEW_PRINT
= _windows
.PREVIEW_PRINT
3736 PREVIEW_PREVIOUS
= _windows
.PREVIEW_PREVIOUS
3737 PREVIEW_NEXT
= _windows
.PREVIEW_NEXT
3738 PREVIEW_ZOOM
= _windows
.PREVIEW_ZOOM
3739 PREVIEW_FIRST
= _windows
.PREVIEW_FIRST
3740 PREVIEW_LAST
= _windows
.PREVIEW_LAST
3741 PREVIEW_GOTO
= _windows
.PREVIEW_GOTO
3742 PREVIEW_DEFAULT
= _windows
.PREVIEW_DEFAULT
3743 ID_PREVIEW_CLOSE
= _windows
.ID_PREVIEW_CLOSE
3744 ID_PREVIEW_NEXT
= _windows
.ID_PREVIEW_NEXT
3745 ID_PREVIEW_PREVIOUS
= _windows
.ID_PREVIEW_PREVIOUS
3746 ID_PREVIEW_PRINT
= _windows
.ID_PREVIEW_PRINT
3747 ID_PREVIEW_ZOOM
= _windows
.ID_PREVIEW_ZOOM
3748 ID_PREVIEW_FIRST
= _windows
.ID_PREVIEW_FIRST
3749 ID_PREVIEW_LAST
= _windows
.ID_PREVIEW_LAST
3750 ID_PREVIEW_GOTO
= _windows
.ID_PREVIEW_GOTO
3751 class PreviewControlBar(Panel
):
3753 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3754 def __init__(self
, *args
, **kwargs
):
3756 __init__(PrintPreview preview, long buttons, Window parent,
3757 Point pos=DefaultPosition, Size size=DefaultSize,
3758 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
3760 newobj
= _windows
.new_PreviewControlBar(*args
, **kwargs
)
3761 self
.this
= newobj
.this
3764 self
._setOORInfo
(self
)
3766 def GetZoomControl(*args
, **kwargs
):
3767 """GetZoomControl() -> int"""
3768 return _windows
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
3770 def SetZoomControl(*args
, **kwargs
):
3771 """SetZoomControl(int zoom)"""
3772 return _windows
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
3774 def GetPrintPreview(*args
, **kwargs
):
3775 """GetPrintPreview() -> PrintPreview"""
3776 return _windows
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
3778 def OnNext(*args
, **kwargs
):
3780 return _windows
.PreviewControlBar_OnNext(*args
, **kwargs
)
3782 def OnPrevious(*args
, **kwargs
):
3784 return _windows
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
3786 def OnFirst(*args
, **kwargs
):
3788 return _windows
.PreviewControlBar_OnFirst(*args
, **kwargs
)
3790 def OnLast(*args
, **kwargs
):
3792 return _windows
.PreviewControlBar_OnLast(*args
, **kwargs
)
3794 def OnGoto(*args
, **kwargs
):
3796 return _windows
.PreviewControlBar_OnGoto(*args
, **kwargs
)
3799 class PreviewControlBarPtr(PreviewControlBar
):
3800 def __init__(self
, this
):
3802 if not hasattr(self
,"thisown"): self
.thisown
= 0
3803 self
.__class
__ = PreviewControlBar
3804 _windows
.PreviewControlBar_swigregister(PreviewControlBarPtr
)
3806 class PrintPreview(core
.Object
):
3808 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3809 def __init__(self
, *args
, **kwargs
):
3810 """__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -> PrintPreview"""
3811 newobj
= _windows
.new_PrintPreview(*args
, **kwargs
)
3812 self
.this
= newobj
.this
3815 def SetCurrentPage(*args
, **kwargs
):
3816 """SetCurrentPage(int pageNum) -> bool"""
3817 return _windows
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
3819 def GetCurrentPage(*args
, **kwargs
):
3820 """GetCurrentPage() -> int"""
3821 return _windows
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
3823 def SetPrintout(*args
, **kwargs
):
3824 """SetPrintout(Printout printout)"""
3825 return _windows
.PrintPreview_SetPrintout(*args
, **kwargs
)
3827 def GetPrintout(*args
, **kwargs
):
3828 """GetPrintout() -> Printout"""
3829 return _windows
.PrintPreview_GetPrintout(*args
, **kwargs
)
3831 def GetPrintoutForPrinting(*args
, **kwargs
):
3832 """GetPrintoutForPrinting() -> Printout"""
3833 return _windows
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
3835 def SetFrame(*args
, **kwargs
):
3836 """SetFrame(Frame frame)"""
3837 return _windows
.PrintPreview_SetFrame(*args
, **kwargs
)
3839 def SetCanvas(*args
, **kwargs
):
3840 """SetCanvas(PreviewCanvas canvas)"""
3841 return _windows
.PrintPreview_SetCanvas(*args
, **kwargs
)
3843 def GetFrame(*args
, **kwargs
):
3844 """GetFrame() -> Frame"""
3845 return _windows
.PrintPreview_GetFrame(*args
, **kwargs
)
3847 def GetCanvas(*args
, **kwargs
):
3848 """GetCanvas() -> PreviewCanvas"""
3849 return _windows
.PrintPreview_GetCanvas(*args
, **kwargs
)
3851 def PaintPage(*args
, **kwargs
):
3852 """PaintPage(PreviewCanvas canvas, DC dc) -> bool"""
3853 return _windows
.PrintPreview_PaintPage(*args
, **kwargs
)
3855 def DrawBlankPage(*args
, **kwargs
):
3856 """DrawBlankPage(PreviewCanvas canvas, DC dc) -> bool"""
3857 return _windows
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
3859 def RenderPage(*args
, **kwargs
):
3860 """RenderPage(int pageNum) -> bool"""
3861 return _windows
.PrintPreview_RenderPage(*args
, **kwargs
)
3863 def AdjustScrollbars(*args
, **kwargs
):
3864 """AdjustScrollbars(PreviewCanvas canvas)"""
3865 return _windows
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
3867 def GetPrintDialogData(*args
, **kwargs
):
3868 """GetPrintDialogData() -> PrintDialogData"""
3869 return _windows
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
3871 def SetZoom(*args
, **kwargs
):
3872 """SetZoom(int percent)"""
3873 return _windows
.PrintPreview_SetZoom(*args
, **kwargs
)
3875 def GetZoom(*args
, **kwargs
):
3876 """GetZoom() -> int"""
3877 return _windows
.PrintPreview_GetZoom(*args
, **kwargs
)
3879 def GetMaxPage(*args
, **kwargs
):
3880 """GetMaxPage() -> int"""
3881 return _windows
.PrintPreview_GetMaxPage(*args
, **kwargs
)
3883 def GetMinPage(*args
, **kwargs
):
3884 """GetMinPage() -> int"""
3885 return _windows
.PrintPreview_GetMinPage(*args
, **kwargs
)
3887 def Ok(*args
, **kwargs
):
3889 return _windows
.PrintPreview_Ok(*args
, **kwargs
)
3891 def SetOk(*args
, **kwargs
):
3892 """SetOk(bool ok)"""
3893 return _windows
.PrintPreview_SetOk(*args
, **kwargs
)
3895 def Print(*args
, **kwargs
):
3896 """Print(bool interactive) -> bool"""
3897 return _windows
.PrintPreview_Print(*args
, **kwargs
)
3899 def DetermineScaling(*args
, **kwargs
):
3900 """DetermineScaling()"""
3901 return _windows
.PrintPreview_DetermineScaling(*args
, **kwargs
)
3903 def __nonzero__(self
): return self
.Ok()
3905 class PrintPreviewPtr(PrintPreview
):
3906 def __init__(self
, this
):
3908 if not hasattr(self
,"thisown"): self
.thisown
= 0
3909 self
.__class
__ = PrintPreview
3910 _windows
.PrintPreview_swigregister(PrintPreviewPtr
)
3912 class PyPrintPreview(PrintPreview
):
3914 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3915 def __init__(self
, *args
, **kwargs
):
3916 """__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -> PyPrintPreview"""
3917 newobj
= _windows
.new_PyPrintPreview(*args
, **kwargs
)
3918 self
.this
= newobj
.this
3921 self
._setCallbackInfo
(self
, PyPrintPreview
)
3923 def _setCallbackInfo(*args
, **kwargs
):
3924 """_setCallbackInfo(PyObject self, PyObject _class)"""
3925 return _windows
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
3927 def base_SetCurrentPage(*args
, **kwargs
):
3928 """base_SetCurrentPage(int pageNum) -> bool"""
3929 return _windows
.PyPrintPreview_base_SetCurrentPage(*args
, **kwargs
)
3931 def base_PaintPage(*args
, **kwargs
):
3932 """base_PaintPage(PreviewCanvas canvas, DC dc) -> bool"""
3933 return _windows
.PyPrintPreview_base_PaintPage(*args
, **kwargs
)
3935 def base_DrawBlankPage(*args
, **kwargs
):
3936 """base_DrawBlankPage(PreviewCanvas canvas, DC dc) -> bool"""
3937 return _windows
.PyPrintPreview_base_DrawBlankPage(*args
, **kwargs
)
3939 def base_RenderPage(*args
, **kwargs
):
3940 """base_RenderPage(int pageNum) -> bool"""
3941 return _windows
.PyPrintPreview_base_RenderPage(*args
, **kwargs
)
3943 def base_SetZoom(*args
, **kwargs
):
3944 """base_SetZoom(int percent)"""
3945 return _windows
.PyPrintPreview_base_SetZoom(*args
, **kwargs
)
3947 def base_Print(*args
, **kwargs
):
3948 """base_Print(bool interactive) -> bool"""
3949 return _windows
.PyPrintPreview_base_Print(*args
, **kwargs
)
3951 def base_DetermineScaling(*args
, **kwargs
):
3952 """base_DetermineScaling()"""
3953 return _windows
.PyPrintPreview_base_DetermineScaling(*args
, **kwargs
)
3956 class PyPrintPreviewPtr(PyPrintPreview
):
3957 def __init__(self
, this
):
3959 if not hasattr(self
,"thisown"): self
.thisown
= 0
3960 self
.__class
__ = PyPrintPreview
3961 _windows
.PyPrintPreview_swigregister(PyPrintPreviewPtr
)
3963 class PyPreviewFrame(PreviewFrame
):
3965 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3966 def __init__(self
, *args
, **kwargs
):
3968 __init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
3969 Size size=DefaultSize,
3970 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
3972 newobj
= _windows
.new_PyPreviewFrame(*args
, **kwargs
)
3973 self
.this
= newobj
.this
3976 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
3978 def _setCallbackInfo(*args
, **kwargs
):
3979 """_setCallbackInfo(PyObject self, PyObject _class)"""
3980 return _windows
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
3982 def SetPreviewCanvas(*args
, **kwargs
):
3983 """SetPreviewCanvas(PreviewCanvas canvas)"""
3984 return _windows
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
3986 def SetControlBar(*args
, **kwargs
):
3987 """SetControlBar(PreviewControlBar bar)"""
3988 return _windows
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
3990 def base_Initialize(*args
, **kwargs
):
3991 """base_Initialize()"""
3992 return _windows
.PyPreviewFrame_base_Initialize(*args
, **kwargs
)
3994 def base_CreateCanvas(*args
, **kwargs
):
3995 """base_CreateCanvas()"""
3996 return _windows
.PyPreviewFrame_base_CreateCanvas(*args
, **kwargs
)
3998 def base_CreateControlBar(*args
, **kwargs
):
3999 """base_CreateControlBar()"""
4000 return _windows
.PyPreviewFrame_base_CreateControlBar(*args
, **kwargs
)
4003 class PyPreviewFramePtr(PyPreviewFrame
):
4004 def __init__(self
, this
):
4006 if not hasattr(self
,"thisown"): self
.thisown
= 0
4007 self
.__class
__ = PyPreviewFrame
4008 _windows
.PyPreviewFrame_swigregister(PyPreviewFramePtr
)
4010 class PyPreviewControlBar(PreviewControlBar
):
4012 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4013 def __init__(self
, *args
, **kwargs
):
4015 __init__(PrintPreview preview, long buttons, Window parent,
4016 Point pos=DefaultPosition, Size size=DefaultSize,
4017 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4019 newobj
= _windows
.new_PyPreviewControlBar(*args
, **kwargs
)
4020 self
.this
= newobj
.this
4023 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4025 def _setCallbackInfo(*args
, **kwargs
):
4026 """_setCallbackInfo(PyObject self, PyObject _class)"""
4027 return _windows
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4029 def SetPrintPreview(*args
, **kwargs
):
4030 """SetPrintPreview(PrintPreview preview)"""
4031 return _windows
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4033 def base_CreateButtons(*args
, **kwargs
):
4034 """base_CreateButtons()"""
4035 return _windows
.PyPreviewControlBar_base_CreateButtons(*args
, **kwargs
)
4037 def base_SetZoomControl(*args
, **kwargs
):
4038 """base_SetZoomControl(int zoom)"""
4039 return _windows
.PyPreviewControlBar_base_SetZoomControl(*args
, **kwargs
)
4042 class PyPreviewControlBarPtr(PyPreviewControlBar
):
4043 def __init__(self
, this
):
4045 if not hasattr(self
,"thisown"): self
.thisown
= 0
4046 self
.__class
__ = PyPreviewControlBar
4047 _windows
.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr
)