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 return _windows_
.Panel_Create(*args
, **kwargs
)
33 def InitDialog(*args
, **kwargs
):
37 Sends an EVT_INIT_DIALOG event, whose handler usually transfers data
38 to the dialog via validators.
40 return _windows_
.Panel_InitDialog(*args
, **kwargs
)
42 def GetClassDefaultAttributes(*args
, **kwargs
):
44 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
46 Get the default attributes for this class. This is useful if you want
47 to use the same font or colour in your own control as in a standard
48 control -- which is a much better idea than hard coding specific
49 colours or fonts which might look completely out of place on the
50 user's system, especially if it uses themes.
52 The variant parameter is only relevant under Mac currently and is
53 ignore under other platforms. Under Mac, it will change the size of
54 the returned font. See `wx.Window.SetWindowVariant` for more about
57 return _windows_
.Panel_GetClassDefaultAttributes(*args
, **kwargs
)
59 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
61 class PanelPtr(Panel
):
62 def __init__(self
, this
):
64 if not hasattr(self
,"thisown"): self
.thisown
= 0
65 self
.__class
__ = Panel
66 _windows_
.Panel_swigregister(PanelPtr
)
68 def PrePanel(*args
, **kwargs
):
69 """PrePanel() -> Panel"""
70 val
= _windows_
.new_PrePanel(*args
, **kwargs
)
74 def Panel_GetClassDefaultAttributes(*args
, **kwargs
):
76 Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
78 Get the default attributes for this class. This is useful if you want
79 to use the same font or colour in your own control as in a standard
80 control -- which is a much better idea than hard coding specific
81 colours or fonts which might look completely out of place on the
82 user's system, especially if it uses themes.
84 The variant parameter is only relevant under Mac currently and is
85 ignore under other platforms. Under Mac, it will change the size of
86 the returned font. See `wx.Window.SetWindowVariant` for more about
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 return _windows_
.ScrolledWindow_Create(*args
, **kwargs
)
116 def SetScrollbars(*args
, **kwargs
):
118 SetScrollbars(self, int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
119 int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
121 return _windows_
.ScrolledWindow_SetScrollbars(*args
, **kwargs
)
123 def Scroll(*args
, **kwargs
):
124 """Scroll(self, int x, int y)"""
125 return _windows_
.ScrolledWindow_Scroll(*args
, **kwargs
)
127 def GetScrollPageSize(*args
, **kwargs
):
128 """GetScrollPageSize(self, int orient) -> int"""
129 return _windows_
.ScrolledWindow_GetScrollPageSize(*args
, **kwargs
)
131 def SetScrollPageSize(*args
, **kwargs
):
132 """SetScrollPageSize(self, int orient, int pageSize)"""
133 return _windows_
.ScrolledWindow_SetScrollPageSize(*args
, **kwargs
)
135 def SetScrollRate(*args
, **kwargs
):
136 """SetScrollRate(self, int xstep, int ystep)"""
137 return _windows_
.ScrolledWindow_SetScrollRate(*args
, **kwargs
)
139 def GetScrollPixelsPerUnit(*args
, **kwargs
):
141 GetScrollPixelsPerUnit() -> (xUnit, yUnit)
143 Get the size of one logical unit in physical units.
145 return _windows_
.ScrolledWindow_GetScrollPixelsPerUnit(*args
, **kwargs
)
147 def EnableScrolling(*args
, **kwargs
):
148 """EnableScrolling(self, bool x_scrolling, bool y_scrolling)"""
149 return _windows_
.ScrolledWindow_EnableScrolling(*args
, **kwargs
)
151 def GetViewStart(*args
, **kwargs
):
153 GetViewStart() -> (x,y)
157 return _windows_
.ScrolledWindow_GetViewStart(*args
, **kwargs
)
159 def SetScale(*args
, **kwargs
):
160 """SetScale(self, double xs, double ys)"""
161 return _windows_
.ScrolledWindow_SetScale(*args
, **kwargs
)
163 def GetScaleX(*args
, **kwargs
):
164 """GetScaleX(self) -> double"""
165 return _windows_
.ScrolledWindow_GetScaleX(*args
, **kwargs
)
167 def GetScaleY(*args
, **kwargs
):
168 """GetScaleY(self) -> double"""
169 return _windows_
.ScrolledWindow_GetScaleY(*args
, **kwargs
)
171 def CalcScrolledPosition(*args
):
173 CalcScrolledPosition(self, Point pt) -> Point
174 CalcScrolledPosition(int x, int y) -> (sx, sy)
176 Translate between scrolled and unscrolled coordinates.
178 return _windows_
.ScrolledWindow_CalcScrolledPosition(*args
)
180 def CalcUnscrolledPosition(*args
):
182 CalcUnscrolledPosition(self, Point pt) -> Point
183 CalcUnscrolledPosition(int x, int y) -> (ux, uy)
185 Translate between scrolled and unscrolled coordinates.
187 return _windows_
.ScrolledWindow_CalcUnscrolledPosition(*args
)
189 def AdjustScrollbars(*args
, **kwargs
):
190 """AdjustScrollbars(self)"""
191 return _windows_
.ScrolledWindow_AdjustScrollbars(*args
, **kwargs
)
193 def CalcScrollInc(*args
, **kwargs
):
194 """CalcScrollInc(self, ScrollWinEvent event) -> int"""
195 return _windows_
.ScrolledWindow_CalcScrollInc(*args
, **kwargs
)
197 def SetTargetWindow(*args
, **kwargs
):
198 """SetTargetWindow(self, Window target)"""
199 return _windows_
.ScrolledWindow_SetTargetWindow(*args
, **kwargs
)
201 def GetTargetWindow(*args
, **kwargs
):
202 """GetTargetWindow(self) -> Window"""
203 return _windows_
.ScrolledWindow_GetTargetWindow(*args
, **kwargs
)
205 def DoPrepareDC(*args
, **kwargs
):
207 DoPrepareDC(self, DC dc)
209 Normally what is called by `PrepareDC`.
211 return _windows_
.ScrolledWindow_DoPrepareDC(*args
, **kwargs
)
213 def GetClassDefaultAttributes(*args
, **kwargs
):
215 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
217 Get the default attributes for this class. This is useful if you want
218 to use the same font or colour in your own control as in a standard
219 control -- which is a much better idea than hard coding specific
220 colours or fonts which might look completely out of place on the
221 user's system, especially if it uses themes.
223 The variant parameter is only relevant under Mac currently and is
224 ignore under other platforms. Under Mac, it will change the size of
225 the returned font. See `wx.Window.SetWindowVariant` for more about
228 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
230 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
232 class ScrolledWindowPtr(ScrolledWindow
):
233 def __init__(self
, this
):
235 if not hasattr(self
,"thisown"): self
.thisown
= 0
236 self
.__class
__ = ScrolledWindow
237 _windows_
.ScrolledWindow_swigregister(ScrolledWindowPtr
)
239 def PreScrolledWindow(*args
, **kwargs
):
240 """PreScrolledWindow() -> ScrolledWindow"""
241 val
= _windows_
.new_PreScrolledWindow(*args
, **kwargs
)
245 def ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
):
247 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
249 Get the default attributes for this class. This is useful if you want
250 to use the same font or colour in your own control as in a standard
251 control -- which is a much better idea than hard coding specific
252 colours or fonts which might look completely out of place on the
253 user's system, especially if it uses themes.
255 The variant parameter is only relevant under Mac currently and is
256 ignore under other platforms. Under Mac, it will change the size of
257 the returned font. See `wx.Window.SetWindowVariant` for more about
260 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
262 #---------------------------------------------------------------------------
264 STAY_ON_TOP
= _windows_
.STAY_ON_TOP
265 ICONIZE
= _windows_
.ICONIZE
266 MINIMIZE
= _windows_
.MINIMIZE
267 MAXIMIZE
= _windows_
.MAXIMIZE
268 CLOSE_BOX
= _windows_
.CLOSE_BOX
269 THICK_FRAME
= _windows_
.THICK_FRAME
270 SYSTEM_MENU
= _windows_
.SYSTEM_MENU
271 MINIMIZE_BOX
= _windows_
.MINIMIZE_BOX
272 MAXIMIZE_BOX
= _windows_
.MAXIMIZE_BOX
273 TINY_CAPTION_HORIZ
= _windows_
.TINY_CAPTION_HORIZ
274 TINY_CAPTION_VERT
= _windows_
.TINY_CAPTION_VERT
275 RESIZE_BOX
= _windows_
.RESIZE_BOX
276 RESIZE_BORDER
= _windows_
.RESIZE_BORDER
277 DIALOG_NO_PARENT
= _windows_
.DIALOG_NO_PARENT
278 DEFAULT_FRAME_STYLE
= _windows_
.DEFAULT_FRAME_STYLE
279 DEFAULT_DIALOG_STYLE
= _windows_
.DEFAULT_DIALOG_STYLE
280 FRAME_TOOL_WINDOW
= _windows_
.FRAME_TOOL_WINDOW
281 FRAME_FLOAT_ON_PARENT
= _windows_
.FRAME_FLOAT_ON_PARENT
282 FRAME_NO_WINDOW_MENU
= _windows_
.FRAME_NO_WINDOW_MENU
283 FRAME_NO_TASKBAR
= _windows_
.FRAME_NO_TASKBAR
284 FRAME_SHAPED
= _windows_
.FRAME_SHAPED
285 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
286 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
287 USER_COLOURS
= _windows_
.USER_COLOURS
288 NO_3D
= _windows_
.NO_3D
289 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
290 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
291 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
292 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
293 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
294 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
295 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
296 class TopLevelWindow(_core
.Window
):
297 def __init__(self
): raise RuntimeError, "No constructor defined"
299 return "<%s.%s; proxy of C++ wxTopLevelWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
300 def Maximize(*args
, **kwargs
):
301 """Maximize(self, bool maximize=True)"""
302 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
304 def Restore(*args
, **kwargs
):
306 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
308 def Iconize(*args
, **kwargs
):
309 """Iconize(self, bool iconize=True)"""
310 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
312 def IsMaximized(*args
, **kwargs
):
313 """IsMaximized(self) -> bool"""
314 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
316 def IsIconized(*args
, **kwargs
):
317 """IsIconized(self) -> bool"""
318 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
320 def GetIcon(*args
, **kwargs
):
321 """GetIcon(self) -> Icon"""
322 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
324 def SetIcon(*args
, **kwargs
):
325 """SetIcon(self, Icon icon)"""
326 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
328 def SetIcons(*args
, **kwargs
):
329 """SetIcons(self, wxIconBundle icons)"""
330 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
332 def ShowFullScreen(*args
, **kwargs
):
333 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
334 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
336 def IsFullScreen(*args
, **kwargs
):
337 """IsFullScreen(self) -> bool"""
338 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
340 def SetTitle(*args
, **kwargs
):
342 SetTitle(self, String title)
344 Sets the window's title. Applicable only to frames and dialogs.
346 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
348 def GetTitle(*args
, **kwargs
):
350 GetTitle(self) -> String
352 Gets the window's title. Applicable only to frames and dialogs.
354 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
356 def SetShape(*args
, **kwargs
):
357 """SetShape(self, Region region) -> bool"""
358 return _windows_
.TopLevelWindow_SetShape(*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=-1, String title=EmptyString,
381 Point pos=DefaultPosition, Size size=DefaultSize,
382 long style=DEFAULT_FRAME_STYLE, 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=-1, String title=EmptyString,
393 Point pos=DefaultPosition, Size size=DefaultSize,
394 long style=DEFAULT_FRAME_STYLE, 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=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
428 int winid=0, 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
492 user's 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 `wx.Window.SetWindowVariant` for more about
499 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
501 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
503 class FramePtr(Frame
):
504 def __init__(self
, this
):
506 if not hasattr(self
,"thisown"): self
.thisown
= 0
507 self
.__class
__ = Frame
508 _windows_
.Frame_swigregister(FramePtr
)
510 def PreFrame(*args
, **kwargs
):
511 """PreFrame() -> Frame"""
512 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
516 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
518 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
520 Get the default attributes for this class. This is useful if you want
521 to use the same font or colour in your own control as in a standard
522 control -- which is a much better idea than hard coding specific
523 colours or fonts which might look completely out of place on the
524 user's system, especially if it uses themes.
526 The variant parameter is only relevant under Mac currently and is
527 ignore under other platforms. Under Mac, it will change the size of
528 the returned font. See `wx.Window.SetWindowVariant` for more about
531 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
533 #---------------------------------------------------------------------------
535 class Dialog(TopLevelWindow
):
537 return "<%s.%s; proxy of C++ wxDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
538 def __init__(self
, *args
, **kwargs
):
540 __init__(self, Window parent, int id=-1, String title=EmptyString,
541 Point pos=DefaultPosition, Size size=DefaultSize,
542 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
544 newobj
= _windows_
.new_Dialog(*args
, **kwargs
)
545 self
.this
= newobj
.this
548 self
._setOORInfo
(self
)
550 def Create(*args
, **kwargs
):
552 Create(self, Window parent, int id=-1, String title=EmptyString,
553 Point pos=DefaultPosition, Size size=DefaultSize,
554 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
556 return _windows_
.Dialog_Create(*args
, **kwargs
)
558 def SetReturnCode(*args
, **kwargs
):
559 """SetReturnCode(self, int returnCode)"""
560 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
562 def GetReturnCode(*args
, **kwargs
):
563 """GetReturnCode(self) -> int"""
564 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
566 def CreateTextSizer(*args
, **kwargs
):
567 """CreateTextSizer(self, String message) -> Sizer"""
568 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
570 def CreateButtonSizer(*args
, **kwargs
):
571 """CreateButtonSizer(self, long flags) -> Sizer"""
572 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
574 def IsModal(*args
, **kwargs
):
575 """IsModal(self) -> bool"""
576 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
578 def ShowModal(*args
, **kwargs
):
579 """ShowModal(self) -> int"""
580 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
582 def EndModal(*args
, **kwargs
):
583 """EndModal(self, int retCode)"""
584 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
586 def GetClassDefaultAttributes(*args
, **kwargs
):
588 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
590 Get the default attributes for this class. This is useful if you want
591 to use the same font or colour in your own control as in a standard
592 control -- which is a much better idea than hard coding specific
593 colours or fonts which might look completely out of place on the
594 user's system, especially if it uses themes.
596 The variant parameter is only relevant under Mac currently and is
597 ignore under other platforms. Under Mac, it will change the size of
598 the returned font. See `wx.Window.SetWindowVariant` for more about
601 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
603 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
604 def SendSizeEvent(self
):
605 self
.ProcessEvent(wx
.SizeEvent((-1,-1)))
608 class DialogPtr(Dialog
):
609 def __init__(self
, this
):
611 if not hasattr(self
,"thisown"): self
.thisown
= 0
612 self
.__class
__ = Dialog
613 _windows_
.Dialog_swigregister(DialogPtr
)
615 def PreDialog(*args
, **kwargs
):
616 """PreDialog() -> Dialog"""
617 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
621 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
623 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
625 Get the default attributes for this class. This is useful if you want
626 to use the same font or colour in your own control as in a standard
627 control -- which is a much better idea than hard coding specific
628 colours or fonts which might look completely out of place on the
629 user's system, especially if it uses themes.
631 The variant parameter is only relevant under Mac currently and is
632 ignore under other platforms. Under Mac, it will change the size of
633 the returned font. See `wx.Window.SetWindowVariant` for more about
636 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
638 #---------------------------------------------------------------------------
640 class MiniFrame(Frame
):
642 return "<%s.%s; proxy of C++ wxMiniFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
643 def __init__(self
, *args
, **kwargs
):
645 __init__(self, Window parent, int id=-1, String title=EmptyString,
646 Point pos=DefaultPosition, Size size=DefaultSize,
647 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
649 newobj
= _windows_
.new_MiniFrame(*args
, **kwargs
)
650 self
.this
= newobj
.this
653 self
._setOORInfo
(self
)
655 def Create(*args
, **kwargs
):
657 Create(self, Window parent, int id=-1, String title=EmptyString,
658 Point pos=DefaultPosition, Size size=DefaultSize,
659 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
661 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
664 class MiniFramePtr(MiniFrame
):
665 def __init__(self
, this
):
667 if not hasattr(self
,"thisown"): self
.thisown
= 0
668 self
.__class
__ = MiniFrame
669 _windows_
.MiniFrame_swigregister(MiniFramePtr
)
671 def PreMiniFrame(*args
, **kwargs
):
672 """PreMiniFrame() -> MiniFrame"""
673 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
677 #---------------------------------------------------------------------------
679 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
680 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
681 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
682 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
683 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
684 class SplashScreenWindow(_core
.Window
):
686 return "<%s.%s; proxy of C++ wxSplashScreenWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
687 def __init__(self
, *args
, **kwargs
):
689 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
690 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
692 newobj
= _windows_
.new_SplashScreenWindow(*args
, **kwargs
)
693 self
.this
= newobj
.this
696 self
._setOORInfo
(self
)
698 def SetBitmap(*args
, **kwargs
):
699 """SetBitmap(self, Bitmap bitmap)"""
700 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
702 def GetBitmap(*args
, **kwargs
):
703 """GetBitmap(self) -> Bitmap"""
704 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
707 class SplashScreenWindowPtr(SplashScreenWindow
):
708 def __init__(self
, this
):
710 if not hasattr(self
,"thisown"): self
.thisown
= 0
711 self
.__class
__ = SplashScreenWindow
712 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindowPtr
)
714 class SplashScreen(Frame
):
716 return "<%s.%s; proxy of C++ wxSplashScreen instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
717 def __init__(self
, *args
, **kwargs
):
719 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
720 Window parent, int id=-1, Point pos=DefaultPosition,
721 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
723 newobj
= _windows_
.new_SplashScreen(*args
, **kwargs
)
724 self
.this
= newobj
.this
727 self
._setOORInfo
(self
)
729 def GetSplashStyle(*args
, **kwargs
):
730 """GetSplashStyle(self) -> long"""
731 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
733 def GetSplashWindow(*args
, **kwargs
):
734 """GetSplashWindow(self) -> SplashScreenWindow"""
735 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
737 def GetTimeout(*args
, **kwargs
):
738 """GetTimeout(self) -> int"""
739 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
742 class SplashScreenPtr(SplashScreen
):
743 def __init__(self
, this
):
745 if not hasattr(self
,"thisown"): self
.thisown
= 0
746 self
.__class
__ = SplashScreen
747 _windows_
.SplashScreen_swigregister(SplashScreenPtr
)
749 #---------------------------------------------------------------------------
751 class StatusBar(_core
.Window
):
753 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
754 def __init__(self
, *args
, **kwargs
):
756 __init__(self, Window parent, int id=-1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
757 String name=StatusLineNameStr) -> StatusBar
759 newobj
= _windows_
.new_StatusBar(*args
, **kwargs
)
760 self
.this
= newobj
.this
763 self
._setOORInfo
(self
)
765 def Create(*args
, **kwargs
):
766 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
767 return _windows_
.StatusBar_Create(*args
, **kwargs
)
769 def SetFieldsCount(*args
, **kwargs
):
770 """SetFieldsCount(self, int number=1)"""
771 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
773 def GetFieldsCount(*args
, **kwargs
):
774 """GetFieldsCount(self) -> int"""
775 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
777 def SetStatusText(*args
, **kwargs
):
778 """SetStatusText(self, String text, int number=0)"""
779 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
781 def GetStatusText(*args
, **kwargs
):
782 """GetStatusText(self, int number=0) -> String"""
783 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
785 def PushStatusText(*args
, **kwargs
):
786 """PushStatusText(self, String text, int number=0)"""
787 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
789 def PopStatusText(*args
, **kwargs
):
790 """PopStatusText(self, int number=0)"""
791 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
793 def SetStatusWidths(*args
, **kwargs
):
794 """SetStatusWidths(self, int widths, int widths_field)"""
795 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
797 def GetFieldRect(*args
, **kwargs
):
798 """GetFieldRect(self, int i) -> Rect"""
799 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
801 def SetMinHeight(*args
, **kwargs
):
802 """SetMinHeight(self, int height)"""
803 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
805 def GetBorderX(*args
, **kwargs
):
806 """GetBorderX(self) -> int"""
807 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
809 def GetBorderY(*args
, **kwargs
):
810 """GetBorderY(self) -> int"""
811 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
813 def GetClassDefaultAttributes(*args
, **kwargs
):
815 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
817 Get the default attributes for this class. This is useful if you want
818 to use the same font or colour in your own control as in a standard
819 control -- which is a much better idea than hard coding specific
820 colours or fonts which might look completely out of place on the
821 user's system, especially if it uses themes.
823 The variant parameter is only relevant under Mac currently and is
824 ignore under other platforms. Under Mac, it will change the size of
825 the returned font. See `wx.Window.SetWindowVariant` for more about
828 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
830 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
832 class StatusBarPtr(StatusBar
):
833 def __init__(self
, this
):
835 if not hasattr(self
,"thisown"): self
.thisown
= 0
836 self
.__class
__ = StatusBar
837 _windows_
.StatusBar_swigregister(StatusBarPtr
)
839 def PreStatusBar(*args
, **kwargs
):
840 """PreStatusBar() -> StatusBar"""
841 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
845 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
847 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
849 Get the default attributes for this class. This is useful if you want
850 to use the same font or colour in your own control as in a standard
851 control -- which is a much better idea than hard coding specific
852 colours or fonts which might look completely out of place on the
853 user's system, especially if it uses themes.
855 The variant parameter is only relevant under Mac currently and is
856 ignore under other platforms. Under Mac, it will change the size of
857 the returned font. See `wx.Window.SetWindowVariant` for more about
860 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
862 #---------------------------------------------------------------------------
864 SP_NOBORDER
= _windows_
.SP_NOBORDER
865 SP_NOSASH
= _windows_
.SP_NOSASH
866 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
867 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
868 SP_3DSASH
= _windows_
.SP_3DSASH
869 SP_3DBORDER
= _windows_
.SP_3DBORDER
870 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
871 SP_BORDER
= _windows_
.SP_BORDER
872 SP_3D
= _windows_
.SP_3D
873 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
874 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
875 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
876 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
877 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
878 class SplitterWindow(_core
.Window
):
880 wx.SplitterWindow manages up to two subwindows or panes, with an
881 optional vertical or horizontal split which can be used with the mouse
885 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
886 def __init__(self
, *args
, **kwargs
):
888 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
889 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
891 Constructor. Creates and shows a SplitterWindow.
893 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
894 newobj
= _windows_
.new_SplitterWindow(*args
, **kwargs
)
895 self
.this
= newobj
.this
898 self
._setOORInfo
(self
)
900 def Create(*args
, **kwargs
):
902 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
903 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
905 Create the GUI part of the SplitterWindow for the 2-phase create.
907 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
909 def GetWindow1(*args
, **kwargs
):
911 GetWindow1(self) -> Window
913 Gets the only or left/top pane.
915 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
917 def GetWindow2(*args
, **kwargs
):
919 GetWindow2(self) -> Window
921 Gets the right/bottom pane.
923 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
925 def SetSplitMode(*args
, **kwargs
):
927 SetSplitMode(self, int mode)
929 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
930 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
933 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
935 def GetSplitMode(*args
, **kwargs
):
937 GetSplitMode(self) -> int
941 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
943 def Initialize(*args
, **kwargs
):
945 Initialize(self, Window window)
947 Initializes the splitter window to have one pane. This should be
948 called if you wish to initially view only a single pane in the
951 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
953 def SplitVertically(*args
, **kwargs
):
955 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
957 Initializes the left and right panes of the splitter window.
959 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
961 def SplitHorizontally(*args
, **kwargs
):
963 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
965 Initializes the top and bottom panes of the splitter window.
967 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
969 def Unsplit(*args
, **kwargs
):
971 Unsplit(self, Window toRemove=None) -> bool
973 Unsplits the window. Pass the pane to remove, or None to remove the
974 right or bottom pane. Returns True if successful, False otherwise (the
975 window was not split).
977 This function will not actually delete the pane being
978 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
979 for the desired behaviour. By default, the pane being
980 removed is only hidden.
982 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
984 def ReplaceWindow(*args
, **kwargs
):
986 ReplaceWindow(self, Window winOld, Window winNew) -> bool
988 This function replaces one of the windows managed by the
989 SplitterWindow with another one. It is in general better to use it
990 instead of calling Unsplit() and then resplitting the window back
991 because it will provoke much less flicker. It is valid to call this
992 function whether the splitter has two windows or only one.
994 Both parameters should be non-None and winOld must specify one of the
995 windows managed by the splitter. If the parameters are incorrect or
996 the window couldn't be replaced, False is returned. Otherwise the
997 function will return True, but please notice that it will not Destroy
998 the replaced window and you may wish to do it yourself.
1000 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1002 def UpdateSize(*args
, **kwargs
):
1006 Causes any pending sizing of the sash and child panes to take place
1009 Such resizing normally takes place in idle time, in order to wait for
1010 layout to be completed. However, this can cause unacceptable flicker
1011 as the panes are resized after the window has been shown. To work
1012 around this, you can perform window layout (for example by sending a
1013 size event to the parent window), and then call this function, before
1014 showing the top-level window.
1016 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1018 def IsSplit(*args
, **kwargs
):
1020 IsSplit(self) -> bool
1022 Is the window split?
1024 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1026 def SetSashSize(*args
, **kwargs
):
1028 SetSashSize(self, int width)
1032 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1034 def SetBorderSize(*args
, **kwargs
):
1036 SetBorderSize(self, int width)
1038 Sets the border size
1040 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1042 def GetSashSize(*args
, **kwargs
):
1044 GetSashSize(self) -> int
1048 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1050 def GetBorderSize(*args
, **kwargs
):
1052 GetBorderSize(self) -> int
1054 Gets the border size
1056 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1058 def SetSashPosition(*args
, **kwargs
):
1060 SetSashPosition(self, int position, bool redraw=True)
1062 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1063 are resized and the sash and border are redrawn.
1065 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1067 def GetSashPosition(*args
, **kwargs
):
1069 GetSashPosition(self) -> int
1071 Returns the surrent sash position.
1073 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1075 def SetMinimumPaneSize(*args
, **kwargs
):
1077 SetMinimumPaneSize(self, int min)
1079 Sets the minimum pane size in pixels.
1081 The default minimum pane size is zero, which means that either pane
1082 can be reduced to zero by dragging the sash, thus removing one of the
1083 panes. To prevent this behaviour (and veto out-of-range sash
1084 dragging), set a minimum size, for example 20 pixels. If the
1085 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1086 the window may be unsplit even if minimum size is non-zero.
1088 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1090 def GetMinimumPaneSize(*args
, **kwargs
):
1092 GetMinimumPaneSize(self) -> int
1094 Gets the minimum pane size in pixels.
1096 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1098 def SashHitTest(*args
, **kwargs
):
1100 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1102 Tests for x, y over the sash
1104 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1106 def SizeWindows(*args
, **kwargs
):
1112 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1114 def SetNeedUpdating(*args
, **kwargs
):
1115 """SetNeedUpdating(self, bool needUpdating)"""
1116 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1118 def GetNeedUpdating(*args
, **kwargs
):
1119 """GetNeedUpdating(self) -> bool"""
1120 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1122 def GetClassDefaultAttributes(*args
, **kwargs
):
1124 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1126 Get the default attributes for this class. This is useful if you want
1127 to use the same font or colour in your own control as in a standard
1128 control -- which is a much better idea than hard coding specific
1129 colours or fonts which might look completely out of place on the
1130 user's system, especially if it uses themes.
1132 The variant parameter is only relevant under Mac currently and is
1133 ignore under other platforms. Under Mac, it will change the size of
1134 the returned font. See `wx.Window.SetWindowVariant` for more about
1137 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1139 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1141 class SplitterWindowPtr(SplitterWindow
):
1142 def __init__(self
, this
):
1144 if not hasattr(self
,"thisown"): self
.thisown
= 0
1145 self
.__class
__ = SplitterWindow
1146 _windows_
.SplitterWindow_swigregister(SplitterWindowPtr
)
1147 SplitterNameStr
= cvar
.SplitterNameStr
1149 def PreSplitterWindow(*args
, **kwargs
):
1151 PreSplitterWindow() -> SplitterWindow
1153 Precreate a SplitterWindow for 2-phase creation.
1155 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1159 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1161 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1163 Get the default attributes for this class. This is useful if you want
1164 to use the same font or colour in your own control as in a standard
1165 control -- which is a much better idea than hard coding specific
1166 colours or fonts which might look completely out of place on the
1167 user's system, especially if it uses themes.
1169 The variant parameter is only relevant under Mac currently and is
1170 ignore under other platforms. Under Mac, it will change the size of
1171 the returned font. See `wx.Window.SetWindowVariant` for more about
1174 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1176 class SplitterEvent(_core
.NotifyEvent
):
1177 """This class represents the events generated by a splitter control."""
1179 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1180 def __init__(self
, *args
, **kwargs
):
1182 __init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1184 This class represents the events generated by a splitter control.
1186 newobj
= _windows_
.new_SplitterEvent(*args
, **kwargs
)
1187 self
.this
= newobj
.this
1190 def SetSashPosition(*args
, **kwargs
):
1192 SetSashPosition(self, int pos)
1194 This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1195 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1196 events, sets the the new sash position. In the case of _CHANGING
1197 events, sets the new tracking bar position so visual feedback during
1198 dragging will represent that change that will actually take place. Set
1199 to -1 from the event handler code to prevent repositioning.
1201 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1203 def GetSashPosition(*args
, **kwargs
):
1205 GetSashPosition(self) -> int
1207 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1208 and EVT_SPLITTER_SASH_POS_CHANGED events.
1210 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1212 def GetWindowBeingRemoved(*args
, **kwargs
):
1214 GetWindowBeingRemoved(self) -> Window
1216 Returns a pointer to the window being removed when a splitter window
1219 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1221 def GetX(*args
, **kwargs
):
1225 Returns the x coordinate of the double-click point in a
1226 EVT_SPLITTER_DCLICK event.
1228 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1230 def GetY(*args
, **kwargs
):
1234 Returns the y coordinate of the double-click point in a
1235 EVT_SPLITTER_DCLICK event.
1237 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1240 class SplitterEventPtr(SplitterEvent
):
1241 def __init__(self
, this
):
1243 if not hasattr(self
,"thisown"): self
.thisown
= 0
1244 self
.__class
__ = SplitterEvent
1245 _windows_
.SplitterEvent_swigregister(SplitterEventPtr
)
1247 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1248 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1249 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1250 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1251 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1252 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1253 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1254 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1255 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1257 #---------------------------------------------------------------------------
1259 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1260 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1261 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1262 SW_NOBORDER
= _windows_
.SW_NOBORDER
1263 SW_BORDER
= _windows_
.SW_BORDER
1264 SW_3DSASH
= _windows_
.SW_3DSASH
1265 SW_3DBORDER
= _windows_
.SW_3DBORDER
1266 SW_3D
= _windows_
.SW_3D
1267 SASH_TOP
= _windows_
.SASH_TOP
1268 SASH_RIGHT
= _windows_
.SASH_RIGHT
1269 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1270 SASH_LEFT
= _windows_
.SASH_LEFT
1271 SASH_NONE
= _windows_
.SASH_NONE
1272 class SashWindow(_core
.Window
):
1274 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1275 def __init__(self
, *args
, **kwargs
):
1277 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1278 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1279 String name=SashNameStr) -> SashWindow
1281 newobj
= _windows_
.new_SashWindow(*args
, **kwargs
)
1282 self
.this
= newobj
.this
1285 self
._setOORInfo
(self
)
1287 def Create(*args
, **kwargs
):
1289 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1290 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1291 String name=SashNameStr) -> bool
1293 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1295 def SetSashVisible(*args
, **kwargs
):
1296 """SetSashVisible(self, int edge, bool sash)"""
1297 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1299 def GetSashVisible(*args
, **kwargs
):
1300 """GetSashVisible(self, int edge) -> bool"""
1301 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1303 def SetSashBorder(*args
, **kwargs
):
1304 """SetSashBorder(self, int edge, bool border)"""
1305 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1307 def HasBorder(*args
, **kwargs
):
1308 """HasBorder(self, int edge) -> bool"""
1309 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1311 def GetEdgeMargin(*args
, **kwargs
):
1312 """GetEdgeMargin(self, int edge) -> int"""
1313 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1315 def SetDefaultBorderSize(*args
, **kwargs
):
1316 """SetDefaultBorderSize(self, int width)"""
1317 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1319 def GetDefaultBorderSize(*args
, **kwargs
):
1320 """GetDefaultBorderSize(self) -> int"""
1321 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1323 def SetExtraBorderSize(*args
, **kwargs
):
1324 """SetExtraBorderSize(self, int width)"""
1325 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1327 def GetExtraBorderSize(*args
, **kwargs
):
1328 """GetExtraBorderSize(self) -> int"""
1329 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1331 def SetMinimumSizeX(*args
, **kwargs
):
1332 """SetMinimumSizeX(self, int min)"""
1333 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1335 def SetMinimumSizeY(*args
, **kwargs
):
1336 """SetMinimumSizeY(self, int min)"""
1337 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1339 def GetMinimumSizeX(*args
, **kwargs
):
1340 """GetMinimumSizeX(self) -> int"""
1341 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1343 def GetMinimumSizeY(*args
, **kwargs
):
1344 """GetMinimumSizeY(self) -> int"""
1345 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1347 def SetMaximumSizeX(*args
, **kwargs
):
1348 """SetMaximumSizeX(self, int max)"""
1349 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1351 def SetMaximumSizeY(*args
, **kwargs
):
1352 """SetMaximumSizeY(self, int max)"""
1353 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1355 def GetMaximumSizeX(*args
, **kwargs
):
1356 """GetMaximumSizeX(self) -> int"""
1357 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1359 def GetMaximumSizeY(*args
, **kwargs
):
1360 """GetMaximumSizeY(self) -> int"""
1361 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1363 def SashHitTest(*args
, **kwargs
):
1364 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1365 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1367 def SizeWindows(*args
, **kwargs
):
1368 """SizeWindows(self)"""
1369 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1372 class SashWindowPtr(SashWindow
):
1373 def __init__(self
, this
):
1375 if not hasattr(self
,"thisown"): self
.thisown
= 0
1376 self
.__class
__ = SashWindow
1377 _windows_
.SashWindow_swigregister(SashWindowPtr
)
1378 SashNameStr
= cvar
.SashNameStr
1379 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1381 def PreSashWindow(*args
, **kwargs
):
1382 """PreSashWindow() -> SashWindow"""
1383 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1387 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1388 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1389 class SashEvent(_core
.CommandEvent
):
1391 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1392 def __init__(self
, *args
, **kwargs
):
1393 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1394 newobj
= _windows_
.new_SashEvent(*args
, **kwargs
)
1395 self
.this
= newobj
.this
1398 def SetEdge(*args
, **kwargs
):
1399 """SetEdge(self, int edge)"""
1400 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1402 def GetEdge(*args
, **kwargs
):
1403 """GetEdge(self) -> int"""
1404 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1406 def SetDragRect(*args
, **kwargs
):
1407 """SetDragRect(self, Rect rect)"""
1408 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1410 def GetDragRect(*args
, **kwargs
):
1411 """GetDragRect(self) -> Rect"""
1412 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1414 def SetDragStatus(*args
, **kwargs
):
1415 """SetDragStatus(self, int status)"""
1416 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1418 def GetDragStatus(*args
, **kwargs
):
1419 """GetDragStatus(self) -> int"""
1420 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1423 class SashEventPtr(SashEvent
):
1424 def __init__(self
, this
):
1426 if not hasattr(self
,"thisown"): self
.thisown
= 0
1427 self
.__class
__ = SashEvent
1428 _windows_
.SashEvent_swigregister(SashEventPtr
)
1430 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1431 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1432 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1434 #---------------------------------------------------------------------------
1436 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1437 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1438 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1439 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1440 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1441 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1442 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1443 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1444 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1445 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1446 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1447 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1448 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1449 class QueryLayoutInfoEvent(_core
.Event
):
1451 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1452 def __init__(self
, *args
, **kwargs
):
1453 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1454 newobj
= _windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
)
1455 self
.this
= newobj
.this
1458 def SetRequestedLength(*args
, **kwargs
):
1459 """SetRequestedLength(self, int length)"""
1460 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1462 def GetRequestedLength(*args
, **kwargs
):
1463 """GetRequestedLength(self) -> int"""
1464 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1466 def SetFlags(*args
, **kwargs
):
1467 """SetFlags(self, int flags)"""
1468 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1470 def GetFlags(*args
, **kwargs
):
1471 """GetFlags(self) -> int"""
1472 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1474 def SetSize(*args
, **kwargs
):
1475 """SetSize(self, Size size)"""
1476 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1478 def GetSize(*args
, **kwargs
):
1479 """GetSize(self) -> Size"""
1480 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1482 def SetOrientation(*args
, **kwargs
):
1483 """SetOrientation(self, int orient)"""
1484 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1486 def GetOrientation(*args
, **kwargs
):
1487 """GetOrientation(self) -> int"""
1488 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1490 def SetAlignment(*args
, **kwargs
):
1491 """SetAlignment(self, int align)"""
1492 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1494 def GetAlignment(*args
, **kwargs
):
1495 """GetAlignment(self) -> int"""
1496 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1499 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent
):
1500 def __init__(self
, this
):
1502 if not hasattr(self
,"thisown"): self
.thisown
= 0
1503 self
.__class
__ = QueryLayoutInfoEvent
1504 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr
)
1506 class CalculateLayoutEvent(_core
.Event
):
1508 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1509 def __init__(self
, *args
, **kwargs
):
1510 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1511 newobj
= _windows_
.new_CalculateLayoutEvent(*args
, **kwargs
)
1512 self
.this
= newobj
.this
1515 def SetFlags(*args
, **kwargs
):
1516 """SetFlags(self, int flags)"""
1517 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1519 def GetFlags(*args
, **kwargs
):
1520 """GetFlags(self) -> int"""
1521 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1523 def SetRect(*args
, **kwargs
):
1524 """SetRect(self, Rect rect)"""
1525 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1527 def GetRect(*args
, **kwargs
):
1528 """GetRect(self) -> Rect"""
1529 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1532 class CalculateLayoutEventPtr(CalculateLayoutEvent
):
1533 def __init__(self
, this
):
1535 if not hasattr(self
,"thisown"): self
.thisown
= 0
1536 self
.__class
__ = CalculateLayoutEvent
1537 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr
)
1539 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1540 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1542 class SashLayoutWindow(SashWindow
):
1544 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1545 def __init__(self
, *args
, **kwargs
):
1547 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1548 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1549 String name=SashLayoutNameStr) -> SashLayoutWindow
1551 newobj
= _windows_
.new_SashLayoutWindow(*args
, **kwargs
)
1552 self
.this
= newobj
.this
1555 self
._setOORInfo
(self
)
1557 def Create(*args
, **kwargs
):
1559 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1560 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1561 String name=SashLayoutNameStr) -> bool
1563 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1565 def GetAlignment(*args
, **kwargs
):
1566 """GetAlignment(self) -> int"""
1567 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1569 def GetOrientation(*args
, **kwargs
):
1570 """GetOrientation(self) -> int"""
1571 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1573 def SetAlignment(*args
, **kwargs
):
1574 """SetAlignment(self, int alignment)"""
1575 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1577 def SetDefaultSize(*args
, **kwargs
):
1578 """SetDefaultSize(self, Size size)"""
1579 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1581 def SetOrientation(*args
, **kwargs
):
1582 """SetOrientation(self, int orientation)"""
1583 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1586 class SashLayoutWindowPtr(SashLayoutWindow
):
1587 def __init__(self
, this
):
1589 if not hasattr(self
,"thisown"): self
.thisown
= 0
1590 self
.__class
__ = SashLayoutWindow
1591 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindowPtr
)
1593 def PreSashLayoutWindow(*args
, **kwargs
):
1594 """PreSashLayoutWindow() -> SashLayoutWindow"""
1595 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1599 class LayoutAlgorithm(_core
.Object
):
1601 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1602 def __init__(self
, *args
, **kwargs
):
1603 """__init__(self) -> LayoutAlgorithm"""
1604 newobj
= _windows_
.new_LayoutAlgorithm(*args
, **kwargs
)
1605 self
.this
= newobj
.this
1608 def __del__(self
, destroy
=_windows_
.delete_LayoutAlgorithm
):
1611 if self
.thisown
: destroy(self
)
1614 def LayoutMDIFrame(*args
, **kwargs
):
1615 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1616 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1618 def LayoutFrame(*args
, **kwargs
):
1619 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1620 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1622 def LayoutWindow(*args
, **kwargs
):
1623 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1624 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1627 class LayoutAlgorithmPtr(LayoutAlgorithm
):
1628 def __init__(self
, this
):
1630 if not hasattr(self
,"thisown"): self
.thisown
= 0
1631 self
.__class
__ = LayoutAlgorithm
1632 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr
)
1634 #---------------------------------------------------------------------------
1636 class PopupWindow(_core
.Window
):
1638 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1639 def __init__(self
, *args
, **kwargs
):
1640 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1641 newobj
= _windows_
.new_PopupWindow(*args
, **kwargs
)
1642 self
.this
= newobj
.this
1645 self
._setOORInfo
(self
)
1647 def Create(*args
, **kwargs
):
1648 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1649 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1651 def Position(*args
, **kwargs
):
1652 """Position(self, Point ptOrigin, Size size)"""
1653 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1656 class PopupWindowPtr(PopupWindow
):
1657 def __init__(self
, this
):
1659 if not hasattr(self
,"thisown"): self
.thisown
= 0
1660 self
.__class
__ = PopupWindow
1661 _windows_
.PopupWindow_swigregister(PopupWindowPtr
)
1663 def PrePopupWindow(*args
, **kwargs
):
1664 """PrePopupWindow() -> PopupWindow"""
1665 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1669 #---------------------------------------------------------------------------
1671 class PopupTransientWindow(PopupWindow
):
1673 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1674 def __init__(self
, *args
, **kwargs
):
1675 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1676 newobj
= _windows_
.new_PopupTransientWindow(*args
, **kwargs
)
1677 self
.this
= newobj
.this
1680 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1682 def _setCallbackInfo(*args
, **kwargs
):
1683 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1684 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1686 def Popup(*args
, **kwargs
):
1687 """Popup(self, Window focus=None)"""
1688 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1690 def Dismiss(*args
, **kwargs
):
1692 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1695 class PopupTransientWindowPtr(PopupTransientWindow
):
1696 def __init__(self
, this
):
1698 if not hasattr(self
,"thisown"): self
.thisown
= 0
1699 self
.__class
__ = PopupTransientWindow
1700 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindowPtr
)
1702 def PrePopupTransientWindow(*args
, **kwargs
):
1703 """PrePopupTransientWindow() -> PopupTransientWindow"""
1704 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1708 #---------------------------------------------------------------------------
1710 class TipWindow(PopupTransientWindow
):
1712 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1713 def __init__(self
, *args
, **kwargs
):
1714 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1715 newobj
= _windows_
.new_TipWindow(*args
, **kwargs
)
1716 self
.this
= newobj
.this
1719 self
._setOORInfo
(self
)
1721 def SetBoundingRect(*args
, **kwargs
):
1722 """SetBoundingRect(self, Rect rectBound)"""
1723 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1725 def Close(*args
, **kwargs
):
1727 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1730 class TipWindowPtr(TipWindow
):
1731 def __init__(self
, this
):
1733 if not hasattr(self
,"thisown"): self
.thisown
= 0
1734 self
.__class
__ = TipWindow
1735 _windows_
.TipWindow_swigregister(TipWindowPtr
)
1737 #---------------------------------------------------------------------------
1739 class VScrolledWindow(Panel
):
1741 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1742 def __init__(self
, *args
, **kwargs
):
1744 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1745 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1747 newobj
= _windows_
.new_VScrolledWindow(*args
, **kwargs
)
1748 self
.this
= newobj
.this
1751 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1753 def _setCallbackInfo(*args
, **kwargs
):
1754 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1755 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1757 def Create(*args
, **kwargs
):
1759 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1760 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1762 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1764 def SetLineCount(*args
, **kwargs
):
1765 """SetLineCount(self, size_t count)"""
1766 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1768 def ScrollToLine(*args
, **kwargs
):
1769 """ScrollToLine(self, size_t line) -> bool"""
1770 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1772 def ScrollLines(*args
, **kwargs
):
1773 """ScrollLines(self, int lines) -> bool"""
1774 return _windows_
.VScrolledWindow_ScrollLines(*args
, **kwargs
)
1776 def ScrollPages(*args
, **kwargs
):
1778 ScrollPages(self, int pages) -> bool
1780 If the platform and window class supports it, scrolls the window by
1781 the given number of pages down, if pages is positive, or up if pages
1782 is negative. Returns True if the window was scrolled, False if it was
1783 already on top/bottom and nothing was done.
1785 return _windows_
.VScrolledWindow_ScrollPages(*args
, **kwargs
)
1787 def RefreshLine(*args
, **kwargs
):
1788 """RefreshLine(self, size_t line)"""
1789 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1791 def RefreshLines(*args
, **kwargs
):
1792 """RefreshLines(self, size_t from, size_t to)"""
1793 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1795 def HitTestXT(*args
, **kwargs
):
1796 """HitTestXT(self, int x, int y) -> int"""
1797 return _windows_
.VScrolledWindow_HitTestXT(*args
, **kwargs
)
1799 def HitTest(*args
, **kwargs
):
1800 """HitTest(self, Point pt) -> int"""
1801 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1803 def RefreshAll(*args
, **kwargs
):
1804 """RefreshAll(self)"""
1805 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1807 def GetLineCount(*args
, **kwargs
):
1808 """GetLineCount(self) -> size_t"""
1809 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1811 def GetFirstVisibleLine(*args
, **kwargs
):
1812 """GetFirstVisibleLine(self) -> size_t"""
1813 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1815 def GetLastVisibleLine(*args
, **kwargs
):
1816 """GetLastVisibleLine(self) -> size_t"""
1817 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1819 def IsVisible(*args
, **kwargs
):
1820 """IsVisible(self, size_t line) -> bool"""
1821 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1824 class VScrolledWindowPtr(VScrolledWindow
):
1825 def __init__(self
, this
):
1827 if not hasattr(self
,"thisown"): self
.thisown
= 0
1828 self
.__class
__ = VScrolledWindow
1829 _windows_
.VScrolledWindow_swigregister(VScrolledWindowPtr
)
1831 def PreVScrolledWindow(*args
, **kwargs
):
1832 """PreVScrolledWindow() -> VScrolledWindow"""
1833 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1837 class VListBox(VScrolledWindow
):
1839 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1840 def __init__(self
, *args
, **kwargs
):
1842 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1843 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1845 newobj
= _windows_
.new_VListBox(*args
, **kwargs
)
1846 self
.this
= newobj
.this
1849 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1851 def _setCallbackInfo(*args
, **kwargs
):
1852 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1853 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1855 def Create(*args
, **kwargs
):
1857 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1858 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1860 return _windows_
.VListBox_Create(*args
, **kwargs
)
1862 def GetItemCount(*args
, **kwargs
):
1863 """GetItemCount(self) -> size_t"""
1864 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1866 def HasMultipleSelection(*args
, **kwargs
):
1867 """HasMultipleSelection(self) -> bool"""
1868 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1870 def GetSelection(*args
, **kwargs
):
1871 """GetSelection(self) -> int"""
1872 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1874 def IsCurrent(*args
, **kwargs
):
1875 """IsCurrent(self, size_t item) -> bool"""
1876 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1878 def IsSelected(*args
, **kwargs
):
1879 """IsSelected(self, size_t item) -> bool"""
1880 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1882 def GetSelectedCount(*args
, **kwargs
):
1883 """GetSelectedCount(self) -> size_t"""
1884 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1886 def GetFirstSelected(*args
, **kwargs
):
1887 """GetFirstSelected(self) -> PyObject"""
1888 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1890 def GetNextSelected(*args
, **kwargs
):
1891 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1892 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1894 def GetMargins(*args
, **kwargs
):
1895 """GetMargins(self) -> Point"""
1896 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1898 def GetSelectionBackground(*args
, **kwargs
):
1899 """GetSelectionBackground(self) -> Colour"""
1900 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1902 def SetItemCount(*args
, **kwargs
):
1903 """SetItemCount(self, size_t count)"""
1904 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1906 def Clear(*args
, **kwargs
):
1908 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1910 def SetSelection(*args
, **kwargs
):
1911 """SetSelection(self, int selection)"""
1912 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1914 def Select(*args
, **kwargs
):
1915 """Select(self, size_t item, bool select=True) -> bool"""
1916 return _windows_
.VListBox_Select(*args
, **kwargs
)
1918 def SelectRange(*args
, **kwargs
):
1919 """SelectRange(self, size_t from, size_t to) -> bool"""
1920 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1922 def Toggle(*args
, **kwargs
):
1923 """Toggle(self, size_t item)"""
1924 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1926 def SelectAll(*args
, **kwargs
):
1927 """SelectAll(self) -> bool"""
1928 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1930 def DeselectAll(*args
, **kwargs
):
1931 """DeselectAll(self) -> bool"""
1932 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1934 def SetMargins(*args
, **kwargs
):
1935 """SetMargins(self, Point pt)"""
1936 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1938 def SetMarginsXY(*args
, **kwargs
):
1939 """SetMarginsXY(self, int x, int y)"""
1940 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1942 def SetSelectionBackground(*args
, **kwargs
):
1943 """SetSelectionBackground(self, Colour col)"""
1944 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1947 class VListBoxPtr(VListBox
):
1948 def __init__(self
, this
):
1950 if not hasattr(self
,"thisown"): self
.thisown
= 0
1951 self
.__class
__ = VListBox
1952 _windows_
.VListBox_swigregister(VListBoxPtr
)
1953 VListBoxNameStr
= cvar
.VListBoxNameStr
1955 def PreVListBox(*args
, **kwargs
):
1956 """PreVListBox() -> VListBox"""
1957 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1961 class HtmlListBox(VListBox
):
1963 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1964 def __init__(self
, *args
, **kwargs
):
1966 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1967 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1969 newobj
= _windows_
.new_HtmlListBox(*args
, **kwargs
)
1970 self
.this
= newobj
.this
1973 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1975 def _setCallbackInfo(*args
, **kwargs
):
1976 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1977 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1979 def Create(*args
, **kwargs
):
1981 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1982 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1984 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1986 def RefreshAll(*args
, **kwargs
):
1987 """RefreshAll(self)"""
1988 return _windows_
.HtmlListBox_RefreshAll(*args
, **kwargs
)
1990 def SetItemCount(*args
, **kwargs
):
1991 """SetItemCount(self, size_t count)"""
1992 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
1994 def GetFileSystem(*args
, **kwargs
):
1995 """GetFileSystem(self) -> FileSystem"""
1996 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
1999 class HtmlListBoxPtr(HtmlListBox
):
2000 def __init__(self
, this
):
2002 if not hasattr(self
,"thisown"): self
.thisown
= 0
2003 self
.__class
__ = HtmlListBox
2004 _windows_
.HtmlListBox_swigregister(HtmlListBoxPtr
)
2006 def PreHtmlListBox(*args
, **kwargs
):
2007 """PreHtmlListBox() -> HtmlListBox"""
2008 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
2012 #---------------------------------------------------------------------------
2014 class TaskBarIcon(_core
.EvtHandler
):
2016 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2017 def __init__(self
, *args
, **kwargs
):
2018 """__init__(self) -> TaskBarIcon"""
2019 newobj
= _windows_
.new_TaskBarIcon(*args
, **kwargs
)
2020 self
.this
= newobj
.this
2023 def __del__(self
, destroy
=_windows_
.delete_TaskBarIcon
):
2026 if self
.thisown
: destroy(self
)
2029 def Destroy(*args
, **kwargs
):
2033 Deletes the C++ object this Python object is a proxy for.
2035 return _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2037 def IsOk(*args
, **kwargs
):
2038 """IsOk(self) -> bool"""
2039 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
2041 def __nonzero__(self
): return self
.IsOk()
2042 def IsIconInstalled(*args
, **kwargs
):
2043 """IsIconInstalled(self) -> bool"""
2044 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
2046 def SetIcon(*args
, **kwargs
):
2047 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2048 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2050 def RemoveIcon(*args
, **kwargs
):
2051 """RemoveIcon(self) -> bool"""
2052 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2054 def PopupMenu(*args
, **kwargs
):
2055 """PopupMenu(self, Menu menu) -> bool"""
2056 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2059 class TaskBarIconPtr(TaskBarIcon
):
2060 def __init__(self
, this
):
2062 if not hasattr(self
,"thisown"): self
.thisown
= 0
2063 self
.__class
__ = TaskBarIcon
2064 _windows_
.TaskBarIcon_swigregister(TaskBarIconPtr
)
2066 class TaskBarIconEvent(_core
.Event
):
2068 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2069 def __init__(self
, *args
, **kwargs
):
2070 """__init__(self, wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
2071 newobj
= _windows_
.new_TaskBarIconEvent(*args
, **kwargs
)
2072 self
.this
= newobj
.this
2076 class TaskBarIconEventPtr(TaskBarIconEvent
):
2077 def __init__(self
, this
):
2079 if not hasattr(self
,"thisown"): self
.thisown
= 0
2080 self
.__class
__ = TaskBarIconEvent
2081 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEventPtr
)
2083 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2084 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2085 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2086 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2087 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2088 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2089 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2090 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2091 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2092 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2093 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2094 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2095 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2096 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2098 #---------------------------------------------------------------------------
2100 class ColourData(_core
.Object
):
2102 This class holds a variety of information related to the colour
2103 chooser dialog, used to transfer settings and results to and from the
2107 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2108 def __init__(self
, *args
, **kwargs
):
2110 __init__(self) -> ColourData
2112 Constructor, sets default values.
2114 newobj
= _windows_
.new_ColourData(*args
, **kwargs
)
2115 self
.this
= newobj
.this
2118 def __del__(self
, destroy
=_windows_
.delete_ColourData
):
2121 if self
.thisown
: destroy(self
)
2124 def GetChooseFull(*args
, **kwargs
):
2126 GetChooseFull(self) -> bool
2128 Under Windows, determines whether the Windows colour dialog will
2129 display the full dialog with custom colour selection controls. Has no
2130 meaning under other platforms. The default value is true.
2132 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2134 def GetColour(*args
, **kwargs
):
2136 GetColour(self) -> Colour
2138 Gets the colour (pre)selected by the dialog.
2140 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2142 def GetCustomColour(*args
, **kwargs
):
2144 GetCustomColour(self, int i) -> Colour
2146 Gets the i'th custom colour associated with the colour dialog. i
2147 should be an integer between 0 and 15. The default custom colours are
2148 all invalid colours.
2150 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2152 def SetChooseFull(*args
, **kwargs
):
2154 SetChooseFull(self, int flag)
2156 Under Windows, tells the Windows colour dialog to display the full
2157 dialog with custom colour selection controls. Under other platforms,
2158 has no effect. The default value is true.
2160 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2162 def SetColour(*args
, **kwargs
):
2164 SetColour(self, Colour colour)
2166 Sets the default colour for the colour dialog. The default colour is
2169 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2171 def SetCustomColour(*args
, **kwargs
):
2173 SetCustomColour(self, int i, Colour colour)
2175 Sets the i'th custom colour for the colour dialog. i should be an
2176 integer between 0 and 15. The default custom colours are all invalid colours.
2178 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2181 class ColourDataPtr(ColourData
):
2182 def __init__(self
, this
):
2184 if not hasattr(self
,"thisown"): self
.thisown
= 0
2185 self
.__class
__ = ColourData
2186 _windows_
.ColourData_swigregister(ColourDataPtr
)
2187 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2188 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2189 DirDialogNameStr
= cvar
.DirDialogNameStr
2190 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2191 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2192 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2194 class ColourDialog(Dialog
):
2195 """This class represents the colour chooser dialog."""
2197 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2198 def __init__(self
, *args
, **kwargs
):
2200 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2202 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2203 which will be copied to the colour dialog's internal ColourData
2206 newobj
= _windows_
.new_ColourDialog(*args
, **kwargs
)
2207 self
.this
= newobj
.this
2210 self
._setOORInfo
(self
)
2212 def GetColourData(*args
, **kwargs
):
2214 GetColourData(self) -> ColourData
2216 Returns a reference to the `wx.ColourData` used by the dialog.
2218 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2221 class ColourDialogPtr(ColourDialog
):
2222 def __init__(self
, this
):
2224 if not hasattr(self
,"thisown"): self
.thisown
= 0
2225 self
.__class
__ = ColourDialog
2226 _windows_
.ColourDialog_swigregister(ColourDialogPtr
)
2228 class DirDialog(Dialog
):
2230 wx.DirDialog allows the user to select a directory by browising the
2234 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2235 def __init__(self
, *args
, **kwargs
):
2237 __init__(self, Window parent, String message=DirSelectorPromptStr,
2238 String defaultPath=EmptyString, long style=0,
2239 Point pos=DefaultPosition, Size size=DefaultSize,
2240 String name=DirDialogNameStr) -> DirDialog
2242 Constructor. Use ShowModal method to show the dialog.
2244 newobj
= _windows_
.new_DirDialog(*args
, **kwargs
)
2245 self
.this
= newobj
.this
2248 self
._setOORInfo
(self
)
2250 def GetPath(*args
, **kwargs
):
2252 GetPath(self) -> String
2254 Returns the default or user-selected path.
2256 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2258 def GetMessage(*args
, **kwargs
):
2260 GetMessage(self) -> String
2262 Returns the message that will be displayed on the dialog.
2264 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2266 def GetStyle(*args
, **kwargs
):
2268 GetStyle(self) -> long
2270 Returns the dialog style.
2272 return _windows_
.DirDialog_GetStyle(*args
, **kwargs
)
2274 def SetMessage(*args
, **kwargs
):
2276 SetMessage(self, String message)
2278 Sets the message that will be displayed on the dialog.
2280 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2282 def SetPath(*args
, **kwargs
):
2284 SetPath(self, String path)
2286 Sets the default path.
2288 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2291 class DirDialogPtr(DirDialog
):
2292 def __init__(self
, this
):
2294 if not hasattr(self
,"thisown"): self
.thisown
= 0
2295 self
.__class
__ = DirDialog
2296 _windows_
.DirDialog_swigregister(DirDialogPtr
)
2298 class FileDialog(Dialog
):
2300 wx.FileDialog allows the user to select one or more files from the
2304 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2305 def __init__(self
, *args
, **kwargs
):
2307 __init__(self, Window parent, String message=FileSelectorPromptStr,
2308 String defaultDir=EmptyString, String defaultFile=EmptyString,
2309 String wildcard=FileSelectorDefaultWildcardStr,
2310 long style=0, Point pos=DefaultPosition) -> FileDialog
2312 Constructor. Use ShowModal method to show the dialog.
2314 newobj
= _windows_
.new_FileDialog(*args
, **kwargs
)
2315 self
.this
= newobj
.this
2318 self
._setOORInfo
(self
)
2320 def SetMessage(*args
, **kwargs
):
2322 SetMessage(self, String message)
2324 Sets the message that will be displayed on the dialog.
2326 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2328 def SetPath(*args
, **kwargs
):
2330 SetPath(self, String path)
2332 Sets the path (the combined directory and filename that will be
2333 returned when the dialog is dismissed).
2335 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2337 def SetDirectory(*args
, **kwargs
):
2339 SetDirectory(self, String dir)
2341 Sets the default directory.
2343 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2345 def SetFilename(*args
, **kwargs
):
2347 SetFilename(self, String name)
2349 Sets the default filename.
2351 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2353 def SetWildcard(*args
, **kwargs
):
2355 SetWildcard(self, String wildCard)
2357 Sets the wildcard, which can contain multiple file types, for
2360 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2363 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2365 def SetStyle(*args
, **kwargs
):
2367 SetStyle(self, long style)
2369 Sets the dialog style.
2371 return _windows_
.FileDialog_SetStyle(*args
, **kwargs
)
2373 def SetFilterIndex(*args
, **kwargs
):
2375 SetFilterIndex(self, int filterIndex)
2377 Sets the default filter index, starting from zero.
2379 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2381 def GetMessage(*args
, **kwargs
):
2383 GetMessage(self) -> String
2385 Returns the message that will be displayed on the dialog.
2387 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2389 def GetPath(*args
, **kwargs
):
2391 GetPath(self) -> String
2393 Returns the full path (directory and filename) of the selected file.
2395 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2397 def GetDirectory(*args
, **kwargs
):
2399 GetDirectory(self) -> String
2401 Returns the default directory.
2403 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2405 def GetFilename(*args
, **kwargs
):
2407 GetFilename(self) -> String
2409 Returns the default filename.
2411 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2413 def GetWildcard(*args
, **kwargs
):
2415 GetWildcard(self) -> String
2417 Returns the file dialog wildcard.
2419 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2421 def GetStyle(*args
, **kwargs
):
2423 GetStyle(self) -> long
2425 Returns the dialog style.
2427 return _windows_
.FileDialog_GetStyle(*args
, **kwargs
)
2429 def GetFilterIndex(*args
, **kwargs
):
2431 GetFilterIndex(self) -> int
2433 Returns the index into the list of filters supplied, optionally, in
2434 the wildcard parameter. Before the dialog is shown, this is the index
2435 which will be used when the dialog is first displayed. After the
2436 dialog is shown, this is the index selected by the user.
2438 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2440 def GetFilenames(*args
, **kwargs
):
2442 GetFilenames(self) -> PyObject
2444 Returns a list of filenames chosen in the dialog. This function
2445 should only be used with the dialogs which have wx.MULTIPLE style, use
2446 GetFilename for the others.
2448 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2450 def GetPaths(*args
, **kwargs
):
2452 GetPaths(self) -> PyObject
2454 Fills the array paths with the full paths of the files chosen. This
2455 function should only be used with the dialogs which have wx.MULTIPLE
2456 style, use GetPath for the others.
2458 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2461 class FileDialogPtr(FileDialog
):
2462 def __init__(self
, this
):
2464 if not hasattr(self
,"thisown"): self
.thisown
= 0
2465 self
.__class
__ = FileDialog
2466 _windows_
.FileDialog_swigregister(FileDialogPtr
)
2468 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2469 class MultiChoiceDialog(Dialog
):
2470 """A simple dialog with a multi selection listbox."""
2472 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2473 def __init__(self
, *args
, **kwargs
):
2475 __init__(Window parent, String message, String caption,
2476 List choices=[], long style=CHOICEDLG_STYLE,
2477 Point pos=DefaultPosition) -> MultiChoiceDialog
2479 Constructor. Use ShowModal method to show the dialog.
2481 newobj
= _windows_
.new_MultiChoiceDialog(*args
, **kwargs
)
2482 self
.this
= newobj
.this
2485 self
._setOORInfo
(self
)
2487 def SetSelections(*args
, **kwargs
):
2489 SetSelections(List selections)
2491 Specify the items in the list that should be selected, using a list of
2494 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2496 def GetSelections(*args
, **kwargs
):
2498 GetSelections() -> [selections]
2500 Returns a list of integers representing the items that are selected.
2502 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2505 class MultiChoiceDialogPtr(MultiChoiceDialog
):
2506 def __init__(self
, this
):
2508 if not hasattr(self
,"thisown"): self
.thisown
= 0
2509 self
.__class
__ = MultiChoiceDialog
2510 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr
)
2512 class SingleChoiceDialog(Dialog
):
2513 """A simple dialog with a single selection listbox."""
2515 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2516 def __init__(self
, *args
, **kwargs
):
2518 __init__(Window parent, String message, String caption,
2519 List choices=[], long style=CHOICEDLG_STYLE,
2520 Point pos=DefaultPosition) -> SingleChoiceDialog
2522 Constructor. Use ShowModal method to show the dialog.
2524 newobj
= _windows_
.new_SingleChoiceDialog(*args
, **kwargs
)
2525 self
.this
= newobj
.this
2528 self
._setOORInfo
(self
)
2530 def GetSelection(*args
, **kwargs
):
2532 GetSelection(self) -> int
2534 Get the index of teh currently selected item.
2536 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2538 def GetStringSelection(*args
, **kwargs
):
2540 GetStringSelection(self) -> String
2542 Returns the string value of the currently selected item
2544 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2546 def SetSelection(*args
, **kwargs
):
2548 SetSelection(self, int sel)
2550 Set the current selected item to sel
2552 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2555 class SingleChoiceDialogPtr(SingleChoiceDialog
):
2556 def __init__(self
, this
):
2558 if not hasattr(self
,"thisown"): self
.thisown
= 0
2559 self
.__class
__ = SingleChoiceDialog
2560 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr
)
2562 class TextEntryDialog(Dialog
):
2563 """A dialog with text control, [ok] and [cancel] buttons"""
2565 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2566 def __init__(self
, *args
, **kwargs
):
2568 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2569 String defaultValue=EmptyString,
2570 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2572 Constructor. Use ShowModal method to show the dialog.
2574 newobj
= _windows_
.new_TextEntryDialog(*args
, **kwargs
)
2575 self
.this
= newobj
.this
2578 self
._setOORInfo
(self
)
2580 def GetValue(*args
, **kwargs
):
2582 GetValue(self) -> String
2584 Returns the text that the user has entered if the user has pressed OK,
2585 or the original value if the user has pressed Cancel.
2587 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2589 def SetValue(*args
, **kwargs
):
2591 SetValue(self, String value)
2593 Sets the default text value.
2595 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2598 class TextEntryDialogPtr(TextEntryDialog
):
2599 def __init__(self
, this
):
2601 if not hasattr(self
,"thisown"): self
.thisown
= 0
2602 self
.__class
__ = TextEntryDialog
2603 _windows_
.TextEntryDialog_swigregister(TextEntryDialogPtr
)
2605 class FontData(_core
.Object
):
2607 This class holds a variety of information related to font dialogs and
2608 is used to transfer settings to and results from a `wx.FontDialog`.
2611 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2612 def __init__(self
, *args
, **kwargs
):
2614 __init__(self) -> FontData
2616 This class holds a variety of information related to font dialogs and
2617 is used to transfer settings to and results from a `wx.FontDialog`.
2619 newobj
= _windows_
.new_FontData(*args
, **kwargs
)
2620 self
.this
= newobj
.this
2623 def __del__(self
, destroy
=_windows_
.delete_FontData
):
2626 if self
.thisown
: destroy(self
)
2629 def EnableEffects(*args
, **kwargs
):
2631 EnableEffects(self, bool enable)
2633 Enables or disables 'effects' under MS Windows only. This refers to
2634 the controls for manipulating colour, strikeout and underline
2635 properties. The default value is true.
2637 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2639 def GetAllowSymbols(*args
, **kwargs
):
2641 GetAllowSymbols(self) -> bool
2643 Under MS Windows, returns a flag determining whether symbol fonts can
2644 be selected. Has no effect on other platforms. The default value is
2647 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2649 def GetColour(*args
, **kwargs
):
2651 GetColour(self) -> Colour
2653 Gets the colour associated with the font dialog. The default value is
2656 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2658 def GetChosenFont(*args
, **kwargs
):
2660 GetChosenFont(self) -> Font
2662 Gets the font chosen by the user.
2664 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2666 def GetEnableEffects(*args
, **kwargs
):
2668 GetEnableEffects(self) -> bool
2670 Determines whether 'effects' are enabled under Windows.
2672 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2674 def GetInitialFont(*args
, **kwargs
):
2676 GetInitialFont(self) -> Font
2678 Gets the font that will be initially used by the font dialog. This
2679 should have previously been set by the application.
2681 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2683 def GetShowHelp(*args
, **kwargs
):
2685 GetShowHelp(self) -> bool
2687 Returns true if the Help button will be shown (Windows only). The
2688 default value is false.
2690 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2692 def SetAllowSymbols(*args
, **kwargs
):
2694 SetAllowSymbols(self, bool allowSymbols)
2696 Under MS Windows, determines whether symbol fonts can be selected. Has
2697 no effect on other platforms. The default value is true.
2699 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2701 def SetChosenFont(*args
, **kwargs
):
2703 SetChosenFont(self, Font font)
2705 Sets the font that will be returned to the user (normally for internal
2708 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2710 def SetColour(*args
, **kwargs
):
2712 SetColour(self, Colour colour)
2714 Sets the colour that will be used for the font foreground colour. The
2715 default colour is black.
2717 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2719 def SetInitialFont(*args
, **kwargs
):
2721 SetInitialFont(self, Font font)
2723 Sets the font that will be initially used by the font dialog.
2725 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2727 def SetRange(*args
, **kwargs
):
2729 SetRange(self, int min, int max)
2731 Sets the valid range for the font point size (Windows only). The
2732 default is 0, 0 (unrestricted range).
2734 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2736 def SetShowHelp(*args
, **kwargs
):
2738 SetShowHelp(self, bool showHelp)
2740 Determines whether the Help button will be displayed in the font
2741 dialog (Windows only). The default value is false.
2743 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2746 class FontDataPtr(FontData
):
2747 def __init__(self
, this
):
2749 if not hasattr(self
,"thisown"): self
.thisown
= 0
2750 self
.__class
__ = FontData
2751 _windows_
.FontData_swigregister(FontDataPtr
)
2753 class FontDialog(Dialog
):
2755 wx.FontDialog allows the user to select a system font and its attributes.
2761 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2762 def __init__(self
, *args
, **kwargs
):
2764 __init__(self, Window parent, FontData data) -> FontDialog
2766 Constructor. Pass a parent window and the `wx.FontData` object to be
2767 used to initialize the dialog controls. Call `ShowModal` to display
2768 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2769 results with via the `wx.FontData` returned by `GetFontData`.
2771 newobj
= _windows_
.new_FontDialog(*args
, **kwargs
)
2772 self
.this
= newobj
.this
2775 self
._setOORInfo
(self
)
2777 def GetFontData(*args
, **kwargs
):
2779 GetFontData(self) -> FontData
2781 Returns a reference to the internal `wx.FontData` used by the
2784 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2787 class FontDialogPtr(FontDialog
):
2788 def __init__(self
, this
):
2790 if not hasattr(self
,"thisown"): self
.thisown
= 0
2791 self
.__class
__ = FontDialog
2792 _windows_
.FontDialog_swigregister(FontDialogPtr
)
2794 class MessageDialog(Dialog
):
2796 This class provides a simple dialog that shows a single or multi-line
2797 message, with a choice of OK, Yes, No and/or Cancel buttons.
2800 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2801 def __init__(self
, *args
, **kwargs
):
2803 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2804 long style=wxOK|wxCANCEL|wxCENTRE,
2805 Point pos=DefaultPosition) -> MessageDialog
2807 Constructor, use `ShowModal` to display the dialog.
2809 newobj
= _windows_
.new_MessageDialog(*args
, **kwargs
)
2810 self
.this
= newobj
.this
2813 self
._setOORInfo
(self
)
2816 class MessageDialogPtr(MessageDialog
):
2817 def __init__(self
, this
):
2819 if not hasattr(self
,"thisown"): self
.thisown
= 0
2820 self
.__class
__ = MessageDialog
2821 _windows_
.MessageDialog_swigregister(MessageDialogPtr
)
2823 class ProgressDialog(Frame
):
2825 A dialog that shows a short message and a progress bar. Optionally, it
2826 can display an ABORT button.
2829 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2830 def __init__(self
, *args
, **kwargs
):
2832 __init__(self, String title, String message, int maximum=100, Window parent=None,
2833 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2835 Constructor. Creates the dialog, displays it and disables user input
2836 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2839 newobj
= _windows_
.new_ProgressDialog(*args
, **kwargs
)
2840 self
.this
= newobj
.this
2843 self
._setOORInfo
(self
)
2845 def Update(*args
, **kwargs
):
2847 Update(self, int value, String newmsg=EmptyString) -> bool
2849 Updates the dialog, setting the progress bar to the new value and, if
2850 given changes the message above it. The value given should be less
2851 than or equal to the maximum value given to the constructor and the
2852 dialog is closed if it is equal to the maximum. Returns true unless
2853 the Cancel button has been pressed.
2855 If false is returned, the application can either immediately destroy
2856 the dialog or ask the user for the confirmation and if the abort is
2857 not confirmed the dialog may be resumed with Resume function.
2859 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2861 def Resume(*args
, **kwargs
):
2865 Can be used to continue with the dialog, after the user had chosen to
2868 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2871 class ProgressDialogPtr(ProgressDialog
):
2872 def __init__(self
, this
):
2874 if not hasattr(self
,"thisown"): self
.thisown
= 0
2875 self
.__class
__ = ProgressDialog
2876 _windows_
.ProgressDialog_swigregister(ProgressDialogPtr
)
2878 FR_DOWN
= _windows_
.FR_DOWN
2879 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2880 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2881 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2882 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2883 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2884 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2885 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2886 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2887 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2888 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2889 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2890 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2891 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2892 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2893 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2894 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2896 # For backwards compatibility. Should they be removed?
2897 EVT_COMMAND_FIND
= EVT_FIND
2898 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2899 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2900 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2901 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2903 class FindDialogEvent(_core
.CommandEvent
):
2904 """Events for the FindReplaceDialog"""
2906 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2907 def __init__(self
, *args
, **kwargs
):
2909 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2911 Events for the FindReplaceDialog
2913 newobj
= _windows_
.new_FindDialogEvent(*args
, **kwargs
)
2914 self
.this
= newobj
.this
2917 def GetFlags(*args
, **kwargs
):
2919 GetFlags(self) -> int
2921 Get the currently selected flags: this is the combination of
2922 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2924 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2926 def GetFindString(*args
, **kwargs
):
2928 GetFindString(self) -> String
2930 Return the string to find (never empty).
2932 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2934 def GetReplaceString(*args
, **kwargs
):
2936 GetReplaceString(self) -> String
2938 Return the string to replace the search string with (only for replace
2939 and replace all events).
2941 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2943 def GetDialog(*args
, **kwargs
):
2945 GetDialog(self) -> FindReplaceDialog
2947 Return the pointer to the dialog which generated this event.
2949 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2951 def SetFlags(*args
, **kwargs
):
2952 """SetFlags(self, int flags)"""
2953 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2955 def SetFindString(*args
, **kwargs
):
2956 """SetFindString(self, String str)"""
2957 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2959 def SetReplaceString(*args
, **kwargs
):
2960 """SetReplaceString(self, String str)"""
2961 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2964 class FindDialogEventPtr(FindDialogEvent
):
2965 def __init__(self
, this
):
2967 if not hasattr(self
,"thisown"): self
.thisown
= 0
2968 self
.__class
__ = FindDialogEvent
2969 _windows_
.FindDialogEvent_swigregister(FindDialogEventPtr
)
2971 class FindReplaceData(_core
.Object
):
2973 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2974 to initialize the dialog with the default values and will keep the
2975 last values from the dialog when it is closed. It is also updated each
2976 time a `wx.FindDialogEvent` is generated so instead of using the
2977 `wx.FindDialogEvent` methods you can also directly query this object.
2979 Note that all SetXXX() methods may only be called before showing the
2980 dialog and calling them has no effect later.
2983 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2984 def __init__(self
, *args
, **kwargs
):
2986 __init__(self, int flags=0) -> FindReplaceData
2988 Constuctor initializes the flags to default value (0).
2990 newobj
= _windows_
.new_FindReplaceData(*args
, **kwargs
)
2991 self
.this
= newobj
.this
2994 def __del__(self
, destroy
=_windows_
.delete_FindReplaceData
):
2997 if self
.thisown
: destroy(self
)
3000 def GetFindString(*args
, **kwargs
):
3002 GetFindString(self) -> String
3004 Get the string to find.
3006 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
3008 def GetReplaceString(*args
, **kwargs
):
3010 GetReplaceString(self) -> String
3012 Get the replacement string.
3014 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
3016 def GetFlags(*args
, **kwargs
):
3018 GetFlags(self) -> int
3020 Get the combination of flag values.
3022 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
3024 def SetFlags(*args
, **kwargs
):
3026 SetFlags(self, int flags)
3028 Set the flags to use to initialize the controls of the dialog.
3030 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
3032 def SetFindString(*args
, **kwargs
):
3034 SetFindString(self, String str)
3036 Set the string to find (used as initial value by the dialog).
3038 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
3040 def SetReplaceString(*args
, **kwargs
):
3042 SetReplaceString(self, String str)
3044 Set the replacement string (used as initial value by the dialog).
3046 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
3049 class FindReplaceDataPtr(FindReplaceData
):
3050 def __init__(self
, this
):
3052 if not hasattr(self
,"thisown"): self
.thisown
= 0
3053 self
.__class
__ = FindReplaceData
3054 _windows_
.FindReplaceData_swigregister(FindReplaceDataPtr
)
3056 class FindReplaceDialog(Dialog
):
3058 wx.FindReplaceDialog is a standard modeless dialog which is used to
3059 allow the user to search for some text (and possibly replace it with
3060 something else). The actual searching is supposed to be done in the
3061 owner window which is the parent of this dialog. Note that it means
3062 that unlike for the other standard dialogs this one must have a parent
3063 window. Also note that there is no way to use this dialog in a modal
3064 way; it is always, by design and implementation, modeless.
3067 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3068 def __init__(self
, *args
, **kwargs
):
3070 __init__(self, Window parent, FindReplaceData data, String title,
3071 int style=0) -> FindReplaceDialog
3073 Create a FindReplaceDialog. The parent and data parameters must be
3074 non-None. Use Show to display the dialog.
3076 newobj
= _windows_
.new_FindReplaceDialog(*args
, **kwargs
)
3077 self
.this
= newobj
.this
3080 self
._setOORInfo
(self
)
3082 def Create(*args
, **kwargs
):
3084 Create(self, Window parent, FindReplaceData data, String title,
3085 int style=0) -> bool
3087 Create the dialog, for 2-phase create.
3089 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3091 def GetData(*args
, **kwargs
):
3093 GetData(self) -> FindReplaceData
3095 Get the FindReplaceData object used by this dialog.
3097 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3099 def SetData(*args
, **kwargs
):
3101 SetData(self, FindReplaceData data)
3103 Set the FindReplaceData object used by this dialog.
3105 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3108 class FindReplaceDialogPtr(FindReplaceDialog
):
3109 def __init__(self
, this
):
3111 if not hasattr(self
,"thisown"): self
.thisown
= 0
3112 self
.__class
__ = FindReplaceDialog
3113 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialogPtr
)
3115 def PreFindReplaceDialog(*args
, **kwargs
):
3117 PreFindReplaceDialog() -> FindReplaceDialog
3119 Precreate a FindReplaceDialog for 2-phase creation
3121 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3125 #---------------------------------------------------------------------------
3127 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3128 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3129 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3130 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3131 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3132 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3133 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3134 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3135 class MDIParentFrame(Frame
):
3137 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3138 def __init__(self
, *args
, **kwargs
):
3140 __init__(self, Window parent, int id=-1, String title=EmptyString,
3141 Point pos=DefaultPosition, Size size=DefaultSize,
3142 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3143 String name=FrameNameStr) -> MDIParentFrame
3145 newobj
= _windows_
.new_MDIParentFrame(*args
, **kwargs
)
3146 self
.this
= newobj
.this
3149 self
._setOORInfo
(self
)
3151 def Create(*args
, **kwargs
):
3153 Create(self, Window parent, int id=-1, String title=EmptyString,
3154 Point pos=DefaultPosition, Size size=DefaultSize,
3155 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3156 String name=FrameNameStr) -> bool
3158 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3160 def ActivateNext(*args
, **kwargs
):
3161 """ActivateNext(self)"""
3162 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3164 def ActivatePrevious(*args
, **kwargs
):
3165 """ActivatePrevious(self)"""
3166 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3168 def ArrangeIcons(*args
, **kwargs
):
3169 """ArrangeIcons(self)"""
3170 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3172 def Cascade(*args
, **kwargs
):
3174 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3176 def GetActiveChild(*args
, **kwargs
):
3177 """GetActiveChild(self) -> MDIChildFrame"""
3178 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3180 def GetClientWindow(*args
, **kwargs
):
3181 """GetClientWindow(self) -> MDIClientWindow"""
3182 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3184 def GetToolBar(*args
, **kwargs
):
3185 """GetToolBar(self) -> Window"""
3186 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3188 def Tile(*args
, **kwargs
):
3190 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3193 class MDIParentFramePtr(MDIParentFrame
):
3194 def __init__(self
, this
):
3196 if not hasattr(self
,"thisown"): self
.thisown
= 0
3197 self
.__class
__ = MDIParentFrame
3198 _windows_
.MDIParentFrame_swigregister(MDIParentFramePtr
)
3200 def PreMDIParentFrame(*args
, **kwargs
):
3201 """PreMDIParentFrame() -> MDIParentFrame"""
3202 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3206 class MDIChildFrame(Frame
):
3208 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3209 def __init__(self
, *args
, **kwargs
):
3211 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3212 Point pos=DefaultPosition, Size size=DefaultSize,
3213 long style=DEFAULT_FRAME_STYLE,
3214 String name=FrameNameStr) -> MDIChildFrame
3216 newobj
= _windows_
.new_MDIChildFrame(*args
, **kwargs
)
3217 self
.this
= newobj
.this
3220 self
._setOORInfo
(self
)
3222 def Create(*args
, **kwargs
):
3224 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3225 Point pos=DefaultPosition, Size size=DefaultSize,
3226 long style=DEFAULT_FRAME_STYLE,
3227 String name=FrameNameStr) -> bool
3229 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3231 def Activate(*args
, **kwargs
):
3232 """Activate(self)"""
3233 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3235 def Maximize(*args
, **kwargs
):
3236 """Maximize(self, bool maximize)"""
3237 return _windows_
.MDIChildFrame_Maximize(*args
, **kwargs
)
3239 def Restore(*args
, **kwargs
):
3241 return _windows_
.MDIChildFrame_Restore(*args
, **kwargs
)
3244 class MDIChildFramePtr(MDIChildFrame
):
3245 def __init__(self
, this
):
3247 if not hasattr(self
,"thisown"): self
.thisown
= 0
3248 self
.__class
__ = MDIChildFrame
3249 _windows_
.MDIChildFrame_swigregister(MDIChildFramePtr
)
3251 def PreMDIChildFrame(*args
, **kwargs
):
3252 """PreMDIChildFrame() -> MDIChildFrame"""
3253 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3257 class MDIClientWindow(_core
.Window
):
3259 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3260 def __init__(self
, *args
, **kwargs
):
3261 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3262 newobj
= _windows_
.new_MDIClientWindow(*args
, **kwargs
)
3263 self
.this
= newobj
.this
3266 self
._setOORInfo
(self
)
3268 def Create(*args
, **kwargs
):
3269 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3270 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3273 class MDIClientWindowPtr(MDIClientWindow
):
3274 def __init__(self
, this
):
3276 if not hasattr(self
,"thisown"): self
.thisown
= 0
3277 self
.__class
__ = MDIClientWindow
3278 _windows_
.MDIClientWindow_swigregister(MDIClientWindowPtr
)
3280 def PreMDIClientWindow(*args
, **kwargs
):
3281 """PreMDIClientWindow() -> MDIClientWindow"""
3282 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3286 #---------------------------------------------------------------------------
3288 class PyWindow(_core
.Window
):
3290 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3291 def __init__(self
, *args
, **kwargs
):
3293 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3294 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3296 newobj
= _windows_
.new_PyWindow(*args
, **kwargs
)
3297 self
.this
= newobj
.this
3300 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3302 def _setCallbackInfo(*args
, **kwargs
):
3303 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3304 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3306 def SetBestSize(*args
, **kwargs
):
3307 """SetBestSize(self, Size size)"""
3308 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3310 def base_DoMoveWindow(*args
, **kwargs
):
3311 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3312 return _windows_
.PyWindow_base_DoMoveWindow(*args
, **kwargs
)
3314 def base_DoSetSize(*args
, **kwargs
):
3315 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3316 return _windows_
.PyWindow_base_DoSetSize(*args
, **kwargs
)
3318 def base_DoSetClientSize(*args
, **kwargs
):
3319 """base_DoSetClientSize(self, int width, int height)"""
3320 return _windows_
.PyWindow_base_DoSetClientSize(*args
, **kwargs
)
3322 def base_DoSetVirtualSize(*args
, **kwargs
):
3323 """base_DoSetVirtualSize(self, int x, int y)"""
3324 return _windows_
.PyWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3326 def base_DoGetSize(*args
, **kwargs
):
3327 """base_DoGetSize() -> (width, height)"""
3328 return _windows_
.PyWindow_base_DoGetSize(*args
, **kwargs
)
3330 def base_DoGetClientSize(*args
, **kwargs
):
3331 """base_DoGetClientSize() -> (width, height)"""
3332 return _windows_
.PyWindow_base_DoGetClientSize(*args
, **kwargs
)
3334 def base_DoGetPosition(*args
, **kwargs
):
3335 """base_DoGetPosition() -> (x,y)"""
3336 return _windows_
.PyWindow_base_DoGetPosition(*args
, **kwargs
)
3338 def base_DoGetVirtualSize(*args
, **kwargs
):
3339 """base_DoGetVirtualSize(self) -> Size"""
3340 return _windows_
.PyWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3342 def base_DoGetBestSize(*args
, **kwargs
):
3343 """base_DoGetBestSize(self) -> Size"""
3344 return _windows_
.PyWindow_base_DoGetBestSize(*args
, **kwargs
)
3346 def base_InitDialog(*args
, **kwargs
):
3347 """base_InitDialog(self)"""
3348 return _windows_
.PyWindow_base_InitDialog(*args
, **kwargs
)
3350 def base_TransferDataToWindow(*args
, **kwargs
):
3351 """base_TransferDataToWindow(self) -> bool"""
3352 return _windows_
.PyWindow_base_TransferDataToWindow(*args
, **kwargs
)
3354 def base_TransferDataFromWindow(*args
, **kwargs
):
3355 """base_TransferDataFromWindow(self) -> bool"""
3356 return _windows_
.PyWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3358 def base_Validate(*args
, **kwargs
):
3359 """base_Validate(self) -> bool"""
3360 return _windows_
.PyWindow_base_Validate(*args
, **kwargs
)
3362 def base_AcceptsFocus(*args
, **kwargs
):
3363 """base_AcceptsFocus(self) -> bool"""
3364 return _windows_
.PyWindow_base_AcceptsFocus(*args
, **kwargs
)
3366 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3367 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3368 return _windows_
.PyWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3370 def base_GetMaxSize(*args
, **kwargs
):
3371 """base_GetMaxSize(self) -> Size"""
3372 return _windows_
.PyWindow_base_GetMaxSize(*args
, **kwargs
)
3374 def base_AddChild(*args
, **kwargs
):
3375 """base_AddChild(self, Window child)"""
3376 return _windows_
.PyWindow_base_AddChild(*args
, **kwargs
)
3378 def base_RemoveChild(*args
, **kwargs
):
3379 """base_RemoveChild(self, Window child)"""
3380 return _windows_
.PyWindow_base_RemoveChild(*args
, **kwargs
)
3382 def base_ShouldInheritColours(*args
, **kwargs
):
3383 """base_ShouldInheritColours(self) -> bool"""
3384 return _windows_
.PyWindow_base_ShouldInheritColours(*args
, **kwargs
)
3386 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3387 """base_ApplyParentThemeBackground(self, Colour c)"""
3388 return _windows_
.PyWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3390 def base_GetDefaultAttributes(*args
, **kwargs
):
3391 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3392 return _windows_
.PyWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3395 class PyWindowPtr(PyWindow
):
3396 def __init__(self
, this
):
3398 if not hasattr(self
,"thisown"): self
.thisown
= 0
3399 self
.__class
__ = PyWindow
3400 _windows_
.PyWindow_swigregister(PyWindowPtr
)
3402 def PrePyWindow(*args
, **kwargs
):
3403 """PrePyWindow() -> PyWindow"""
3404 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3408 class PyPanel(Panel
):
3410 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3411 def __init__(self
, *args
, **kwargs
):
3413 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3414 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3416 newobj
= _windows_
.new_PyPanel(*args
, **kwargs
)
3417 self
.this
= newobj
.this
3420 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3422 def _setCallbackInfo(*args
, **kwargs
):
3423 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3424 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3426 def SetBestSize(*args
, **kwargs
):
3427 """SetBestSize(self, Size size)"""
3428 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3430 def base_DoMoveWindow(*args
, **kwargs
):
3431 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3432 return _windows_
.PyPanel_base_DoMoveWindow(*args
, **kwargs
)
3434 def base_DoSetSize(*args
, **kwargs
):
3435 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3436 return _windows_
.PyPanel_base_DoSetSize(*args
, **kwargs
)
3438 def base_DoSetClientSize(*args
, **kwargs
):
3439 """base_DoSetClientSize(self, int width, int height)"""
3440 return _windows_
.PyPanel_base_DoSetClientSize(*args
, **kwargs
)
3442 def base_DoSetVirtualSize(*args
, **kwargs
):
3443 """base_DoSetVirtualSize(self, int x, int y)"""
3444 return _windows_
.PyPanel_base_DoSetVirtualSize(*args
, **kwargs
)
3446 def base_DoGetSize(*args
, **kwargs
):
3447 """base_DoGetSize() -> (width, height)"""
3448 return _windows_
.PyPanel_base_DoGetSize(*args
, **kwargs
)
3450 def base_DoGetClientSize(*args
, **kwargs
):
3451 """base_DoGetClientSize() -> (width, height)"""
3452 return _windows_
.PyPanel_base_DoGetClientSize(*args
, **kwargs
)
3454 def base_DoGetPosition(*args
, **kwargs
):
3455 """base_DoGetPosition() -> (x,y)"""
3456 return _windows_
.PyPanel_base_DoGetPosition(*args
, **kwargs
)
3458 def base_DoGetVirtualSize(*args
, **kwargs
):
3459 """base_DoGetVirtualSize(self) -> Size"""
3460 return _windows_
.PyPanel_base_DoGetVirtualSize(*args
, **kwargs
)
3462 def base_DoGetBestSize(*args
, **kwargs
):
3463 """base_DoGetBestSize(self) -> Size"""
3464 return _windows_
.PyPanel_base_DoGetBestSize(*args
, **kwargs
)
3466 def base_InitDialog(*args
, **kwargs
):
3467 """base_InitDialog(self)"""
3468 return _windows_
.PyPanel_base_InitDialog(*args
, **kwargs
)
3470 def base_TransferDataToWindow(*args
, **kwargs
):
3471 """base_TransferDataToWindow(self) -> bool"""
3472 return _windows_
.PyPanel_base_TransferDataToWindow(*args
, **kwargs
)
3474 def base_TransferDataFromWindow(*args
, **kwargs
):
3475 """base_TransferDataFromWindow(self) -> bool"""
3476 return _windows_
.PyPanel_base_TransferDataFromWindow(*args
, **kwargs
)
3478 def base_Validate(*args
, **kwargs
):
3479 """base_Validate(self) -> bool"""
3480 return _windows_
.PyPanel_base_Validate(*args
, **kwargs
)
3482 def base_AcceptsFocus(*args
, **kwargs
):
3483 """base_AcceptsFocus(self) -> bool"""
3484 return _windows_
.PyPanel_base_AcceptsFocus(*args
, **kwargs
)
3486 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3487 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3488 return _windows_
.PyPanel_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3490 def base_GetMaxSize(*args
, **kwargs
):
3491 """base_GetMaxSize(self) -> Size"""
3492 return _windows_
.PyPanel_base_GetMaxSize(*args
, **kwargs
)
3494 def base_AddChild(*args
, **kwargs
):
3495 """base_AddChild(self, Window child)"""
3496 return _windows_
.PyPanel_base_AddChild(*args
, **kwargs
)
3498 def base_RemoveChild(*args
, **kwargs
):
3499 """base_RemoveChild(self, Window child)"""
3500 return _windows_
.PyPanel_base_RemoveChild(*args
, **kwargs
)
3502 def base_ShouldInheritColours(*args
, **kwargs
):
3503 """base_ShouldInheritColours(self) -> bool"""
3504 return _windows_
.PyPanel_base_ShouldInheritColours(*args
, **kwargs
)
3506 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3507 """base_ApplyParentThemeBackground(self, Colour c)"""
3508 return _windows_
.PyPanel_base_ApplyParentThemeBackground(*args
, **kwargs
)
3510 def base_GetDefaultAttributes(*args
, **kwargs
):
3511 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3512 return _windows_
.PyPanel_base_GetDefaultAttributes(*args
, **kwargs
)
3515 class PyPanelPtr(PyPanel
):
3516 def __init__(self
, this
):
3518 if not hasattr(self
,"thisown"): self
.thisown
= 0
3519 self
.__class
__ = PyPanel
3520 _windows_
.PyPanel_swigregister(PyPanelPtr
)
3522 def PrePyPanel(*args
, **kwargs
):
3523 """PrePyPanel() -> PyPanel"""
3524 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3528 class PyScrolledWindow(ScrolledWindow
):
3530 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3531 def __init__(self
, *args
, **kwargs
):
3533 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3534 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3536 newobj
= _windows_
.new_PyScrolledWindow(*args
, **kwargs
)
3537 self
.this
= newobj
.this
3540 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3542 def _setCallbackInfo(*args
, **kwargs
):
3543 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3544 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3546 def SetBestSize(*args
, **kwargs
):
3547 """SetBestSize(self, Size size)"""
3548 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3550 def base_DoMoveWindow(*args
, **kwargs
):
3551 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3552 return _windows_
.PyScrolledWindow_base_DoMoveWindow(*args
, **kwargs
)
3554 def base_DoSetSize(*args
, **kwargs
):
3555 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3556 return _windows_
.PyScrolledWindow_base_DoSetSize(*args
, **kwargs
)
3558 def base_DoSetClientSize(*args
, **kwargs
):
3559 """base_DoSetClientSize(self, int width, int height)"""
3560 return _windows_
.PyScrolledWindow_base_DoSetClientSize(*args
, **kwargs
)
3562 def base_DoSetVirtualSize(*args
, **kwargs
):
3563 """base_DoSetVirtualSize(self, int x, int y)"""
3564 return _windows_
.PyScrolledWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3566 def base_DoGetSize(*args
, **kwargs
):
3567 """base_DoGetSize() -> (width, height)"""
3568 return _windows_
.PyScrolledWindow_base_DoGetSize(*args
, **kwargs
)
3570 def base_DoGetClientSize(*args
, **kwargs
):
3571 """base_DoGetClientSize() -> (width, height)"""
3572 return _windows_
.PyScrolledWindow_base_DoGetClientSize(*args
, **kwargs
)
3574 def base_DoGetPosition(*args
, **kwargs
):
3575 """base_DoGetPosition() -> (x,y)"""
3576 return _windows_
.PyScrolledWindow_base_DoGetPosition(*args
, **kwargs
)
3578 def base_DoGetVirtualSize(*args
, **kwargs
):
3579 """base_DoGetVirtualSize(self) -> Size"""
3580 return _windows_
.PyScrolledWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3582 def base_DoGetBestSize(*args
, **kwargs
):
3583 """base_DoGetBestSize(self) -> Size"""
3584 return _windows_
.PyScrolledWindow_base_DoGetBestSize(*args
, **kwargs
)
3586 def base_InitDialog(*args
, **kwargs
):
3587 """base_InitDialog(self)"""
3588 return _windows_
.PyScrolledWindow_base_InitDialog(*args
, **kwargs
)
3590 def base_TransferDataToWindow(*args
, **kwargs
):
3591 """base_TransferDataToWindow(self) -> bool"""
3592 return _windows_
.PyScrolledWindow_base_TransferDataToWindow(*args
, **kwargs
)
3594 def base_TransferDataFromWindow(*args
, **kwargs
):
3595 """base_TransferDataFromWindow(self) -> bool"""
3596 return _windows_
.PyScrolledWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3598 def base_Validate(*args
, **kwargs
):
3599 """base_Validate(self) -> bool"""
3600 return _windows_
.PyScrolledWindow_base_Validate(*args
, **kwargs
)
3602 def base_AcceptsFocus(*args
, **kwargs
):
3603 """base_AcceptsFocus(self) -> bool"""
3604 return _windows_
.PyScrolledWindow_base_AcceptsFocus(*args
, **kwargs
)
3606 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3607 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3608 return _windows_
.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3610 def base_GetMaxSize(*args
, **kwargs
):
3611 """base_GetMaxSize(self) -> Size"""
3612 return _windows_
.PyScrolledWindow_base_GetMaxSize(*args
, **kwargs
)
3614 def base_AddChild(*args
, **kwargs
):
3615 """base_AddChild(self, Window child)"""
3616 return _windows_
.PyScrolledWindow_base_AddChild(*args
, **kwargs
)
3618 def base_RemoveChild(*args
, **kwargs
):
3619 """base_RemoveChild(self, Window child)"""
3620 return _windows_
.PyScrolledWindow_base_RemoveChild(*args
, **kwargs
)
3622 def base_ShouldInheritColours(*args
, **kwargs
):
3623 """base_ShouldInheritColours(self) -> bool"""
3624 return _windows_
.PyScrolledWindow_base_ShouldInheritColours(*args
, **kwargs
)
3626 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3627 """base_ApplyParentThemeBackground(self, Colour c)"""
3628 return _windows_
.PyScrolledWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3630 def base_GetDefaultAttributes(*args
, **kwargs
):
3631 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3632 return _windows_
.PyScrolledWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3635 class PyScrolledWindowPtr(PyScrolledWindow
):
3636 def __init__(self
, this
):
3638 if not hasattr(self
,"thisown"): self
.thisown
= 0
3639 self
.__class
__ = PyScrolledWindow
3640 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindowPtr
)
3642 def PrePyScrolledWindow(*args
, **kwargs
):
3643 """PrePyScrolledWindow() -> PyScrolledWindow"""
3644 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3648 #---------------------------------------------------------------------------
3650 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3651 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3652 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3653 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3654 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3655 class PrintData(_core
.Object
):
3657 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3658 def __init__(self
, *args
):
3660 __init__(self) -> PrintData
3661 __init__(self, PrintData data) -> PrintData
3663 newobj
= _windows_
.new_PrintData(*args
)
3664 self
.this
= newobj
.this
3667 def __del__(self
, destroy
=_windows_
.delete_PrintData
):
3670 if self
.thisown
: destroy(self
)
3673 def GetNoCopies(*args
, **kwargs
):
3674 """GetNoCopies(self) -> int"""
3675 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3677 def GetCollate(*args
, **kwargs
):
3678 """GetCollate(self) -> bool"""
3679 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3681 def GetOrientation(*args
, **kwargs
):
3682 """GetOrientation(self) -> int"""
3683 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3685 def Ok(*args
, **kwargs
):
3686 """Ok(self) -> bool"""
3687 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3689 def GetPrinterName(*args
, **kwargs
):
3690 """GetPrinterName(self) -> String"""
3691 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3693 def GetColour(*args
, **kwargs
):
3694 """GetColour(self) -> bool"""
3695 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3697 def GetDuplex(*args
, **kwargs
):
3698 """GetDuplex(self) -> int"""
3699 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3701 def GetPaperId(*args
, **kwargs
):
3702 """GetPaperId(self) -> int"""
3703 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3705 def GetPaperSize(*args
, **kwargs
):
3706 """GetPaperSize(self) -> Size"""
3707 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3709 def GetQuality(*args
, **kwargs
):
3710 """GetQuality(self) -> int"""
3711 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3713 def SetNoCopies(*args
, **kwargs
):
3714 """SetNoCopies(self, int v)"""
3715 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3717 def SetCollate(*args
, **kwargs
):
3718 """SetCollate(self, bool flag)"""
3719 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3721 def SetOrientation(*args
, **kwargs
):
3722 """SetOrientation(self, int orient)"""
3723 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3725 def SetPrinterName(*args
, **kwargs
):
3726 """SetPrinterName(self, String name)"""
3727 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3729 def SetColour(*args
, **kwargs
):
3730 """SetColour(self, bool colour)"""
3731 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3733 def SetDuplex(*args
, **kwargs
):
3734 """SetDuplex(self, int duplex)"""
3735 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3737 def SetPaperId(*args
, **kwargs
):
3738 """SetPaperId(self, int sizeId)"""
3739 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3741 def SetPaperSize(*args
, **kwargs
):
3742 """SetPaperSize(self, Size sz)"""
3743 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3745 def SetQuality(*args
, **kwargs
):
3746 """SetQuality(self, int quality)"""
3747 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3749 def GetPrinterCommand(*args
, **kwargs
):
3750 """GetPrinterCommand(self) -> String"""
3751 return _windows_
.PrintData_GetPrinterCommand(*args
, **kwargs
)
3753 def GetPrinterOptions(*args
, **kwargs
):
3754 """GetPrinterOptions(self) -> String"""
3755 return _windows_
.PrintData_GetPrinterOptions(*args
, **kwargs
)
3757 def GetPreviewCommand(*args
, **kwargs
):
3758 """GetPreviewCommand(self) -> String"""
3759 return _windows_
.PrintData_GetPreviewCommand(*args
, **kwargs
)
3761 def GetFilename(*args
, **kwargs
):
3762 """GetFilename(self) -> String"""
3763 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3765 def GetFontMetricPath(*args
, **kwargs
):
3766 """GetFontMetricPath(self) -> String"""
3767 return _windows_
.PrintData_GetFontMetricPath(*args
, **kwargs
)
3769 def GetPrinterScaleX(*args
, **kwargs
):
3770 """GetPrinterScaleX(self) -> double"""
3771 return _windows_
.PrintData_GetPrinterScaleX(*args
, **kwargs
)
3773 def GetPrinterScaleY(*args
, **kwargs
):
3774 """GetPrinterScaleY(self) -> double"""
3775 return _windows_
.PrintData_GetPrinterScaleY(*args
, **kwargs
)
3777 def GetPrinterTranslateX(*args
, **kwargs
):
3778 """GetPrinterTranslateX(self) -> long"""
3779 return _windows_
.PrintData_GetPrinterTranslateX(*args
, **kwargs
)
3781 def GetPrinterTranslateY(*args
, **kwargs
):
3782 """GetPrinterTranslateY(self) -> long"""
3783 return _windows_
.PrintData_GetPrinterTranslateY(*args
, **kwargs
)
3785 def GetPrintMode(*args
, **kwargs
):
3786 """GetPrintMode(self) -> int"""
3787 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3789 def SetPrinterCommand(*args
, **kwargs
):
3790 """SetPrinterCommand(self, String command)"""
3791 return _windows_
.PrintData_SetPrinterCommand(*args
, **kwargs
)
3793 def SetPrinterOptions(*args
, **kwargs
):
3794 """SetPrinterOptions(self, String options)"""
3795 return _windows_
.PrintData_SetPrinterOptions(*args
, **kwargs
)
3797 def SetPreviewCommand(*args
, **kwargs
):
3798 """SetPreviewCommand(self, String command)"""
3799 return _windows_
.PrintData_SetPreviewCommand(*args
, **kwargs
)
3801 def SetFilename(*args
, **kwargs
):
3802 """SetFilename(self, String filename)"""
3803 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3805 def SetFontMetricPath(*args
, **kwargs
):
3806 """SetFontMetricPath(self, String path)"""
3807 return _windows_
.PrintData_SetFontMetricPath(*args
, **kwargs
)
3809 def SetPrinterScaleX(*args
, **kwargs
):
3810 """SetPrinterScaleX(self, double x)"""
3811 return _windows_
.PrintData_SetPrinterScaleX(*args
, **kwargs
)
3813 def SetPrinterScaleY(*args
, **kwargs
):
3814 """SetPrinterScaleY(self, double y)"""
3815 return _windows_
.PrintData_SetPrinterScaleY(*args
, **kwargs
)
3817 def SetPrinterScaling(*args
, **kwargs
):
3818 """SetPrinterScaling(self, double x, double y)"""
3819 return _windows_
.PrintData_SetPrinterScaling(*args
, **kwargs
)
3821 def SetPrinterTranslateX(*args
, **kwargs
):
3822 """SetPrinterTranslateX(self, long x)"""
3823 return _windows_
.PrintData_SetPrinterTranslateX(*args
, **kwargs
)
3825 def SetPrinterTranslateY(*args
, **kwargs
):
3826 """SetPrinterTranslateY(self, long y)"""
3827 return _windows_
.PrintData_SetPrinterTranslateY(*args
, **kwargs
)
3829 def SetPrinterTranslation(*args
, **kwargs
):
3830 """SetPrinterTranslation(self, long x, long y)"""
3831 return _windows_
.PrintData_SetPrinterTranslation(*args
, **kwargs
)
3833 def SetPrintMode(*args
, **kwargs
):
3834 """SetPrintMode(self, int printMode)"""
3835 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3837 def GetOutputStream(*args
, **kwargs
):
3838 """GetOutputStream(self) -> OutputStream"""
3839 return _windows_
.PrintData_GetOutputStream(*args
, **kwargs
)
3841 def SetOutputStream(*args
, **kwargs
):
3842 """SetOutputStream(self, OutputStream outputstream)"""
3843 return _windows_
.PrintData_SetOutputStream(*args
, **kwargs
)
3845 def __nonzero__(self
): return self
.Ok()
3847 class PrintDataPtr(PrintData
):
3848 def __init__(self
, this
):
3850 if not hasattr(self
,"thisown"): self
.thisown
= 0
3851 self
.__class
__ = PrintData
3852 _windows_
.PrintData_swigregister(PrintDataPtr
)
3853 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3854 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3856 class PageSetupDialogData(_core
.Object
):
3858 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3859 def __init__(self
, *args
):
3861 __init__(self) -> PageSetupDialogData
3862 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3864 newobj
= _windows_
.new_PageSetupDialogData(*args
)
3865 self
.this
= newobj
.this
3868 def __del__(self
, destroy
=_windows_
.delete_PageSetupDialogData
):
3871 if self
.thisown
: destroy(self
)
3874 def EnableHelp(*args
, **kwargs
):
3875 """EnableHelp(self, bool flag)"""
3876 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3878 def EnableMargins(*args
, **kwargs
):
3879 """EnableMargins(self, bool flag)"""
3880 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3882 def EnableOrientation(*args
, **kwargs
):
3883 """EnableOrientation(self, bool flag)"""
3884 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3886 def EnablePaper(*args
, **kwargs
):
3887 """EnablePaper(self, bool flag)"""
3888 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3890 def EnablePrinter(*args
, **kwargs
):
3891 """EnablePrinter(self, bool flag)"""
3892 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3894 def GetDefaultMinMargins(*args
, **kwargs
):
3895 """GetDefaultMinMargins(self) -> bool"""
3896 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3898 def GetEnableMargins(*args
, **kwargs
):
3899 """GetEnableMargins(self) -> bool"""
3900 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3902 def GetEnableOrientation(*args
, **kwargs
):
3903 """GetEnableOrientation(self) -> bool"""
3904 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3906 def GetEnablePaper(*args
, **kwargs
):
3907 """GetEnablePaper(self) -> bool"""
3908 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3910 def GetEnablePrinter(*args
, **kwargs
):
3911 """GetEnablePrinter(self) -> bool"""
3912 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3914 def GetEnableHelp(*args
, **kwargs
):
3915 """GetEnableHelp(self) -> bool"""
3916 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3918 def GetDefaultInfo(*args
, **kwargs
):
3919 """GetDefaultInfo(self) -> bool"""
3920 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3922 def GetMarginTopLeft(*args
, **kwargs
):
3923 """GetMarginTopLeft(self) -> Point"""
3924 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3926 def GetMarginBottomRight(*args
, **kwargs
):
3927 """GetMarginBottomRight(self) -> Point"""
3928 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3930 def GetMinMarginTopLeft(*args
, **kwargs
):
3931 """GetMinMarginTopLeft(self) -> Point"""
3932 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3934 def GetMinMarginBottomRight(*args
, **kwargs
):
3935 """GetMinMarginBottomRight(self) -> Point"""
3936 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3938 def GetPaperId(*args
, **kwargs
):
3939 """GetPaperId(self) -> int"""
3940 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3942 def GetPaperSize(*args
, **kwargs
):
3943 """GetPaperSize(self) -> Size"""
3944 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3946 def GetPrintData(*args
, **kwargs
):
3947 """GetPrintData(self) -> PrintData"""
3948 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3950 def Ok(*args
, **kwargs
):
3951 """Ok(self) -> bool"""
3952 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3954 def SetDefaultInfo(*args
, **kwargs
):
3955 """SetDefaultInfo(self, bool flag)"""
3956 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3958 def SetDefaultMinMargins(*args
, **kwargs
):
3959 """SetDefaultMinMargins(self, bool flag)"""
3960 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3962 def SetMarginTopLeft(*args
, **kwargs
):
3963 """SetMarginTopLeft(self, Point pt)"""
3964 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3966 def SetMarginBottomRight(*args
, **kwargs
):
3967 """SetMarginBottomRight(self, Point pt)"""
3968 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3970 def SetMinMarginTopLeft(*args
, **kwargs
):
3971 """SetMinMarginTopLeft(self, Point pt)"""
3972 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3974 def SetMinMarginBottomRight(*args
, **kwargs
):
3975 """SetMinMarginBottomRight(self, Point pt)"""
3976 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3978 def SetPaperId(*args
, **kwargs
):
3979 """SetPaperId(self, int id)"""
3980 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3982 def SetPaperSize(*args
, **kwargs
):
3983 """SetPaperSize(self, Size size)"""
3984 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3986 def SetPrintData(*args
, **kwargs
):
3987 """SetPrintData(self, PrintData printData)"""
3988 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3990 def __nonzero__(self
): return self
.Ok()
3992 class PageSetupDialogDataPtr(PageSetupDialogData
):
3993 def __init__(self
, this
):
3995 if not hasattr(self
,"thisown"): self
.thisown
= 0
3996 self
.__class
__ = PageSetupDialogData
3997 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogDataPtr
)
3999 class PageSetupDialog(Dialog
):
4001 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4002 def __init__(self
, *args
, **kwargs
):
4003 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4004 newobj
= _windows_
.new_PageSetupDialog(*args
, **kwargs
)
4005 self
.this
= newobj
.this
4008 self
._setOORInfo
(self
)
4010 def GetPageSetupData(*args
, **kwargs
):
4011 """GetPageSetupData(self) -> PageSetupDialogData"""
4012 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
4014 def ShowModal(*args
, **kwargs
):
4015 """ShowModal(self) -> int"""
4016 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
4019 class PageSetupDialogPtr(PageSetupDialog
):
4020 def __init__(self
, this
):
4022 if not hasattr(self
,"thisown"): self
.thisown
= 0
4023 self
.__class
__ = PageSetupDialog
4024 _windows_
.PageSetupDialog_swigregister(PageSetupDialogPtr
)
4026 class PrintDialogData(_core
.Object
):
4028 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4029 def __init__(self
, *args
):
4031 __init__(self) -> PrintDialogData
4032 __init__(self, PrintData printData) -> PrintDialogData
4034 newobj
= _windows_
.new_PrintDialogData(*args
)
4035 self
.this
= newobj
.this
4038 def __del__(self
, destroy
=_windows_
.delete_PrintDialogData
):
4041 if self
.thisown
: destroy(self
)
4044 def GetFromPage(*args
, **kwargs
):
4045 """GetFromPage(self) -> int"""
4046 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
4048 def GetToPage(*args
, **kwargs
):
4049 """GetToPage(self) -> int"""
4050 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
4052 def GetMinPage(*args
, **kwargs
):
4053 """GetMinPage(self) -> int"""
4054 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
4056 def GetMaxPage(*args
, **kwargs
):
4057 """GetMaxPage(self) -> int"""
4058 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
4060 def GetNoCopies(*args
, **kwargs
):
4061 """GetNoCopies(self) -> int"""
4062 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
4064 def GetAllPages(*args
, **kwargs
):
4065 """GetAllPages(self) -> bool"""
4066 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
4068 def GetSelection(*args
, **kwargs
):
4069 """GetSelection(self) -> bool"""
4070 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
4072 def GetCollate(*args
, **kwargs
):
4073 """GetCollate(self) -> bool"""
4074 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
4076 def GetPrintToFile(*args
, **kwargs
):
4077 """GetPrintToFile(self) -> bool"""
4078 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
4080 def GetSetupDialog(*args
, **kwargs
):
4081 """GetSetupDialog(self) -> bool"""
4082 return _windows_
.PrintDialogData_GetSetupDialog(*args
, **kwargs
)
4084 def SetFromPage(*args
, **kwargs
):
4085 """SetFromPage(self, int v)"""
4086 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4088 def SetToPage(*args
, **kwargs
):
4089 """SetToPage(self, int v)"""
4090 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4092 def SetMinPage(*args
, **kwargs
):
4093 """SetMinPage(self, int v)"""
4094 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4096 def SetMaxPage(*args
, **kwargs
):
4097 """SetMaxPage(self, int v)"""
4098 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4100 def SetNoCopies(*args
, **kwargs
):
4101 """SetNoCopies(self, int v)"""
4102 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4104 def SetAllPages(*args
, **kwargs
):
4105 """SetAllPages(self, bool flag)"""
4106 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4108 def SetSelection(*args
, **kwargs
):
4109 """SetSelection(self, bool flag)"""
4110 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4112 def SetCollate(*args
, **kwargs
):
4113 """SetCollate(self, bool flag)"""
4114 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4116 def SetPrintToFile(*args
, **kwargs
):
4117 """SetPrintToFile(self, bool flag)"""
4118 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4120 def SetSetupDialog(*args
, **kwargs
):
4121 """SetSetupDialog(self, bool flag)"""
4122 return _windows_
.PrintDialogData_SetSetupDialog(*args
, **kwargs
)
4124 def EnablePrintToFile(*args
, **kwargs
):
4125 """EnablePrintToFile(self, bool flag)"""
4126 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4128 def EnableSelection(*args
, **kwargs
):
4129 """EnableSelection(self, bool flag)"""
4130 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4132 def EnablePageNumbers(*args
, **kwargs
):
4133 """EnablePageNumbers(self, bool flag)"""
4134 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4136 def EnableHelp(*args
, **kwargs
):
4137 """EnableHelp(self, bool flag)"""
4138 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4140 def GetEnablePrintToFile(*args
, **kwargs
):
4141 """GetEnablePrintToFile(self) -> bool"""
4142 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4144 def GetEnableSelection(*args
, **kwargs
):
4145 """GetEnableSelection(self) -> bool"""
4146 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4148 def GetEnablePageNumbers(*args
, **kwargs
):
4149 """GetEnablePageNumbers(self) -> bool"""
4150 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4152 def GetEnableHelp(*args
, **kwargs
):
4153 """GetEnableHelp(self) -> bool"""
4154 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4156 def Ok(*args
, **kwargs
):
4157 """Ok(self) -> bool"""
4158 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4160 def GetPrintData(*args
, **kwargs
):
4161 """GetPrintData(self) -> PrintData"""
4162 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4164 def SetPrintData(*args
, **kwargs
):
4165 """SetPrintData(self, PrintData printData)"""
4166 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4168 def __nonzero__(self
): return self
.Ok()
4170 class PrintDialogDataPtr(PrintDialogData
):
4171 def __init__(self
, this
):
4173 if not hasattr(self
,"thisown"): self
.thisown
= 0
4174 self
.__class
__ = PrintDialogData
4175 _windows_
.PrintDialogData_swigregister(PrintDialogDataPtr
)
4177 class PrintDialog(Dialog
):
4179 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4180 def __init__(self
, *args
, **kwargs
):
4181 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4182 newobj
= _windows_
.new_PrintDialog(*args
, **kwargs
)
4183 self
.this
= newobj
.this
4186 self
._setOORInfo
(self
)
4188 def GetPrintDialogData(*args
, **kwargs
):
4189 """GetPrintDialogData(self) -> PrintDialogData"""
4190 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4192 def GetPrintDC(*args
, **kwargs
):
4193 """GetPrintDC(self) -> DC"""
4194 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4196 def ShowModal(*args
, **kwargs
):
4197 """ShowModal(self) -> int"""
4198 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4201 class PrintDialogPtr(PrintDialog
):
4202 def __init__(self
, this
):
4204 if not hasattr(self
,"thisown"): self
.thisown
= 0
4205 self
.__class
__ = PrintDialog
4206 _windows_
.PrintDialog_swigregister(PrintDialogPtr
)
4208 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4209 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4210 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4211 class Printer(_core
.Object
):
4213 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4214 def __init__(self
, *args
, **kwargs
):
4215 """__init__(self, PrintDialogData data=None) -> Printer"""
4216 newobj
= _windows_
.new_Printer(*args
, **kwargs
)
4217 self
.this
= newobj
.this
4220 def __del__(self
, destroy
=_windows_
.delete_Printer
):
4223 if self
.thisown
: destroy(self
)
4226 def CreateAbortWindow(*args
, **kwargs
):
4227 """CreateAbortWindow(self, Window parent, Printout printout)"""
4228 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4230 def GetPrintDialogData(*args
, **kwargs
):
4231 """GetPrintDialogData(self) -> PrintDialogData"""
4232 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4234 def Print(*args
, **kwargs
):
4235 """Print(self, Window parent, Printout printout, int prompt=True) -> bool"""
4236 return _windows_
.Printer_Print(*args
, **kwargs
)
4238 def PrintDialog(*args
, **kwargs
):
4239 """PrintDialog(self, Window parent) -> DC"""
4240 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4242 def ReportError(*args
, **kwargs
):
4243 """ReportError(self, Window parent, Printout printout, String message)"""
4244 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4246 def Setup(*args
, **kwargs
):
4247 """Setup(self, Window parent) -> bool"""
4248 return _windows_
.Printer_Setup(*args
, **kwargs
)
4250 def GetAbort(*args
, **kwargs
):
4251 """GetAbort(self) -> bool"""
4252 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4254 def GetLastError(*args
, **kwargs
):
4255 """GetLastError() -> int"""
4256 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4258 GetLastError
= staticmethod(GetLastError
)
4260 class PrinterPtr(Printer
):
4261 def __init__(self
, this
):
4263 if not hasattr(self
,"thisown"): self
.thisown
= 0
4264 self
.__class
__ = Printer
4265 _windows_
.Printer_swigregister(PrinterPtr
)
4267 def Printer_GetLastError(*args
, **kwargs
):
4268 """Printer_GetLastError() -> int"""
4269 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4271 class Printout(_core
.Object
):
4273 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4274 def __init__(self
, *args
, **kwargs
):
4275 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4276 newobj
= _windows_
.new_Printout(*args
, **kwargs
)
4277 self
.this
= newobj
.this
4280 self
._setCallbackInfo
(self
, Printout
)
4282 def _setCallbackInfo(*args
, **kwargs
):
4283 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4284 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4286 def GetTitle(*args
, **kwargs
):
4287 """GetTitle(self) -> String"""
4288 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4290 def GetDC(*args
, **kwargs
):
4291 """GetDC(self) -> DC"""
4292 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4294 def SetDC(*args
, **kwargs
):
4295 """SetDC(self, DC dc)"""
4296 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4298 def SetPageSizePixels(*args
, **kwargs
):
4299 """SetPageSizePixels(self, int w, int h)"""
4300 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4302 def GetPageSizePixels(*args
, **kwargs
):
4303 """GetPageSizePixels() -> (w, h)"""
4304 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4306 def SetPageSizeMM(*args
, **kwargs
):
4307 """SetPageSizeMM(self, int w, int h)"""
4308 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4310 def GetPageSizeMM(*args
, **kwargs
):
4311 """GetPageSizeMM() -> (w, h)"""
4312 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4314 def SetPPIScreen(*args
, **kwargs
):
4315 """SetPPIScreen(self, int x, int y)"""
4316 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4318 def GetPPIScreen(*args
, **kwargs
):
4319 """GetPPIScreen() -> (x,y)"""
4320 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4322 def SetPPIPrinter(*args
, **kwargs
):
4323 """SetPPIPrinter(self, int x, int y)"""
4324 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4326 def GetPPIPrinter(*args
, **kwargs
):
4327 """GetPPIPrinter() -> (x,y)"""
4328 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4330 def IsPreview(*args
, **kwargs
):
4331 """IsPreview(self) -> bool"""
4332 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4334 def SetIsPreview(*args
, **kwargs
):
4335 """SetIsPreview(self, bool p)"""
4336 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4338 def base_OnBeginDocument(*args
, **kwargs
):
4339 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4340 return _windows_
.Printout_base_OnBeginDocument(*args
, **kwargs
)
4342 def base_OnEndDocument(*args
, **kwargs
):
4343 """base_OnEndDocument(self)"""
4344 return _windows_
.Printout_base_OnEndDocument(*args
, **kwargs
)
4346 def base_OnBeginPrinting(*args
, **kwargs
):
4347 """base_OnBeginPrinting(self)"""
4348 return _windows_
.Printout_base_OnBeginPrinting(*args
, **kwargs
)
4350 def base_OnEndPrinting(*args
, **kwargs
):
4351 """base_OnEndPrinting(self)"""
4352 return _windows_
.Printout_base_OnEndPrinting(*args
, **kwargs
)
4354 def base_OnPreparePrinting(*args
, **kwargs
):
4355 """base_OnPreparePrinting(self)"""
4356 return _windows_
.Printout_base_OnPreparePrinting(*args
, **kwargs
)
4358 def base_HasPage(*args
, **kwargs
):
4359 """base_HasPage(self, int page) -> bool"""
4360 return _windows_
.Printout_base_HasPage(*args
, **kwargs
)
4362 def base_GetPageInfo(*args
, **kwargs
):
4363 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4364 return _windows_
.Printout_base_GetPageInfo(*args
, **kwargs
)
4367 class PrintoutPtr(Printout
):
4368 def __init__(self
, this
):
4370 if not hasattr(self
,"thisown"): self
.thisown
= 0
4371 self
.__class
__ = Printout
4372 _windows_
.Printout_swigregister(PrintoutPtr
)
4374 class PreviewCanvas(ScrolledWindow
):
4376 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4377 def __init__(self
, *args
, **kwargs
):
4379 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4380 Size size=DefaultSize, long style=0,
4381 String name=PreviewCanvasNameStr) -> PreviewCanvas
4383 newobj
= _windows_
.new_PreviewCanvas(*args
, **kwargs
)
4384 self
.this
= newobj
.this
4387 self
._setOORInfo
(self
)
4390 class PreviewCanvasPtr(PreviewCanvas
):
4391 def __init__(self
, this
):
4393 if not hasattr(self
,"thisown"): self
.thisown
= 0
4394 self
.__class
__ = PreviewCanvas
4395 _windows_
.PreviewCanvas_swigregister(PreviewCanvasPtr
)
4397 class PreviewFrame(Frame
):
4399 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4400 def __init__(self
, *args
, **kwargs
):
4402 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4403 Size size=DefaultSize,
4404 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4406 newobj
= _windows_
.new_PreviewFrame(*args
, **kwargs
)
4407 self
.this
= newobj
.this
4410 self
._setOORInfo
(self
)
4412 def Initialize(*args
, **kwargs
):
4413 """Initialize(self)"""
4414 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4416 def CreateControlBar(*args
, **kwargs
):
4417 """CreateControlBar(self)"""
4418 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4420 def CreateCanvas(*args
, **kwargs
):
4421 """CreateCanvas(self)"""
4422 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4424 def GetControlBar(*args
, **kwargs
):
4425 """GetControlBar(self) -> PreviewControlBar"""
4426 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4429 class PreviewFramePtr(PreviewFrame
):
4430 def __init__(self
, this
):
4432 if not hasattr(self
,"thisown"): self
.thisown
= 0
4433 self
.__class
__ = PreviewFrame
4434 _windows_
.PreviewFrame_swigregister(PreviewFramePtr
)
4436 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4437 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4438 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4439 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4440 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4441 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4442 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4443 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4444 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4445 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4446 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4447 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4448 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4449 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4450 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4451 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4452 class PreviewControlBar(Panel
):
4454 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4455 def __init__(self
, *args
, **kwargs
):
4457 __init__(self, PrintPreview preview, long buttons, Window parent,
4458 Point pos=DefaultPosition, Size size=DefaultSize,
4459 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4461 newobj
= _windows_
.new_PreviewControlBar(*args
, **kwargs
)
4462 self
.this
= newobj
.this
4465 self
._setOORInfo
(self
)
4467 def GetZoomControl(*args
, **kwargs
):
4468 """GetZoomControl(self) -> int"""
4469 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4471 def SetZoomControl(*args
, **kwargs
):
4472 """SetZoomControl(self, int zoom)"""
4473 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4475 def GetPrintPreview(*args
, **kwargs
):
4476 """GetPrintPreview(self) -> PrintPreview"""
4477 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4479 def OnNext(*args
, **kwargs
):
4481 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4483 def OnPrevious(*args
, **kwargs
):
4484 """OnPrevious(self)"""
4485 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4487 def OnFirst(*args
, **kwargs
):
4489 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4491 def OnLast(*args
, **kwargs
):
4493 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4495 def OnGoto(*args
, **kwargs
):
4497 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4500 class PreviewControlBarPtr(PreviewControlBar
):
4501 def __init__(self
, this
):
4503 if not hasattr(self
,"thisown"): self
.thisown
= 0
4504 self
.__class
__ = PreviewControlBar
4505 _windows_
.PreviewControlBar_swigregister(PreviewControlBarPtr
)
4507 class PrintPreview(_core
.Object
):
4509 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4510 def __init__(self
, *args
):
4512 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4513 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4515 newobj
= _windows_
.new_PrintPreview(*args
)
4516 self
.this
= newobj
.this
4519 def SetCurrentPage(*args
, **kwargs
):
4520 """SetCurrentPage(self, int pageNum) -> bool"""
4521 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4523 def GetCurrentPage(*args
, **kwargs
):
4524 """GetCurrentPage(self) -> int"""
4525 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4527 def SetPrintout(*args
, **kwargs
):
4528 """SetPrintout(self, Printout printout)"""
4529 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4531 def GetPrintout(*args
, **kwargs
):
4532 """GetPrintout(self) -> Printout"""
4533 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4535 def GetPrintoutForPrinting(*args
, **kwargs
):
4536 """GetPrintoutForPrinting(self) -> Printout"""
4537 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4539 def SetFrame(*args
, **kwargs
):
4540 """SetFrame(self, Frame frame)"""
4541 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4543 def SetCanvas(*args
, **kwargs
):
4544 """SetCanvas(self, PreviewCanvas canvas)"""
4545 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4547 def GetFrame(*args
, **kwargs
):
4548 """GetFrame(self) -> Frame"""
4549 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4551 def GetCanvas(*args
, **kwargs
):
4552 """GetCanvas(self) -> PreviewCanvas"""
4553 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4555 def PaintPage(*args
, **kwargs
):
4556 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4557 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4559 def DrawBlankPage(*args
, **kwargs
):
4560 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4561 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4563 def RenderPage(*args
, **kwargs
):
4564 """RenderPage(self, int pageNum) -> bool"""
4565 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4567 def AdjustScrollbars(*args
, **kwargs
):
4568 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4569 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4571 def GetPrintDialogData(*args
, **kwargs
):
4572 """GetPrintDialogData(self) -> PrintDialogData"""
4573 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4575 def SetZoom(*args
, **kwargs
):
4576 """SetZoom(self, int percent)"""
4577 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4579 def GetZoom(*args
, **kwargs
):
4580 """GetZoom(self) -> int"""
4581 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4583 def GetMaxPage(*args
, **kwargs
):
4584 """GetMaxPage(self) -> int"""
4585 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4587 def GetMinPage(*args
, **kwargs
):
4588 """GetMinPage(self) -> int"""
4589 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4591 def Ok(*args
, **kwargs
):
4592 """Ok(self) -> bool"""
4593 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4595 def SetOk(*args
, **kwargs
):
4596 """SetOk(self, bool ok)"""
4597 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4599 def Print(*args
, **kwargs
):
4600 """Print(self, bool interactive) -> bool"""
4601 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4603 def DetermineScaling(*args
, **kwargs
):
4604 """DetermineScaling(self)"""
4605 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4607 def __nonzero__(self
): return self
.Ok()
4609 class PrintPreviewPtr(PrintPreview
):
4610 def __init__(self
, this
):
4612 if not hasattr(self
,"thisown"): self
.thisown
= 0
4613 self
.__class
__ = PrintPreview
4614 _windows_
.PrintPreview_swigregister(PrintPreviewPtr
)
4616 class PyPrintPreview(PrintPreview
):
4618 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4619 def __init__(self
, *args
):
4621 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4622 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4624 newobj
= _windows_
.new_PyPrintPreview(*args
)
4625 self
.this
= newobj
.this
4628 self
._setCallbackInfo
(self
, PyPrintPreview
)
4630 def _setCallbackInfo(*args
, **kwargs
):
4631 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4632 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4634 def base_SetCurrentPage(*args
, **kwargs
):
4635 """base_SetCurrentPage(self, int pageNum) -> bool"""
4636 return _windows_
.PyPrintPreview_base_SetCurrentPage(*args
, **kwargs
)
4638 def base_PaintPage(*args
, **kwargs
):
4639 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4640 return _windows_
.PyPrintPreview_base_PaintPage(*args
, **kwargs
)
4642 def base_DrawBlankPage(*args
, **kwargs
):
4643 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4644 return _windows_
.PyPrintPreview_base_DrawBlankPage(*args
, **kwargs
)
4646 def base_RenderPage(*args
, **kwargs
):
4647 """base_RenderPage(self, int pageNum) -> bool"""
4648 return _windows_
.PyPrintPreview_base_RenderPage(*args
, **kwargs
)
4650 def base_SetZoom(*args
, **kwargs
):
4651 """base_SetZoom(self, int percent)"""
4652 return _windows_
.PyPrintPreview_base_SetZoom(*args
, **kwargs
)
4654 def base_Print(*args
, **kwargs
):
4655 """base_Print(self, bool interactive) -> bool"""
4656 return _windows_
.PyPrintPreview_base_Print(*args
, **kwargs
)
4658 def base_DetermineScaling(*args
, **kwargs
):
4659 """base_DetermineScaling(self)"""
4660 return _windows_
.PyPrintPreview_base_DetermineScaling(*args
, **kwargs
)
4663 class PyPrintPreviewPtr(PyPrintPreview
):
4664 def __init__(self
, this
):
4666 if not hasattr(self
,"thisown"): self
.thisown
= 0
4667 self
.__class
__ = PyPrintPreview
4668 _windows_
.PyPrintPreview_swigregister(PyPrintPreviewPtr
)
4670 class PyPreviewFrame(PreviewFrame
):
4672 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4673 def __init__(self
, *args
, **kwargs
):
4675 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4676 Size size=DefaultSize,
4677 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4679 newobj
= _windows_
.new_PyPreviewFrame(*args
, **kwargs
)
4680 self
.this
= newobj
.this
4683 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4685 def _setCallbackInfo(*args
, **kwargs
):
4686 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4687 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4689 def SetPreviewCanvas(*args
, **kwargs
):
4690 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4691 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4693 def SetControlBar(*args
, **kwargs
):
4694 """SetControlBar(self, PreviewControlBar bar)"""
4695 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4697 def base_Initialize(*args
, **kwargs
):
4698 """base_Initialize(self)"""
4699 return _windows_
.PyPreviewFrame_base_Initialize(*args
, **kwargs
)
4701 def base_CreateCanvas(*args
, **kwargs
):
4702 """base_CreateCanvas(self)"""
4703 return _windows_
.PyPreviewFrame_base_CreateCanvas(*args
, **kwargs
)
4705 def base_CreateControlBar(*args
, **kwargs
):
4706 """base_CreateControlBar(self)"""
4707 return _windows_
.PyPreviewFrame_base_CreateControlBar(*args
, **kwargs
)
4710 class PyPreviewFramePtr(PyPreviewFrame
):
4711 def __init__(self
, this
):
4713 if not hasattr(self
,"thisown"): self
.thisown
= 0
4714 self
.__class
__ = PyPreviewFrame
4715 _windows_
.PyPreviewFrame_swigregister(PyPreviewFramePtr
)
4717 class PyPreviewControlBar(PreviewControlBar
):
4719 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4720 def __init__(self
, *args
, **kwargs
):
4722 __init__(self, PrintPreview preview, long buttons, Window parent,
4723 Point pos=DefaultPosition, Size size=DefaultSize,
4724 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4726 newobj
= _windows_
.new_PyPreviewControlBar(*args
, **kwargs
)
4727 self
.this
= newobj
.this
4730 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4732 def _setCallbackInfo(*args
, **kwargs
):
4733 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4734 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4736 def SetPrintPreview(*args
, **kwargs
):
4737 """SetPrintPreview(self, PrintPreview preview)"""
4738 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4740 def base_CreateButtons(*args
, **kwargs
):
4741 """base_CreateButtons(self)"""
4742 return _windows_
.PyPreviewControlBar_base_CreateButtons(*args
, **kwargs
)
4744 def base_SetZoomControl(*args
, **kwargs
):
4745 """base_SetZoomControl(self, int zoom)"""
4746 return _windows_
.PyPreviewControlBar_base_SetZoomControl(*args
, **kwargs
)
4749 class PyPreviewControlBarPtr(PyPreviewControlBar
):
4750 def __init__(self
, this
):
4752 if not hasattr(self
,"thisown"): self
.thisown
= 0
4753 self
.__class
__ = PyPreviewControlBar
4754 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr
)