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__(self, 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(self, Window parent, int id=-1, Point pos=DefaultPosition,
28 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
29 String name=PanelNameStr) -> bool
31 Create the GUI part of the Window for 2-phase creation mode.
33 return _windows_
.Panel_Create(*args
, **kwargs
)
35 def InitDialog(*args
, **kwargs
):
39 Sends an EVT_INIT_DIALOG event, whose handler usually transfers data
40 to the dialog via validators.
42 return _windows_
.Panel_InitDialog(*args
, **kwargs
)
44 def GetClassDefaultAttributes(*args
, **kwargs
):
46 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
48 Get the default attributes for this class. This is useful if you want
49 to use the same font or colour in your own control as in a standard
50 control -- which is a much better idea than hard coding specific
51 colours or fonts which might look completely out of place on the users
52 system, especially if it uses themes.
54 The variant parameter is only relevant under Mac currently and is
55 ignore under other platforms. Under Mac, it will change the size of
56 the returned font. See SetWindowVariant for more about this.
58 return _windows_
.Panel_GetClassDefaultAttributes(*args
, **kwargs
)
60 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
62 class PanelPtr(Panel
):
63 def __init__(self
, this
):
65 if not hasattr(self
,"thisown"): self
.thisown
= 0
66 self
.__class
__ = Panel
67 _windows_
.Panel_swigregister(PanelPtr
)
69 def PrePanel(*args
, **kwargs
):
70 """PrePanel() -> Panel"""
71 val
= _windows_
.new_PrePanel(*args
, **kwargs
)
75 def Panel_GetClassDefaultAttributes(*args
, **kwargs
):
77 Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
79 Get the default attributes for this class. This is useful if you want
80 to use the same font or colour in your own control as in a standard
81 control -- which is a much better idea than hard coding specific
82 colours or fonts which might look completely out of place on the users
83 system, especially if it uses themes.
85 The variant parameter is only relevant under Mac currently and is
86 ignore under other platforms. Under Mac, it will change the size of
87 the returned font. See SetWindowVariant for more about this.
89 return _windows_
.Panel_GetClassDefaultAttributes(*args
, **kwargs
)
91 #---------------------------------------------------------------------------
93 class ScrolledWindow(Panel
):
95 return "<%s.%s; proxy of C++ wxScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
96 def __init__(self
, *args
, **kwargs
):
98 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
99 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
100 String name=PanelNameStr) -> ScrolledWindow
102 newobj
= _windows_
.new_ScrolledWindow(*args
, **kwargs
)
103 self
.this
= newobj
.this
106 self
._setOORInfo
(self
)
108 def Create(*args
, **kwargs
):
110 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
111 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
112 String name=PanelNameStr) -> bool
114 Create the GUI part of the Window for 2-phase creation mode.
116 return _windows_
.ScrolledWindow_Create(*args
, **kwargs
)
118 def SetScrollbars(*args
, **kwargs
):
120 SetScrollbars(self, int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
121 int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
123 return _windows_
.ScrolledWindow_SetScrollbars(*args
, **kwargs
)
125 def Scroll(*args
, **kwargs
):
126 """Scroll(self, int x, int y)"""
127 return _windows_
.ScrolledWindow_Scroll(*args
, **kwargs
)
129 def GetScrollPageSize(*args
, **kwargs
):
130 """GetScrollPageSize(self, int orient) -> int"""
131 return _windows_
.ScrolledWindow_GetScrollPageSize(*args
, **kwargs
)
133 def SetScrollPageSize(*args
, **kwargs
):
134 """SetScrollPageSize(self, int orient, int pageSize)"""
135 return _windows_
.ScrolledWindow_SetScrollPageSize(*args
, **kwargs
)
137 def SetScrollRate(*args
, **kwargs
):
138 """SetScrollRate(self, int xstep, int ystep)"""
139 return _windows_
.ScrolledWindow_SetScrollRate(*args
, **kwargs
)
141 def GetScrollPixelsPerUnit(*args
, **kwargs
):
142 """GetScrollPixelsPerUnit() -> (xUnit, yUnit)"""
143 return _windows_
.ScrolledWindow_GetScrollPixelsPerUnit(*args
, **kwargs
)
145 def EnableScrolling(*args
, **kwargs
):
146 """EnableScrolling(self, bool x_scrolling, bool y_scrolling)"""
147 return _windows_
.ScrolledWindow_EnableScrolling(*args
, **kwargs
)
149 def GetViewStart(*args
, **kwargs
):
150 """GetViewStart() -> (x,y)"""
151 return _windows_
.ScrolledWindow_GetViewStart(*args
, **kwargs
)
153 def SetScale(*args
, **kwargs
):
154 """SetScale(self, double xs, double ys)"""
155 return _windows_
.ScrolledWindow_SetScale(*args
, **kwargs
)
157 def GetScaleX(*args
, **kwargs
):
158 """GetScaleX(self) -> double"""
159 return _windows_
.ScrolledWindow_GetScaleX(*args
, **kwargs
)
161 def GetScaleY(*args
, **kwargs
):
162 """GetScaleY(self) -> double"""
163 return _windows_
.ScrolledWindow_GetScaleY(*args
, **kwargs
)
165 def CalcScrolledPosition(*args
):
167 CalcScrolledPosition(self, Point pt) -> Point
168 CalcScrolledPosition(int x, int y) -> (sx, sy)
170 Translate between scrolled and unscrolled coordinates.
172 return _windows_
.ScrolledWindow_CalcScrolledPosition(*args
)
174 def CalcUnscrolledPosition(*args
):
176 CalcUnscrolledPosition(self, Point pt) -> Point
177 CalcUnscrolledPosition(int x, int y) -> (ux, uy)
179 Translate between scrolled and unscrolled coordinates.
181 return _windows_
.ScrolledWindow_CalcUnscrolledPosition(*args
)
183 def AdjustScrollbars(*args
, **kwargs
):
184 """AdjustScrollbars(self)"""
185 return _windows_
.ScrolledWindow_AdjustScrollbars(*args
, **kwargs
)
187 def CalcScrollInc(*args
, **kwargs
):
188 """CalcScrollInc(self, ScrollWinEvent event) -> int"""
189 return _windows_
.ScrolledWindow_CalcScrollInc(*args
, **kwargs
)
191 def SetTargetWindow(*args
, **kwargs
):
192 """SetTargetWindow(self, Window target)"""
193 return _windows_
.ScrolledWindow_SetTargetWindow(*args
, **kwargs
)
195 def GetTargetWindow(*args
, **kwargs
):
196 """GetTargetWindow(self) -> Window"""
197 return _windows_
.ScrolledWindow_GetTargetWindow(*args
, **kwargs
)
199 def SetTargetRect(*args
, **kwargs
):
200 """SetTargetRect(self, Rect rect)"""
201 return _windows_
.ScrolledWindow_SetTargetRect(*args
, **kwargs
)
203 def GetTargetRect(*args
, **kwargs
):
204 """GetTargetRect(self) -> Rect"""
205 return _windows_
.ScrolledWindow_GetTargetRect(*args
, **kwargs
)
207 def GetClassDefaultAttributes(*args
, **kwargs
):
209 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
211 Get the default attributes for this class. This is useful if you want
212 to use the same font or colour in your own control as in a standard
213 control -- which is a much better idea than hard coding specific
214 colours or fonts which might look completely out of place on the users
215 system, especially if it uses themes.
217 The variant parameter is only relevant under Mac currently and is
218 ignore under other platforms. Under Mac, it will change the size of
219 the returned font. See SetWindowVariant for more about this.
221 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
223 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
225 class ScrolledWindowPtr(ScrolledWindow
):
226 def __init__(self
, this
):
228 if not hasattr(self
,"thisown"): self
.thisown
= 0
229 self
.__class
__ = ScrolledWindow
230 _windows_
.ScrolledWindow_swigregister(ScrolledWindowPtr
)
232 def PreScrolledWindow(*args
, **kwargs
):
233 """PreScrolledWindow() -> ScrolledWindow"""
234 val
= _windows_
.new_PreScrolledWindow(*args
, **kwargs
)
238 def ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
):
240 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
242 Get the default attributes for this class. This is useful if you want
243 to use the same font or colour in your own control as in a standard
244 control -- which is a much better idea than hard coding specific
245 colours or fonts which might look completely out of place on the users
246 system, especially if it uses themes.
248 The variant parameter is only relevant under Mac currently and is
249 ignore under other platforms. Under Mac, it will change the size of
250 the returned font. See SetWindowVariant for more about this.
252 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
254 #---------------------------------------------------------------------------
256 STAY_ON_TOP
= _windows_
.STAY_ON_TOP
257 ICONIZE
= _windows_
.ICONIZE
258 MINIMIZE
= _windows_
.MINIMIZE
259 MAXIMIZE
= _windows_
.MAXIMIZE
260 CLOSE_BOX
= _windows_
.CLOSE_BOX
261 THICK_FRAME
= _windows_
.THICK_FRAME
262 SYSTEM_MENU
= _windows_
.SYSTEM_MENU
263 MINIMIZE_BOX
= _windows_
.MINIMIZE_BOX
264 MAXIMIZE_BOX
= _windows_
.MAXIMIZE_BOX
265 TINY_CAPTION_HORIZ
= _windows_
.TINY_CAPTION_HORIZ
266 TINY_CAPTION_VERT
= _windows_
.TINY_CAPTION_VERT
267 RESIZE_BOX
= _windows_
.RESIZE_BOX
268 RESIZE_BORDER
= _windows_
.RESIZE_BORDER
269 DIALOG_NO_PARENT
= _windows_
.DIALOG_NO_PARENT
270 DEFAULT_FRAME_STYLE
= _windows_
.DEFAULT_FRAME_STYLE
271 DEFAULT_DIALOG_STYLE
= _windows_
.DEFAULT_DIALOG_STYLE
272 FRAME_TOOL_WINDOW
= _windows_
.FRAME_TOOL_WINDOW
273 FRAME_FLOAT_ON_PARENT
= _windows_
.FRAME_FLOAT_ON_PARENT
274 FRAME_NO_WINDOW_MENU
= _windows_
.FRAME_NO_WINDOW_MENU
275 FRAME_NO_TASKBAR
= _windows_
.FRAME_NO_TASKBAR
276 FRAME_SHAPED
= _windows_
.FRAME_SHAPED
277 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
278 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
279 USER_COLOURS
= _windows_
.USER_COLOURS
280 NO_3D
= _windows_
.NO_3D
281 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
282 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
283 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
284 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
285 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
286 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
287 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
288 class TopLevelWindow(_core
.Window
):
289 def __init__(self
): raise RuntimeError, "No constructor defined"
291 return "<%s.%s; proxy of C++ wxTopLevelWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
292 def Maximize(*args
, **kwargs
):
293 """Maximize(self, bool maximize=True)"""
294 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
296 def Restore(*args
, **kwargs
):
298 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
300 def Iconize(*args
, **kwargs
):
301 """Iconize(self, bool iconize=True)"""
302 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
304 def IsMaximized(*args
, **kwargs
):
305 """IsMaximized(self) -> bool"""
306 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
308 def IsIconized(*args
, **kwargs
):
309 """IsIconized(self) -> bool"""
310 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
312 def GetIcon(*args
, **kwargs
):
313 """GetIcon(self) -> Icon"""
314 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
316 def SetIcon(*args
, **kwargs
):
317 """SetIcon(self, Icon icon)"""
318 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
320 def SetIcons(*args
, **kwargs
):
321 """SetIcons(self, wxIconBundle icons)"""
322 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
324 def ShowFullScreen(*args
, **kwargs
):
325 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
326 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
328 def IsFullScreen(*args
, **kwargs
):
329 """IsFullScreen(self) -> bool"""
330 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
332 def SetTitle(*args
, **kwargs
):
334 SetTitle(self, String title)
336 Sets the window's title. Applicable only to frames and dialogs.
338 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
340 def GetTitle(*args
, **kwargs
):
342 GetTitle(self) -> String
344 Gets the window's title. Applicable only to frames and dialogs.
346 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
348 def SetShape(*args
, **kwargs
):
349 """SetShape(self, Region region) -> bool"""
350 return _windows_
.TopLevelWindow_SetShape(*args
, **kwargs
)
352 def MacSetMetalAppearance(*args
, **kwargs
):
353 """MacSetMetalAppearance(self, bool on)"""
354 return _windows_
.TopLevelWindow_MacSetMetalAppearance(*args
, **kwargs
)
356 def MacGetMetalAppearance(*args
, **kwargs
):
357 """MacGetMetalAppearance(self) -> bool"""
358 return _windows_
.TopLevelWindow_MacGetMetalAppearance(*args
, **kwargs
)
361 class TopLevelWindowPtr(TopLevelWindow
):
362 def __init__(self
, this
):
364 if not hasattr(self
,"thisown"): self
.thisown
= 0
365 self
.__class
__ = TopLevelWindow
366 _windows_
.TopLevelWindow_swigregister(TopLevelWindowPtr
)
367 cvar
= _windows_
.cvar
368 FrameNameStr
= cvar
.FrameNameStr
369 DialogNameStr
= cvar
.DialogNameStr
370 StatusLineNameStr
= cvar
.StatusLineNameStr
371 ToolBarNameStr
= cvar
.ToolBarNameStr
373 #---------------------------------------------------------------------------
375 class Frame(TopLevelWindow
):
377 return "<%s.%s; proxy of C++ wxFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
378 def __init__(self
, *args
, **kwargs
):
380 __init__(self, Window parent, int id, String title, Point pos=DefaultPosition,
381 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
382 String name=FrameNameStr) -> Frame
384 newobj
= _windows_
.new_Frame(*args
, **kwargs
)
385 self
.this
= newobj
.this
388 self
._setOORInfo
(self
)
390 def Create(*args
, **kwargs
):
392 Create(self, Window parent, int id, String title, Point pos=DefaultPosition,
393 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
394 String name=FrameNameStr) -> bool
396 return _windows_
.Frame_Create(*args
, **kwargs
)
398 def GetClientAreaOrigin(*args
, **kwargs
):
400 GetClientAreaOrigin(self) -> Point
402 Get the origin of the client area of the window relative to the
403 window's top left corner (the client area may be shifted because of
404 the borders, scrollbars, other decorations...)
406 return _windows_
.Frame_GetClientAreaOrigin(*args
, **kwargs
)
408 def SendSizeEvent(*args
, **kwargs
):
409 """SendSizeEvent(self)"""
410 return _windows_
.Frame_SendSizeEvent(*args
, **kwargs
)
412 def SetMenuBar(*args
, **kwargs
):
413 """SetMenuBar(self, MenuBar menubar)"""
414 return _windows_
.Frame_SetMenuBar(*args
, **kwargs
)
416 def GetMenuBar(*args
, **kwargs
):
417 """GetMenuBar(self) -> MenuBar"""
418 return _windows_
.Frame_GetMenuBar(*args
, **kwargs
)
420 def ProcessCommand(*args
, **kwargs
):
421 """ProcessCommand(self, int winid) -> bool"""
422 return _windows_
.Frame_ProcessCommand(*args
, **kwargs
)
424 Command
= ProcessCommand
425 def CreateStatusBar(*args
, **kwargs
):
427 CreateStatusBar(self, int number=1, long style=ST_SIZEGRIP, int winid=0,
428 String name=StatusLineNameStr) -> StatusBar
430 return _windows_
.Frame_CreateStatusBar(*args
, **kwargs
)
432 def GetStatusBar(*args
, **kwargs
):
433 """GetStatusBar(self) -> StatusBar"""
434 return _windows_
.Frame_GetStatusBar(*args
, **kwargs
)
436 def SetStatusBar(*args
, **kwargs
):
437 """SetStatusBar(self, StatusBar statBar)"""
438 return _windows_
.Frame_SetStatusBar(*args
, **kwargs
)
440 def SetStatusText(*args
, **kwargs
):
441 """SetStatusText(self, String text, int number=0)"""
442 return _windows_
.Frame_SetStatusText(*args
, **kwargs
)
444 def SetStatusWidths(*args
, **kwargs
):
445 """SetStatusWidths(self, int widths, int widths_field)"""
446 return _windows_
.Frame_SetStatusWidths(*args
, **kwargs
)
448 def PushStatusText(*args
, **kwargs
):
449 """PushStatusText(self, String text, int number=0)"""
450 return _windows_
.Frame_PushStatusText(*args
, **kwargs
)
452 def PopStatusText(*args
, **kwargs
):
453 """PopStatusText(self, int number=0)"""
454 return _windows_
.Frame_PopStatusText(*args
, **kwargs
)
456 def SetStatusBarPane(*args
, **kwargs
):
457 """SetStatusBarPane(self, int n)"""
458 return _windows_
.Frame_SetStatusBarPane(*args
, **kwargs
)
460 def GetStatusBarPane(*args
, **kwargs
):
461 """GetStatusBarPane(self) -> int"""
462 return _windows_
.Frame_GetStatusBarPane(*args
, **kwargs
)
464 def CreateToolBar(*args
, **kwargs
):
465 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
466 return _windows_
.Frame_CreateToolBar(*args
, **kwargs
)
468 def GetToolBar(*args
, **kwargs
):
469 """GetToolBar(self) -> wxToolBar"""
470 return _windows_
.Frame_GetToolBar(*args
, **kwargs
)
472 def SetToolBar(*args
, **kwargs
):
473 """SetToolBar(self, wxToolBar toolbar)"""
474 return _windows_
.Frame_SetToolBar(*args
, **kwargs
)
476 def DoGiveHelp(*args
, **kwargs
):
477 """DoGiveHelp(self, String text, bool show)"""
478 return _windows_
.Frame_DoGiveHelp(*args
, **kwargs
)
480 def DoMenuUpdates(*args
, **kwargs
):
481 """DoMenuUpdates(self, Menu menu=None)"""
482 return _windows_
.Frame_DoMenuUpdates(*args
, **kwargs
)
484 def GetClassDefaultAttributes(*args
, **kwargs
):
486 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
488 Get the default attributes for this class. This is useful if you want
489 to use the same font or colour in your own control as in a standard
490 control -- which is a much better idea than hard coding specific
491 colours or fonts which might look completely out of place on the users
492 system, especially if it uses themes.
494 The variant parameter is only relevant under Mac currently and is
495 ignore under other platforms. Under Mac, it will change the size of
496 the returned font. See SetWindowVariant for more about this.
498 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
500 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
502 class FramePtr(Frame
):
503 def __init__(self
, this
):
505 if not hasattr(self
,"thisown"): self
.thisown
= 0
506 self
.__class
__ = Frame
507 _windows_
.Frame_swigregister(FramePtr
)
509 def PreFrame(*args
, **kwargs
):
510 """PreFrame() -> Frame"""
511 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
515 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
517 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
519 Get the default attributes for this class. This is useful if you want
520 to use the same font or colour in your own control as in a standard
521 control -- which is a much better idea than hard coding specific
522 colours or fonts which might look completely out of place on the users
523 system, especially if it uses themes.
525 The variant parameter is only relevant under Mac currently and is
526 ignore under other platforms. Under Mac, it will change the size of
527 the returned font. See SetWindowVariant for more about this.
529 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
531 #---------------------------------------------------------------------------
533 class Dialog(TopLevelWindow
):
535 return "<%s.%s; proxy of C++ wxDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
536 def __init__(self
, *args
, **kwargs
):
538 __init__(self, Window parent, int id, String title, Point pos=DefaultPosition,
539 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
540 String name=DialogNameStr) -> Dialog
542 newobj
= _windows_
.new_Dialog(*args
, **kwargs
)
543 self
.this
= newobj
.this
546 self
._setOORInfo
(self
)
548 def Create(*args
, **kwargs
):
550 Create(self, Window parent, int id, String title, Point pos=DefaultPosition,
551 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
552 String name=DialogNameStr) -> bool
554 return _windows_
.Dialog_Create(*args
, **kwargs
)
556 def SetReturnCode(*args
, **kwargs
):
557 """SetReturnCode(self, int returnCode)"""
558 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
560 def GetReturnCode(*args
, **kwargs
):
561 """GetReturnCode(self) -> int"""
562 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
564 def CreateTextSizer(*args
, **kwargs
):
565 """CreateTextSizer(self, String message) -> Sizer"""
566 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
568 def CreateButtonSizer(*args
, **kwargs
):
569 """CreateButtonSizer(self, long flags) -> Sizer"""
570 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
572 def IsModal(*args
, **kwargs
):
573 """IsModal(self) -> bool"""
574 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
576 def ShowModal(*args
, **kwargs
):
577 """ShowModal(self) -> int"""
578 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
580 def EndModal(*args
, **kwargs
):
581 """EndModal(self, int retCode)"""
582 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
584 def GetClassDefaultAttributes(*args
, **kwargs
):
586 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
588 Get the default attributes for this class. This is useful if you want
589 to use the same font or colour in your own control as in a standard
590 control -- which is a much better idea than hard coding specific
591 colours or fonts which might look completely out of place on the users
592 system, especially if it uses themes.
594 The variant parameter is only relevant under Mac currently and is
595 ignore under other platforms. Under Mac, it will change the size of
596 the returned font. See SetWindowVariant for more about this.
598 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
600 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
602 class DialogPtr(Dialog
):
603 def __init__(self
, this
):
605 if not hasattr(self
,"thisown"): self
.thisown
= 0
606 self
.__class
__ = Dialog
607 _windows_
.Dialog_swigregister(DialogPtr
)
609 def PreDialog(*args
, **kwargs
):
610 """PreDialog() -> Dialog"""
611 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
615 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
617 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
619 Get the default attributes for this class. This is useful if you want
620 to use the same font or colour in your own control as in a standard
621 control -- which is a much better idea than hard coding specific
622 colours or fonts which might look completely out of place on the users
623 system, especially if it uses themes.
625 The variant parameter is only relevant under Mac currently and is
626 ignore under other platforms. Under Mac, it will change the size of
627 the returned font. See SetWindowVariant for more about this.
629 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
631 #---------------------------------------------------------------------------
633 class MiniFrame(Frame
):
635 return "<%s.%s; proxy of C++ wxMiniFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
636 def __init__(self
, *args
, **kwargs
):
638 __init__(self, Window parent, int id, String title, Point pos=DefaultPosition,
639 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
640 String name=FrameNameStr) -> MiniFrame
642 newobj
= _windows_
.new_MiniFrame(*args
, **kwargs
)
643 self
.this
= newobj
.this
646 self
._setOORInfo
(self
)
648 def Create(*args
, **kwargs
):
650 Create(self, Window parent, int id, String title, Point pos=DefaultPosition,
651 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
652 String name=FrameNameStr) -> bool
654 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
657 class MiniFramePtr(MiniFrame
):
658 def __init__(self
, this
):
660 if not hasattr(self
,"thisown"): self
.thisown
= 0
661 self
.__class
__ = MiniFrame
662 _windows_
.MiniFrame_swigregister(MiniFramePtr
)
664 def PreMiniFrame(*args
, **kwargs
):
665 """PreMiniFrame() -> MiniFrame"""
666 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
670 #---------------------------------------------------------------------------
672 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
673 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
674 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
675 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
676 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
677 class SplashScreenWindow(_core
.Window
):
679 return "<%s.%s; proxy of C++ wxSplashScreenWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
680 def __init__(self
, *args
, **kwargs
):
682 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
683 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
685 newobj
= _windows_
.new_SplashScreenWindow(*args
, **kwargs
)
686 self
.this
= newobj
.this
689 self
._setOORInfo
(self
)
691 def SetBitmap(*args
, **kwargs
):
692 """SetBitmap(self, Bitmap bitmap)"""
693 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
695 def GetBitmap(*args
, **kwargs
):
696 """GetBitmap(self) -> Bitmap"""
697 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
700 class SplashScreenWindowPtr(SplashScreenWindow
):
701 def __init__(self
, this
):
703 if not hasattr(self
,"thisown"): self
.thisown
= 0
704 self
.__class
__ = SplashScreenWindow
705 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindowPtr
)
707 class SplashScreen(Frame
):
709 return "<%s.%s; proxy of C++ wxSplashScreen instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
710 def __init__(self
, *args
, **kwargs
):
712 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
713 Window parent, int id, Point pos=DefaultPosition,
714 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
716 newobj
= _windows_
.new_SplashScreen(*args
, **kwargs
)
717 self
.this
= newobj
.this
720 self
._setOORInfo
(self
)
722 def GetSplashStyle(*args
, **kwargs
):
723 """GetSplashStyle(self) -> long"""
724 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
726 def GetSplashWindow(*args
, **kwargs
):
727 """GetSplashWindow(self) -> SplashScreenWindow"""
728 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
730 def GetTimeout(*args
, **kwargs
):
731 """GetTimeout(self) -> int"""
732 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
735 class SplashScreenPtr(SplashScreen
):
736 def __init__(self
, this
):
738 if not hasattr(self
,"thisown"): self
.thisown
= 0
739 self
.__class
__ = SplashScreen
740 _windows_
.SplashScreen_swigregister(SplashScreenPtr
)
742 #---------------------------------------------------------------------------
744 class StatusBar(_core
.Window
):
746 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
747 def __init__(self
, *args
, **kwargs
):
748 """__init__(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> StatusBar"""
749 newobj
= _windows_
.new_StatusBar(*args
, **kwargs
)
750 self
.this
= newobj
.this
753 self
._setOORInfo
(self
)
755 def Create(*args
, **kwargs
):
756 """Create(self, Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
757 return _windows_
.StatusBar_Create(*args
, **kwargs
)
759 def SetFieldsCount(*args
, **kwargs
):
760 """SetFieldsCount(self, int number=1)"""
761 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
763 def GetFieldsCount(*args
, **kwargs
):
764 """GetFieldsCount(self) -> int"""
765 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
767 def SetStatusText(*args
, **kwargs
):
768 """SetStatusText(self, String text, int number=0)"""
769 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
771 def GetStatusText(*args
, **kwargs
):
772 """GetStatusText(self, int number=0) -> String"""
773 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
775 def PushStatusText(*args
, **kwargs
):
776 """PushStatusText(self, String text, int number=0)"""
777 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
779 def PopStatusText(*args
, **kwargs
):
780 """PopStatusText(self, int number=0)"""
781 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
783 def SetStatusWidths(*args
, **kwargs
):
784 """SetStatusWidths(self, int widths, int widths_field)"""
785 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
787 def GetFieldRect(*args
, **kwargs
):
788 """GetFieldRect(self, int i) -> Rect"""
789 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
791 def SetMinHeight(*args
, **kwargs
):
792 """SetMinHeight(self, int height)"""
793 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
795 def GetBorderX(*args
, **kwargs
):
796 """GetBorderX(self) -> int"""
797 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
799 def GetBorderY(*args
, **kwargs
):
800 """GetBorderY(self) -> int"""
801 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
803 def GetClassDefaultAttributes(*args
, **kwargs
):
805 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
807 Get the default attributes for this class. This is useful if you want
808 to use the same font or colour in your own control as in a standard
809 control -- which is a much better idea than hard coding specific
810 colours or fonts which might look completely out of place on the users
811 system, especially if it uses themes.
813 The variant parameter is only relevant under Mac currently and is
814 ignore under other platforms. Under Mac, it will change the size of
815 the returned font. See SetWindowVariant for more about this.
817 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
819 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
821 class StatusBarPtr(StatusBar
):
822 def __init__(self
, this
):
824 if not hasattr(self
,"thisown"): self
.thisown
= 0
825 self
.__class
__ = StatusBar
826 _windows_
.StatusBar_swigregister(StatusBarPtr
)
828 def PreStatusBar(*args
, **kwargs
):
829 """PreStatusBar() -> StatusBar"""
830 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
834 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
836 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
838 Get the default attributes for this class. This is useful if you want
839 to use the same font or colour in your own control as in a standard
840 control -- which is a much better idea than hard coding specific
841 colours or fonts which might look completely out of place on the users
842 system, especially if it uses themes.
844 The variant parameter is only relevant under Mac currently and is
845 ignore under other platforms. Under Mac, it will change the size of
846 the returned font. See SetWindowVariant for more about this.
848 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
850 #---------------------------------------------------------------------------
852 SP_NOBORDER
= _windows_
.SP_NOBORDER
853 SP_NOSASH
= _windows_
.SP_NOSASH
854 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
855 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
856 SP_3DSASH
= _windows_
.SP_3DSASH
857 SP_3DBORDER
= _windows_
.SP_3DBORDER
858 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
859 SP_BORDER
= _windows_
.SP_BORDER
860 SP_3D
= _windows_
.SP_3D
861 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
862 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
863 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
864 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
865 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
866 class SplitterWindow(_core
.Window
):
868 wx.SplitterWindow manages up to two subwindows or panes, with an
869 optional vertical or horizontal split which can be used with the mouse
873 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
874 def __init__(self
, *args
, **kwargs
):
876 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
877 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
879 Constructor. Creates and shows a SplitterWindow.
881 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
882 newobj
= _windows_
.new_SplitterWindow(*args
, **kwargs
)
883 self
.this
= newobj
.this
886 self
._setOORInfo
(self
)
888 def Create(*args
, **kwargs
):
890 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
891 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
893 Create the GUI part of the SplitterWindow for the 2-phase create.
895 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
897 def GetWindow1(*args
, **kwargs
):
899 GetWindow1(self) -> Window
901 Gets the only or left/top pane.
903 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
905 def GetWindow2(*args
, **kwargs
):
907 GetWindow2(self) -> Window
909 Gets the right/bottom pane.
911 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
913 def SetSplitMode(*args
, **kwargs
):
915 SetSplitMode(self, int mode)
917 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
918 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
921 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
923 def GetSplitMode(*args
, **kwargs
):
925 GetSplitMode(self) -> int
929 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
931 def Initialize(*args
, **kwargs
):
933 Initialize(self, Window window)
935 Initializes the splitter window to have one pane. This should be
936 called if you wish to initially view only a single pane in the
939 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
941 def SplitVertically(*args
, **kwargs
):
943 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
945 Initializes the left and right panes of the splitter window.
947 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
949 def SplitHorizontally(*args
, **kwargs
):
951 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
953 Initializes the top and bottom panes of the splitter window.
955 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
957 def Unsplit(*args
, **kwargs
):
959 Unsplit(self, Window toRemove=None) -> bool
961 Unsplits the window. Pass the pane to remove, or None to remove the
962 right or bottom pane. Returns True if successful, False otherwise (the
963 window was not split).
965 This function will not actually delete the pane being
966 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
967 for the desired behaviour. By default, the pane being
968 removed is only hidden.
970 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
972 def ReplaceWindow(*args
, **kwargs
):
974 ReplaceWindow(self, Window winOld, Window winNew) -> bool
976 This function replaces one of the windows managed by the
977 SplitterWindow with another one. It is in general better to use it
978 instead of calling Unsplit() and then resplitting the window back
979 because it will provoke much less flicker. It is valid to call this
980 function whether the splitter has two windows or only one.
982 Both parameters should be non-None and winOld must specify one of the
983 windows managed by the splitter. If the parameters are incorrect or
984 the window couldn't be replaced, False is returned. Otherwise the
985 function will return True, but please notice that it will not Destroy
986 the replaced window and you may wish to do it yourself.
988 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
990 def UpdateSize(*args
, **kwargs
):
994 Causes any pending sizing of the sash and child panes to take place
997 Such resizing normally takes place in idle time, in order to wait for
998 layout to be completed. However, this can cause unacceptable flicker
999 as the panes are resized after the window has been shown. To work
1000 around this, you can perform window layout (for example by sending a
1001 size event to the parent window), and then call this function, before
1002 showing the top-level window.
1004 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1006 def IsSplit(*args
, **kwargs
):
1008 IsSplit(self) -> bool
1010 Is the window split?
1012 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1014 def SetSashSize(*args
, **kwargs
):
1016 SetSashSize(self, int width)
1020 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1022 def SetBorderSize(*args
, **kwargs
):
1024 SetBorderSize(self, int width)
1026 Sets the border size
1028 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1030 def GetSashSize(*args
, **kwargs
):
1032 GetSashSize(self) -> int
1036 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1038 def GetBorderSize(*args
, **kwargs
):
1040 GetBorderSize(self) -> int
1042 Gets the border size
1044 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1046 def SetSashPosition(*args
, **kwargs
):
1048 SetSashPosition(self, int position, bool redraw=True)
1050 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1051 are resized and the sash and border are redrawn.
1053 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1055 def GetSashPosition(*args
, **kwargs
):
1057 GetSashPosition(self) -> int
1059 Returns the surrent sash position.
1061 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1063 def SetMinimumPaneSize(*args
, **kwargs
):
1065 SetMinimumPaneSize(self, int min)
1067 Sets the minimum pane size in pixels.
1069 The default minimum pane size is zero, which means that either pane
1070 can be reduced to zero by dragging the sash, thus removing one of the
1071 panes. To prevent this behaviour (and veto out-of-range sash
1072 dragging), set a minimum size, for example 20 pixels. If the
1073 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1074 the window may be unsplit even if minimum size is non-zero.
1076 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1078 def GetMinimumPaneSize(*args
, **kwargs
):
1080 GetMinimumPaneSize(self) -> int
1082 Gets the minimum pane size in pixels.
1084 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1086 def SashHitTest(*args
, **kwargs
):
1088 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1090 Tests for x, y over the sash
1092 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1094 def SizeWindows(*args
, **kwargs
):
1100 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1102 def SetNeedUpdating(*args
, **kwargs
):
1103 """SetNeedUpdating(self, bool needUpdating)"""
1104 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1106 def GetNeedUpdating(*args
, **kwargs
):
1107 """GetNeedUpdating(self) -> bool"""
1108 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1110 def GetClassDefaultAttributes(*args
, **kwargs
):
1112 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1114 Get the default attributes for this class. This is useful if you want
1115 to use the same font or colour in your own control as in a standard
1116 control -- which is a much better idea than hard coding specific
1117 colours or fonts which might look completely out of place on the users
1118 system, especially if it uses themes.
1120 The variant parameter is only relevant under Mac currently and is
1121 ignore under other platforms. Under Mac, it will change the size of
1122 the returned font. See SetWindowVariant for more about this.
1124 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1126 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1128 class SplitterWindowPtr(SplitterWindow
):
1129 def __init__(self
, this
):
1131 if not hasattr(self
,"thisown"): self
.thisown
= 0
1132 self
.__class
__ = SplitterWindow
1133 _windows_
.SplitterWindow_swigregister(SplitterWindowPtr
)
1134 SplitterNameStr
= cvar
.SplitterNameStr
1136 def PreSplitterWindow(*args
, **kwargs
):
1138 PreSplitterWindow() -> SplitterWindow
1140 Precreate a SplitterWindow for 2-phase creation.
1142 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1146 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1148 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1150 Get the default attributes for this class. This is useful if you want
1151 to use the same font or colour in your own control as in a standard
1152 control -- which is a much better idea than hard coding specific
1153 colours or fonts which might look completely out of place on the users
1154 system, especially if it uses themes.
1156 The variant parameter is only relevant under Mac currently and is
1157 ignore under other platforms. Under Mac, it will change the size of
1158 the returned font. See SetWindowVariant for more about this.
1160 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1162 class SplitterEvent(_core
.NotifyEvent
):
1163 """This class represents the events generated by a splitter control."""
1165 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1166 def __init__(self
, *args
, **kwargs
):
1168 __init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1170 This class represents the events generated by a splitter control.
1172 newobj
= _windows_
.new_SplitterEvent(*args
, **kwargs
)
1173 self
.this
= newobj
.this
1176 def SetSashPosition(*args
, **kwargs
):
1178 SetSashPosition(self, int pos)
1180 This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1181 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1182 events, sets the the new sash position. In the case of _CHANGING
1183 events, sets the new tracking bar position so visual feedback during
1184 dragging will represent that change that will actually take place. Set
1185 to -1 from the event handler code to prevent repositioning.
1187 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1189 def GetSashPosition(*args
, **kwargs
):
1191 GetSashPosition(self) -> int
1193 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1194 and EVT_SPLITTER_SASH_POS_CHANGED events.
1196 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1198 def GetWindowBeingRemoved(*args
, **kwargs
):
1200 GetWindowBeingRemoved(self) -> Window
1202 Returns a pointer to the window being removed when a splitter window
1205 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1207 def GetX(*args
, **kwargs
):
1211 Returns the x coordinate of the double-click point in a
1212 EVT_SPLITTER_DCLICK event.
1214 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1216 def GetY(*args
, **kwargs
):
1220 Returns the y coordinate of the double-click point in a
1221 EVT_SPLITTER_DCLICK event.
1223 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1226 class SplitterEventPtr(SplitterEvent
):
1227 def __init__(self
, this
):
1229 if not hasattr(self
,"thisown"): self
.thisown
= 0
1230 self
.__class
__ = SplitterEvent
1231 _windows_
.SplitterEvent_swigregister(SplitterEventPtr
)
1233 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1234 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1235 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1236 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1237 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1238 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1239 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1240 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1241 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1243 #---------------------------------------------------------------------------
1245 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1246 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1247 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1248 SW_NOBORDER
= _windows_
.SW_NOBORDER
1249 SW_BORDER
= _windows_
.SW_BORDER
1250 SW_3DSASH
= _windows_
.SW_3DSASH
1251 SW_3DBORDER
= _windows_
.SW_3DBORDER
1252 SW_3D
= _windows_
.SW_3D
1253 SASH_TOP
= _windows_
.SASH_TOP
1254 SASH_RIGHT
= _windows_
.SASH_RIGHT
1255 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1256 SASH_LEFT
= _windows_
.SASH_LEFT
1257 SASH_NONE
= _windows_
.SASH_NONE
1258 class SashWindow(_core
.Window
):
1260 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1261 def __init__(self
, *args
, **kwargs
):
1263 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1264 long style=wxCLIP_CHILDREN|wxSW_3D,
1265 String name=SashNameStr) -> SashWindow
1267 newobj
= _windows_
.new_SashWindow(*args
, **kwargs
)
1268 self
.this
= newobj
.this
1271 self
._setOORInfo
(self
)
1273 def Create(*args
, **kwargs
):
1275 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1276 long style=wxCLIP_CHILDREN|wxSW_3D,
1277 String name=SashNameStr) -> bool
1279 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1281 def SetSashVisible(*args
, **kwargs
):
1282 """SetSashVisible(self, int edge, bool sash)"""
1283 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1285 def GetSashVisible(*args
, **kwargs
):
1286 """GetSashVisible(self, int edge) -> bool"""
1287 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1289 def SetSashBorder(*args
, **kwargs
):
1290 """SetSashBorder(self, int edge, bool border)"""
1291 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1293 def HasBorder(*args
, **kwargs
):
1294 """HasBorder(self, int edge) -> bool"""
1295 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1297 def GetEdgeMargin(*args
, **kwargs
):
1298 """GetEdgeMargin(self, int edge) -> int"""
1299 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1301 def SetDefaultBorderSize(*args
, **kwargs
):
1302 """SetDefaultBorderSize(self, int width)"""
1303 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1305 def GetDefaultBorderSize(*args
, **kwargs
):
1306 """GetDefaultBorderSize(self) -> int"""
1307 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1309 def SetExtraBorderSize(*args
, **kwargs
):
1310 """SetExtraBorderSize(self, int width)"""
1311 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1313 def GetExtraBorderSize(*args
, **kwargs
):
1314 """GetExtraBorderSize(self) -> int"""
1315 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1317 def SetMinimumSizeX(*args
, **kwargs
):
1318 """SetMinimumSizeX(self, int min)"""
1319 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1321 def SetMinimumSizeY(*args
, **kwargs
):
1322 """SetMinimumSizeY(self, int min)"""
1323 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1325 def GetMinimumSizeX(*args
, **kwargs
):
1326 """GetMinimumSizeX(self) -> int"""
1327 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1329 def GetMinimumSizeY(*args
, **kwargs
):
1330 """GetMinimumSizeY(self) -> int"""
1331 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1333 def SetMaximumSizeX(*args
, **kwargs
):
1334 """SetMaximumSizeX(self, int max)"""
1335 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1337 def SetMaximumSizeY(*args
, **kwargs
):
1338 """SetMaximumSizeY(self, int max)"""
1339 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1341 def GetMaximumSizeX(*args
, **kwargs
):
1342 """GetMaximumSizeX(self) -> int"""
1343 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1345 def GetMaximumSizeY(*args
, **kwargs
):
1346 """GetMaximumSizeY(self) -> int"""
1347 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1349 def SashHitTest(*args
, **kwargs
):
1350 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1351 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1353 def SizeWindows(*args
, **kwargs
):
1354 """SizeWindows(self)"""
1355 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1358 class SashWindowPtr(SashWindow
):
1359 def __init__(self
, this
):
1361 if not hasattr(self
,"thisown"): self
.thisown
= 0
1362 self
.__class
__ = SashWindow
1363 _windows_
.SashWindow_swigregister(SashWindowPtr
)
1364 SashNameStr
= cvar
.SashNameStr
1365 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1367 def PreSashWindow(*args
, **kwargs
):
1368 """PreSashWindow() -> SashWindow"""
1369 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1373 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1374 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1375 class SashEvent(_core
.CommandEvent
):
1377 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1378 def __init__(self
, *args
, **kwargs
):
1379 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1380 newobj
= _windows_
.new_SashEvent(*args
, **kwargs
)
1381 self
.this
= newobj
.this
1384 def SetEdge(*args
, **kwargs
):
1385 """SetEdge(self, int edge)"""
1386 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1388 def GetEdge(*args
, **kwargs
):
1389 """GetEdge(self) -> int"""
1390 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1392 def SetDragRect(*args
, **kwargs
):
1393 """SetDragRect(self, Rect rect)"""
1394 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1396 def GetDragRect(*args
, **kwargs
):
1397 """GetDragRect(self) -> Rect"""
1398 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1400 def SetDragStatus(*args
, **kwargs
):
1401 """SetDragStatus(self, int status)"""
1402 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1404 def GetDragStatus(*args
, **kwargs
):
1405 """GetDragStatus(self) -> int"""
1406 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1409 class SashEventPtr(SashEvent
):
1410 def __init__(self
, this
):
1412 if not hasattr(self
,"thisown"): self
.thisown
= 0
1413 self
.__class
__ = SashEvent
1414 _windows_
.SashEvent_swigregister(SashEventPtr
)
1416 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1417 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1418 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1420 #---------------------------------------------------------------------------
1422 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1423 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1424 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1425 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1426 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1427 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1428 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1429 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1430 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1431 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1432 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1433 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1434 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1435 class QueryLayoutInfoEvent(_core
.Event
):
1437 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1438 def __init__(self
, *args
, **kwargs
):
1439 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1440 newobj
= _windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
)
1441 self
.this
= newobj
.this
1444 def SetRequestedLength(*args
, **kwargs
):
1445 """SetRequestedLength(self, int length)"""
1446 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1448 def GetRequestedLength(*args
, **kwargs
):
1449 """GetRequestedLength(self) -> int"""
1450 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1452 def SetFlags(*args
, **kwargs
):
1453 """SetFlags(self, int flags)"""
1454 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1456 def GetFlags(*args
, **kwargs
):
1457 """GetFlags(self) -> int"""
1458 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1460 def SetSize(*args
, **kwargs
):
1461 """SetSize(self, Size size)"""
1462 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1464 def GetSize(*args
, **kwargs
):
1465 """GetSize(self) -> Size"""
1466 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1468 def SetOrientation(*args
, **kwargs
):
1469 """SetOrientation(self, int orient)"""
1470 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1472 def GetOrientation(*args
, **kwargs
):
1473 """GetOrientation(self) -> int"""
1474 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1476 def SetAlignment(*args
, **kwargs
):
1477 """SetAlignment(self, int align)"""
1478 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1480 def GetAlignment(*args
, **kwargs
):
1481 """GetAlignment(self) -> int"""
1482 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1485 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent
):
1486 def __init__(self
, this
):
1488 if not hasattr(self
,"thisown"): self
.thisown
= 0
1489 self
.__class
__ = QueryLayoutInfoEvent
1490 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr
)
1492 class CalculateLayoutEvent(_core
.Event
):
1494 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1495 def __init__(self
, *args
, **kwargs
):
1496 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1497 newobj
= _windows_
.new_CalculateLayoutEvent(*args
, **kwargs
)
1498 self
.this
= newobj
.this
1501 def SetFlags(*args
, **kwargs
):
1502 """SetFlags(self, int flags)"""
1503 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1505 def GetFlags(*args
, **kwargs
):
1506 """GetFlags(self) -> int"""
1507 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1509 def SetRect(*args
, **kwargs
):
1510 """SetRect(self, Rect rect)"""
1511 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1513 def GetRect(*args
, **kwargs
):
1514 """GetRect(self) -> Rect"""
1515 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1518 class CalculateLayoutEventPtr(CalculateLayoutEvent
):
1519 def __init__(self
, this
):
1521 if not hasattr(self
,"thisown"): self
.thisown
= 0
1522 self
.__class
__ = CalculateLayoutEvent
1523 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr
)
1525 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1526 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1528 class SashLayoutWindow(SashWindow
):
1530 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1531 def __init__(self
, *args
, **kwargs
):
1533 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1534 long style=wxCLIP_CHILDREN|wxSW_3D,
1535 String name=SashLayoutNameStr) -> SashLayoutWindow
1537 newobj
= _windows_
.new_SashLayoutWindow(*args
, **kwargs
)
1538 self
.this
= newobj
.this
1541 self
._setOORInfo
(self
)
1543 def Create(*args
, **kwargs
):
1545 Create(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
1546 long style=wxCLIP_CHILDREN|wxSW_3D,
1547 String name=SashLayoutNameStr) -> bool
1549 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1551 def GetAlignment(*args
, **kwargs
):
1552 """GetAlignment(self) -> int"""
1553 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1555 def GetOrientation(*args
, **kwargs
):
1556 """GetOrientation(self) -> int"""
1557 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1559 def SetAlignment(*args
, **kwargs
):
1560 """SetAlignment(self, int alignment)"""
1561 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1563 def SetDefaultSize(*args
, **kwargs
):
1564 """SetDefaultSize(self, Size size)"""
1565 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1567 def SetOrientation(*args
, **kwargs
):
1568 """SetOrientation(self, int orientation)"""
1569 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1572 class SashLayoutWindowPtr(SashLayoutWindow
):
1573 def __init__(self
, this
):
1575 if not hasattr(self
,"thisown"): self
.thisown
= 0
1576 self
.__class
__ = SashLayoutWindow
1577 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindowPtr
)
1579 def PreSashLayoutWindow(*args
, **kwargs
):
1580 """PreSashLayoutWindow() -> SashLayoutWindow"""
1581 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1585 class LayoutAlgorithm(_core
.Object
):
1587 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1588 def __init__(self
, *args
, **kwargs
):
1589 """__init__(self) -> LayoutAlgorithm"""
1590 newobj
= _windows_
.new_LayoutAlgorithm(*args
, **kwargs
)
1591 self
.this
= newobj
.this
1594 def __del__(self
, destroy
=_windows_
.delete_LayoutAlgorithm
):
1597 if self
.thisown
: destroy(self
)
1600 def LayoutMDIFrame(*args
, **kwargs
):
1601 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1602 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1604 def LayoutFrame(*args
, **kwargs
):
1605 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1606 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1608 def LayoutWindow(*args
, **kwargs
):
1609 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1610 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1613 class LayoutAlgorithmPtr(LayoutAlgorithm
):
1614 def __init__(self
, this
):
1616 if not hasattr(self
,"thisown"): self
.thisown
= 0
1617 self
.__class
__ = LayoutAlgorithm
1618 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr
)
1620 class PopupWindow(_core
.Window
):
1622 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1623 def __init__(self
, *args
, **kwargs
):
1624 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1625 newobj
= _windows_
.new_PopupWindow(*args
, **kwargs
)
1626 self
.this
= newobj
.this
1630 class PopupWindowPtr(PopupWindow
):
1631 def __init__(self
, this
):
1633 if not hasattr(self
,"thisown"): self
.thisown
= 0
1634 self
.__class
__ = PopupWindow
1635 _windows_
.PopupWindow_swigregister(PopupWindowPtr
)
1637 def PrePopupWindow(*args
, **kwargs
):
1638 """PrePopupWindow() -> PopupWindow"""
1639 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1643 class PopupTransientWindow(PopupWindow
):
1645 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1646 def __init__(self
, *args
, **kwargs
):
1647 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1648 newobj
= _windows_
.new_PopupTransientWindow(*args
, **kwargs
)
1649 self
.this
= newobj
.this
1653 class PopupTransientWindowPtr(PopupTransientWindow
):
1654 def __init__(self
, this
):
1656 if not hasattr(self
,"thisown"): self
.thisown
= 0
1657 self
.__class
__ = PopupTransientWindow
1658 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindowPtr
)
1660 def PrePopupTransientWindow(*args
, **kwargs
):
1661 """PrePopupTransientWindow() -> PopupTransientWindow"""
1662 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1666 #---------------------------------------------------------------------------
1668 class TipWindow(Frame
):
1670 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1671 def __init__(self
, *args
, **kwargs
):
1672 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1673 newobj
= _windows_
.new_TipWindow(*args
, **kwargs
)
1674 self
.this
= newobj
.this
1677 self
._setOORInfo
(self
)
1679 def SetBoundingRect(*args
, **kwargs
):
1680 """SetBoundingRect(self, Rect rectBound)"""
1681 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1683 def Close(*args
, **kwargs
):
1685 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1688 class TipWindowPtr(TipWindow
):
1689 def __init__(self
, this
):
1691 if not hasattr(self
,"thisown"): self
.thisown
= 0
1692 self
.__class
__ = TipWindow
1693 _windows_
.TipWindow_swigregister(TipWindowPtr
)
1695 #---------------------------------------------------------------------------
1697 class VScrolledWindow(Panel
):
1699 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1700 def __init__(self
, *args
, **kwargs
):
1702 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1703 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1705 newobj
= _windows_
.new_VScrolledWindow(*args
, **kwargs
)
1706 self
.this
= newobj
.this
1709 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1711 def _setCallbackInfo(*args
, **kwargs
):
1712 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1713 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1715 def Create(*args
, **kwargs
):
1717 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1718 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1720 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1722 def SetLineCount(*args
, **kwargs
):
1723 """SetLineCount(self, size_t count)"""
1724 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1726 def ScrollToLine(*args
, **kwargs
):
1727 """ScrollToLine(self, size_t line) -> bool"""
1728 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1730 def ScrollLines(*args
, **kwargs
):
1732 ScrollLines(self, int lines) -> bool
1734 If the platform and window class supports it, scrolls the window by
1735 the given number of lines down, if lines is positive, or up if lines
1736 is negative. Returns True if the window was scrolled, False if it was
1737 already on top/bottom and nothing was done.
1739 return _windows_
.VScrolledWindow_ScrollLines(*args
, **kwargs
)
1741 def ScrollPages(*args
, **kwargs
):
1743 ScrollPages(self, int pages) -> bool
1745 If the platform and window class supports it, scrolls the window by
1746 the given number of pages down, if pages is positive, or up if pages
1747 is negative. Returns True if the window was scrolled, False if it was
1748 already on top/bottom and nothing was done.
1750 return _windows_
.VScrolledWindow_ScrollPages(*args
, **kwargs
)
1752 def RefreshLine(*args
, **kwargs
):
1753 """RefreshLine(self, size_t line)"""
1754 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1756 def RefreshLines(*args
, **kwargs
):
1757 """RefreshLines(self, size_t from, size_t to)"""
1758 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1760 def HitTestXT(*args
, **kwargs
):
1762 HitTestXT(self, int x, int y) -> int
1764 Test where the given (in client coords) point lies
1766 return _windows_
.VScrolledWindow_HitTestXT(*args
, **kwargs
)
1768 def HitTest(*args
, **kwargs
):
1770 HitTest(self, Point pt) -> int
1772 Test where the given (in client coords) point lies
1774 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1776 def RefreshAll(*args
, **kwargs
):
1777 """RefreshAll(self)"""
1778 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1780 def GetLineCount(*args
, **kwargs
):
1781 """GetLineCount(self) -> size_t"""
1782 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1784 def GetFirstVisibleLine(*args
, **kwargs
):
1785 """GetFirstVisibleLine(self) -> size_t"""
1786 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1788 def GetLastVisibleLine(*args
, **kwargs
):
1789 """GetLastVisibleLine(self) -> size_t"""
1790 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1792 def IsVisible(*args
, **kwargs
):
1793 """IsVisible(self, size_t line) -> bool"""
1794 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1797 class VScrolledWindowPtr(VScrolledWindow
):
1798 def __init__(self
, this
):
1800 if not hasattr(self
,"thisown"): self
.thisown
= 0
1801 self
.__class
__ = VScrolledWindow
1802 _windows_
.VScrolledWindow_swigregister(VScrolledWindowPtr
)
1804 def PreVScrolledWindow(*args
, **kwargs
):
1805 """PreVScrolledWindow() -> VScrolledWindow"""
1806 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1810 class VListBox(VScrolledWindow
):
1812 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1813 def __init__(self
, *args
, **kwargs
):
1815 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1816 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1818 newobj
= _windows_
.new_VListBox(*args
, **kwargs
)
1819 self
.this
= newobj
.this
1822 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1824 def _setCallbackInfo(*args
, **kwargs
):
1825 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1826 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1828 def Create(*args
, **kwargs
):
1830 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1831 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1833 return _windows_
.VListBox_Create(*args
, **kwargs
)
1835 def GetItemCount(*args
, **kwargs
):
1836 """GetItemCount(self) -> size_t"""
1837 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1839 def HasMultipleSelection(*args
, **kwargs
):
1840 """HasMultipleSelection(self) -> bool"""
1841 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1843 def GetSelection(*args
, **kwargs
):
1844 """GetSelection(self) -> int"""
1845 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1847 def IsCurrent(*args
, **kwargs
):
1848 """IsCurrent(self, size_t item) -> bool"""
1849 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1851 def IsSelected(*args
, **kwargs
):
1852 """IsSelected(self, size_t item) -> bool"""
1853 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1855 def GetSelectedCount(*args
, **kwargs
):
1856 """GetSelectedCount(self) -> size_t"""
1857 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1859 def GetFirstSelected(*args
, **kwargs
):
1860 """GetFirstSelected(self, unsigned long cookie) -> int"""
1861 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1863 def GetNextSelected(*args
, **kwargs
):
1864 """GetNextSelected(self, unsigned long cookie) -> int"""
1865 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1867 def GetMargins(*args
, **kwargs
):
1868 """GetMargins(self) -> Point"""
1869 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1871 def GetSelectionBackground(*args
, **kwargs
):
1872 """GetSelectionBackground(self) -> Colour"""
1873 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1875 def SetItemCount(*args
, **kwargs
):
1876 """SetItemCount(self, size_t count)"""
1877 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1879 def Clear(*args
, **kwargs
):
1881 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1883 def SetSelection(*args
, **kwargs
):
1884 """SetSelection(self, int selection)"""
1885 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1887 def Select(*args
, **kwargs
):
1888 """Select(self, size_t item, bool select=True) -> bool"""
1889 return _windows_
.VListBox_Select(*args
, **kwargs
)
1891 def SelectRange(*args
, **kwargs
):
1892 """SelectRange(self, size_t from, size_t to) -> bool"""
1893 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1895 def Toggle(*args
, **kwargs
):
1896 """Toggle(self, size_t item)"""
1897 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1899 def SelectAll(*args
, **kwargs
):
1900 """SelectAll(self) -> bool"""
1901 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1903 def DeselectAll(*args
, **kwargs
):
1904 """DeselectAll(self) -> bool"""
1905 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1907 def SetMargins(*args
, **kwargs
):
1908 """SetMargins(self, Point pt)"""
1909 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1911 def SetMarginsXY(*args
, **kwargs
):
1912 """SetMarginsXY(self, int x, int y)"""
1913 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1915 def SetSelectionBackground(*args
, **kwargs
):
1916 """SetSelectionBackground(self, Colour col)"""
1917 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1920 class VListBoxPtr(VListBox
):
1921 def __init__(self
, this
):
1923 if not hasattr(self
,"thisown"): self
.thisown
= 0
1924 self
.__class
__ = VListBox
1925 _windows_
.VListBox_swigregister(VListBoxPtr
)
1926 VListBoxNameStr
= cvar
.VListBoxNameStr
1928 def PreVListBox(*args
, **kwargs
):
1929 """PreVListBox() -> VListBox"""
1930 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1934 class HtmlListBox(VListBox
):
1936 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1937 def __init__(self
, *args
, **kwargs
):
1939 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1940 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1942 newobj
= _windows_
.new_HtmlListBox(*args
, **kwargs
)
1943 self
.this
= newobj
.this
1946 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1948 def _setCallbackInfo(*args
, **kwargs
):
1949 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1950 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1952 def Create(*args
, **kwargs
):
1954 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1955 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1957 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1959 def RefreshAll(*args
, **kwargs
):
1960 """RefreshAll(self)"""
1961 return _windows_
.HtmlListBox_RefreshAll(*args
, **kwargs
)
1963 def SetItemCount(*args
, **kwargs
):
1964 """SetItemCount(self, size_t count)"""
1965 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1967 def GetFileSystem(*args
, **kwargs
):
1968 """GetFileSystem(self) -> FileSystem"""
1969 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
1972 class HtmlListBoxPtr(HtmlListBox
):
1973 def __init__(self
, this
):
1975 if not hasattr(self
,"thisown"): self
.thisown
= 0
1976 self
.__class
__ = HtmlListBox
1977 _windows_
.HtmlListBox_swigregister(HtmlListBoxPtr
)
1979 def PreHtmlListBox(*args
, **kwargs
):
1980 """PreHtmlListBox() -> HtmlListBox"""
1981 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
1985 #---------------------------------------------------------------------------
1987 class TaskBarIcon(_core
.EvtHandler
):
1989 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1990 def __init__(self
, *args
, **kwargs
):
1991 """__init__(self) -> TaskBarIcon"""
1992 newobj
= _windows_
.new_TaskBarIcon(*args
, **kwargs
)
1993 self
.this
= newobj
.this
1996 def __del__(self
, destroy
=_windows_
.delete_TaskBarIcon
):
1999 if self
.thisown
: destroy(self
)
2002 def Destroy(*args
, **kwargs
):
2006 Deletes the C++ object this Python object is a proxy for.
2008 return _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2011 class TaskBarIconPtr(TaskBarIcon
):
2012 def __init__(self
, this
):
2014 if not hasattr(self
,"thisown"): self
.thisown
= 0
2015 self
.__class
__ = TaskBarIcon
2016 _windows_
.TaskBarIcon_swigregister(TaskBarIconPtr
)
2018 class TaskBarIconEvent(_core
.Event
):
2020 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2021 def __init__(self
, *args
, **kwargs
):
2022 """__init__(self, wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
2023 newobj
= _windows_
.new_TaskBarIconEvent(*args
, **kwargs
)
2024 self
.this
= newobj
.this
2028 class TaskBarIconEventPtr(TaskBarIconEvent
):
2029 def __init__(self
, this
):
2031 if not hasattr(self
,"thisown"): self
.thisown
= 0
2032 self
.__class
__ = TaskBarIconEvent
2033 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEventPtr
)
2035 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2036 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2037 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2038 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2039 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2040 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2041 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2042 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2043 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2044 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2045 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2046 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2047 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2048 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2050 #---------------------------------------------------------------------------
2052 class ColourData(_core
.Object
):
2054 This class holds a variety of information related to the colour
2055 chooser dialog, used to transfer settings and results to and from the
2059 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2060 def __init__(self
, *args
, **kwargs
):
2062 __init__(self) -> ColourData
2064 Constructor, sets default values.
2066 newobj
= _windows_
.new_ColourData(*args
, **kwargs
)
2067 self
.this
= newobj
.this
2070 def __del__(self
, destroy
=_windows_
.delete_ColourData
):
2073 if self
.thisown
: destroy(self
)
2076 def GetChooseFull(*args
, **kwargs
):
2078 GetChooseFull(self) -> bool
2080 Under Windows, determines whether the Windows colour dialog will
2081 display the full dialog with custom colour selection controls. Has no
2082 meaning under other platforms. The default value is true.
2084 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2086 def GetColour(*args
, **kwargs
):
2088 GetColour(self) -> Colour
2090 Gets the colour (pre)selected by the dialog.
2092 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2094 def GetCustomColour(*args
, **kwargs
):
2096 GetCustomColour(self, int i) -> Colour
2098 Gets the i'th custom colour associated with the colour dialog. i
2099 should be an integer between 0 and 15. The default custom colours are
2102 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2104 def SetChooseFull(*args
, **kwargs
):
2106 SetChooseFull(self, int flag)
2108 Under Windows, tells the Windows colour dialog to display the full
2109 dialog with custom colour selection controls. Under other platforms,
2110 has no effect. The default value is true.
2112 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2114 def SetColour(*args
, **kwargs
):
2116 SetColour(self, Colour colour)
2118 Sets the default colour for the colour dialog. The default colour is
2121 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2123 def SetCustomColour(*args
, **kwargs
):
2125 SetCustomColour(self, int i, Colour colour)
2127 Sets the i'th custom colour for the colour dialog. i should be an
2128 integer between 0 and 15. The default custom colours are all white.
2130 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2133 class ColourDataPtr(ColourData
):
2134 def __init__(self
, this
):
2136 if not hasattr(self
,"thisown"): self
.thisown
= 0
2137 self
.__class
__ = ColourData
2138 _windows_
.ColourData_swigregister(ColourDataPtr
)
2139 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2140 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2141 DirDialogNameStr
= cvar
.DirDialogNameStr
2142 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2143 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2144 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2146 class ColourDialog(Dialog
):
2147 """This class represents the colour chooser dialog."""
2149 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2150 def __init__(self
, *args
, **kwargs
):
2152 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2154 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2155 which will be copied to the colour dialog's internal ColourData
2158 newobj
= _windows_
.new_ColourDialog(*args
, **kwargs
)
2159 self
.this
= newobj
.this
2162 self
._setOORInfo
(self
)
2164 def GetColourData(*args
, **kwargs
):
2166 GetColourData(self) -> ColourData
2168 Returns a reference to the `wx.ColourData` used by the dialog.
2170 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2173 class ColourDialogPtr(ColourDialog
):
2174 def __init__(self
, this
):
2176 if not hasattr(self
,"thisown"): self
.thisown
= 0
2177 self
.__class
__ = ColourDialog
2178 _windows_
.ColourDialog_swigregister(ColourDialogPtr
)
2180 class DirDialog(Dialog
):
2182 wx.DirDialog allows the user to select a directory by browising the
2186 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2187 def __init__(self
, *args
, **kwargs
):
2189 __init__(self, Window parent, String message=DirSelectorPromptStr,
2190 String defaultPath=EmptyString, long style=0,
2191 Point pos=DefaultPosition, Size size=DefaultSize,
2192 String name=DirDialogNameStr) -> DirDialog
2194 Constructor. Use ShowModal method to show the dialog.
2196 newobj
= _windows_
.new_DirDialog(*args
, **kwargs
)
2197 self
.this
= newobj
.this
2200 self
._setOORInfo
(self
)
2202 def GetPath(*args
, **kwargs
):
2204 GetPath(self) -> String
2206 Returns the default or user-selected path.
2208 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2210 def GetMessage(*args
, **kwargs
):
2212 GetMessage(self) -> String
2214 Returns the message that will be displayed on the dialog.
2216 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2218 def GetStyle(*args
, **kwargs
):
2220 GetStyle(self) -> long
2222 Returns the dialog style.
2224 return _windows_
.DirDialog_GetStyle(*args
, **kwargs
)
2226 def SetMessage(*args
, **kwargs
):
2228 SetMessage(self, String message)
2230 Sets the message that will be displayed on the dialog.
2232 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2234 def SetPath(*args
, **kwargs
):
2236 SetPath(self, String path)
2238 Sets the default path.
2240 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2243 class DirDialogPtr(DirDialog
):
2244 def __init__(self
, this
):
2246 if not hasattr(self
,"thisown"): self
.thisown
= 0
2247 self
.__class
__ = DirDialog
2248 _windows_
.DirDialog_swigregister(DirDialogPtr
)
2250 class FileDialog(Dialog
):
2252 wx.FileDialog allows the user to select one or more files from the
2256 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2257 def __init__(self
, *args
, **kwargs
):
2259 __init__(self, Window parent, String message=FileSelectorPromptStr,
2260 String defaultDir=EmptyString, String defaultFile=EmptyString,
2261 String wildcard=FileSelectorDefaultWildcardStr,
2262 long style=0, Point pos=DefaultPosition) -> FileDialog
2264 Constructor. Use ShowModal method to show the dialog.
2266 newobj
= _windows_
.new_FileDialog(*args
, **kwargs
)
2267 self
.this
= newobj
.this
2270 self
._setOORInfo
(self
)
2272 def SetMessage(*args
, **kwargs
):
2274 SetMessage(self, String message)
2276 Sets the message that will be displayed on the dialog.
2278 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2280 def SetPath(*args
, **kwargs
):
2282 SetPath(self, String path)
2284 Sets the path (the combined directory and filename that will be
2285 returned when the dialog is dismissed).
2287 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2289 def SetDirectory(*args
, **kwargs
):
2291 SetDirectory(self, String dir)
2293 Sets the default directory.
2295 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2297 def SetFilename(*args
, **kwargs
):
2299 SetFilename(self, String name)
2301 Sets the default filename.
2303 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2305 def SetWildcard(*args
, **kwargs
):
2307 SetWildcard(self, String wildCard)
2309 Sets the wildcard, which can contain multiple file types, for
2312 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2315 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2317 def SetStyle(*args
, **kwargs
):
2319 SetStyle(self, long style)
2321 Sets the dialog style.
2323 return _windows_
.FileDialog_SetStyle(*args
, **kwargs
)
2325 def SetFilterIndex(*args
, **kwargs
):
2327 SetFilterIndex(self, int filterIndex)
2329 Sets the default filter index, starting from zero.
2331 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2333 def GetMessage(*args
, **kwargs
):
2335 GetMessage(self) -> String
2337 Returns the message that will be displayed on the dialog.
2339 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2341 def GetPath(*args
, **kwargs
):
2343 GetPath(self) -> String
2345 Returns the full path (directory and filename) of the selected file.
2347 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2349 def GetDirectory(*args
, **kwargs
):
2351 GetDirectory(self) -> String
2353 Returns the default directory.
2355 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2357 def GetFilename(*args
, **kwargs
):
2359 GetFilename(self) -> String
2361 Returns the default filename.
2363 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2365 def GetWildcard(*args
, **kwargs
):
2367 GetWildcard(self) -> String
2369 Returns the file dialog wildcard.
2371 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2373 def GetStyle(*args
, **kwargs
):
2375 GetStyle(self) -> long
2377 Returns the dialog style.
2379 return _windows_
.FileDialog_GetStyle(*args
, **kwargs
)
2381 def GetFilterIndex(*args
, **kwargs
):
2383 GetFilterIndex(self) -> int
2385 Returns the index into the list of filters supplied, optionally, in
2386 the wildcard parameter. Before the dialog is shown, this is the index
2387 which will be used when the dialog is first displayed. After the
2388 dialog is shown, this is the index selected by the user.
2390 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2392 def GetFilenames(*args
, **kwargs
):
2394 GetFilenames(self) -> PyObject
2396 Returns a list of filenames chosen in the dialog. This function
2397 should only be used with the dialogs which have wx.MULTIPLE style, use
2398 GetFilename for the others.
2400 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2402 def GetPaths(*args
, **kwargs
):
2404 GetPaths(self) -> PyObject
2406 Fills the array paths with the full paths of the files chosen. This
2407 function should only be used with the dialogs which have wx.MULTIPLE
2408 style, use GetPath for the others.
2410 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2413 class FileDialogPtr(FileDialog
):
2414 def __init__(self
, this
):
2416 if not hasattr(self
,"thisown"): self
.thisown
= 0
2417 self
.__class
__ = FileDialog
2418 _windows_
.FileDialog_swigregister(FileDialogPtr
)
2420 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2421 class MultiChoiceDialog(Dialog
):
2422 """A simple dialog with a multi selection listbox."""
2424 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2425 def __init__(self
, *args
, **kwargs
):
2427 __init__(Window parent, String message, String caption,
2428 List choices=[], long style=CHOICEDLG_STYLE,
2429 Point pos=DefaultPosition) -> MultiChoiceDialog
2431 Constructor. Use ShowModal method to show the dialog.
2433 newobj
= _windows_
.new_MultiChoiceDialog(*args
, **kwargs
)
2434 self
.this
= newobj
.this
2437 self
._setOORInfo
(self
)
2439 def SetSelections(*args
, **kwargs
):
2440 """SetSelections(List selections)"""
2441 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2443 def GetSelections(*args
, **kwargs
):
2445 GetSelections() -> [selections]
2447 Returns a list of integers representing the items that are selected.
2449 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2452 class MultiChoiceDialogPtr(MultiChoiceDialog
):
2453 def __init__(self
, this
):
2455 if not hasattr(self
,"thisown"): self
.thisown
= 0
2456 self
.__class
__ = MultiChoiceDialog
2457 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr
)
2459 class SingleChoiceDialog(Dialog
):
2460 """A simple dialog with a single selection listbox."""
2462 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2463 def __init__(self
, *args
, **kwargs
):
2465 __init__(Window parent, String message, String caption,
2466 List choices=[], long style=CHOICEDLG_STYLE,
2467 Point pos=DefaultPosition) -> SingleChoiceDialog
2469 Constructor. Use ShowModal method to show the dialog.
2471 newobj
= _windows_
.new_SingleChoiceDialog(*args
, **kwargs
)
2472 self
.this
= newobj
.this
2475 self
._setOORInfo
(self
)
2477 def GetSelection(*args
, **kwargs
):
2479 GetSelection(self) -> int
2481 Get the index of teh currently selected item.
2483 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2485 def GetStringSelection(*args
, **kwargs
):
2487 GetStringSelection(self) -> String
2489 Returns the string value of the currently selected item
2491 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2493 def SetSelection(*args
, **kwargs
):
2495 SetSelection(self, int sel)
2497 Set the current selected item to sel
2499 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2502 class SingleChoiceDialogPtr(SingleChoiceDialog
):
2503 def __init__(self
, this
):
2505 if not hasattr(self
,"thisown"): self
.thisown
= 0
2506 self
.__class
__ = SingleChoiceDialog
2507 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr
)
2509 class TextEntryDialog(Dialog
):
2510 """A dialog with text control, [ok] and [cancel] buttons"""
2512 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2513 def __init__(self
, *args
, **kwargs
):
2515 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2516 String defaultValue=EmptyString,
2517 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2519 Constructor. Use ShowModal method to show the dialog.
2521 newobj
= _windows_
.new_TextEntryDialog(*args
, **kwargs
)
2522 self
.this
= newobj
.this
2525 self
._setOORInfo
(self
)
2527 def GetValue(*args
, **kwargs
):
2529 GetValue(self) -> String
2531 Returns the text that the user has entered if the user has pressed OK,
2532 or the original value if the user has pressed Cancel.
2534 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2536 def SetValue(*args
, **kwargs
):
2538 SetValue(self, String value)
2540 Sets the default text value.
2542 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2545 class TextEntryDialogPtr(TextEntryDialog
):
2546 def __init__(self
, this
):
2548 if not hasattr(self
,"thisown"): self
.thisown
= 0
2549 self
.__class
__ = TextEntryDialog
2550 _windows_
.TextEntryDialog_swigregister(TextEntryDialogPtr
)
2552 class FontData(_core
.Object
):
2554 This class holds a variety of information related to font dialogs and
2555 is used to transfer settings to and results from a `wx.FontDialog`.
2558 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2559 def __init__(self
, *args
, **kwargs
):
2561 __init__(self) -> FontData
2563 This class holds a variety of information related to font dialogs and
2564 is used to transfer settings to and results from a `wx.FontDialog`.
2566 newobj
= _windows_
.new_FontData(*args
, **kwargs
)
2567 self
.this
= newobj
.this
2570 def __del__(self
, destroy
=_windows_
.delete_FontData
):
2573 if self
.thisown
: destroy(self
)
2576 def EnableEffects(*args
, **kwargs
):
2578 EnableEffects(self, bool enable)
2580 Enables or disables 'effects' under MS Windows only. This refers to
2581 the controls for manipulating colour, strikeout and underline
2582 properties. The default value is true.
2584 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2586 def GetAllowSymbols(*args
, **kwargs
):
2588 GetAllowSymbols(self) -> bool
2590 Under MS Windows, returns a flag determining whether symbol fonts can
2591 be selected. Has no effect on other platforms. The default value is
2594 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2596 def GetColour(*args
, **kwargs
):
2598 GetColour(self) -> Colour
2600 Gets the colour associated with the font dialog. The default value is
2603 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2605 def GetChosenFont(*args
, **kwargs
):
2607 GetChosenFont(self) -> Font
2609 Gets the font chosen by the user.
2611 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2613 def GetEnableEffects(*args
, **kwargs
):
2615 GetEnableEffects(self) -> bool
2617 Determines whether 'effects' are enabled under Windows.
2619 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2621 def GetInitialFont(*args
, **kwargs
):
2623 GetInitialFont(self) -> Font
2625 Gets the font that will be initially used by the font dialog. This
2626 should have previously been set by the application.
2628 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2630 def GetShowHelp(*args
, **kwargs
):
2632 GetShowHelp(self) -> bool
2634 Returns true if the Help button will be shown (Windows only). The
2635 default value is false.
2637 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2639 def SetAllowSymbols(*args
, **kwargs
):
2641 SetAllowSymbols(self, bool allowSymbols)
2643 Under MS Windows, determines whether symbol fonts can be selected. Has
2644 no effect on other platforms. The default value is true.
2646 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2648 def SetChosenFont(*args
, **kwargs
):
2650 SetChosenFont(self, Font font)
2652 Sets the font that will be returned to the user (normally for internal
2655 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2657 def SetColour(*args
, **kwargs
):
2659 SetColour(self, Colour colour)
2661 Sets the colour that will be used for the font foreground colour. The
2662 default colour is black.
2664 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2666 def SetInitialFont(*args
, **kwargs
):
2668 SetInitialFont(self, Font font)
2670 Sets the font that will be initially used by the font dialog.
2672 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2674 def SetRange(*args
, **kwargs
):
2676 SetRange(self, int min, int max)
2678 Sets the valid range for the font point size (Windows only). The
2679 default is 0, 0 (unrestricted range).
2681 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2683 def SetShowHelp(*args
, **kwargs
):
2685 SetShowHelp(self, bool showHelp)
2687 Determines whether the Help button will be displayed in the font
2688 dialog (Windows only). The default value is false.
2690 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2693 class FontDataPtr(FontData
):
2694 def __init__(self
, this
):
2696 if not hasattr(self
,"thisown"): self
.thisown
= 0
2697 self
.__class
__ = FontData
2698 _windows_
.FontData_swigregister(FontDataPtr
)
2700 class FontDialog(Dialog
):
2702 wx.FontDialog allows the user to select a system font and its attributes.
2708 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2709 def __init__(self
, *args
, **kwargs
):
2711 __init__(self, Window parent, FontData data) -> FontDialog
2713 Constructor. Pass a parent window and the `wx.FontData` object to be
2714 used to initialize the dialog controls. Call `ShowModal` to display
2715 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2716 results with via the `wx.FontData` returned by `GetFontData`.
2718 newobj
= _windows_
.new_FontDialog(*args
, **kwargs
)
2719 self
.this
= newobj
.this
2722 self
._setOORInfo
(self
)
2724 def GetFontData(*args
, **kwargs
):
2726 GetFontData(self) -> FontData
2728 Returns a reference to the internal `wx.FontData` used by the
2731 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2734 class FontDialogPtr(FontDialog
):
2735 def __init__(self
, this
):
2737 if not hasattr(self
,"thisown"): self
.thisown
= 0
2738 self
.__class
__ = FontDialog
2739 _windows_
.FontDialog_swigregister(FontDialogPtr
)
2741 class MessageDialog(Dialog
):
2743 This class provides a simple dialog that shows a single or multi-line
2744 message, with a choice of OK, Yes, No and/or Cancel buttons.
2747 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2748 def __init__(self
, *args
, **kwargs
):
2750 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2751 long style=wxOK|wxCANCEL|wxCENTRE,
2752 Point pos=DefaultPosition) -> MessageDialog
2754 Constructor, use `ShowModal` to display the dialog.
2756 newobj
= _windows_
.new_MessageDialog(*args
, **kwargs
)
2757 self
.this
= newobj
.this
2760 self
._setOORInfo
(self
)
2763 class MessageDialogPtr(MessageDialog
):
2764 def __init__(self
, this
):
2766 if not hasattr(self
,"thisown"): self
.thisown
= 0
2767 self
.__class
__ = MessageDialog
2768 _windows_
.MessageDialog_swigregister(MessageDialogPtr
)
2770 class ProgressDialog(Frame
):
2772 A dialog that shows a short message and a progress bar. Optionally, it
2773 can display an ABORT button.
2776 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2777 def __init__(self
, *args
, **kwargs
):
2779 __init__(self, String title, String message, int maximum=100, Window parent=None,
2780 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2782 Constructor. Creates the dialog, displays it and disables user input
2783 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2786 newobj
= _windows_
.new_ProgressDialog(*args
, **kwargs
)
2787 self
.this
= newobj
.this
2790 self
._setOORInfo
(self
)
2792 def Update(*args
, **kwargs
):
2794 Update(self, int value, String newmsg=EmptyString) -> bool
2796 Updates the dialog, setting the progress bar to the new value and, if
2797 given changes the message above it. Returns true unless the Cancel
2798 button has been pressed.
2800 If false is returned, the application can either immediately destroy
2801 the dialog or ask the user for the confirmation and if the abort is
2802 not confirmed the dialog may be resumed with Resume function.
2804 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2806 def Resume(*args
, **kwargs
):
2810 Can be used to continue with the dialog, after the user had chosen to
2813 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2816 class ProgressDialogPtr(ProgressDialog
):
2817 def __init__(self
, this
):
2819 if not hasattr(self
,"thisown"): self
.thisown
= 0
2820 self
.__class
__ = ProgressDialog
2821 _windows_
.ProgressDialog_swigregister(ProgressDialogPtr
)
2823 FR_DOWN
= _windows_
.FR_DOWN
2824 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2825 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2826 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2827 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2828 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2829 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2830 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2831 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2832 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2833 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2834 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2835 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2836 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2837 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2838 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2839 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2841 # For backwards compatibility. Should they be removed?
2842 EVT_COMMAND_FIND
= EVT_FIND
2843 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2844 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2845 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2846 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2848 class FindDialogEvent(_core
.CommandEvent
):
2849 """Events for the FindReplaceDialog"""
2851 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2852 def __init__(self
, *args
, **kwargs
):
2854 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2856 Events for the FindReplaceDialog
2858 newobj
= _windows_
.new_FindDialogEvent(*args
, **kwargs
)
2859 self
.this
= newobj
.this
2862 def GetFlags(*args
, **kwargs
):
2864 GetFlags(self) -> int
2866 Get the currently selected flags: this is the combination of
2867 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2869 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2871 def GetFindString(*args
, **kwargs
):
2873 GetFindString(self) -> String
2875 Return the string to find (never empty).
2877 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2879 def GetReplaceString(*args
, **kwargs
):
2881 GetReplaceString(self) -> String
2883 Return the string to replace the search string with (only for replace
2884 and replace all events).
2886 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2888 def GetDialog(*args
, **kwargs
):
2890 GetDialog(self) -> FindReplaceDialog
2892 Return the pointer to the dialog which generated this event.
2894 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2896 def SetFlags(*args
, **kwargs
):
2897 """SetFlags(self, int flags)"""
2898 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2900 def SetFindString(*args
, **kwargs
):
2901 """SetFindString(self, String str)"""
2902 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2904 def SetReplaceString(*args
, **kwargs
):
2905 """SetReplaceString(self, String str)"""
2906 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2909 class FindDialogEventPtr(FindDialogEvent
):
2910 def __init__(self
, this
):
2912 if not hasattr(self
,"thisown"): self
.thisown
= 0
2913 self
.__class
__ = FindDialogEvent
2914 _windows_
.FindDialogEvent_swigregister(FindDialogEventPtr
)
2916 class FindReplaceData(_core
.Object
):
2918 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2919 to initialize the dialog with the default values and will keep the
2920 last values from the dialog when it is closed. It is also updated each
2921 time a `wx.FindDialogEvent` is generated so instead of using the
2922 `wx.FindDialogEvent` methods you can also directly query this object.
2924 Note that all SetXXX() methods may only be called before showing the
2925 dialog and calling them has no effect later.
2928 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2929 def __init__(self
, *args
, **kwargs
):
2931 __init__(self, int flags=0) -> FindReplaceData
2933 Constuctor initializes the flags to default value (0).
2935 newobj
= _windows_
.new_FindReplaceData(*args
, **kwargs
)
2936 self
.this
= newobj
.this
2939 def __del__(self
, destroy
=_windows_
.delete_FindReplaceData
):
2942 if self
.thisown
: destroy(self
)
2945 def GetFindString(*args
, **kwargs
):
2947 GetFindString(self) -> String
2949 Get the string to find.
2951 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
2953 def GetReplaceString(*args
, **kwargs
):
2955 GetReplaceString(self) -> String
2957 Get the replacement string.
2959 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
2961 def GetFlags(*args
, **kwargs
):
2963 GetFlags(self) -> int
2965 Get the combination of flag values.
2967 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
2969 def SetFlags(*args
, **kwargs
):
2971 SetFlags(self, int flags)
2973 Set the flags to use to initialize the controls of the dialog.
2975 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
2977 def SetFindString(*args
, **kwargs
):
2979 SetFindString(self, String str)
2981 Set the string to find (used as initial value by the dialog).
2983 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
2985 def SetReplaceString(*args
, **kwargs
):
2987 SetReplaceString(self, String str)
2989 Set the replacement string (used as initial value by the dialog).
2991 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
2994 class FindReplaceDataPtr(FindReplaceData
):
2995 def __init__(self
, this
):
2997 if not hasattr(self
,"thisown"): self
.thisown
= 0
2998 self
.__class
__ = FindReplaceData
2999 _windows_
.FindReplaceData_swigregister(FindReplaceDataPtr
)
3001 class FindReplaceDialog(Dialog
):
3003 wx.FindReplaceDialog is a standard modeless dialog which is used to
3004 allow the user to search for some text (and possibly replace it with
3005 something else). The actual searching is supposed to be done in the
3006 owner window which is the parent of this dialog. Note that it means
3007 that unlike for the other standard dialogs this one must have a parent
3008 window. Also note that there is no way to use this dialog in a modal
3009 way; it is always, by design and implementation, modeless.
3012 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3013 def __init__(self
, *args
, **kwargs
):
3015 __init__(self, Window parent, FindReplaceData data, String title,
3016 int style=0) -> FindReplaceDialog
3018 Create a FindReplaceDialog. The parent and data parameters must be
3019 non-None. Use Show to display the dialog.
3021 newobj
= _windows_
.new_FindReplaceDialog(*args
, **kwargs
)
3022 self
.this
= newobj
.this
3025 self
._setOORInfo
(self
)
3027 def Create(*args
, **kwargs
):
3029 Create(self, Window parent, FindReplaceData data, String title,
3030 int style=0) -> bool
3032 Create the dialog, for 2-phase create.
3034 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3036 def GetData(*args
, **kwargs
):
3038 GetData(self) -> FindReplaceData
3040 Get the FindReplaceData object used by this dialog.
3042 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3044 def SetData(*args
, **kwargs
):
3046 SetData(self, FindReplaceData data)
3048 Set the FindReplaceData object used by this dialog.
3050 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3053 class FindReplaceDialogPtr(FindReplaceDialog
):
3054 def __init__(self
, this
):
3056 if not hasattr(self
,"thisown"): self
.thisown
= 0
3057 self
.__class
__ = FindReplaceDialog
3058 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialogPtr
)
3060 def PreFindReplaceDialog(*args
, **kwargs
):
3062 PreFindReplaceDialog() -> FindReplaceDialog
3064 Precreate a FindReplaceDialog for 2-phase creation
3066 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3070 #---------------------------------------------------------------------------
3072 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3073 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3074 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3075 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3076 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3077 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3078 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3079 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3080 class MDIParentFrame(Frame
):
3082 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3083 def __init__(self
, *args
, **kwargs
):
3085 __init__(self, Window parent, int id, String title, Point pos=DefaultPosition,
3086 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3087 String name=FrameNameStr) -> MDIParentFrame
3089 newobj
= _windows_
.new_MDIParentFrame(*args
, **kwargs
)
3090 self
.this
= newobj
.this
3093 self
._setOORInfo
(self
)
3095 def Create(*args
, **kwargs
):
3097 Create(self, Window parent, int id, String title, Point pos=DefaultPosition,
3098 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3099 String name=FrameNameStr) -> bool
3101 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3103 def ActivateNext(*args
, **kwargs
):
3104 """ActivateNext(self)"""
3105 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3107 def ActivatePrevious(*args
, **kwargs
):
3108 """ActivatePrevious(self)"""
3109 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3111 def ArrangeIcons(*args
, **kwargs
):
3112 """ArrangeIcons(self)"""
3113 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3115 def Cascade(*args
, **kwargs
):
3117 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3119 def GetActiveChild(*args
, **kwargs
):
3120 """GetActiveChild(self) -> MDIChildFrame"""
3121 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3123 def GetClientWindow(*args
, **kwargs
):
3124 """GetClientWindow(self) -> MDIClientWindow"""
3125 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3127 def GetToolBar(*args
, **kwargs
):
3128 """GetToolBar(self) -> Window"""
3129 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3131 def Tile(*args
, **kwargs
):
3133 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3136 class MDIParentFramePtr(MDIParentFrame
):
3137 def __init__(self
, this
):
3139 if not hasattr(self
,"thisown"): self
.thisown
= 0
3140 self
.__class
__ = MDIParentFrame
3141 _windows_
.MDIParentFrame_swigregister(MDIParentFramePtr
)
3143 def PreMDIParentFrame(*args
, **kwargs
):
3144 """PreMDIParentFrame() -> MDIParentFrame"""
3145 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3149 class MDIChildFrame(Frame
):
3151 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3152 def __init__(self
, *args
, **kwargs
):
3154 __init__(self, MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
3155 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
3156 String name=FrameNameStr) -> MDIChildFrame
3158 newobj
= _windows_
.new_MDIChildFrame(*args
, **kwargs
)
3159 self
.this
= newobj
.this
3162 self
._setOORInfo
(self
)
3164 def Create(*args
, **kwargs
):
3166 Create(self, MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
3167 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
3168 String name=FrameNameStr) -> bool
3170 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3172 def Activate(*args
, **kwargs
):
3173 """Activate(self)"""
3174 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3176 def Maximize(*args
, **kwargs
):
3177 """Maximize(self, bool maximize)"""
3178 return _windows_
.MDIChildFrame_Maximize(*args
, **kwargs
)
3180 def Restore(*args
, **kwargs
):
3182 return _windows_
.MDIChildFrame_Restore(*args
, **kwargs
)
3185 class MDIChildFramePtr(MDIChildFrame
):
3186 def __init__(self
, this
):
3188 if not hasattr(self
,"thisown"): self
.thisown
= 0
3189 self
.__class
__ = MDIChildFrame
3190 _windows_
.MDIChildFrame_swigregister(MDIChildFramePtr
)
3192 def PreMDIChildFrame(*args
, **kwargs
):
3193 """PreMDIChildFrame() -> MDIChildFrame"""
3194 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3198 class MDIClientWindow(_core
.Window
):
3200 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3201 def __init__(self
, *args
, **kwargs
):
3202 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3203 newobj
= _windows_
.new_MDIClientWindow(*args
, **kwargs
)
3204 self
.this
= newobj
.this
3207 self
._setOORInfo
(self
)
3209 def Create(*args
, **kwargs
):
3210 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3211 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3214 class MDIClientWindowPtr(MDIClientWindow
):
3215 def __init__(self
, this
):
3217 if not hasattr(self
,"thisown"): self
.thisown
= 0
3218 self
.__class
__ = MDIClientWindow
3219 _windows_
.MDIClientWindow_swigregister(MDIClientWindowPtr
)
3221 def PreMDIClientWindow(*args
, **kwargs
):
3222 """PreMDIClientWindow() -> MDIClientWindow"""
3223 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3227 #---------------------------------------------------------------------------
3229 class PyWindow(_core
.Window
):
3231 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3232 def __init__(self
, *args
, **kwargs
):
3234 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3235 long style=0, String name=PanelNameStr) -> PyWindow
3237 newobj
= _windows_
.new_PyWindow(*args
, **kwargs
)
3238 self
.this
= newobj
.this
3241 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3243 def _setCallbackInfo(*args
, **kwargs
):
3244 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3245 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3247 def base_DoMoveWindow(*args
, **kwargs
):
3248 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3249 return _windows_
.PyWindow_base_DoMoveWindow(*args
, **kwargs
)
3251 def base_DoSetSize(*args
, **kwargs
):
3252 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3253 return _windows_
.PyWindow_base_DoSetSize(*args
, **kwargs
)
3255 def base_DoSetClientSize(*args
, **kwargs
):
3256 """base_DoSetClientSize(self, int width, int height)"""
3257 return _windows_
.PyWindow_base_DoSetClientSize(*args
, **kwargs
)
3259 def base_DoSetVirtualSize(*args
, **kwargs
):
3260 """base_DoSetVirtualSize(self, int x, int y)"""
3261 return _windows_
.PyWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3263 def base_DoGetSize(*args
, **kwargs
):
3264 """base_DoGetSize() -> (width, height)"""
3265 return _windows_
.PyWindow_base_DoGetSize(*args
, **kwargs
)
3267 def base_DoGetClientSize(*args
, **kwargs
):
3268 """base_DoGetClientSize() -> (width, height)"""
3269 return _windows_
.PyWindow_base_DoGetClientSize(*args
, **kwargs
)
3271 def base_DoGetPosition(*args
, **kwargs
):
3272 """base_DoGetPosition() -> (x,y)"""
3273 return _windows_
.PyWindow_base_DoGetPosition(*args
, **kwargs
)
3275 def base_DoGetVirtualSize(*args
, **kwargs
):
3276 """base_DoGetVirtualSize(self) -> Size"""
3277 return _windows_
.PyWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3279 def base_DoGetBestSize(*args
, **kwargs
):
3280 """base_DoGetBestSize(self) -> Size"""
3281 return _windows_
.PyWindow_base_DoGetBestSize(*args
, **kwargs
)
3283 def base_InitDialog(*args
, **kwargs
):
3284 """base_InitDialog(self)"""
3285 return _windows_
.PyWindow_base_InitDialog(*args
, **kwargs
)
3287 def base_TransferDataToWindow(*args
, **kwargs
):
3288 """base_TransferDataToWindow(self) -> bool"""
3289 return _windows_
.PyWindow_base_TransferDataToWindow(*args
, **kwargs
)
3291 def base_TransferDataFromWindow(*args
, **kwargs
):
3292 """base_TransferDataFromWindow(self) -> bool"""
3293 return _windows_
.PyWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3295 def base_Validate(*args
, **kwargs
):
3296 """base_Validate(self) -> bool"""
3297 return _windows_
.PyWindow_base_Validate(*args
, **kwargs
)
3299 def base_AcceptsFocus(*args
, **kwargs
):
3300 """base_AcceptsFocus(self) -> bool"""
3301 return _windows_
.PyWindow_base_AcceptsFocus(*args
, **kwargs
)
3303 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3304 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3305 return _windows_
.PyWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3307 def base_GetMaxSize(*args
, **kwargs
):
3308 """base_GetMaxSize(self) -> Size"""
3309 return _windows_
.PyWindow_base_GetMaxSize(*args
, **kwargs
)
3311 def base_AddChild(*args
, **kwargs
):
3312 """base_AddChild(self, Window child)"""
3313 return _windows_
.PyWindow_base_AddChild(*args
, **kwargs
)
3315 def base_RemoveChild(*args
, **kwargs
):
3316 """base_RemoveChild(self, Window child)"""
3317 return _windows_
.PyWindow_base_RemoveChild(*args
, **kwargs
)
3319 def base_ShouldInheritColours(*args
, **kwargs
):
3320 """base_ShouldInheritColours(self) -> bool"""
3321 return _windows_
.PyWindow_base_ShouldInheritColours(*args
, **kwargs
)
3323 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3324 """base_ApplyParentThemeBackground(self, Colour c)"""
3325 return _windows_
.PyWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3328 class PyWindowPtr(PyWindow
):
3329 def __init__(self
, this
):
3331 if not hasattr(self
,"thisown"): self
.thisown
= 0
3332 self
.__class
__ = PyWindow
3333 _windows_
.PyWindow_swigregister(PyWindowPtr
)
3335 def PrePyWindow(*args
, **kwargs
):
3336 """PrePyWindow() -> PyWindow"""
3337 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3341 class PyPanel(Panel
):
3343 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3344 def __init__(self
, *args
, **kwargs
):
3346 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3347 long style=0, String name=PanelNameStr) -> PyPanel
3349 newobj
= _windows_
.new_PyPanel(*args
, **kwargs
)
3350 self
.this
= newobj
.this
3353 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3355 def _setCallbackInfo(*args
, **kwargs
):
3356 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3357 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3359 def base_DoMoveWindow(*args
, **kwargs
):
3360 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3361 return _windows_
.PyPanel_base_DoMoveWindow(*args
, **kwargs
)
3363 def base_DoSetSize(*args
, **kwargs
):
3364 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3365 return _windows_
.PyPanel_base_DoSetSize(*args
, **kwargs
)
3367 def base_DoSetClientSize(*args
, **kwargs
):
3368 """base_DoSetClientSize(self, int width, int height)"""
3369 return _windows_
.PyPanel_base_DoSetClientSize(*args
, **kwargs
)
3371 def base_DoSetVirtualSize(*args
, **kwargs
):
3372 """base_DoSetVirtualSize(self, int x, int y)"""
3373 return _windows_
.PyPanel_base_DoSetVirtualSize(*args
, **kwargs
)
3375 def base_DoGetSize(*args
, **kwargs
):
3376 """base_DoGetSize() -> (width, height)"""
3377 return _windows_
.PyPanel_base_DoGetSize(*args
, **kwargs
)
3379 def base_DoGetClientSize(*args
, **kwargs
):
3380 """base_DoGetClientSize() -> (width, height)"""
3381 return _windows_
.PyPanel_base_DoGetClientSize(*args
, **kwargs
)
3383 def base_DoGetPosition(*args
, **kwargs
):
3384 """base_DoGetPosition() -> (x,y)"""
3385 return _windows_
.PyPanel_base_DoGetPosition(*args
, **kwargs
)
3387 def base_DoGetVirtualSize(*args
, **kwargs
):
3388 """base_DoGetVirtualSize(self) -> Size"""
3389 return _windows_
.PyPanel_base_DoGetVirtualSize(*args
, **kwargs
)
3391 def base_DoGetBestSize(*args
, **kwargs
):
3392 """base_DoGetBestSize(self) -> Size"""
3393 return _windows_
.PyPanel_base_DoGetBestSize(*args
, **kwargs
)
3395 def base_InitDialog(*args
, **kwargs
):
3396 """base_InitDialog(self)"""
3397 return _windows_
.PyPanel_base_InitDialog(*args
, **kwargs
)
3399 def base_TransferDataToWindow(*args
, **kwargs
):
3400 """base_TransferDataToWindow(self) -> bool"""
3401 return _windows_
.PyPanel_base_TransferDataToWindow(*args
, **kwargs
)
3403 def base_TransferDataFromWindow(*args
, **kwargs
):
3404 """base_TransferDataFromWindow(self) -> bool"""
3405 return _windows_
.PyPanel_base_TransferDataFromWindow(*args
, **kwargs
)
3407 def base_Validate(*args
, **kwargs
):
3408 """base_Validate(self) -> bool"""
3409 return _windows_
.PyPanel_base_Validate(*args
, **kwargs
)
3411 def base_AcceptsFocus(*args
, **kwargs
):
3412 """base_AcceptsFocus(self) -> bool"""
3413 return _windows_
.PyPanel_base_AcceptsFocus(*args
, **kwargs
)
3415 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3416 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3417 return _windows_
.PyPanel_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3419 def base_GetMaxSize(*args
, **kwargs
):
3420 """base_GetMaxSize(self) -> Size"""
3421 return _windows_
.PyPanel_base_GetMaxSize(*args
, **kwargs
)
3423 def base_AddChild(*args
, **kwargs
):
3424 """base_AddChild(self, Window child)"""
3425 return _windows_
.PyPanel_base_AddChild(*args
, **kwargs
)
3427 def base_RemoveChild(*args
, **kwargs
):
3428 """base_RemoveChild(self, Window child)"""
3429 return _windows_
.PyPanel_base_RemoveChild(*args
, **kwargs
)
3431 def base_ShouldInheritColours(*args
, **kwargs
):
3432 """base_ShouldInheritColours(self) -> bool"""
3433 return _windows_
.PyPanel_base_ShouldInheritColours(*args
, **kwargs
)
3435 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3436 """base_ApplyParentThemeBackground(self, Colour c)"""
3437 return _windows_
.PyPanel_base_ApplyParentThemeBackground(*args
, **kwargs
)
3440 class PyPanelPtr(PyPanel
):
3441 def __init__(self
, this
):
3443 if not hasattr(self
,"thisown"): self
.thisown
= 0
3444 self
.__class
__ = PyPanel
3445 _windows_
.PyPanel_swigregister(PyPanelPtr
)
3447 def PrePyPanel(*args
, **kwargs
):
3448 """PrePyPanel() -> PyPanel"""
3449 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3453 class PyScrolledWindow(ScrolledWindow
):
3455 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3456 def __init__(self
, *args
, **kwargs
):
3458 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3459 long style=0, String name=PanelNameStr) -> PyScrolledWindow
3461 newobj
= _windows_
.new_PyScrolledWindow(*args
, **kwargs
)
3462 self
.this
= newobj
.this
3465 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3467 def _setCallbackInfo(*args
, **kwargs
):
3468 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3469 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3471 def base_DoMoveWindow(*args
, **kwargs
):
3472 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3473 return _windows_
.PyScrolledWindow_base_DoMoveWindow(*args
, **kwargs
)
3475 def base_DoSetSize(*args
, **kwargs
):
3476 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3477 return _windows_
.PyScrolledWindow_base_DoSetSize(*args
, **kwargs
)
3479 def base_DoSetClientSize(*args
, **kwargs
):
3480 """base_DoSetClientSize(self, int width, int height)"""
3481 return _windows_
.PyScrolledWindow_base_DoSetClientSize(*args
, **kwargs
)
3483 def base_DoSetVirtualSize(*args
, **kwargs
):
3484 """base_DoSetVirtualSize(self, int x, int y)"""
3485 return _windows_
.PyScrolledWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3487 def base_DoGetSize(*args
, **kwargs
):
3488 """base_DoGetSize() -> (width, height)"""
3489 return _windows_
.PyScrolledWindow_base_DoGetSize(*args
, **kwargs
)
3491 def base_DoGetClientSize(*args
, **kwargs
):
3492 """base_DoGetClientSize() -> (width, height)"""
3493 return _windows_
.PyScrolledWindow_base_DoGetClientSize(*args
, **kwargs
)
3495 def base_DoGetPosition(*args
, **kwargs
):
3496 """base_DoGetPosition() -> (x,y)"""
3497 return _windows_
.PyScrolledWindow_base_DoGetPosition(*args
, **kwargs
)
3499 def base_DoGetVirtualSize(*args
, **kwargs
):
3500 """base_DoGetVirtualSize(self) -> Size"""
3501 return _windows_
.PyScrolledWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3503 def base_DoGetBestSize(*args
, **kwargs
):
3504 """base_DoGetBestSize(self) -> Size"""
3505 return _windows_
.PyScrolledWindow_base_DoGetBestSize(*args
, **kwargs
)
3507 def base_InitDialog(*args
, **kwargs
):
3508 """base_InitDialog(self)"""
3509 return _windows_
.PyScrolledWindow_base_InitDialog(*args
, **kwargs
)
3511 def base_TransferDataToWindow(*args
, **kwargs
):
3512 """base_TransferDataToWindow(self) -> bool"""
3513 return _windows_
.PyScrolledWindow_base_TransferDataToWindow(*args
, **kwargs
)
3515 def base_TransferDataFromWindow(*args
, **kwargs
):
3516 """base_TransferDataFromWindow(self) -> bool"""
3517 return _windows_
.PyScrolledWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3519 def base_Validate(*args
, **kwargs
):
3520 """base_Validate(self) -> bool"""
3521 return _windows_
.PyScrolledWindow_base_Validate(*args
, **kwargs
)
3523 def base_AcceptsFocus(*args
, **kwargs
):
3524 """base_AcceptsFocus(self) -> bool"""
3525 return _windows_
.PyScrolledWindow_base_AcceptsFocus(*args
, **kwargs
)
3527 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3528 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3529 return _windows_
.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3531 def base_GetMaxSize(*args
, **kwargs
):
3532 """base_GetMaxSize(self) -> Size"""
3533 return _windows_
.PyScrolledWindow_base_GetMaxSize(*args
, **kwargs
)
3535 def base_AddChild(*args
, **kwargs
):
3536 """base_AddChild(self, Window child)"""
3537 return _windows_
.PyScrolledWindow_base_AddChild(*args
, **kwargs
)
3539 def base_RemoveChild(*args
, **kwargs
):
3540 """base_RemoveChild(self, Window child)"""
3541 return _windows_
.PyScrolledWindow_base_RemoveChild(*args
, **kwargs
)
3543 def base_ShouldInheritColours(*args
, **kwargs
):
3544 """base_ShouldInheritColours(self) -> bool"""
3545 return _windows_
.PyScrolledWindow_base_ShouldInheritColours(*args
, **kwargs
)
3547 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3548 """base_ApplyParentThemeBackground(self, Colour c)"""
3549 return _windows_
.PyScrolledWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3552 class PyScrolledWindowPtr(PyScrolledWindow
):
3553 def __init__(self
, this
):
3555 if not hasattr(self
,"thisown"): self
.thisown
= 0
3556 self
.__class
__ = PyScrolledWindow
3557 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindowPtr
)
3559 def PrePyScrolledWindow(*args
, **kwargs
):
3560 """PrePyScrolledWindow() -> PyScrolledWindow"""
3561 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3565 #---------------------------------------------------------------------------
3567 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3568 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3569 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3570 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3571 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3572 class PrintData(_core
.Object
):
3574 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3575 def __init__(self
, *args
, **kwargs
):
3576 """__init__(self) -> PrintData"""
3577 newobj
= _windows_
.new_PrintData(*args
, **kwargs
)
3578 self
.this
= newobj
.this
3581 def __del__(self
, destroy
=_windows_
.delete_PrintData
):
3584 if self
.thisown
: destroy(self
)
3587 def GetNoCopies(*args
, **kwargs
):
3588 """GetNoCopies(self) -> int"""
3589 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3591 def GetCollate(*args
, **kwargs
):
3592 """GetCollate(self) -> bool"""
3593 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3595 def GetOrientation(*args
, **kwargs
):
3596 """GetOrientation(self) -> int"""
3597 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3599 def Ok(*args
, **kwargs
):
3600 """Ok(self) -> bool"""
3601 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3603 def GetPrinterName(*args
, **kwargs
):
3604 """GetPrinterName(self) -> String"""
3605 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3607 def GetColour(*args
, **kwargs
):
3608 """GetColour(self) -> bool"""
3609 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3611 def GetDuplex(*args
, **kwargs
):
3612 """GetDuplex(self) -> int"""
3613 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3615 def GetPaperId(*args
, **kwargs
):
3616 """GetPaperId(self) -> int"""
3617 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3619 def GetPaperSize(*args
, **kwargs
):
3620 """GetPaperSize(self) -> Size"""
3621 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3623 def GetQuality(*args
, **kwargs
):
3624 """GetQuality(self) -> int"""
3625 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3627 def SetNoCopies(*args
, **kwargs
):
3628 """SetNoCopies(self, int v)"""
3629 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3631 def SetCollate(*args
, **kwargs
):
3632 """SetCollate(self, bool flag)"""
3633 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3635 def SetOrientation(*args
, **kwargs
):
3636 """SetOrientation(self, int orient)"""
3637 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3639 def SetPrinterName(*args
, **kwargs
):
3640 """SetPrinterName(self, String name)"""
3641 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3643 def SetColour(*args
, **kwargs
):
3644 """SetColour(self, bool colour)"""
3645 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3647 def SetDuplex(*args
, **kwargs
):
3648 """SetDuplex(self, int duplex)"""
3649 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3651 def SetPaperId(*args
, **kwargs
):
3652 """SetPaperId(self, int sizeId)"""
3653 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3655 def SetPaperSize(*args
, **kwargs
):
3656 """SetPaperSize(self, Size sz)"""
3657 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3659 def SetQuality(*args
, **kwargs
):
3660 """SetQuality(self, int quality)"""
3661 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3663 def GetPrinterCommand(*args
, **kwargs
):
3664 """GetPrinterCommand(self) -> String"""
3665 return _windows_
.PrintData_GetPrinterCommand(*args
, **kwargs
)
3667 def GetPrinterOptions(*args
, **kwargs
):
3668 """GetPrinterOptions(self) -> String"""
3669 return _windows_
.PrintData_GetPrinterOptions(*args
, **kwargs
)
3671 def GetPreviewCommand(*args
, **kwargs
):
3672 """GetPreviewCommand(self) -> String"""
3673 return _windows_
.PrintData_GetPreviewCommand(*args
, **kwargs
)
3675 def GetFilename(*args
, **kwargs
):
3676 """GetFilename(self) -> String"""
3677 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3679 def GetFontMetricPath(*args
, **kwargs
):
3680 """GetFontMetricPath(self) -> String"""
3681 return _windows_
.PrintData_GetFontMetricPath(*args
, **kwargs
)
3683 def GetPrinterScaleX(*args
, **kwargs
):
3684 """GetPrinterScaleX(self) -> double"""
3685 return _windows_
.PrintData_GetPrinterScaleX(*args
, **kwargs
)
3687 def GetPrinterScaleY(*args
, **kwargs
):
3688 """GetPrinterScaleY(self) -> double"""
3689 return _windows_
.PrintData_GetPrinterScaleY(*args
, **kwargs
)
3691 def GetPrinterTranslateX(*args
, **kwargs
):
3692 """GetPrinterTranslateX(self) -> long"""
3693 return _windows_
.PrintData_GetPrinterTranslateX(*args
, **kwargs
)
3695 def GetPrinterTranslateY(*args
, **kwargs
):
3696 """GetPrinterTranslateY(self) -> long"""
3697 return _windows_
.PrintData_GetPrinterTranslateY(*args
, **kwargs
)
3699 def GetPrintMode(*args
, **kwargs
):
3700 """GetPrintMode(self) -> int"""
3701 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3703 def SetPrinterCommand(*args
, **kwargs
):
3704 """SetPrinterCommand(self, String command)"""
3705 return _windows_
.PrintData_SetPrinterCommand(*args
, **kwargs
)
3707 def SetPrinterOptions(*args
, **kwargs
):
3708 """SetPrinterOptions(self, String options)"""
3709 return _windows_
.PrintData_SetPrinterOptions(*args
, **kwargs
)
3711 def SetPreviewCommand(*args
, **kwargs
):
3712 """SetPreviewCommand(self, String command)"""
3713 return _windows_
.PrintData_SetPreviewCommand(*args
, **kwargs
)
3715 def SetFilename(*args
, **kwargs
):
3716 """SetFilename(self, String filename)"""
3717 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3719 def SetFontMetricPath(*args
, **kwargs
):
3720 """SetFontMetricPath(self, String path)"""
3721 return _windows_
.PrintData_SetFontMetricPath(*args
, **kwargs
)
3723 def SetPrinterScaleX(*args
, **kwargs
):
3724 """SetPrinterScaleX(self, double x)"""
3725 return _windows_
.PrintData_SetPrinterScaleX(*args
, **kwargs
)
3727 def SetPrinterScaleY(*args
, **kwargs
):
3728 """SetPrinterScaleY(self, double y)"""
3729 return _windows_
.PrintData_SetPrinterScaleY(*args
, **kwargs
)
3731 def SetPrinterScaling(*args
, **kwargs
):
3732 """SetPrinterScaling(self, double x, double y)"""
3733 return _windows_
.PrintData_SetPrinterScaling(*args
, **kwargs
)
3735 def SetPrinterTranslateX(*args
, **kwargs
):
3736 """SetPrinterTranslateX(self, long x)"""
3737 return _windows_
.PrintData_SetPrinterTranslateX(*args
, **kwargs
)
3739 def SetPrinterTranslateY(*args
, **kwargs
):
3740 """SetPrinterTranslateY(self, long y)"""
3741 return _windows_
.PrintData_SetPrinterTranslateY(*args
, **kwargs
)
3743 def SetPrinterTranslation(*args
, **kwargs
):
3744 """SetPrinterTranslation(self, long x, long y)"""
3745 return _windows_
.PrintData_SetPrinterTranslation(*args
, **kwargs
)
3747 def SetPrintMode(*args
, **kwargs
):
3748 """SetPrintMode(self, int printMode)"""
3749 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3751 def GetOutputStream(*args
, **kwargs
):
3752 """GetOutputStream(self) -> OutputStream"""
3753 return _windows_
.PrintData_GetOutputStream(*args
, **kwargs
)
3755 def SetOutputStream(*args
, **kwargs
):
3756 """SetOutputStream(self, OutputStream outputstream)"""
3757 return _windows_
.PrintData_SetOutputStream(*args
, **kwargs
)
3759 def __nonzero__(self
): return self
.Ok()
3761 class PrintDataPtr(PrintData
):
3762 def __init__(self
, this
):
3764 if not hasattr(self
,"thisown"): self
.thisown
= 0
3765 self
.__class
__ = PrintData
3766 _windows_
.PrintData_swigregister(PrintDataPtr
)
3767 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3768 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3770 class PageSetupDialogData(_core
.Object
):
3772 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3773 def __init__(self
, *args
, **kwargs
):
3774 """__init__(self) -> PageSetupDialogData"""
3775 newobj
= _windows_
.new_PageSetupDialogData(*args
, **kwargs
)
3776 self
.this
= newobj
.this
3779 def __del__(self
, destroy
=_windows_
.delete_PageSetupDialogData
):
3782 if self
.thisown
: destroy(self
)
3785 def EnableHelp(*args
, **kwargs
):
3786 """EnableHelp(self, bool flag)"""
3787 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3789 def EnableMargins(*args
, **kwargs
):
3790 """EnableMargins(self, bool flag)"""
3791 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3793 def EnableOrientation(*args
, **kwargs
):
3794 """EnableOrientation(self, bool flag)"""
3795 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3797 def EnablePaper(*args
, **kwargs
):
3798 """EnablePaper(self, bool flag)"""
3799 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3801 def EnablePrinter(*args
, **kwargs
):
3802 """EnablePrinter(self, bool flag)"""
3803 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3805 def GetDefaultMinMargins(*args
, **kwargs
):
3806 """GetDefaultMinMargins(self) -> bool"""
3807 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3809 def GetEnableMargins(*args
, **kwargs
):
3810 """GetEnableMargins(self) -> bool"""
3811 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3813 def GetEnableOrientation(*args
, **kwargs
):
3814 """GetEnableOrientation(self) -> bool"""
3815 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3817 def GetEnablePaper(*args
, **kwargs
):
3818 """GetEnablePaper(self) -> bool"""
3819 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3821 def GetEnablePrinter(*args
, **kwargs
):
3822 """GetEnablePrinter(self) -> bool"""
3823 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3825 def GetEnableHelp(*args
, **kwargs
):
3826 """GetEnableHelp(self) -> bool"""
3827 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3829 def GetDefaultInfo(*args
, **kwargs
):
3830 """GetDefaultInfo(self) -> bool"""
3831 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3833 def GetMarginTopLeft(*args
, **kwargs
):
3834 """GetMarginTopLeft(self) -> Point"""
3835 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3837 def GetMarginBottomRight(*args
, **kwargs
):
3838 """GetMarginBottomRight(self) -> Point"""
3839 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3841 def GetMinMarginTopLeft(*args
, **kwargs
):
3842 """GetMinMarginTopLeft(self) -> Point"""
3843 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3845 def GetMinMarginBottomRight(*args
, **kwargs
):
3846 """GetMinMarginBottomRight(self) -> Point"""
3847 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3849 def GetPaperId(*args
, **kwargs
):
3850 """GetPaperId(self) -> int"""
3851 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3853 def GetPaperSize(*args
, **kwargs
):
3854 """GetPaperSize(self) -> Size"""
3855 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3857 def GetPrintData(*args
, **kwargs
):
3858 """GetPrintData(self) -> PrintData"""
3859 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3861 def Ok(*args
, **kwargs
):
3862 """Ok(self) -> bool"""
3863 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3865 def SetDefaultInfo(*args
, **kwargs
):
3866 """SetDefaultInfo(self, bool flag)"""
3867 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3869 def SetDefaultMinMargins(*args
, **kwargs
):
3870 """SetDefaultMinMargins(self, bool flag)"""
3871 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3873 def SetMarginTopLeft(*args
, **kwargs
):
3874 """SetMarginTopLeft(self, Point pt)"""
3875 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3877 def SetMarginBottomRight(*args
, **kwargs
):
3878 """SetMarginBottomRight(self, Point pt)"""
3879 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3881 def SetMinMarginTopLeft(*args
, **kwargs
):
3882 """SetMinMarginTopLeft(self, Point pt)"""
3883 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3885 def SetMinMarginBottomRight(*args
, **kwargs
):
3886 """SetMinMarginBottomRight(self, Point pt)"""
3887 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3889 def SetPaperId(*args
, **kwargs
):
3890 """SetPaperId(self, int id)"""
3891 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3893 def SetPaperSize(*args
, **kwargs
):
3894 """SetPaperSize(self, Size size)"""
3895 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3897 def SetPrintData(*args
, **kwargs
):
3898 """SetPrintData(self, PrintData printData)"""
3899 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3901 def __nonzero__(self
): return self
.Ok()
3903 class PageSetupDialogDataPtr(PageSetupDialogData
):
3904 def __init__(self
, this
):
3906 if not hasattr(self
,"thisown"): self
.thisown
= 0
3907 self
.__class
__ = PageSetupDialogData
3908 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogDataPtr
)
3910 class PageSetupDialog(Dialog
):
3912 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3913 def __init__(self
, *args
, **kwargs
):
3914 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
3915 newobj
= _windows_
.new_PageSetupDialog(*args
, **kwargs
)
3916 self
.this
= newobj
.this
3919 self
._setOORInfo
(self
)
3921 def GetPageSetupData(*args
, **kwargs
):
3922 """GetPageSetupData(self) -> PageSetupDialogData"""
3923 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
3925 def ShowModal(*args
, **kwargs
):
3926 """ShowModal(self) -> int"""
3927 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
3930 class PageSetupDialogPtr(PageSetupDialog
):
3931 def __init__(self
, this
):
3933 if not hasattr(self
,"thisown"): self
.thisown
= 0
3934 self
.__class
__ = PageSetupDialog
3935 _windows_
.PageSetupDialog_swigregister(PageSetupDialogPtr
)
3937 class PrintDialogData(_core
.Object
):
3939 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3940 def __init__(self
, *args
):
3942 __init__(self) -> PrintDialogData
3943 __init__(self, PrintData printData) -> PrintDialogData
3945 newobj
= _windows_
.new_PrintDialogData(*args
)
3946 self
.this
= newobj
.this
3949 def __del__(self
, destroy
=_windows_
.delete_PrintDialogData
):
3952 if self
.thisown
: destroy(self
)
3955 def GetFromPage(*args
, **kwargs
):
3956 """GetFromPage(self) -> int"""
3957 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
3959 def GetToPage(*args
, **kwargs
):
3960 """GetToPage(self) -> int"""
3961 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
3963 def GetMinPage(*args
, **kwargs
):
3964 """GetMinPage(self) -> int"""
3965 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
3967 def GetMaxPage(*args
, **kwargs
):
3968 """GetMaxPage(self) -> int"""
3969 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
3971 def GetNoCopies(*args
, **kwargs
):
3972 """GetNoCopies(self) -> int"""
3973 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
3975 def GetAllPages(*args
, **kwargs
):
3976 """GetAllPages(self) -> bool"""
3977 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
3979 def GetSelection(*args
, **kwargs
):
3980 """GetSelection(self) -> bool"""
3981 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
3983 def GetCollate(*args
, **kwargs
):
3984 """GetCollate(self) -> bool"""
3985 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
3987 def GetPrintToFile(*args
, **kwargs
):
3988 """GetPrintToFile(self) -> bool"""
3989 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
3991 def GetSetupDialog(*args
, **kwargs
):
3992 """GetSetupDialog(self) -> bool"""
3993 return _windows_
.PrintDialogData_GetSetupDialog(*args
, **kwargs
)
3995 def SetFromPage(*args
, **kwargs
):
3996 """SetFromPage(self, int v)"""
3997 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
3999 def SetToPage(*args
, **kwargs
):
4000 """SetToPage(self, int v)"""
4001 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4003 def SetMinPage(*args
, **kwargs
):
4004 """SetMinPage(self, int v)"""
4005 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4007 def SetMaxPage(*args
, **kwargs
):
4008 """SetMaxPage(self, int v)"""
4009 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4011 def SetNoCopies(*args
, **kwargs
):
4012 """SetNoCopies(self, int v)"""
4013 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4015 def SetAllPages(*args
, **kwargs
):
4016 """SetAllPages(self, bool flag)"""
4017 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4019 def SetSelection(*args
, **kwargs
):
4020 """SetSelection(self, bool flag)"""
4021 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4023 def SetCollate(*args
, **kwargs
):
4024 """SetCollate(self, bool flag)"""
4025 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4027 def SetPrintToFile(*args
, **kwargs
):
4028 """SetPrintToFile(self, bool flag)"""
4029 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4031 def SetSetupDialog(*args
, **kwargs
):
4032 """SetSetupDialog(self, bool flag)"""
4033 return _windows_
.PrintDialogData_SetSetupDialog(*args
, **kwargs
)
4035 def EnablePrintToFile(*args
, **kwargs
):
4036 """EnablePrintToFile(self, bool flag)"""
4037 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4039 def EnableSelection(*args
, **kwargs
):
4040 """EnableSelection(self, bool flag)"""
4041 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4043 def EnablePageNumbers(*args
, **kwargs
):
4044 """EnablePageNumbers(self, bool flag)"""
4045 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4047 def EnableHelp(*args
, **kwargs
):
4048 """EnableHelp(self, bool flag)"""
4049 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4051 def GetEnablePrintToFile(*args
, **kwargs
):
4052 """GetEnablePrintToFile(self) -> bool"""
4053 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4055 def GetEnableSelection(*args
, **kwargs
):
4056 """GetEnableSelection(self) -> bool"""
4057 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4059 def GetEnablePageNumbers(*args
, **kwargs
):
4060 """GetEnablePageNumbers(self) -> bool"""
4061 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4063 def GetEnableHelp(*args
, **kwargs
):
4064 """GetEnableHelp(self) -> bool"""
4065 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4067 def Ok(*args
, **kwargs
):
4068 """Ok(self) -> bool"""
4069 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4071 def GetPrintData(*args
, **kwargs
):
4072 """GetPrintData(self) -> PrintData"""
4073 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4075 def SetPrintData(*args
, **kwargs
):
4076 """SetPrintData(self, PrintData printData)"""
4077 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4079 def __nonzero__(self
): return self
.Ok()
4081 class PrintDialogDataPtr(PrintDialogData
):
4082 def __init__(self
, this
):
4084 if not hasattr(self
,"thisown"): self
.thisown
= 0
4085 self
.__class
__ = PrintDialogData
4086 _windows_
.PrintDialogData_swigregister(PrintDialogDataPtr
)
4088 class PrintDialog(Dialog
):
4090 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4091 def __init__(self
, *args
, **kwargs
):
4092 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4093 newobj
= _windows_
.new_PrintDialog(*args
, **kwargs
)
4094 self
.this
= newobj
.this
4097 self
._setOORInfo
(self
)
4099 def GetPrintDialogData(*args
, **kwargs
):
4100 """GetPrintDialogData(self) -> PrintDialogData"""
4101 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4103 def GetPrintDC(*args
, **kwargs
):
4104 """GetPrintDC(self) -> DC"""
4105 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4107 def ShowModal(*args
, **kwargs
):
4108 """ShowModal(self) -> int"""
4109 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4112 class PrintDialogPtr(PrintDialog
):
4113 def __init__(self
, this
):
4115 if not hasattr(self
,"thisown"): self
.thisown
= 0
4116 self
.__class
__ = PrintDialog
4117 _windows_
.PrintDialog_swigregister(PrintDialogPtr
)
4119 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4120 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4121 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4122 class Printer(_core
.Object
):
4124 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4125 def __init__(self
, *args
, **kwargs
):
4126 """__init__(self, PrintDialogData data=None) -> Printer"""
4127 newobj
= _windows_
.new_Printer(*args
, **kwargs
)
4128 self
.this
= newobj
.this
4131 def __del__(self
, destroy
=_windows_
.delete_Printer
):
4134 if self
.thisown
: destroy(self
)
4137 def CreateAbortWindow(*args
, **kwargs
):
4138 """CreateAbortWindow(self, Window parent, Printout printout)"""
4139 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4141 def GetPrintDialogData(*args
, **kwargs
):
4142 """GetPrintDialogData(self) -> PrintDialogData"""
4143 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4145 def Print(*args
, **kwargs
):
4146 """Print(self, Window parent, Printout printout, int prompt=True) -> bool"""
4147 return _windows_
.Printer_Print(*args
, **kwargs
)
4149 def PrintDialog(*args
, **kwargs
):
4150 """PrintDialog(self, Window parent) -> DC"""
4151 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4153 def ReportError(*args
, **kwargs
):
4154 """ReportError(self, Window parent, Printout printout, String message)"""
4155 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4157 def Setup(*args
, **kwargs
):
4158 """Setup(self, Window parent) -> bool"""
4159 return _windows_
.Printer_Setup(*args
, **kwargs
)
4161 def GetAbort(*args
, **kwargs
):
4162 """GetAbort(self) -> bool"""
4163 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4165 def GetLastError(*args
, **kwargs
):
4166 """GetLastError() -> int"""
4167 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4169 GetLastError
= staticmethod(GetLastError
)
4171 class PrinterPtr(Printer
):
4172 def __init__(self
, this
):
4174 if not hasattr(self
,"thisown"): self
.thisown
= 0
4175 self
.__class
__ = Printer
4176 _windows_
.Printer_swigregister(PrinterPtr
)
4178 def Printer_GetLastError(*args
, **kwargs
):
4179 """Printer_GetLastError() -> int"""
4180 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4182 class Printout(_core
.Object
):
4184 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4185 def __init__(self
, *args
, **kwargs
):
4186 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4187 newobj
= _windows_
.new_Printout(*args
, **kwargs
)
4188 self
.this
= newobj
.this
4191 self
._setCallbackInfo
(self
, Printout
)
4193 def _setCallbackInfo(*args
, **kwargs
):
4194 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4195 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4197 def GetTitle(*args
, **kwargs
):
4198 """GetTitle(self) -> String"""
4199 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4201 def GetDC(*args
, **kwargs
):
4202 """GetDC(self) -> DC"""
4203 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4205 def SetDC(*args
, **kwargs
):
4206 """SetDC(self, DC dc)"""
4207 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4209 def SetPageSizePixels(*args
, **kwargs
):
4210 """SetPageSizePixels(self, int w, int h)"""
4211 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4213 def GetPageSizePixels(*args
, **kwargs
):
4214 """GetPageSizePixels() -> (w, h)"""
4215 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4217 def SetPageSizeMM(*args
, **kwargs
):
4218 """SetPageSizeMM(self, int w, int h)"""
4219 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4221 def GetPageSizeMM(*args
, **kwargs
):
4222 """GetPageSizeMM() -> (w, h)"""
4223 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4225 def SetPPIScreen(*args
, **kwargs
):
4226 """SetPPIScreen(self, int x, int y)"""
4227 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4229 def GetPPIScreen(*args
, **kwargs
):
4230 """GetPPIScreen() -> (x,y)"""
4231 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4233 def SetPPIPrinter(*args
, **kwargs
):
4234 """SetPPIPrinter(self, int x, int y)"""
4235 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4237 def GetPPIPrinter(*args
, **kwargs
):
4238 """GetPPIPrinter() -> (x,y)"""
4239 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4241 def IsPreview(*args
, **kwargs
):
4242 """IsPreview(self) -> bool"""
4243 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4245 def SetIsPreview(*args
, **kwargs
):
4246 """SetIsPreview(self, bool p)"""
4247 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4249 def base_OnBeginDocument(*args
, **kwargs
):
4250 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4251 return _windows_
.Printout_base_OnBeginDocument(*args
, **kwargs
)
4253 def base_OnEndDocument(*args
, **kwargs
):
4254 """base_OnEndDocument(self)"""
4255 return _windows_
.Printout_base_OnEndDocument(*args
, **kwargs
)
4257 def base_OnBeginPrinting(*args
, **kwargs
):
4258 """base_OnBeginPrinting(self)"""
4259 return _windows_
.Printout_base_OnBeginPrinting(*args
, **kwargs
)
4261 def base_OnEndPrinting(*args
, **kwargs
):
4262 """base_OnEndPrinting(self)"""
4263 return _windows_
.Printout_base_OnEndPrinting(*args
, **kwargs
)
4265 def base_OnPreparePrinting(*args
, **kwargs
):
4266 """base_OnPreparePrinting(self)"""
4267 return _windows_
.Printout_base_OnPreparePrinting(*args
, **kwargs
)
4269 def base_HasPage(*args
, **kwargs
):
4270 """base_HasPage(self, int page) -> bool"""
4271 return _windows_
.Printout_base_HasPage(*args
, **kwargs
)
4273 def base_GetPageInfo(*args
, **kwargs
):
4274 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4275 return _windows_
.Printout_base_GetPageInfo(*args
, **kwargs
)
4278 class PrintoutPtr(Printout
):
4279 def __init__(self
, this
):
4281 if not hasattr(self
,"thisown"): self
.thisown
= 0
4282 self
.__class
__ = Printout
4283 _windows_
.Printout_swigregister(PrintoutPtr
)
4285 class PreviewCanvas(ScrolledWindow
):
4287 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4288 def __init__(self
, *args
, **kwargs
):
4290 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4291 Size size=DefaultSize, long style=0,
4292 String name=PreviewCanvasNameStr) -> PreviewCanvas
4294 newobj
= _windows_
.new_PreviewCanvas(*args
, **kwargs
)
4295 self
.this
= newobj
.this
4298 self
._setOORInfo
(self
)
4301 class PreviewCanvasPtr(PreviewCanvas
):
4302 def __init__(self
, this
):
4304 if not hasattr(self
,"thisown"): self
.thisown
= 0
4305 self
.__class
__ = PreviewCanvas
4306 _windows_
.PreviewCanvas_swigregister(PreviewCanvasPtr
)
4308 class PreviewFrame(Frame
):
4310 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4311 def __init__(self
, *args
, **kwargs
):
4313 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4314 Size size=DefaultSize,
4315 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4317 newobj
= _windows_
.new_PreviewFrame(*args
, **kwargs
)
4318 self
.this
= newobj
.this
4321 self
._setOORInfo
(self
)
4323 def Initialize(*args
, **kwargs
):
4324 """Initialize(self)"""
4325 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4327 def CreateControlBar(*args
, **kwargs
):
4328 """CreateControlBar(self)"""
4329 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4331 def CreateCanvas(*args
, **kwargs
):
4332 """CreateCanvas(self)"""
4333 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4335 def GetControlBar(*args
, **kwargs
):
4336 """GetControlBar(self) -> PreviewControlBar"""
4337 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4340 class PreviewFramePtr(PreviewFrame
):
4341 def __init__(self
, this
):
4343 if not hasattr(self
,"thisown"): self
.thisown
= 0
4344 self
.__class
__ = PreviewFrame
4345 _windows_
.PreviewFrame_swigregister(PreviewFramePtr
)
4347 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4348 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4349 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4350 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4351 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4352 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4353 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4354 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4355 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4356 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4357 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4358 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4359 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4360 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4361 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4362 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4363 class PreviewControlBar(Panel
):
4365 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4366 def __init__(self
, *args
, **kwargs
):
4368 __init__(self, PrintPreview preview, long buttons, Window parent,
4369 Point pos=DefaultPosition, Size size=DefaultSize,
4370 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4372 newobj
= _windows_
.new_PreviewControlBar(*args
, **kwargs
)
4373 self
.this
= newobj
.this
4376 self
._setOORInfo
(self
)
4378 def GetZoomControl(*args
, **kwargs
):
4379 """GetZoomControl(self) -> int"""
4380 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4382 def SetZoomControl(*args
, **kwargs
):
4383 """SetZoomControl(self, int zoom)"""
4384 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4386 def GetPrintPreview(*args
, **kwargs
):
4387 """GetPrintPreview(self) -> PrintPreview"""
4388 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4390 def OnNext(*args
, **kwargs
):
4392 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4394 def OnPrevious(*args
, **kwargs
):
4395 """OnPrevious(self)"""
4396 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4398 def OnFirst(*args
, **kwargs
):
4400 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4402 def OnLast(*args
, **kwargs
):
4404 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4406 def OnGoto(*args
, **kwargs
):
4408 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4411 class PreviewControlBarPtr(PreviewControlBar
):
4412 def __init__(self
, this
):
4414 if not hasattr(self
,"thisown"): self
.thisown
= 0
4415 self
.__class
__ = PreviewControlBar
4416 _windows_
.PreviewControlBar_swigregister(PreviewControlBarPtr
)
4418 class PrintPreview(_core
.Object
):
4420 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4421 def __init__(self
, *args
):
4423 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4424 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4426 newobj
= _windows_
.new_PrintPreview(*args
)
4427 self
.this
= newobj
.this
4430 def SetCurrentPage(*args
, **kwargs
):
4431 """SetCurrentPage(self, int pageNum) -> bool"""
4432 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4434 def GetCurrentPage(*args
, **kwargs
):
4435 """GetCurrentPage(self) -> int"""
4436 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4438 def SetPrintout(*args
, **kwargs
):
4439 """SetPrintout(self, Printout printout)"""
4440 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4442 def GetPrintout(*args
, **kwargs
):
4443 """GetPrintout(self) -> Printout"""
4444 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4446 def GetPrintoutForPrinting(*args
, **kwargs
):
4447 """GetPrintoutForPrinting(self) -> Printout"""
4448 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4450 def SetFrame(*args
, **kwargs
):
4451 """SetFrame(self, Frame frame)"""
4452 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4454 def SetCanvas(*args
, **kwargs
):
4455 """SetCanvas(self, PreviewCanvas canvas)"""
4456 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4458 def GetFrame(*args
, **kwargs
):
4459 """GetFrame(self) -> Frame"""
4460 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4462 def GetCanvas(*args
, **kwargs
):
4463 """GetCanvas(self) -> PreviewCanvas"""
4464 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4466 def PaintPage(*args
, **kwargs
):
4467 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4468 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4470 def DrawBlankPage(*args
, **kwargs
):
4471 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4472 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4474 def RenderPage(*args
, **kwargs
):
4475 """RenderPage(self, int pageNum) -> bool"""
4476 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4478 def AdjustScrollbars(*args
, **kwargs
):
4479 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4480 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4482 def GetPrintDialogData(*args
, **kwargs
):
4483 """GetPrintDialogData(self) -> PrintDialogData"""
4484 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4486 def SetZoom(*args
, **kwargs
):
4487 """SetZoom(self, int percent)"""
4488 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4490 def GetZoom(*args
, **kwargs
):
4491 """GetZoom(self) -> int"""
4492 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4494 def GetMaxPage(*args
, **kwargs
):
4495 """GetMaxPage(self) -> int"""
4496 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4498 def GetMinPage(*args
, **kwargs
):
4499 """GetMinPage(self) -> int"""
4500 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4502 def Ok(*args
, **kwargs
):
4503 """Ok(self) -> bool"""
4504 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4506 def SetOk(*args
, **kwargs
):
4507 """SetOk(self, bool ok)"""
4508 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4510 def Print(*args
, **kwargs
):
4511 """Print(self, bool interactive) -> bool"""
4512 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4514 def DetermineScaling(*args
, **kwargs
):
4515 """DetermineScaling(self)"""
4516 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4518 def __nonzero__(self
): return self
.Ok()
4520 class PrintPreviewPtr(PrintPreview
):
4521 def __init__(self
, this
):
4523 if not hasattr(self
,"thisown"): self
.thisown
= 0
4524 self
.__class
__ = PrintPreview
4525 _windows_
.PrintPreview_swigregister(PrintPreviewPtr
)
4527 class PyPrintPreview(PrintPreview
):
4529 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4530 def __init__(self
, *args
):
4532 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4533 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4535 newobj
= _windows_
.new_PyPrintPreview(*args
)
4536 self
.this
= newobj
.this
4539 self
._setCallbackInfo
(self
, PyPrintPreview
)
4541 def _setCallbackInfo(*args
, **kwargs
):
4542 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4543 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4545 def base_SetCurrentPage(*args
, **kwargs
):
4546 """base_SetCurrentPage(self, int pageNum) -> bool"""
4547 return _windows_
.PyPrintPreview_base_SetCurrentPage(*args
, **kwargs
)
4549 def base_PaintPage(*args
, **kwargs
):
4550 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4551 return _windows_
.PyPrintPreview_base_PaintPage(*args
, **kwargs
)
4553 def base_DrawBlankPage(*args
, **kwargs
):
4554 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4555 return _windows_
.PyPrintPreview_base_DrawBlankPage(*args
, **kwargs
)
4557 def base_RenderPage(*args
, **kwargs
):
4558 """base_RenderPage(self, int pageNum) -> bool"""
4559 return _windows_
.PyPrintPreview_base_RenderPage(*args
, **kwargs
)
4561 def base_SetZoom(*args
, **kwargs
):
4562 """base_SetZoom(self, int percent)"""
4563 return _windows_
.PyPrintPreview_base_SetZoom(*args
, **kwargs
)
4565 def base_Print(*args
, **kwargs
):
4566 """base_Print(self, bool interactive) -> bool"""
4567 return _windows_
.PyPrintPreview_base_Print(*args
, **kwargs
)
4569 def base_DetermineScaling(*args
, **kwargs
):
4570 """base_DetermineScaling(self)"""
4571 return _windows_
.PyPrintPreview_base_DetermineScaling(*args
, **kwargs
)
4574 class PyPrintPreviewPtr(PyPrintPreview
):
4575 def __init__(self
, this
):
4577 if not hasattr(self
,"thisown"): self
.thisown
= 0
4578 self
.__class
__ = PyPrintPreview
4579 _windows_
.PyPrintPreview_swigregister(PyPrintPreviewPtr
)
4581 class PyPreviewFrame(PreviewFrame
):
4583 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4584 def __init__(self
, *args
, **kwargs
):
4586 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4587 Size size=DefaultSize,
4588 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4590 newobj
= _windows_
.new_PyPreviewFrame(*args
, **kwargs
)
4591 self
.this
= newobj
.this
4594 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4596 def _setCallbackInfo(*args
, **kwargs
):
4597 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4598 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4600 def SetPreviewCanvas(*args
, **kwargs
):
4601 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4602 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4604 def SetControlBar(*args
, **kwargs
):
4605 """SetControlBar(self, PreviewControlBar bar)"""
4606 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4608 def base_Initialize(*args
, **kwargs
):
4609 """base_Initialize(self)"""
4610 return _windows_
.PyPreviewFrame_base_Initialize(*args
, **kwargs
)
4612 def base_CreateCanvas(*args
, **kwargs
):
4613 """base_CreateCanvas(self)"""
4614 return _windows_
.PyPreviewFrame_base_CreateCanvas(*args
, **kwargs
)
4616 def base_CreateControlBar(*args
, **kwargs
):
4617 """base_CreateControlBar(self)"""
4618 return _windows_
.PyPreviewFrame_base_CreateControlBar(*args
, **kwargs
)
4621 class PyPreviewFramePtr(PyPreviewFrame
):
4622 def __init__(self
, this
):
4624 if not hasattr(self
,"thisown"): self
.thisown
= 0
4625 self
.__class
__ = PyPreviewFrame
4626 _windows_
.PyPreviewFrame_swigregister(PyPreviewFramePtr
)
4628 class PyPreviewControlBar(PreviewControlBar
):
4630 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4631 def __init__(self
, *args
, **kwargs
):
4633 __init__(self, PrintPreview preview, long buttons, Window parent,
4634 Point pos=DefaultPosition, Size size=DefaultSize,
4635 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4637 newobj
= _windows_
.new_PyPreviewControlBar(*args
, **kwargs
)
4638 self
.this
= newobj
.this
4641 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4643 def _setCallbackInfo(*args
, **kwargs
):
4644 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4645 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4647 def SetPrintPreview(*args
, **kwargs
):
4648 """SetPrintPreview(self, PrintPreview preview)"""
4649 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4651 def base_CreateButtons(*args
, **kwargs
):
4652 """base_CreateButtons(self)"""
4653 return _windows_
.PyPreviewControlBar_base_CreateButtons(*args
, **kwargs
)
4655 def base_SetZoomControl(*args
, **kwargs
):
4656 """base_SetZoomControl(self, int zoom)"""
4657 return _windows_
.PyPreviewControlBar_base_SetZoomControl(*args
, **kwargs
)
4660 class PyPreviewControlBarPtr(PyPreviewControlBar
):
4661 def __init__(self
, this
):
4663 if not hasattr(self
,"thisown"): self
.thisown
= 0
4664 self
.__class
__ = PyPreviewControlBar
4665 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr
)