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 SB_NORMAL
= _windows_
.SB_NORMAL
752 SB_FLAT
= _windows_
.SB_FLAT
753 SB_RAISED
= _windows_
.SB_RAISED
754 class StatusBar(_core
.Window
):
756 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
757 def __init__(self
, *args
, **kwargs
):
759 __init__(self, Window parent, int id=-1, long style=wxST_SIZEGRIP|wxFULL_REPAINT_ON_RESIZE,
760 String name=StatusLineNameStr) -> StatusBar
762 newobj
= _windows_
.new_StatusBar(*args
, **kwargs
)
763 self
.this
= newobj
.this
766 self
._setOORInfo
(self
)
768 def Create(*args
, **kwargs
):
769 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
770 return _windows_
.StatusBar_Create(*args
, **kwargs
)
772 def SetFieldsCount(*args
, **kwargs
):
773 """SetFieldsCount(self, int number=1)"""
774 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
776 def GetFieldsCount(*args
, **kwargs
):
777 """GetFieldsCount(self) -> int"""
778 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
780 def SetStatusText(*args
, **kwargs
):
781 """SetStatusText(self, String text, int number=0)"""
782 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
784 def GetStatusText(*args
, **kwargs
):
785 """GetStatusText(self, int number=0) -> String"""
786 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
788 def PushStatusText(*args
, **kwargs
):
789 """PushStatusText(self, String text, int number=0)"""
790 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
792 def PopStatusText(*args
, **kwargs
):
793 """PopStatusText(self, int number=0)"""
794 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
796 def SetStatusWidths(*args
, **kwargs
):
797 """SetStatusWidths(self, int widths, int widths_field)"""
798 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
800 def SetStatusStyles(*args
, **kwargs
):
801 """SetStatusStyles(self, int styles, int styles_field)"""
802 return _windows_
.StatusBar_SetStatusStyles(*args
, **kwargs
)
804 def GetFieldRect(*args
, **kwargs
):
805 """GetFieldRect(self, int i) -> Rect"""
806 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
808 def SetMinHeight(*args
, **kwargs
):
809 """SetMinHeight(self, int height)"""
810 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
812 def GetBorderX(*args
, **kwargs
):
813 """GetBorderX(self) -> int"""
814 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
816 def GetBorderY(*args
, **kwargs
):
817 """GetBorderY(self) -> int"""
818 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
820 def GetClassDefaultAttributes(*args
, **kwargs
):
822 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
824 Get the default attributes for this class. This is useful if you want
825 to use the same font or colour in your own control as in a standard
826 control -- which is a much better idea than hard coding specific
827 colours or fonts which might look completely out of place on the
828 user's system, especially if it uses themes.
830 The variant parameter is only relevant under Mac currently and is
831 ignore under other platforms. Under Mac, it will change the size of
832 the returned font. See `wx.Window.SetWindowVariant` for more about
835 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
837 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
839 class StatusBarPtr(StatusBar
):
840 def __init__(self
, this
):
842 if not hasattr(self
,"thisown"): self
.thisown
= 0
843 self
.__class
__ = StatusBar
844 _windows_
.StatusBar_swigregister(StatusBarPtr
)
846 def PreStatusBar(*args
, **kwargs
):
847 """PreStatusBar() -> StatusBar"""
848 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
852 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
854 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
856 Get the default attributes for this class. This is useful if you want
857 to use the same font or colour in your own control as in a standard
858 control -- which is a much better idea than hard coding specific
859 colours or fonts which might look completely out of place on the
860 user's system, especially if it uses themes.
862 The variant parameter is only relevant under Mac currently and is
863 ignore under other platforms. Under Mac, it will change the size of
864 the returned font. See `wx.Window.SetWindowVariant` for more about
867 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
869 #---------------------------------------------------------------------------
871 SP_NOBORDER
= _windows_
.SP_NOBORDER
872 SP_NOSASH
= _windows_
.SP_NOSASH
873 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
874 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
875 SP_3DSASH
= _windows_
.SP_3DSASH
876 SP_3DBORDER
= _windows_
.SP_3DBORDER
877 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
878 SP_BORDER
= _windows_
.SP_BORDER
879 SP_3D
= _windows_
.SP_3D
880 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
881 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
882 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
883 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
884 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
885 class SplitterWindow(_core
.Window
):
887 wx.SplitterWindow manages up to two subwindows or panes, with an
888 optional vertical or horizontal split which can be used with the mouse
892 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
893 def __init__(self
, *args
, **kwargs
):
895 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
896 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
898 Constructor. Creates and shows a SplitterWindow.
900 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
901 newobj
= _windows_
.new_SplitterWindow(*args
, **kwargs
)
902 self
.this
= newobj
.this
905 self
._setOORInfo
(self
)
907 def Create(*args
, **kwargs
):
909 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
910 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
912 Create the GUI part of the SplitterWindow for the 2-phase create.
914 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
916 def GetWindow1(*args
, **kwargs
):
918 GetWindow1(self) -> Window
920 Gets the only or left/top pane.
922 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
924 def GetWindow2(*args
, **kwargs
):
926 GetWindow2(self) -> Window
928 Gets the right/bottom pane.
930 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
932 def SetSplitMode(*args
, **kwargs
):
934 SetSplitMode(self, int mode)
936 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
937 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
940 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
942 def GetSplitMode(*args
, **kwargs
):
944 GetSplitMode(self) -> int
948 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
950 def Initialize(*args
, **kwargs
):
952 Initialize(self, Window window)
954 Initializes the splitter window to have one pane. This should be
955 called if you wish to initially view only a single pane in the
958 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
960 def SplitVertically(*args
, **kwargs
):
962 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
964 Initializes the left and right panes of the splitter window.
966 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
968 def SplitHorizontally(*args
, **kwargs
):
970 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
972 Initializes the top and bottom panes of the splitter window.
974 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
976 def Unsplit(*args
, **kwargs
):
978 Unsplit(self, Window toRemove=None) -> bool
980 Unsplits the window. Pass the pane to remove, or None to remove the
981 right or bottom pane. Returns True if successful, False otherwise (the
982 window was not split).
984 This function will not actually delete the pane being
985 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
986 for the desired behaviour. By default, the pane being
987 removed is only hidden.
989 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
991 def ReplaceWindow(*args
, **kwargs
):
993 ReplaceWindow(self, Window winOld, Window winNew) -> bool
995 This function replaces one of the windows managed by the
996 SplitterWindow with another one. It is in general better to use it
997 instead of calling Unsplit() and then resplitting the window back
998 because it will provoke much less flicker. It is valid to call this
999 function whether the splitter has two windows or only one.
1001 Both parameters should be non-None and winOld must specify one of the
1002 windows managed by the splitter. If the parameters are incorrect or
1003 the window couldn't be replaced, False is returned. Otherwise the
1004 function will return True, but please notice that it will not Destroy
1005 the replaced window and you may wish to do it yourself.
1007 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1009 def UpdateSize(*args
, **kwargs
):
1013 Causes any pending sizing of the sash and child panes to take place
1016 Such resizing normally takes place in idle time, in order to wait for
1017 layout to be completed. However, this can cause unacceptable flicker
1018 as the panes are resized after the window has been shown. To work
1019 around this, you can perform window layout (for example by sending a
1020 size event to the parent window), and then call this function, before
1021 showing the top-level window.
1023 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1025 def IsSplit(*args
, **kwargs
):
1027 IsSplit(self) -> bool
1029 Is the window split?
1031 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1033 def SetSashSize(*args
, **kwargs
):
1035 SetSashSize(self, int width)
1039 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1041 def SetBorderSize(*args
, **kwargs
):
1043 SetBorderSize(self, int width)
1045 Sets the border size
1047 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1049 def GetSashSize(*args
, **kwargs
):
1051 GetSashSize(self) -> int
1055 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1057 def GetBorderSize(*args
, **kwargs
):
1059 GetBorderSize(self) -> int
1061 Gets the border size
1063 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1065 def SetSashPosition(*args
, **kwargs
):
1067 SetSashPosition(self, int position, bool redraw=True)
1069 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1070 are resized and the sash and border are redrawn.
1072 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1074 def GetSashPosition(*args
, **kwargs
):
1076 GetSashPosition(self) -> int
1078 Returns the surrent sash position.
1080 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1082 def SetMinimumPaneSize(*args
, **kwargs
):
1084 SetMinimumPaneSize(self, int min)
1086 Sets the minimum pane size in pixels.
1088 The default minimum pane size is zero, which means that either pane
1089 can be reduced to zero by dragging the sash, thus removing one of the
1090 panes. To prevent this behaviour (and veto out-of-range sash
1091 dragging), set a minimum size, for example 20 pixels. If the
1092 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1093 the window may be unsplit even if minimum size is non-zero.
1095 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1097 def GetMinimumPaneSize(*args
, **kwargs
):
1099 GetMinimumPaneSize(self) -> int
1101 Gets the minimum pane size in pixels.
1103 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1105 def SashHitTest(*args
, **kwargs
):
1107 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1109 Tests for x, y over the sash
1111 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1113 def SizeWindows(*args
, **kwargs
):
1119 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1121 def SetNeedUpdating(*args
, **kwargs
):
1122 """SetNeedUpdating(self, bool needUpdating)"""
1123 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1125 def GetNeedUpdating(*args
, **kwargs
):
1126 """GetNeedUpdating(self) -> bool"""
1127 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1129 def GetClassDefaultAttributes(*args
, **kwargs
):
1131 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1133 Get the default attributes for this class. This is useful if you want
1134 to use the same font or colour in your own control as in a standard
1135 control -- which is a much better idea than hard coding specific
1136 colours or fonts which might look completely out of place on the
1137 user's system, especially if it uses themes.
1139 The variant parameter is only relevant under Mac currently and is
1140 ignore under other platforms. Under Mac, it will change the size of
1141 the returned font. See `wx.Window.SetWindowVariant` for more about
1144 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1146 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1148 class SplitterWindowPtr(SplitterWindow
):
1149 def __init__(self
, this
):
1151 if not hasattr(self
,"thisown"): self
.thisown
= 0
1152 self
.__class
__ = SplitterWindow
1153 _windows_
.SplitterWindow_swigregister(SplitterWindowPtr
)
1154 SplitterNameStr
= cvar
.SplitterNameStr
1156 def PreSplitterWindow(*args
, **kwargs
):
1158 PreSplitterWindow() -> SplitterWindow
1160 Precreate a SplitterWindow for 2-phase creation.
1162 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1166 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1168 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1170 Get the default attributes for this class. This is useful if you want
1171 to use the same font or colour in your own control as in a standard
1172 control -- which is a much better idea than hard coding specific
1173 colours or fonts which might look completely out of place on the
1174 user's system, especially if it uses themes.
1176 The variant parameter is only relevant under Mac currently and is
1177 ignore under other platforms. Under Mac, it will change the size of
1178 the returned font. See `wx.Window.SetWindowVariant` for more about
1181 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1183 class SplitterEvent(_core
.NotifyEvent
):
1184 """This class represents the events generated by a splitter control."""
1186 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1187 def __init__(self
, *args
, **kwargs
):
1189 __init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1191 This class represents the events generated by a splitter control.
1193 newobj
= _windows_
.new_SplitterEvent(*args
, **kwargs
)
1194 self
.this
= newobj
.this
1197 def SetSashPosition(*args
, **kwargs
):
1199 SetSashPosition(self, int pos)
1201 This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1202 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1203 events, sets the the new sash position. In the case of _CHANGING
1204 events, sets the new tracking bar position so visual feedback during
1205 dragging will represent that change that will actually take place. Set
1206 to -1 from the event handler code to prevent repositioning.
1208 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1210 def GetSashPosition(*args
, **kwargs
):
1212 GetSashPosition(self) -> int
1214 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1215 and EVT_SPLITTER_SASH_POS_CHANGED events.
1217 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1219 def GetWindowBeingRemoved(*args
, **kwargs
):
1221 GetWindowBeingRemoved(self) -> Window
1223 Returns a pointer to the window being removed when a splitter window
1226 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1228 def GetX(*args
, **kwargs
):
1232 Returns the x coordinate of the double-click point in a
1233 EVT_SPLITTER_DCLICK event.
1235 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1237 def GetY(*args
, **kwargs
):
1241 Returns the y coordinate of the double-click point in a
1242 EVT_SPLITTER_DCLICK event.
1244 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1247 class SplitterEventPtr(SplitterEvent
):
1248 def __init__(self
, this
):
1250 if not hasattr(self
,"thisown"): self
.thisown
= 0
1251 self
.__class
__ = SplitterEvent
1252 _windows_
.SplitterEvent_swigregister(SplitterEventPtr
)
1254 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1255 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1256 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1257 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1258 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1259 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1260 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1261 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1262 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1264 #---------------------------------------------------------------------------
1266 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1267 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1268 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1269 SW_NOBORDER
= _windows_
.SW_NOBORDER
1270 SW_BORDER
= _windows_
.SW_BORDER
1271 SW_3DSASH
= _windows_
.SW_3DSASH
1272 SW_3DBORDER
= _windows_
.SW_3DBORDER
1273 SW_3D
= _windows_
.SW_3D
1274 SASH_TOP
= _windows_
.SASH_TOP
1275 SASH_RIGHT
= _windows_
.SASH_RIGHT
1276 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1277 SASH_LEFT
= _windows_
.SASH_LEFT
1278 SASH_NONE
= _windows_
.SASH_NONE
1279 class SashWindow(_core
.Window
):
1281 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1282 def __init__(self
, *args
, **kwargs
):
1284 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1285 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1286 String name=SashNameStr) -> SashWindow
1288 newobj
= _windows_
.new_SashWindow(*args
, **kwargs
)
1289 self
.this
= newobj
.this
1292 self
._setOORInfo
(self
)
1294 def Create(*args
, **kwargs
):
1296 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1297 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1298 String name=SashNameStr) -> bool
1300 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1302 def SetSashVisible(*args
, **kwargs
):
1303 """SetSashVisible(self, int edge, bool sash)"""
1304 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1306 def GetSashVisible(*args
, **kwargs
):
1307 """GetSashVisible(self, int edge) -> bool"""
1308 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1310 def SetSashBorder(*args
, **kwargs
):
1311 """SetSashBorder(self, int edge, bool border)"""
1312 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1314 def HasBorder(*args
, **kwargs
):
1315 """HasBorder(self, int edge) -> bool"""
1316 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1318 def GetEdgeMargin(*args
, **kwargs
):
1319 """GetEdgeMargin(self, int edge) -> int"""
1320 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1322 def SetDefaultBorderSize(*args
, **kwargs
):
1323 """SetDefaultBorderSize(self, int width)"""
1324 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1326 def GetDefaultBorderSize(*args
, **kwargs
):
1327 """GetDefaultBorderSize(self) -> int"""
1328 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1330 def SetExtraBorderSize(*args
, **kwargs
):
1331 """SetExtraBorderSize(self, int width)"""
1332 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1334 def GetExtraBorderSize(*args
, **kwargs
):
1335 """GetExtraBorderSize(self) -> int"""
1336 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1338 def SetMinimumSizeX(*args
, **kwargs
):
1339 """SetMinimumSizeX(self, int min)"""
1340 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1342 def SetMinimumSizeY(*args
, **kwargs
):
1343 """SetMinimumSizeY(self, int min)"""
1344 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1346 def GetMinimumSizeX(*args
, **kwargs
):
1347 """GetMinimumSizeX(self) -> int"""
1348 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1350 def GetMinimumSizeY(*args
, **kwargs
):
1351 """GetMinimumSizeY(self) -> int"""
1352 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1354 def SetMaximumSizeX(*args
, **kwargs
):
1355 """SetMaximumSizeX(self, int max)"""
1356 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1358 def SetMaximumSizeY(*args
, **kwargs
):
1359 """SetMaximumSizeY(self, int max)"""
1360 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1362 def GetMaximumSizeX(*args
, **kwargs
):
1363 """GetMaximumSizeX(self) -> int"""
1364 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1366 def GetMaximumSizeY(*args
, **kwargs
):
1367 """GetMaximumSizeY(self) -> int"""
1368 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1370 def SashHitTest(*args
, **kwargs
):
1371 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1372 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1374 def SizeWindows(*args
, **kwargs
):
1375 """SizeWindows(self)"""
1376 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1379 class SashWindowPtr(SashWindow
):
1380 def __init__(self
, this
):
1382 if not hasattr(self
,"thisown"): self
.thisown
= 0
1383 self
.__class
__ = SashWindow
1384 _windows_
.SashWindow_swigregister(SashWindowPtr
)
1385 SashNameStr
= cvar
.SashNameStr
1386 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1388 def PreSashWindow(*args
, **kwargs
):
1389 """PreSashWindow() -> SashWindow"""
1390 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1394 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1395 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1396 class SashEvent(_core
.CommandEvent
):
1398 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1399 def __init__(self
, *args
, **kwargs
):
1400 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1401 newobj
= _windows_
.new_SashEvent(*args
, **kwargs
)
1402 self
.this
= newobj
.this
1405 def SetEdge(*args
, **kwargs
):
1406 """SetEdge(self, int edge)"""
1407 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1409 def GetEdge(*args
, **kwargs
):
1410 """GetEdge(self) -> int"""
1411 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1413 def SetDragRect(*args
, **kwargs
):
1414 """SetDragRect(self, Rect rect)"""
1415 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1417 def GetDragRect(*args
, **kwargs
):
1418 """GetDragRect(self) -> Rect"""
1419 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1421 def SetDragStatus(*args
, **kwargs
):
1422 """SetDragStatus(self, int status)"""
1423 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1425 def GetDragStatus(*args
, **kwargs
):
1426 """GetDragStatus(self) -> int"""
1427 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1430 class SashEventPtr(SashEvent
):
1431 def __init__(self
, this
):
1433 if not hasattr(self
,"thisown"): self
.thisown
= 0
1434 self
.__class
__ = SashEvent
1435 _windows_
.SashEvent_swigregister(SashEventPtr
)
1437 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1438 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1439 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1441 #---------------------------------------------------------------------------
1443 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1444 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1445 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1446 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1447 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1448 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1449 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1450 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1451 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1452 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1453 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1454 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1455 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1456 class QueryLayoutInfoEvent(_core
.Event
):
1458 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1459 def __init__(self
, *args
, **kwargs
):
1460 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1461 newobj
= _windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
)
1462 self
.this
= newobj
.this
1465 def SetRequestedLength(*args
, **kwargs
):
1466 """SetRequestedLength(self, int length)"""
1467 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1469 def GetRequestedLength(*args
, **kwargs
):
1470 """GetRequestedLength(self) -> int"""
1471 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1473 def SetFlags(*args
, **kwargs
):
1474 """SetFlags(self, int flags)"""
1475 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1477 def GetFlags(*args
, **kwargs
):
1478 """GetFlags(self) -> int"""
1479 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1481 def SetSize(*args
, **kwargs
):
1482 """SetSize(self, Size size)"""
1483 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1485 def GetSize(*args
, **kwargs
):
1486 """GetSize(self) -> Size"""
1487 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1489 def SetOrientation(*args
, **kwargs
):
1490 """SetOrientation(self, int orient)"""
1491 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1493 def GetOrientation(*args
, **kwargs
):
1494 """GetOrientation(self) -> int"""
1495 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1497 def SetAlignment(*args
, **kwargs
):
1498 """SetAlignment(self, int align)"""
1499 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1501 def GetAlignment(*args
, **kwargs
):
1502 """GetAlignment(self) -> int"""
1503 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1506 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent
):
1507 def __init__(self
, this
):
1509 if not hasattr(self
,"thisown"): self
.thisown
= 0
1510 self
.__class
__ = QueryLayoutInfoEvent
1511 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr
)
1513 class CalculateLayoutEvent(_core
.Event
):
1515 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1516 def __init__(self
, *args
, **kwargs
):
1517 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1518 newobj
= _windows_
.new_CalculateLayoutEvent(*args
, **kwargs
)
1519 self
.this
= newobj
.this
1522 def SetFlags(*args
, **kwargs
):
1523 """SetFlags(self, int flags)"""
1524 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1526 def GetFlags(*args
, **kwargs
):
1527 """GetFlags(self) -> int"""
1528 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1530 def SetRect(*args
, **kwargs
):
1531 """SetRect(self, Rect rect)"""
1532 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1534 def GetRect(*args
, **kwargs
):
1535 """GetRect(self) -> Rect"""
1536 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1539 class CalculateLayoutEventPtr(CalculateLayoutEvent
):
1540 def __init__(self
, this
):
1542 if not hasattr(self
,"thisown"): self
.thisown
= 0
1543 self
.__class
__ = CalculateLayoutEvent
1544 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr
)
1546 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1547 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1549 class SashLayoutWindow(SashWindow
):
1551 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1552 def __init__(self
, *args
, **kwargs
):
1554 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1555 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1556 String name=SashLayoutNameStr) -> SashLayoutWindow
1558 newobj
= _windows_
.new_SashLayoutWindow(*args
, **kwargs
)
1559 self
.this
= newobj
.this
1562 self
._setOORInfo
(self
)
1564 def Create(*args
, **kwargs
):
1566 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1567 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1568 String name=SashLayoutNameStr) -> bool
1570 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1572 def GetAlignment(*args
, **kwargs
):
1573 """GetAlignment(self) -> int"""
1574 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1576 def GetOrientation(*args
, **kwargs
):
1577 """GetOrientation(self) -> int"""
1578 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1580 def SetAlignment(*args
, **kwargs
):
1581 """SetAlignment(self, int alignment)"""
1582 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1584 def SetDefaultSize(*args
, **kwargs
):
1585 """SetDefaultSize(self, Size size)"""
1586 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1588 def SetOrientation(*args
, **kwargs
):
1589 """SetOrientation(self, int orientation)"""
1590 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1593 class SashLayoutWindowPtr(SashLayoutWindow
):
1594 def __init__(self
, this
):
1596 if not hasattr(self
,"thisown"): self
.thisown
= 0
1597 self
.__class
__ = SashLayoutWindow
1598 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindowPtr
)
1600 def PreSashLayoutWindow(*args
, **kwargs
):
1601 """PreSashLayoutWindow() -> SashLayoutWindow"""
1602 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1606 class LayoutAlgorithm(_core
.Object
):
1608 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1609 def __init__(self
, *args
, **kwargs
):
1610 """__init__(self) -> LayoutAlgorithm"""
1611 newobj
= _windows_
.new_LayoutAlgorithm(*args
, **kwargs
)
1612 self
.this
= newobj
.this
1615 def __del__(self
, destroy
=_windows_
.delete_LayoutAlgorithm
):
1618 if self
.thisown
: destroy(self
)
1621 def LayoutMDIFrame(*args
, **kwargs
):
1622 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1623 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1625 def LayoutFrame(*args
, **kwargs
):
1626 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1627 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1629 def LayoutWindow(*args
, **kwargs
):
1630 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1631 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1634 class LayoutAlgorithmPtr(LayoutAlgorithm
):
1635 def __init__(self
, this
):
1637 if not hasattr(self
,"thisown"): self
.thisown
= 0
1638 self
.__class
__ = LayoutAlgorithm
1639 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr
)
1641 #---------------------------------------------------------------------------
1643 class PopupWindow(_core
.Window
):
1645 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1646 def __init__(self
, *args
, **kwargs
):
1647 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1648 newobj
= _windows_
.new_PopupWindow(*args
, **kwargs
)
1649 self
.this
= newobj
.this
1652 self
._setOORInfo
(self
)
1654 def Create(*args
, **kwargs
):
1655 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1656 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1658 def Position(*args
, **kwargs
):
1659 """Position(self, Point ptOrigin, Size size)"""
1660 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1663 class PopupWindowPtr(PopupWindow
):
1664 def __init__(self
, this
):
1666 if not hasattr(self
,"thisown"): self
.thisown
= 0
1667 self
.__class
__ = PopupWindow
1668 _windows_
.PopupWindow_swigregister(PopupWindowPtr
)
1670 def PrePopupWindow(*args
, **kwargs
):
1671 """PrePopupWindow() -> PopupWindow"""
1672 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1676 #---------------------------------------------------------------------------
1678 class PopupTransientWindow(PopupWindow
):
1680 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1681 def __init__(self
, *args
, **kwargs
):
1682 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1683 newobj
= _windows_
.new_PopupTransientWindow(*args
, **kwargs
)
1684 self
.this
= newobj
.this
1687 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1689 def _setCallbackInfo(*args
, **kwargs
):
1690 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1691 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1693 def Popup(*args
, **kwargs
):
1694 """Popup(self, Window focus=None)"""
1695 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1697 def Dismiss(*args
, **kwargs
):
1699 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1702 class PopupTransientWindowPtr(PopupTransientWindow
):
1703 def __init__(self
, this
):
1705 if not hasattr(self
,"thisown"): self
.thisown
= 0
1706 self
.__class
__ = PopupTransientWindow
1707 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindowPtr
)
1709 def PrePopupTransientWindow(*args
, **kwargs
):
1710 """PrePopupTransientWindow() -> PopupTransientWindow"""
1711 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1715 #---------------------------------------------------------------------------
1717 class TipWindow(PopupTransientWindow
):
1719 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1720 def __init__(self
, *args
, **kwargs
):
1721 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1722 newobj
= _windows_
.new_TipWindow(*args
, **kwargs
)
1723 self
.this
= newobj
.this
1726 self
._setOORInfo
(self
)
1728 def SetBoundingRect(*args
, **kwargs
):
1729 """SetBoundingRect(self, Rect rectBound)"""
1730 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1732 def Close(*args
, **kwargs
):
1734 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1737 class TipWindowPtr(TipWindow
):
1738 def __init__(self
, this
):
1740 if not hasattr(self
,"thisown"): self
.thisown
= 0
1741 self
.__class
__ = TipWindow
1742 _windows_
.TipWindow_swigregister(TipWindowPtr
)
1744 #---------------------------------------------------------------------------
1746 class VScrolledWindow(Panel
):
1748 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1749 def __init__(self
, *args
, **kwargs
):
1751 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1752 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1754 newobj
= _windows_
.new_VScrolledWindow(*args
, **kwargs
)
1755 self
.this
= newobj
.this
1758 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1760 def _setCallbackInfo(*args
, **kwargs
):
1761 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1762 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1764 def Create(*args
, **kwargs
):
1766 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1767 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1769 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1771 def SetLineCount(*args
, **kwargs
):
1772 """SetLineCount(self, size_t count)"""
1773 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1775 def ScrollToLine(*args
, **kwargs
):
1776 """ScrollToLine(self, size_t line) -> bool"""
1777 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1779 def ScrollLines(*args
, **kwargs
):
1780 """ScrollLines(self, int lines) -> bool"""
1781 return _windows_
.VScrolledWindow_ScrollLines(*args
, **kwargs
)
1783 def ScrollPages(*args
, **kwargs
):
1785 ScrollPages(self, int pages) -> bool
1787 If the platform and window class supports it, scrolls the window by
1788 the given number of pages down, if pages is positive, or up if pages
1789 is negative. Returns True if the window was scrolled, False if it was
1790 already on top/bottom and nothing was done.
1792 return _windows_
.VScrolledWindow_ScrollPages(*args
, **kwargs
)
1794 def RefreshLine(*args
, **kwargs
):
1795 """RefreshLine(self, size_t line)"""
1796 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1798 def RefreshLines(*args
, **kwargs
):
1799 """RefreshLines(self, size_t from, size_t to)"""
1800 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1802 def HitTestXT(*args
, **kwargs
):
1803 """HitTestXT(self, int x, int y) -> int"""
1804 return _windows_
.VScrolledWindow_HitTestXT(*args
, **kwargs
)
1806 def HitTest(*args
, **kwargs
):
1807 """HitTest(self, Point pt) -> int"""
1808 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1810 def RefreshAll(*args
, **kwargs
):
1811 """RefreshAll(self)"""
1812 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1814 def GetLineCount(*args
, **kwargs
):
1815 """GetLineCount(self) -> size_t"""
1816 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1818 def GetFirstVisibleLine(*args
, **kwargs
):
1819 """GetFirstVisibleLine(self) -> size_t"""
1820 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1822 def GetLastVisibleLine(*args
, **kwargs
):
1823 """GetLastVisibleLine(self) -> size_t"""
1824 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1826 def IsVisible(*args
, **kwargs
):
1827 """IsVisible(self, size_t line) -> bool"""
1828 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1831 class VScrolledWindowPtr(VScrolledWindow
):
1832 def __init__(self
, this
):
1834 if not hasattr(self
,"thisown"): self
.thisown
= 0
1835 self
.__class
__ = VScrolledWindow
1836 _windows_
.VScrolledWindow_swigregister(VScrolledWindowPtr
)
1838 def PreVScrolledWindow(*args
, **kwargs
):
1839 """PreVScrolledWindow() -> VScrolledWindow"""
1840 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1844 class VListBox(VScrolledWindow
):
1846 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1847 def __init__(self
, *args
, **kwargs
):
1849 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1850 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1852 newobj
= _windows_
.new_VListBox(*args
, **kwargs
)
1853 self
.this
= newobj
.this
1856 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1858 def _setCallbackInfo(*args
, **kwargs
):
1859 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1860 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1862 def Create(*args
, **kwargs
):
1864 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1865 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1867 return _windows_
.VListBox_Create(*args
, **kwargs
)
1869 def GetItemCount(*args
, **kwargs
):
1870 """GetItemCount(self) -> size_t"""
1871 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1873 def HasMultipleSelection(*args
, **kwargs
):
1874 """HasMultipleSelection(self) -> bool"""
1875 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1877 def GetSelection(*args
, **kwargs
):
1878 """GetSelection(self) -> int"""
1879 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1881 def IsCurrent(*args
, **kwargs
):
1882 """IsCurrent(self, size_t item) -> bool"""
1883 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1885 def IsSelected(*args
, **kwargs
):
1886 """IsSelected(self, size_t item) -> bool"""
1887 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1889 def GetSelectedCount(*args
, **kwargs
):
1890 """GetSelectedCount(self) -> size_t"""
1891 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1893 def GetFirstSelected(*args
, **kwargs
):
1894 """GetFirstSelected(self) -> PyObject"""
1895 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1897 def GetNextSelected(*args
, **kwargs
):
1898 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1899 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1901 def GetMargins(*args
, **kwargs
):
1902 """GetMargins(self) -> Point"""
1903 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1905 def GetSelectionBackground(*args
, **kwargs
):
1906 """GetSelectionBackground(self) -> Colour"""
1907 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1909 def SetItemCount(*args
, **kwargs
):
1910 """SetItemCount(self, size_t count)"""
1911 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1913 def Clear(*args
, **kwargs
):
1915 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1917 def SetSelection(*args
, **kwargs
):
1918 """SetSelection(self, int selection)"""
1919 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1921 def Select(*args
, **kwargs
):
1922 """Select(self, size_t item, bool select=True) -> bool"""
1923 return _windows_
.VListBox_Select(*args
, **kwargs
)
1925 def SelectRange(*args
, **kwargs
):
1926 """SelectRange(self, size_t from, size_t to) -> bool"""
1927 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1929 def Toggle(*args
, **kwargs
):
1930 """Toggle(self, size_t item)"""
1931 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1933 def SelectAll(*args
, **kwargs
):
1934 """SelectAll(self) -> bool"""
1935 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1937 def DeselectAll(*args
, **kwargs
):
1938 """DeselectAll(self) -> bool"""
1939 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1941 def SetMargins(*args
, **kwargs
):
1942 """SetMargins(self, Point pt)"""
1943 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1945 def SetMarginsXY(*args
, **kwargs
):
1946 """SetMarginsXY(self, int x, int y)"""
1947 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1949 def SetSelectionBackground(*args
, **kwargs
):
1950 """SetSelectionBackground(self, Colour col)"""
1951 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1954 class VListBoxPtr(VListBox
):
1955 def __init__(self
, this
):
1957 if not hasattr(self
,"thisown"): self
.thisown
= 0
1958 self
.__class
__ = VListBox
1959 _windows_
.VListBox_swigregister(VListBoxPtr
)
1960 VListBoxNameStr
= cvar
.VListBoxNameStr
1962 def PreVListBox(*args
, **kwargs
):
1963 """PreVListBox() -> VListBox"""
1964 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1968 class HtmlListBox(VListBox
):
1970 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1971 def __init__(self
, *args
, **kwargs
):
1973 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1974 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1976 newobj
= _windows_
.new_HtmlListBox(*args
, **kwargs
)
1977 self
.this
= newobj
.this
1980 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1982 def _setCallbackInfo(*args
, **kwargs
):
1983 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1984 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1986 def Create(*args
, **kwargs
):
1988 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1989 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1991 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
1993 def RefreshAll(*args
, **kwargs
):
1994 """RefreshAll(self)"""
1995 return _windows_
.HtmlListBox_RefreshAll(*args
, **kwargs
)
1997 def SetItemCount(*args
, **kwargs
):
1998 """SetItemCount(self, size_t count)"""
1999 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
2001 def GetFileSystem(*args
, **kwargs
):
2002 """GetFileSystem(self) -> FileSystem"""
2003 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
2006 class HtmlListBoxPtr(HtmlListBox
):
2007 def __init__(self
, this
):
2009 if not hasattr(self
,"thisown"): self
.thisown
= 0
2010 self
.__class
__ = HtmlListBox
2011 _windows_
.HtmlListBox_swigregister(HtmlListBoxPtr
)
2013 def PreHtmlListBox(*args
, **kwargs
):
2014 """PreHtmlListBox() -> HtmlListBox"""
2015 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
2019 #---------------------------------------------------------------------------
2021 class TaskBarIcon(_core
.EvtHandler
):
2023 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2024 def __init__(self
, *args
, **kwargs
):
2025 """__init__(self) -> TaskBarIcon"""
2026 newobj
= _windows_
.new_TaskBarIcon(*args
, **kwargs
)
2027 self
.this
= newobj
.this
2030 def __del__(self
, destroy
=_windows_
.delete_TaskBarIcon
):
2033 if self
.thisown
: destroy(self
)
2036 def Destroy(*args
, **kwargs
):
2040 Deletes the C++ object this Python object is a proxy for.
2042 return _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2044 def IsOk(*args
, **kwargs
):
2045 """IsOk(self) -> bool"""
2046 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
2048 def __nonzero__(self
): return self
.IsOk()
2049 def IsIconInstalled(*args
, **kwargs
):
2050 """IsIconInstalled(self) -> bool"""
2051 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
2053 def SetIcon(*args
, **kwargs
):
2054 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2055 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2057 def RemoveIcon(*args
, **kwargs
):
2058 """RemoveIcon(self) -> bool"""
2059 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2061 def PopupMenu(*args
, **kwargs
):
2062 """PopupMenu(self, Menu menu) -> bool"""
2063 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2066 class TaskBarIconPtr(TaskBarIcon
):
2067 def __init__(self
, this
):
2069 if not hasattr(self
,"thisown"): self
.thisown
= 0
2070 self
.__class
__ = TaskBarIcon
2071 _windows_
.TaskBarIcon_swigregister(TaskBarIconPtr
)
2073 class TaskBarIconEvent(_core
.Event
):
2075 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2076 def __init__(self
, *args
, **kwargs
):
2077 """__init__(self, wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
2078 newobj
= _windows_
.new_TaskBarIconEvent(*args
, **kwargs
)
2079 self
.this
= newobj
.this
2083 class TaskBarIconEventPtr(TaskBarIconEvent
):
2084 def __init__(self
, this
):
2086 if not hasattr(self
,"thisown"): self
.thisown
= 0
2087 self
.__class
__ = TaskBarIconEvent
2088 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEventPtr
)
2090 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2091 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2092 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2093 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2094 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2095 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2096 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2097 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2098 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2099 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2100 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2101 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2102 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2103 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2105 #---------------------------------------------------------------------------
2107 class ColourData(_core
.Object
):
2109 This class holds a variety of information related to the colour
2110 chooser dialog, used to transfer settings and results to and from the
2114 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2115 def __init__(self
, *args
, **kwargs
):
2117 __init__(self) -> ColourData
2119 Constructor, sets default values.
2121 newobj
= _windows_
.new_ColourData(*args
, **kwargs
)
2122 self
.this
= newobj
.this
2125 def __del__(self
, destroy
=_windows_
.delete_ColourData
):
2128 if self
.thisown
: destroy(self
)
2131 def GetChooseFull(*args
, **kwargs
):
2133 GetChooseFull(self) -> bool
2135 Under Windows, determines whether the Windows colour dialog will
2136 display the full dialog with custom colour selection controls. Has no
2137 meaning under other platforms. The default value is true.
2139 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2141 def GetColour(*args
, **kwargs
):
2143 GetColour(self) -> Colour
2145 Gets the colour (pre)selected by the dialog.
2147 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2149 def GetCustomColour(*args
, **kwargs
):
2151 GetCustomColour(self, int i) -> Colour
2153 Gets the i'th custom colour associated with the colour dialog. i
2154 should be an integer between 0 and 15. The default custom colours are
2155 all invalid colours.
2157 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2159 def SetChooseFull(*args
, **kwargs
):
2161 SetChooseFull(self, int flag)
2163 Under Windows, tells the Windows colour dialog to display the full
2164 dialog with custom colour selection controls. Under other platforms,
2165 has no effect. The default value is true.
2167 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2169 def SetColour(*args
, **kwargs
):
2171 SetColour(self, Colour colour)
2173 Sets the default colour for the colour dialog. The default colour is
2176 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2178 def SetCustomColour(*args
, **kwargs
):
2180 SetCustomColour(self, int i, Colour colour)
2182 Sets the i'th custom colour for the colour dialog. i should be an
2183 integer between 0 and 15. The default custom colours are all invalid colours.
2185 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2188 class ColourDataPtr(ColourData
):
2189 def __init__(self
, this
):
2191 if not hasattr(self
,"thisown"): self
.thisown
= 0
2192 self
.__class
__ = ColourData
2193 _windows_
.ColourData_swigregister(ColourDataPtr
)
2194 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2195 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2196 DirDialogNameStr
= cvar
.DirDialogNameStr
2197 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2198 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2199 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2201 class ColourDialog(Dialog
):
2202 """This class represents the colour chooser dialog."""
2204 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2205 def __init__(self
, *args
, **kwargs
):
2207 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2209 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2210 which will be copied to the colour dialog's internal ColourData
2213 newobj
= _windows_
.new_ColourDialog(*args
, **kwargs
)
2214 self
.this
= newobj
.this
2217 self
._setOORInfo
(self
)
2219 def GetColourData(*args
, **kwargs
):
2221 GetColourData(self) -> ColourData
2223 Returns a reference to the `wx.ColourData` used by the dialog.
2225 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2228 class ColourDialogPtr(ColourDialog
):
2229 def __init__(self
, this
):
2231 if not hasattr(self
,"thisown"): self
.thisown
= 0
2232 self
.__class
__ = ColourDialog
2233 _windows_
.ColourDialog_swigregister(ColourDialogPtr
)
2235 class DirDialog(Dialog
):
2237 wx.DirDialog allows the user to select a directory by browising the
2241 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2242 def __init__(self
, *args
, **kwargs
):
2244 __init__(self, Window parent, String message=DirSelectorPromptStr,
2245 String defaultPath=EmptyString, long style=0,
2246 Point pos=DefaultPosition, Size size=DefaultSize,
2247 String name=DirDialogNameStr) -> DirDialog
2249 Constructor. Use ShowModal method to show the dialog.
2251 newobj
= _windows_
.new_DirDialog(*args
, **kwargs
)
2252 self
.this
= newobj
.this
2255 self
._setOORInfo
(self
)
2257 def GetPath(*args
, **kwargs
):
2259 GetPath(self) -> String
2261 Returns the default or user-selected path.
2263 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2265 def GetMessage(*args
, **kwargs
):
2267 GetMessage(self) -> String
2269 Returns the message that will be displayed on the dialog.
2271 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2273 def GetStyle(*args
, **kwargs
):
2275 GetStyle(self) -> long
2277 Returns the dialog style.
2279 return _windows_
.DirDialog_GetStyle(*args
, **kwargs
)
2281 def SetMessage(*args
, **kwargs
):
2283 SetMessage(self, String message)
2285 Sets the message that will be displayed on the dialog.
2287 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2289 def SetPath(*args
, **kwargs
):
2291 SetPath(self, String path)
2293 Sets the default path.
2295 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2298 class DirDialogPtr(DirDialog
):
2299 def __init__(self
, this
):
2301 if not hasattr(self
,"thisown"): self
.thisown
= 0
2302 self
.__class
__ = DirDialog
2303 _windows_
.DirDialog_swigregister(DirDialogPtr
)
2305 class FileDialog(Dialog
):
2307 wx.FileDialog allows the user to select one or more files from the
2311 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2312 def __init__(self
, *args
, **kwargs
):
2314 __init__(self, Window parent, String message=FileSelectorPromptStr,
2315 String defaultDir=EmptyString, String defaultFile=EmptyString,
2316 String wildcard=FileSelectorDefaultWildcardStr,
2317 long style=0, Point pos=DefaultPosition) -> FileDialog
2319 Constructor. Use ShowModal method to show the dialog.
2321 newobj
= _windows_
.new_FileDialog(*args
, **kwargs
)
2322 self
.this
= newobj
.this
2325 self
._setOORInfo
(self
)
2327 def SetMessage(*args
, **kwargs
):
2329 SetMessage(self, String message)
2331 Sets the message that will be displayed on the dialog.
2333 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2335 def SetPath(*args
, **kwargs
):
2337 SetPath(self, String path)
2339 Sets the path (the combined directory and filename that will be
2340 returned when the dialog is dismissed).
2342 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2344 def SetDirectory(*args
, **kwargs
):
2346 SetDirectory(self, String dir)
2348 Sets the default directory.
2350 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2352 def SetFilename(*args
, **kwargs
):
2354 SetFilename(self, String name)
2356 Sets the default filename.
2358 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2360 def SetWildcard(*args
, **kwargs
):
2362 SetWildcard(self, String wildCard)
2364 Sets the wildcard, which can contain multiple file types, for
2367 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2370 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2372 def SetStyle(*args
, **kwargs
):
2374 SetStyle(self, long style)
2376 Sets the dialog style.
2378 return _windows_
.FileDialog_SetStyle(*args
, **kwargs
)
2380 def SetFilterIndex(*args
, **kwargs
):
2382 SetFilterIndex(self, int filterIndex)
2384 Sets the default filter index, starting from zero.
2386 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2388 def GetMessage(*args
, **kwargs
):
2390 GetMessage(self) -> String
2392 Returns the message that will be displayed on the dialog.
2394 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2396 def GetPath(*args
, **kwargs
):
2398 GetPath(self) -> String
2400 Returns the full path (directory and filename) of the selected file.
2402 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2404 def GetDirectory(*args
, **kwargs
):
2406 GetDirectory(self) -> String
2408 Returns the default directory.
2410 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2412 def GetFilename(*args
, **kwargs
):
2414 GetFilename(self) -> String
2416 Returns the default filename.
2418 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2420 def GetWildcard(*args
, **kwargs
):
2422 GetWildcard(self) -> String
2424 Returns the file dialog wildcard.
2426 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2428 def GetStyle(*args
, **kwargs
):
2430 GetStyle(self) -> long
2432 Returns the dialog style.
2434 return _windows_
.FileDialog_GetStyle(*args
, **kwargs
)
2436 def GetFilterIndex(*args
, **kwargs
):
2438 GetFilterIndex(self) -> int
2440 Returns the index into the list of filters supplied, optionally, in
2441 the wildcard parameter. Before the dialog is shown, this is the index
2442 which will be used when the dialog is first displayed. After the
2443 dialog is shown, this is the index selected by the user.
2445 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2447 def GetFilenames(*args
, **kwargs
):
2449 GetFilenames(self) -> PyObject
2451 Returns a list of filenames chosen in the dialog. This function
2452 should only be used with the dialogs which have wx.MULTIPLE style, use
2453 GetFilename for the others.
2455 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2457 def GetPaths(*args
, **kwargs
):
2459 GetPaths(self) -> PyObject
2461 Fills the array paths with the full paths of the files chosen. This
2462 function should only be used with the dialogs which have wx.MULTIPLE
2463 style, use GetPath for the others.
2465 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2468 class FileDialogPtr(FileDialog
):
2469 def __init__(self
, this
):
2471 if not hasattr(self
,"thisown"): self
.thisown
= 0
2472 self
.__class
__ = FileDialog
2473 _windows_
.FileDialog_swigregister(FileDialogPtr
)
2475 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2476 class MultiChoiceDialog(Dialog
):
2477 """A simple dialog with a multi selection listbox."""
2479 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2480 def __init__(self
, *args
, **kwargs
):
2482 __init__(Window parent, String message, String caption,
2483 List choices=[], long style=CHOICEDLG_STYLE,
2484 Point pos=DefaultPosition) -> MultiChoiceDialog
2486 Constructor. Use ShowModal method to show the dialog.
2488 newobj
= _windows_
.new_MultiChoiceDialog(*args
, **kwargs
)
2489 self
.this
= newobj
.this
2492 self
._setOORInfo
(self
)
2494 def SetSelections(*args
, **kwargs
):
2496 SetSelections(List selections)
2498 Specify the items in the list that should be selected, using a list of
2501 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2503 def GetSelections(*args
, **kwargs
):
2505 GetSelections() -> [selections]
2507 Returns a list of integers representing the items that are selected.
2509 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2512 class MultiChoiceDialogPtr(MultiChoiceDialog
):
2513 def __init__(self
, this
):
2515 if not hasattr(self
,"thisown"): self
.thisown
= 0
2516 self
.__class
__ = MultiChoiceDialog
2517 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr
)
2519 class SingleChoiceDialog(Dialog
):
2520 """A simple dialog with a single selection listbox."""
2522 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2523 def __init__(self
, *args
, **kwargs
):
2525 __init__(Window parent, String message, String caption,
2526 List choices=[], long style=CHOICEDLG_STYLE,
2527 Point pos=DefaultPosition) -> SingleChoiceDialog
2529 Constructor. Use ShowModal method to show the dialog.
2531 newobj
= _windows_
.new_SingleChoiceDialog(*args
, **kwargs
)
2532 self
.this
= newobj
.this
2535 self
._setOORInfo
(self
)
2537 def GetSelection(*args
, **kwargs
):
2539 GetSelection(self) -> int
2541 Get the index of teh currently selected item.
2543 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2545 def GetStringSelection(*args
, **kwargs
):
2547 GetStringSelection(self) -> String
2549 Returns the string value of the currently selected item
2551 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2553 def SetSelection(*args
, **kwargs
):
2555 SetSelection(self, int sel)
2557 Set the current selected item to sel
2559 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2562 class SingleChoiceDialogPtr(SingleChoiceDialog
):
2563 def __init__(self
, this
):
2565 if not hasattr(self
,"thisown"): self
.thisown
= 0
2566 self
.__class
__ = SingleChoiceDialog
2567 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr
)
2569 class TextEntryDialog(Dialog
):
2570 """A dialog with text control, [ok] and [cancel] buttons"""
2572 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2573 def __init__(self
, *args
, **kwargs
):
2575 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2576 String defaultValue=EmptyString,
2577 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2579 Constructor. Use ShowModal method to show the dialog.
2581 newobj
= _windows_
.new_TextEntryDialog(*args
, **kwargs
)
2582 self
.this
= newobj
.this
2585 self
._setOORInfo
(self
)
2587 def GetValue(*args
, **kwargs
):
2589 GetValue(self) -> String
2591 Returns the text that the user has entered if the user has pressed OK,
2592 or the original value if the user has pressed Cancel.
2594 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2596 def SetValue(*args
, **kwargs
):
2598 SetValue(self, String value)
2600 Sets the default text value.
2602 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2605 class TextEntryDialogPtr(TextEntryDialog
):
2606 def __init__(self
, this
):
2608 if not hasattr(self
,"thisown"): self
.thisown
= 0
2609 self
.__class
__ = TextEntryDialog
2610 _windows_
.TextEntryDialog_swigregister(TextEntryDialogPtr
)
2612 class FontData(_core
.Object
):
2614 This class holds a variety of information related to font dialogs and
2615 is used to transfer settings to and results from a `wx.FontDialog`.
2618 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2619 def __init__(self
, *args
, **kwargs
):
2621 __init__(self) -> FontData
2623 This class holds a variety of information related to font dialogs and
2624 is used to transfer settings to and results from a `wx.FontDialog`.
2626 newobj
= _windows_
.new_FontData(*args
, **kwargs
)
2627 self
.this
= newobj
.this
2630 def __del__(self
, destroy
=_windows_
.delete_FontData
):
2633 if self
.thisown
: destroy(self
)
2636 def EnableEffects(*args
, **kwargs
):
2638 EnableEffects(self, bool enable)
2640 Enables or disables 'effects' under MS Windows only. This refers to
2641 the controls for manipulating colour, strikeout and underline
2642 properties. The default value is true.
2644 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2646 def GetAllowSymbols(*args
, **kwargs
):
2648 GetAllowSymbols(self) -> bool
2650 Under MS Windows, returns a flag determining whether symbol fonts can
2651 be selected. Has no effect on other platforms. The default value is
2654 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2656 def GetColour(*args
, **kwargs
):
2658 GetColour(self) -> Colour
2660 Gets the colour associated with the font dialog. The default value is
2663 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2665 def GetChosenFont(*args
, **kwargs
):
2667 GetChosenFont(self) -> Font
2669 Gets the font chosen by the user.
2671 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2673 def GetEnableEffects(*args
, **kwargs
):
2675 GetEnableEffects(self) -> bool
2677 Determines whether 'effects' are enabled under Windows.
2679 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2681 def GetInitialFont(*args
, **kwargs
):
2683 GetInitialFont(self) -> Font
2685 Gets the font that will be initially used by the font dialog. This
2686 should have previously been set by the application.
2688 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2690 def GetShowHelp(*args
, **kwargs
):
2692 GetShowHelp(self) -> bool
2694 Returns true if the Help button will be shown (Windows only). The
2695 default value is false.
2697 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2699 def SetAllowSymbols(*args
, **kwargs
):
2701 SetAllowSymbols(self, bool allowSymbols)
2703 Under MS Windows, determines whether symbol fonts can be selected. Has
2704 no effect on other platforms. The default value is true.
2706 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2708 def SetChosenFont(*args
, **kwargs
):
2710 SetChosenFont(self, Font font)
2712 Sets the font that will be returned to the user (normally for internal
2715 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2717 def SetColour(*args
, **kwargs
):
2719 SetColour(self, Colour colour)
2721 Sets the colour that will be used for the font foreground colour. The
2722 default colour is black.
2724 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2726 def SetInitialFont(*args
, **kwargs
):
2728 SetInitialFont(self, Font font)
2730 Sets the font that will be initially used by the font dialog.
2732 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2734 def SetRange(*args
, **kwargs
):
2736 SetRange(self, int min, int max)
2738 Sets the valid range for the font point size (Windows only). The
2739 default is 0, 0 (unrestricted range).
2741 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2743 def SetShowHelp(*args
, **kwargs
):
2745 SetShowHelp(self, bool showHelp)
2747 Determines whether the Help button will be displayed in the font
2748 dialog (Windows only). The default value is false.
2750 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2753 class FontDataPtr(FontData
):
2754 def __init__(self
, this
):
2756 if not hasattr(self
,"thisown"): self
.thisown
= 0
2757 self
.__class
__ = FontData
2758 _windows_
.FontData_swigregister(FontDataPtr
)
2760 class FontDialog(Dialog
):
2762 wx.FontDialog allows the user to select a system font and its attributes.
2768 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2769 def __init__(self
, *args
, **kwargs
):
2771 __init__(self, Window parent, FontData data) -> FontDialog
2773 Constructor. Pass a parent window and the `wx.FontData` object to be
2774 used to initialize the dialog controls. Call `ShowModal` to display
2775 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2776 results with via the `wx.FontData` returned by `GetFontData`.
2778 newobj
= _windows_
.new_FontDialog(*args
, **kwargs
)
2779 self
.this
= newobj
.this
2782 self
._setOORInfo
(self
)
2784 def GetFontData(*args
, **kwargs
):
2786 GetFontData(self) -> FontData
2788 Returns a reference to the internal `wx.FontData` used by the
2791 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2794 class FontDialogPtr(FontDialog
):
2795 def __init__(self
, this
):
2797 if not hasattr(self
,"thisown"): self
.thisown
= 0
2798 self
.__class
__ = FontDialog
2799 _windows_
.FontDialog_swigregister(FontDialogPtr
)
2801 class MessageDialog(Dialog
):
2803 This class provides a simple dialog that shows a single or multi-line
2804 message, with a choice of OK, Yes, No and/or Cancel buttons.
2807 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2808 def __init__(self
, *args
, **kwargs
):
2810 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2811 long style=wxOK|wxCANCEL|wxCENTRE,
2812 Point pos=DefaultPosition) -> MessageDialog
2814 Constructor, use `ShowModal` to display the dialog.
2816 newobj
= _windows_
.new_MessageDialog(*args
, **kwargs
)
2817 self
.this
= newobj
.this
2820 self
._setOORInfo
(self
)
2823 class MessageDialogPtr(MessageDialog
):
2824 def __init__(self
, this
):
2826 if not hasattr(self
,"thisown"): self
.thisown
= 0
2827 self
.__class
__ = MessageDialog
2828 _windows_
.MessageDialog_swigregister(MessageDialogPtr
)
2830 class ProgressDialog(Frame
):
2832 A dialog that shows a short message and a progress bar. Optionally, it
2833 can display an ABORT button.
2836 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2837 def __init__(self
, *args
, **kwargs
):
2839 __init__(self, String title, String message, int maximum=100, Window parent=None,
2840 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2842 Constructor. Creates the dialog, displays it and disables user input
2843 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2846 newobj
= _windows_
.new_ProgressDialog(*args
, **kwargs
)
2847 self
.this
= newobj
.this
2850 self
._setOORInfo
(self
)
2852 def Update(*args
, **kwargs
):
2854 Update(self, int value, String newmsg=EmptyString) -> bool
2856 Updates the dialog, setting the progress bar to the new value and, if
2857 given changes the message above it. The value given should be less
2858 than or equal to the maximum value given to the constructor and the
2859 dialog is closed if it is equal to the maximum. Returns true unless
2860 the Cancel button has been pressed.
2862 If false is returned, the application can either immediately destroy
2863 the dialog or ask the user for the confirmation and if the abort is
2864 not confirmed the dialog may be resumed with Resume function.
2866 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2868 def Resume(*args
, **kwargs
):
2872 Can be used to continue with the dialog, after the user had chosen to
2875 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2878 class ProgressDialogPtr(ProgressDialog
):
2879 def __init__(self
, this
):
2881 if not hasattr(self
,"thisown"): self
.thisown
= 0
2882 self
.__class
__ = ProgressDialog
2883 _windows_
.ProgressDialog_swigregister(ProgressDialogPtr
)
2885 FR_DOWN
= _windows_
.FR_DOWN
2886 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2887 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2888 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2889 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2890 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2891 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2892 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2893 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2894 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2895 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2896 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2897 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2898 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2899 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2900 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2901 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2903 # For backwards compatibility. Should they be removed?
2904 EVT_COMMAND_FIND
= EVT_FIND
2905 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2906 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2907 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2908 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2910 class FindDialogEvent(_core
.CommandEvent
):
2911 """Events for the FindReplaceDialog"""
2913 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2914 def __init__(self
, *args
, **kwargs
):
2916 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2918 Events for the FindReplaceDialog
2920 newobj
= _windows_
.new_FindDialogEvent(*args
, **kwargs
)
2921 self
.this
= newobj
.this
2924 def GetFlags(*args
, **kwargs
):
2926 GetFlags(self) -> int
2928 Get the currently selected flags: this is the combination of
2929 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2931 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2933 def GetFindString(*args
, **kwargs
):
2935 GetFindString(self) -> String
2937 Return the string to find (never empty).
2939 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2941 def GetReplaceString(*args
, **kwargs
):
2943 GetReplaceString(self) -> String
2945 Return the string to replace the search string with (only for replace
2946 and replace all events).
2948 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2950 def GetDialog(*args
, **kwargs
):
2952 GetDialog(self) -> FindReplaceDialog
2954 Return the pointer to the dialog which generated this event.
2956 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2958 def SetFlags(*args
, **kwargs
):
2959 """SetFlags(self, int flags)"""
2960 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2962 def SetFindString(*args
, **kwargs
):
2963 """SetFindString(self, String str)"""
2964 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2966 def SetReplaceString(*args
, **kwargs
):
2967 """SetReplaceString(self, String str)"""
2968 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2971 class FindDialogEventPtr(FindDialogEvent
):
2972 def __init__(self
, this
):
2974 if not hasattr(self
,"thisown"): self
.thisown
= 0
2975 self
.__class
__ = FindDialogEvent
2976 _windows_
.FindDialogEvent_swigregister(FindDialogEventPtr
)
2978 class FindReplaceData(_core
.Object
):
2980 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2981 to initialize the dialog with the default values and will keep the
2982 last values from the dialog when it is closed. It is also updated each
2983 time a `wx.FindDialogEvent` is generated so instead of using the
2984 `wx.FindDialogEvent` methods you can also directly query this object.
2986 Note that all SetXXX() methods may only be called before showing the
2987 dialog and calling them has no effect later.
2990 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2991 def __init__(self
, *args
, **kwargs
):
2993 __init__(self, int flags=0) -> FindReplaceData
2995 Constuctor initializes the flags to default value (0).
2997 newobj
= _windows_
.new_FindReplaceData(*args
, **kwargs
)
2998 self
.this
= newobj
.this
3001 def __del__(self
, destroy
=_windows_
.delete_FindReplaceData
):
3004 if self
.thisown
: destroy(self
)
3007 def GetFindString(*args
, **kwargs
):
3009 GetFindString(self) -> String
3011 Get the string to find.
3013 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
3015 def GetReplaceString(*args
, **kwargs
):
3017 GetReplaceString(self) -> String
3019 Get the replacement string.
3021 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
3023 def GetFlags(*args
, **kwargs
):
3025 GetFlags(self) -> int
3027 Get the combination of flag values.
3029 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
3031 def SetFlags(*args
, **kwargs
):
3033 SetFlags(self, int flags)
3035 Set the flags to use to initialize the controls of the dialog.
3037 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
3039 def SetFindString(*args
, **kwargs
):
3041 SetFindString(self, String str)
3043 Set the string to find (used as initial value by the dialog).
3045 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
3047 def SetReplaceString(*args
, **kwargs
):
3049 SetReplaceString(self, String str)
3051 Set the replacement string (used as initial value by the dialog).
3053 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
3056 class FindReplaceDataPtr(FindReplaceData
):
3057 def __init__(self
, this
):
3059 if not hasattr(self
,"thisown"): self
.thisown
= 0
3060 self
.__class
__ = FindReplaceData
3061 _windows_
.FindReplaceData_swigregister(FindReplaceDataPtr
)
3063 class FindReplaceDialog(Dialog
):
3065 wx.FindReplaceDialog is a standard modeless dialog which is used to
3066 allow the user to search for some text (and possibly replace it with
3067 something else). The actual searching is supposed to be done in the
3068 owner window which is the parent of this dialog. Note that it means
3069 that unlike for the other standard dialogs this one must have a parent
3070 window. Also note that there is no way to use this dialog in a modal
3071 way; it is always, by design and implementation, modeless.
3074 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3075 def __init__(self
, *args
, **kwargs
):
3077 __init__(self, Window parent, FindReplaceData data, String title,
3078 int style=0) -> FindReplaceDialog
3080 Create a FindReplaceDialog. The parent and data parameters must be
3081 non-None. Use Show to display the dialog.
3083 newobj
= _windows_
.new_FindReplaceDialog(*args
, **kwargs
)
3084 self
.this
= newobj
.this
3087 self
._setOORInfo
(self
)
3089 def Create(*args
, **kwargs
):
3091 Create(self, Window parent, FindReplaceData data, String title,
3092 int style=0) -> bool
3094 Create the dialog, for 2-phase create.
3096 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3098 def GetData(*args
, **kwargs
):
3100 GetData(self) -> FindReplaceData
3102 Get the FindReplaceData object used by this dialog.
3104 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3106 def SetData(*args
, **kwargs
):
3108 SetData(self, FindReplaceData data)
3110 Set the FindReplaceData object used by this dialog.
3112 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3115 class FindReplaceDialogPtr(FindReplaceDialog
):
3116 def __init__(self
, this
):
3118 if not hasattr(self
,"thisown"): self
.thisown
= 0
3119 self
.__class
__ = FindReplaceDialog
3120 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialogPtr
)
3122 def PreFindReplaceDialog(*args
, **kwargs
):
3124 PreFindReplaceDialog() -> FindReplaceDialog
3126 Precreate a FindReplaceDialog for 2-phase creation
3128 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3132 #---------------------------------------------------------------------------
3134 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3135 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3136 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3137 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3138 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3139 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3140 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3141 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3142 class MDIParentFrame(Frame
):
3144 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3145 def __init__(self
, *args
, **kwargs
):
3147 __init__(self, Window parent, int id=-1, String title=EmptyString,
3148 Point pos=DefaultPosition, Size size=DefaultSize,
3149 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3150 String name=FrameNameStr) -> MDIParentFrame
3152 newobj
= _windows_
.new_MDIParentFrame(*args
, **kwargs
)
3153 self
.this
= newobj
.this
3156 self
._setOORInfo
(self
)
3158 def Create(*args
, **kwargs
):
3160 Create(self, Window parent, int id=-1, String title=EmptyString,
3161 Point pos=DefaultPosition, Size size=DefaultSize,
3162 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3163 String name=FrameNameStr) -> bool
3165 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3167 def ActivateNext(*args
, **kwargs
):
3168 """ActivateNext(self)"""
3169 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3171 def ActivatePrevious(*args
, **kwargs
):
3172 """ActivatePrevious(self)"""
3173 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3175 def ArrangeIcons(*args
, **kwargs
):
3176 """ArrangeIcons(self)"""
3177 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3179 def Cascade(*args
, **kwargs
):
3181 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3183 def GetActiveChild(*args
, **kwargs
):
3184 """GetActiveChild(self) -> MDIChildFrame"""
3185 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3187 def GetClientWindow(*args
, **kwargs
):
3188 """GetClientWindow(self) -> MDIClientWindow"""
3189 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3191 def GetToolBar(*args
, **kwargs
):
3192 """GetToolBar(self) -> Window"""
3193 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3195 def Tile(*args
, **kwargs
):
3197 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3200 class MDIParentFramePtr(MDIParentFrame
):
3201 def __init__(self
, this
):
3203 if not hasattr(self
,"thisown"): self
.thisown
= 0
3204 self
.__class
__ = MDIParentFrame
3205 _windows_
.MDIParentFrame_swigregister(MDIParentFramePtr
)
3207 def PreMDIParentFrame(*args
, **kwargs
):
3208 """PreMDIParentFrame() -> MDIParentFrame"""
3209 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3213 class MDIChildFrame(Frame
):
3215 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3216 def __init__(self
, *args
, **kwargs
):
3218 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3219 Point pos=DefaultPosition, Size size=DefaultSize,
3220 long style=DEFAULT_FRAME_STYLE,
3221 String name=FrameNameStr) -> MDIChildFrame
3223 newobj
= _windows_
.new_MDIChildFrame(*args
, **kwargs
)
3224 self
.this
= newobj
.this
3227 self
._setOORInfo
(self
)
3229 def Create(*args
, **kwargs
):
3231 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3232 Point pos=DefaultPosition, Size size=DefaultSize,
3233 long style=DEFAULT_FRAME_STYLE,
3234 String name=FrameNameStr) -> bool
3236 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3238 def Activate(*args
, **kwargs
):
3239 """Activate(self)"""
3240 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3242 def Maximize(*args
, **kwargs
):
3243 """Maximize(self, bool maximize)"""
3244 return _windows_
.MDIChildFrame_Maximize(*args
, **kwargs
)
3246 def Restore(*args
, **kwargs
):
3248 return _windows_
.MDIChildFrame_Restore(*args
, **kwargs
)
3251 class MDIChildFramePtr(MDIChildFrame
):
3252 def __init__(self
, this
):
3254 if not hasattr(self
,"thisown"): self
.thisown
= 0
3255 self
.__class
__ = MDIChildFrame
3256 _windows_
.MDIChildFrame_swigregister(MDIChildFramePtr
)
3258 def PreMDIChildFrame(*args
, **kwargs
):
3259 """PreMDIChildFrame() -> MDIChildFrame"""
3260 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3264 class MDIClientWindow(_core
.Window
):
3266 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3267 def __init__(self
, *args
, **kwargs
):
3268 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3269 newobj
= _windows_
.new_MDIClientWindow(*args
, **kwargs
)
3270 self
.this
= newobj
.this
3273 self
._setOORInfo
(self
)
3275 def Create(*args
, **kwargs
):
3276 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3277 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3280 class MDIClientWindowPtr(MDIClientWindow
):
3281 def __init__(self
, this
):
3283 if not hasattr(self
,"thisown"): self
.thisown
= 0
3284 self
.__class
__ = MDIClientWindow
3285 _windows_
.MDIClientWindow_swigregister(MDIClientWindowPtr
)
3287 def PreMDIClientWindow(*args
, **kwargs
):
3288 """PreMDIClientWindow() -> MDIClientWindow"""
3289 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3293 #---------------------------------------------------------------------------
3295 class PyWindow(_core
.Window
):
3297 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3298 def __init__(self
, *args
, **kwargs
):
3300 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3301 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3303 newobj
= _windows_
.new_PyWindow(*args
, **kwargs
)
3304 self
.this
= newobj
.this
3307 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3309 def _setCallbackInfo(*args
, **kwargs
):
3310 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3311 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3313 def SetBestSize(*args
, **kwargs
):
3314 """SetBestSize(self, Size size)"""
3315 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3317 def base_DoMoveWindow(*args
, **kwargs
):
3318 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3319 return _windows_
.PyWindow_base_DoMoveWindow(*args
, **kwargs
)
3321 def base_DoSetSize(*args
, **kwargs
):
3322 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3323 return _windows_
.PyWindow_base_DoSetSize(*args
, **kwargs
)
3325 def base_DoSetClientSize(*args
, **kwargs
):
3326 """base_DoSetClientSize(self, int width, int height)"""
3327 return _windows_
.PyWindow_base_DoSetClientSize(*args
, **kwargs
)
3329 def base_DoSetVirtualSize(*args
, **kwargs
):
3330 """base_DoSetVirtualSize(self, int x, int y)"""
3331 return _windows_
.PyWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3333 def base_DoGetSize(*args
, **kwargs
):
3334 """base_DoGetSize() -> (width, height)"""
3335 return _windows_
.PyWindow_base_DoGetSize(*args
, **kwargs
)
3337 def base_DoGetClientSize(*args
, **kwargs
):
3338 """base_DoGetClientSize() -> (width, height)"""
3339 return _windows_
.PyWindow_base_DoGetClientSize(*args
, **kwargs
)
3341 def base_DoGetPosition(*args
, **kwargs
):
3342 """base_DoGetPosition() -> (x,y)"""
3343 return _windows_
.PyWindow_base_DoGetPosition(*args
, **kwargs
)
3345 def base_DoGetVirtualSize(*args
, **kwargs
):
3346 """base_DoGetVirtualSize(self) -> Size"""
3347 return _windows_
.PyWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3349 def base_DoGetBestSize(*args
, **kwargs
):
3350 """base_DoGetBestSize(self) -> Size"""
3351 return _windows_
.PyWindow_base_DoGetBestSize(*args
, **kwargs
)
3353 def base_InitDialog(*args
, **kwargs
):
3354 """base_InitDialog(self)"""
3355 return _windows_
.PyWindow_base_InitDialog(*args
, **kwargs
)
3357 def base_TransferDataToWindow(*args
, **kwargs
):
3358 """base_TransferDataToWindow(self) -> bool"""
3359 return _windows_
.PyWindow_base_TransferDataToWindow(*args
, **kwargs
)
3361 def base_TransferDataFromWindow(*args
, **kwargs
):
3362 """base_TransferDataFromWindow(self) -> bool"""
3363 return _windows_
.PyWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3365 def base_Validate(*args
, **kwargs
):
3366 """base_Validate(self) -> bool"""
3367 return _windows_
.PyWindow_base_Validate(*args
, **kwargs
)
3369 def base_AcceptsFocus(*args
, **kwargs
):
3370 """base_AcceptsFocus(self) -> bool"""
3371 return _windows_
.PyWindow_base_AcceptsFocus(*args
, **kwargs
)
3373 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3374 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3375 return _windows_
.PyWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3377 def base_GetMaxSize(*args
, **kwargs
):
3378 """base_GetMaxSize(self) -> Size"""
3379 return _windows_
.PyWindow_base_GetMaxSize(*args
, **kwargs
)
3381 def base_AddChild(*args
, **kwargs
):
3382 """base_AddChild(self, Window child)"""
3383 return _windows_
.PyWindow_base_AddChild(*args
, **kwargs
)
3385 def base_RemoveChild(*args
, **kwargs
):
3386 """base_RemoveChild(self, Window child)"""
3387 return _windows_
.PyWindow_base_RemoveChild(*args
, **kwargs
)
3389 def base_ShouldInheritColours(*args
, **kwargs
):
3390 """base_ShouldInheritColours(self) -> bool"""
3391 return _windows_
.PyWindow_base_ShouldInheritColours(*args
, **kwargs
)
3393 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3394 """base_ApplyParentThemeBackground(self, Colour c)"""
3395 return _windows_
.PyWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3397 def base_GetDefaultAttributes(*args
, **kwargs
):
3398 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3399 return _windows_
.PyWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3402 class PyWindowPtr(PyWindow
):
3403 def __init__(self
, this
):
3405 if not hasattr(self
,"thisown"): self
.thisown
= 0
3406 self
.__class
__ = PyWindow
3407 _windows_
.PyWindow_swigregister(PyWindowPtr
)
3409 def PrePyWindow(*args
, **kwargs
):
3410 """PrePyWindow() -> PyWindow"""
3411 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3415 class PyPanel(Panel
):
3417 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3418 def __init__(self
, *args
, **kwargs
):
3420 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3421 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3423 newobj
= _windows_
.new_PyPanel(*args
, **kwargs
)
3424 self
.this
= newobj
.this
3427 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3429 def _setCallbackInfo(*args
, **kwargs
):
3430 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3431 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3433 def SetBestSize(*args
, **kwargs
):
3434 """SetBestSize(self, Size size)"""
3435 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3437 def base_DoMoveWindow(*args
, **kwargs
):
3438 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3439 return _windows_
.PyPanel_base_DoMoveWindow(*args
, **kwargs
)
3441 def base_DoSetSize(*args
, **kwargs
):
3442 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3443 return _windows_
.PyPanel_base_DoSetSize(*args
, **kwargs
)
3445 def base_DoSetClientSize(*args
, **kwargs
):
3446 """base_DoSetClientSize(self, int width, int height)"""
3447 return _windows_
.PyPanel_base_DoSetClientSize(*args
, **kwargs
)
3449 def base_DoSetVirtualSize(*args
, **kwargs
):
3450 """base_DoSetVirtualSize(self, int x, int y)"""
3451 return _windows_
.PyPanel_base_DoSetVirtualSize(*args
, **kwargs
)
3453 def base_DoGetSize(*args
, **kwargs
):
3454 """base_DoGetSize() -> (width, height)"""
3455 return _windows_
.PyPanel_base_DoGetSize(*args
, **kwargs
)
3457 def base_DoGetClientSize(*args
, **kwargs
):
3458 """base_DoGetClientSize() -> (width, height)"""
3459 return _windows_
.PyPanel_base_DoGetClientSize(*args
, **kwargs
)
3461 def base_DoGetPosition(*args
, **kwargs
):
3462 """base_DoGetPosition() -> (x,y)"""
3463 return _windows_
.PyPanel_base_DoGetPosition(*args
, **kwargs
)
3465 def base_DoGetVirtualSize(*args
, **kwargs
):
3466 """base_DoGetVirtualSize(self) -> Size"""
3467 return _windows_
.PyPanel_base_DoGetVirtualSize(*args
, **kwargs
)
3469 def base_DoGetBestSize(*args
, **kwargs
):
3470 """base_DoGetBestSize(self) -> Size"""
3471 return _windows_
.PyPanel_base_DoGetBestSize(*args
, **kwargs
)
3473 def base_InitDialog(*args
, **kwargs
):
3474 """base_InitDialog(self)"""
3475 return _windows_
.PyPanel_base_InitDialog(*args
, **kwargs
)
3477 def base_TransferDataToWindow(*args
, **kwargs
):
3478 """base_TransferDataToWindow(self) -> bool"""
3479 return _windows_
.PyPanel_base_TransferDataToWindow(*args
, **kwargs
)
3481 def base_TransferDataFromWindow(*args
, **kwargs
):
3482 """base_TransferDataFromWindow(self) -> bool"""
3483 return _windows_
.PyPanel_base_TransferDataFromWindow(*args
, **kwargs
)
3485 def base_Validate(*args
, **kwargs
):
3486 """base_Validate(self) -> bool"""
3487 return _windows_
.PyPanel_base_Validate(*args
, **kwargs
)
3489 def base_AcceptsFocus(*args
, **kwargs
):
3490 """base_AcceptsFocus(self) -> bool"""
3491 return _windows_
.PyPanel_base_AcceptsFocus(*args
, **kwargs
)
3493 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3494 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3495 return _windows_
.PyPanel_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3497 def base_GetMaxSize(*args
, **kwargs
):
3498 """base_GetMaxSize(self) -> Size"""
3499 return _windows_
.PyPanel_base_GetMaxSize(*args
, **kwargs
)
3501 def base_AddChild(*args
, **kwargs
):
3502 """base_AddChild(self, Window child)"""
3503 return _windows_
.PyPanel_base_AddChild(*args
, **kwargs
)
3505 def base_RemoveChild(*args
, **kwargs
):
3506 """base_RemoveChild(self, Window child)"""
3507 return _windows_
.PyPanel_base_RemoveChild(*args
, **kwargs
)
3509 def base_ShouldInheritColours(*args
, **kwargs
):
3510 """base_ShouldInheritColours(self) -> bool"""
3511 return _windows_
.PyPanel_base_ShouldInheritColours(*args
, **kwargs
)
3513 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3514 """base_ApplyParentThemeBackground(self, Colour c)"""
3515 return _windows_
.PyPanel_base_ApplyParentThemeBackground(*args
, **kwargs
)
3517 def base_GetDefaultAttributes(*args
, **kwargs
):
3518 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3519 return _windows_
.PyPanel_base_GetDefaultAttributes(*args
, **kwargs
)
3522 class PyPanelPtr(PyPanel
):
3523 def __init__(self
, this
):
3525 if not hasattr(self
,"thisown"): self
.thisown
= 0
3526 self
.__class
__ = PyPanel
3527 _windows_
.PyPanel_swigregister(PyPanelPtr
)
3529 def PrePyPanel(*args
, **kwargs
):
3530 """PrePyPanel() -> PyPanel"""
3531 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3535 class PyScrolledWindow(ScrolledWindow
):
3537 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3538 def __init__(self
, *args
, **kwargs
):
3540 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3541 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3543 newobj
= _windows_
.new_PyScrolledWindow(*args
, **kwargs
)
3544 self
.this
= newobj
.this
3547 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3549 def _setCallbackInfo(*args
, **kwargs
):
3550 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3551 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3553 def SetBestSize(*args
, **kwargs
):
3554 """SetBestSize(self, Size size)"""
3555 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3557 def base_DoMoveWindow(*args
, **kwargs
):
3558 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3559 return _windows_
.PyScrolledWindow_base_DoMoveWindow(*args
, **kwargs
)
3561 def base_DoSetSize(*args
, **kwargs
):
3562 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3563 return _windows_
.PyScrolledWindow_base_DoSetSize(*args
, **kwargs
)
3565 def base_DoSetClientSize(*args
, **kwargs
):
3566 """base_DoSetClientSize(self, int width, int height)"""
3567 return _windows_
.PyScrolledWindow_base_DoSetClientSize(*args
, **kwargs
)
3569 def base_DoSetVirtualSize(*args
, **kwargs
):
3570 """base_DoSetVirtualSize(self, int x, int y)"""
3571 return _windows_
.PyScrolledWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3573 def base_DoGetSize(*args
, **kwargs
):
3574 """base_DoGetSize() -> (width, height)"""
3575 return _windows_
.PyScrolledWindow_base_DoGetSize(*args
, **kwargs
)
3577 def base_DoGetClientSize(*args
, **kwargs
):
3578 """base_DoGetClientSize() -> (width, height)"""
3579 return _windows_
.PyScrolledWindow_base_DoGetClientSize(*args
, **kwargs
)
3581 def base_DoGetPosition(*args
, **kwargs
):
3582 """base_DoGetPosition() -> (x,y)"""
3583 return _windows_
.PyScrolledWindow_base_DoGetPosition(*args
, **kwargs
)
3585 def base_DoGetVirtualSize(*args
, **kwargs
):
3586 """base_DoGetVirtualSize(self) -> Size"""
3587 return _windows_
.PyScrolledWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3589 def base_DoGetBestSize(*args
, **kwargs
):
3590 """base_DoGetBestSize(self) -> Size"""
3591 return _windows_
.PyScrolledWindow_base_DoGetBestSize(*args
, **kwargs
)
3593 def base_InitDialog(*args
, **kwargs
):
3594 """base_InitDialog(self)"""
3595 return _windows_
.PyScrolledWindow_base_InitDialog(*args
, **kwargs
)
3597 def base_TransferDataToWindow(*args
, **kwargs
):
3598 """base_TransferDataToWindow(self) -> bool"""
3599 return _windows_
.PyScrolledWindow_base_TransferDataToWindow(*args
, **kwargs
)
3601 def base_TransferDataFromWindow(*args
, **kwargs
):
3602 """base_TransferDataFromWindow(self) -> bool"""
3603 return _windows_
.PyScrolledWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3605 def base_Validate(*args
, **kwargs
):
3606 """base_Validate(self) -> bool"""
3607 return _windows_
.PyScrolledWindow_base_Validate(*args
, **kwargs
)
3609 def base_AcceptsFocus(*args
, **kwargs
):
3610 """base_AcceptsFocus(self) -> bool"""
3611 return _windows_
.PyScrolledWindow_base_AcceptsFocus(*args
, **kwargs
)
3613 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3614 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3615 return _windows_
.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3617 def base_GetMaxSize(*args
, **kwargs
):
3618 """base_GetMaxSize(self) -> Size"""
3619 return _windows_
.PyScrolledWindow_base_GetMaxSize(*args
, **kwargs
)
3621 def base_AddChild(*args
, **kwargs
):
3622 """base_AddChild(self, Window child)"""
3623 return _windows_
.PyScrolledWindow_base_AddChild(*args
, **kwargs
)
3625 def base_RemoveChild(*args
, **kwargs
):
3626 """base_RemoveChild(self, Window child)"""
3627 return _windows_
.PyScrolledWindow_base_RemoveChild(*args
, **kwargs
)
3629 def base_ShouldInheritColours(*args
, **kwargs
):
3630 """base_ShouldInheritColours(self) -> bool"""
3631 return _windows_
.PyScrolledWindow_base_ShouldInheritColours(*args
, **kwargs
)
3633 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3634 """base_ApplyParentThemeBackground(self, Colour c)"""
3635 return _windows_
.PyScrolledWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3637 def base_GetDefaultAttributes(*args
, **kwargs
):
3638 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3639 return _windows_
.PyScrolledWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3642 class PyScrolledWindowPtr(PyScrolledWindow
):
3643 def __init__(self
, this
):
3645 if not hasattr(self
,"thisown"): self
.thisown
= 0
3646 self
.__class
__ = PyScrolledWindow
3647 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindowPtr
)
3649 def PrePyScrolledWindow(*args
, **kwargs
):
3650 """PrePyScrolledWindow() -> PyScrolledWindow"""
3651 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3655 #---------------------------------------------------------------------------
3657 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3658 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3659 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3660 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3661 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3662 class PrintData(_core
.Object
):
3664 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3665 def __init__(self
, *args
):
3667 __init__(self) -> PrintData
3668 __init__(self, PrintData data) -> PrintData
3670 newobj
= _windows_
.new_PrintData(*args
)
3671 self
.this
= newobj
.this
3674 def __del__(self
, destroy
=_windows_
.delete_PrintData
):
3677 if self
.thisown
: destroy(self
)
3680 def GetNoCopies(*args
, **kwargs
):
3681 """GetNoCopies(self) -> int"""
3682 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3684 def GetCollate(*args
, **kwargs
):
3685 """GetCollate(self) -> bool"""
3686 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3688 def GetOrientation(*args
, **kwargs
):
3689 """GetOrientation(self) -> int"""
3690 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3692 def Ok(*args
, **kwargs
):
3693 """Ok(self) -> bool"""
3694 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3696 def GetPrinterName(*args
, **kwargs
):
3697 """GetPrinterName(self) -> String"""
3698 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3700 def GetColour(*args
, **kwargs
):
3701 """GetColour(self) -> bool"""
3702 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3704 def GetDuplex(*args
, **kwargs
):
3705 """GetDuplex(self) -> int"""
3706 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3708 def GetPaperId(*args
, **kwargs
):
3709 """GetPaperId(self) -> int"""
3710 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3712 def GetPaperSize(*args
, **kwargs
):
3713 """GetPaperSize(self) -> Size"""
3714 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3716 def GetQuality(*args
, **kwargs
):
3717 """GetQuality(self) -> int"""
3718 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3720 def SetNoCopies(*args
, **kwargs
):
3721 """SetNoCopies(self, int v)"""
3722 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3724 def SetCollate(*args
, **kwargs
):
3725 """SetCollate(self, bool flag)"""
3726 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3728 def SetOrientation(*args
, **kwargs
):
3729 """SetOrientation(self, int orient)"""
3730 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3732 def SetPrinterName(*args
, **kwargs
):
3733 """SetPrinterName(self, String name)"""
3734 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3736 def SetColour(*args
, **kwargs
):
3737 """SetColour(self, bool colour)"""
3738 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3740 def SetDuplex(*args
, **kwargs
):
3741 """SetDuplex(self, int duplex)"""
3742 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3744 def SetPaperId(*args
, **kwargs
):
3745 """SetPaperId(self, int sizeId)"""
3746 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3748 def SetPaperSize(*args
, **kwargs
):
3749 """SetPaperSize(self, Size sz)"""
3750 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3752 def SetQuality(*args
, **kwargs
):
3753 """SetQuality(self, int quality)"""
3754 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3756 def GetPrinterCommand(*args
, **kwargs
):
3757 """GetPrinterCommand(self) -> String"""
3758 return _windows_
.PrintData_GetPrinterCommand(*args
, **kwargs
)
3760 def GetPrinterOptions(*args
, **kwargs
):
3761 """GetPrinterOptions(self) -> String"""
3762 return _windows_
.PrintData_GetPrinterOptions(*args
, **kwargs
)
3764 def GetPreviewCommand(*args
, **kwargs
):
3765 """GetPreviewCommand(self) -> String"""
3766 return _windows_
.PrintData_GetPreviewCommand(*args
, **kwargs
)
3768 def GetFilename(*args
, **kwargs
):
3769 """GetFilename(self) -> String"""
3770 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3772 def GetFontMetricPath(*args
, **kwargs
):
3773 """GetFontMetricPath(self) -> String"""
3774 return _windows_
.PrintData_GetFontMetricPath(*args
, **kwargs
)
3776 def GetPrinterScaleX(*args
, **kwargs
):
3777 """GetPrinterScaleX(self) -> double"""
3778 return _windows_
.PrintData_GetPrinterScaleX(*args
, **kwargs
)
3780 def GetPrinterScaleY(*args
, **kwargs
):
3781 """GetPrinterScaleY(self) -> double"""
3782 return _windows_
.PrintData_GetPrinterScaleY(*args
, **kwargs
)
3784 def GetPrinterTranslateX(*args
, **kwargs
):
3785 """GetPrinterTranslateX(self) -> long"""
3786 return _windows_
.PrintData_GetPrinterTranslateX(*args
, **kwargs
)
3788 def GetPrinterTranslateY(*args
, **kwargs
):
3789 """GetPrinterTranslateY(self) -> long"""
3790 return _windows_
.PrintData_GetPrinterTranslateY(*args
, **kwargs
)
3792 def GetPrintMode(*args
, **kwargs
):
3793 """GetPrintMode(self) -> int"""
3794 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3796 def SetPrinterCommand(*args
, **kwargs
):
3797 """SetPrinterCommand(self, String command)"""
3798 return _windows_
.PrintData_SetPrinterCommand(*args
, **kwargs
)
3800 def SetPrinterOptions(*args
, **kwargs
):
3801 """SetPrinterOptions(self, String options)"""
3802 return _windows_
.PrintData_SetPrinterOptions(*args
, **kwargs
)
3804 def SetPreviewCommand(*args
, **kwargs
):
3805 """SetPreviewCommand(self, String command)"""
3806 return _windows_
.PrintData_SetPreviewCommand(*args
, **kwargs
)
3808 def SetFilename(*args
, **kwargs
):
3809 """SetFilename(self, String filename)"""
3810 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3812 def SetFontMetricPath(*args
, **kwargs
):
3813 """SetFontMetricPath(self, String path)"""
3814 return _windows_
.PrintData_SetFontMetricPath(*args
, **kwargs
)
3816 def SetPrinterScaleX(*args
, **kwargs
):
3817 """SetPrinterScaleX(self, double x)"""
3818 return _windows_
.PrintData_SetPrinterScaleX(*args
, **kwargs
)
3820 def SetPrinterScaleY(*args
, **kwargs
):
3821 """SetPrinterScaleY(self, double y)"""
3822 return _windows_
.PrintData_SetPrinterScaleY(*args
, **kwargs
)
3824 def SetPrinterScaling(*args
, **kwargs
):
3825 """SetPrinterScaling(self, double x, double y)"""
3826 return _windows_
.PrintData_SetPrinterScaling(*args
, **kwargs
)
3828 def SetPrinterTranslateX(*args
, **kwargs
):
3829 """SetPrinterTranslateX(self, long x)"""
3830 return _windows_
.PrintData_SetPrinterTranslateX(*args
, **kwargs
)
3832 def SetPrinterTranslateY(*args
, **kwargs
):
3833 """SetPrinterTranslateY(self, long y)"""
3834 return _windows_
.PrintData_SetPrinterTranslateY(*args
, **kwargs
)
3836 def SetPrinterTranslation(*args
, **kwargs
):
3837 """SetPrinterTranslation(self, long x, long y)"""
3838 return _windows_
.PrintData_SetPrinterTranslation(*args
, **kwargs
)
3840 def SetPrintMode(*args
, **kwargs
):
3841 """SetPrintMode(self, int printMode)"""
3842 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3844 def GetOutputStream(*args
, **kwargs
):
3845 """GetOutputStream(self) -> OutputStream"""
3846 return _windows_
.PrintData_GetOutputStream(*args
, **kwargs
)
3848 def SetOutputStream(*args
, **kwargs
):
3849 """SetOutputStream(self, OutputStream outputstream)"""
3850 return _windows_
.PrintData_SetOutputStream(*args
, **kwargs
)
3852 def __nonzero__(self
): return self
.Ok()
3854 class PrintDataPtr(PrintData
):
3855 def __init__(self
, this
):
3857 if not hasattr(self
,"thisown"): self
.thisown
= 0
3858 self
.__class
__ = PrintData
3859 _windows_
.PrintData_swigregister(PrintDataPtr
)
3860 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3861 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3863 class PageSetupDialogData(_core
.Object
):
3865 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3866 def __init__(self
, *args
):
3868 __init__(self) -> PageSetupDialogData
3869 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3871 newobj
= _windows_
.new_PageSetupDialogData(*args
)
3872 self
.this
= newobj
.this
3875 def __del__(self
, destroy
=_windows_
.delete_PageSetupDialogData
):
3878 if self
.thisown
: destroy(self
)
3881 def EnableHelp(*args
, **kwargs
):
3882 """EnableHelp(self, bool flag)"""
3883 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3885 def EnableMargins(*args
, **kwargs
):
3886 """EnableMargins(self, bool flag)"""
3887 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3889 def EnableOrientation(*args
, **kwargs
):
3890 """EnableOrientation(self, bool flag)"""
3891 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3893 def EnablePaper(*args
, **kwargs
):
3894 """EnablePaper(self, bool flag)"""
3895 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3897 def EnablePrinter(*args
, **kwargs
):
3898 """EnablePrinter(self, bool flag)"""
3899 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3901 def GetDefaultMinMargins(*args
, **kwargs
):
3902 """GetDefaultMinMargins(self) -> bool"""
3903 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3905 def GetEnableMargins(*args
, **kwargs
):
3906 """GetEnableMargins(self) -> bool"""
3907 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3909 def GetEnableOrientation(*args
, **kwargs
):
3910 """GetEnableOrientation(self) -> bool"""
3911 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3913 def GetEnablePaper(*args
, **kwargs
):
3914 """GetEnablePaper(self) -> bool"""
3915 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3917 def GetEnablePrinter(*args
, **kwargs
):
3918 """GetEnablePrinter(self) -> bool"""
3919 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3921 def GetEnableHelp(*args
, **kwargs
):
3922 """GetEnableHelp(self) -> bool"""
3923 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3925 def GetDefaultInfo(*args
, **kwargs
):
3926 """GetDefaultInfo(self) -> bool"""
3927 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3929 def GetMarginTopLeft(*args
, **kwargs
):
3930 """GetMarginTopLeft(self) -> Point"""
3931 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3933 def GetMarginBottomRight(*args
, **kwargs
):
3934 """GetMarginBottomRight(self) -> Point"""
3935 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3937 def GetMinMarginTopLeft(*args
, **kwargs
):
3938 """GetMinMarginTopLeft(self) -> Point"""
3939 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3941 def GetMinMarginBottomRight(*args
, **kwargs
):
3942 """GetMinMarginBottomRight(self) -> Point"""
3943 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3945 def GetPaperId(*args
, **kwargs
):
3946 """GetPaperId(self) -> int"""
3947 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3949 def GetPaperSize(*args
, **kwargs
):
3950 """GetPaperSize(self) -> Size"""
3951 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3953 def GetPrintData(*args
, **kwargs
):
3954 """GetPrintData(self) -> PrintData"""
3955 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3957 def Ok(*args
, **kwargs
):
3958 """Ok(self) -> bool"""
3959 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3961 def SetDefaultInfo(*args
, **kwargs
):
3962 """SetDefaultInfo(self, bool flag)"""
3963 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3965 def SetDefaultMinMargins(*args
, **kwargs
):
3966 """SetDefaultMinMargins(self, bool flag)"""
3967 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3969 def SetMarginTopLeft(*args
, **kwargs
):
3970 """SetMarginTopLeft(self, Point pt)"""
3971 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3973 def SetMarginBottomRight(*args
, **kwargs
):
3974 """SetMarginBottomRight(self, Point pt)"""
3975 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
3977 def SetMinMarginTopLeft(*args
, **kwargs
):
3978 """SetMinMarginTopLeft(self, Point pt)"""
3979 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
3981 def SetMinMarginBottomRight(*args
, **kwargs
):
3982 """SetMinMarginBottomRight(self, Point pt)"""
3983 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
3985 def SetPaperId(*args
, **kwargs
):
3986 """SetPaperId(self, int id)"""
3987 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
3989 def SetPaperSize(*args
, **kwargs
):
3990 """SetPaperSize(self, Size size)"""
3991 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
3993 def SetPrintData(*args
, **kwargs
):
3994 """SetPrintData(self, PrintData printData)"""
3995 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
3997 def __nonzero__(self
): return self
.Ok()
3999 class PageSetupDialogDataPtr(PageSetupDialogData
):
4000 def __init__(self
, this
):
4002 if not hasattr(self
,"thisown"): self
.thisown
= 0
4003 self
.__class
__ = PageSetupDialogData
4004 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogDataPtr
)
4006 class PageSetupDialog(Dialog
):
4008 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4009 def __init__(self
, *args
, **kwargs
):
4010 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4011 newobj
= _windows_
.new_PageSetupDialog(*args
, **kwargs
)
4012 self
.this
= newobj
.this
4015 self
._setOORInfo
(self
)
4017 def GetPageSetupData(*args
, **kwargs
):
4018 """GetPageSetupData(self) -> PageSetupDialogData"""
4019 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
4021 def ShowModal(*args
, **kwargs
):
4022 """ShowModal(self) -> int"""
4023 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
4026 class PageSetupDialogPtr(PageSetupDialog
):
4027 def __init__(self
, this
):
4029 if not hasattr(self
,"thisown"): self
.thisown
= 0
4030 self
.__class
__ = PageSetupDialog
4031 _windows_
.PageSetupDialog_swigregister(PageSetupDialogPtr
)
4033 class PrintDialogData(_core
.Object
):
4035 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4036 def __init__(self
, *args
):
4038 __init__(self) -> PrintDialogData
4039 __init__(self, PrintData printData) -> PrintDialogData
4041 newobj
= _windows_
.new_PrintDialogData(*args
)
4042 self
.this
= newobj
.this
4045 def __del__(self
, destroy
=_windows_
.delete_PrintDialogData
):
4048 if self
.thisown
: destroy(self
)
4051 def GetFromPage(*args
, **kwargs
):
4052 """GetFromPage(self) -> int"""
4053 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
4055 def GetToPage(*args
, **kwargs
):
4056 """GetToPage(self) -> int"""
4057 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
4059 def GetMinPage(*args
, **kwargs
):
4060 """GetMinPage(self) -> int"""
4061 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
4063 def GetMaxPage(*args
, **kwargs
):
4064 """GetMaxPage(self) -> int"""
4065 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
4067 def GetNoCopies(*args
, **kwargs
):
4068 """GetNoCopies(self) -> int"""
4069 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
4071 def GetAllPages(*args
, **kwargs
):
4072 """GetAllPages(self) -> bool"""
4073 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
4075 def GetSelection(*args
, **kwargs
):
4076 """GetSelection(self) -> bool"""
4077 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
4079 def GetCollate(*args
, **kwargs
):
4080 """GetCollate(self) -> bool"""
4081 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
4083 def GetPrintToFile(*args
, **kwargs
):
4084 """GetPrintToFile(self) -> bool"""
4085 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
4087 def GetSetupDialog(*args
, **kwargs
):
4088 """GetSetupDialog(self) -> bool"""
4089 return _windows_
.PrintDialogData_GetSetupDialog(*args
, **kwargs
)
4091 def SetFromPage(*args
, **kwargs
):
4092 """SetFromPage(self, int v)"""
4093 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4095 def SetToPage(*args
, **kwargs
):
4096 """SetToPage(self, int v)"""
4097 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4099 def SetMinPage(*args
, **kwargs
):
4100 """SetMinPage(self, int v)"""
4101 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4103 def SetMaxPage(*args
, **kwargs
):
4104 """SetMaxPage(self, int v)"""
4105 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4107 def SetNoCopies(*args
, **kwargs
):
4108 """SetNoCopies(self, int v)"""
4109 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4111 def SetAllPages(*args
, **kwargs
):
4112 """SetAllPages(self, bool flag)"""
4113 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4115 def SetSelection(*args
, **kwargs
):
4116 """SetSelection(self, bool flag)"""
4117 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4119 def SetCollate(*args
, **kwargs
):
4120 """SetCollate(self, bool flag)"""
4121 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4123 def SetPrintToFile(*args
, **kwargs
):
4124 """SetPrintToFile(self, bool flag)"""
4125 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4127 def SetSetupDialog(*args
, **kwargs
):
4128 """SetSetupDialog(self, bool flag)"""
4129 return _windows_
.PrintDialogData_SetSetupDialog(*args
, **kwargs
)
4131 def EnablePrintToFile(*args
, **kwargs
):
4132 """EnablePrintToFile(self, bool flag)"""
4133 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4135 def EnableSelection(*args
, **kwargs
):
4136 """EnableSelection(self, bool flag)"""
4137 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4139 def EnablePageNumbers(*args
, **kwargs
):
4140 """EnablePageNumbers(self, bool flag)"""
4141 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4143 def EnableHelp(*args
, **kwargs
):
4144 """EnableHelp(self, bool flag)"""
4145 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4147 def GetEnablePrintToFile(*args
, **kwargs
):
4148 """GetEnablePrintToFile(self) -> bool"""
4149 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4151 def GetEnableSelection(*args
, **kwargs
):
4152 """GetEnableSelection(self) -> bool"""
4153 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4155 def GetEnablePageNumbers(*args
, **kwargs
):
4156 """GetEnablePageNumbers(self) -> bool"""
4157 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4159 def GetEnableHelp(*args
, **kwargs
):
4160 """GetEnableHelp(self) -> bool"""
4161 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4163 def Ok(*args
, **kwargs
):
4164 """Ok(self) -> bool"""
4165 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4167 def GetPrintData(*args
, **kwargs
):
4168 """GetPrintData(self) -> PrintData"""
4169 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4171 def SetPrintData(*args
, **kwargs
):
4172 """SetPrintData(self, PrintData printData)"""
4173 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4175 def __nonzero__(self
): return self
.Ok()
4177 class PrintDialogDataPtr(PrintDialogData
):
4178 def __init__(self
, this
):
4180 if not hasattr(self
,"thisown"): self
.thisown
= 0
4181 self
.__class
__ = PrintDialogData
4182 _windows_
.PrintDialogData_swigregister(PrintDialogDataPtr
)
4184 class PrintDialog(Dialog
):
4186 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4187 def __init__(self
, *args
, **kwargs
):
4188 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4189 newobj
= _windows_
.new_PrintDialog(*args
, **kwargs
)
4190 self
.this
= newobj
.this
4193 self
._setOORInfo
(self
)
4195 def GetPrintDialogData(*args
, **kwargs
):
4196 """GetPrintDialogData(self) -> PrintDialogData"""
4197 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4199 def GetPrintDC(*args
, **kwargs
):
4200 """GetPrintDC(self) -> DC"""
4201 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4203 def ShowModal(*args
, **kwargs
):
4204 """ShowModal(self) -> int"""
4205 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4208 class PrintDialogPtr(PrintDialog
):
4209 def __init__(self
, this
):
4211 if not hasattr(self
,"thisown"): self
.thisown
= 0
4212 self
.__class
__ = PrintDialog
4213 _windows_
.PrintDialog_swigregister(PrintDialogPtr
)
4215 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4216 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4217 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4218 class Printer(_core
.Object
):
4220 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4221 def __init__(self
, *args
, **kwargs
):
4222 """__init__(self, PrintDialogData data=None) -> Printer"""
4223 newobj
= _windows_
.new_Printer(*args
, **kwargs
)
4224 self
.this
= newobj
.this
4227 def __del__(self
, destroy
=_windows_
.delete_Printer
):
4230 if self
.thisown
: destroy(self
)
4233 def CreateAbortWindow(*args
, **kwargs
):
4234 """CreateAbortWindow(self, Window parent, Printout printout)"""
4235 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4237 def GetPrintDialogData(*args
, **kwargs
):
4238 """GetPrintDialogData(self) -> PrintDialogData"""
4239 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4241 def Print(*args
, **kwargs
):
4242 """Print(self, Window parent, Printout printout, int prompt=True) -> bool"""
4243 return _windows_
.Printer_Print(*args
, **kwargs
)
4245 def PrintDialog(*args
, **kwargs
):
4246 """PrintDialog(self, Window parent) -> DC"""
4247 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4249 def ReportError(*args
, **kwargs
):
4250 """ReportError(self, Window parent, Printout printout, String message)"""
4251 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4253 def Setup(*args
, **kwargs
):
4254 """Setup(self, Window parent) -> bool"""
4255 return _windows_
.Printer_Setup(*args
, **kwargs
)
4257 def GetAbort(*args
, **kwargs
):
4258 """GetAbort(self) -> bool"""
4259 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4261 def GetLastError(*args
, **kwargs
):
4262 """GetLastError() -> int"""
4263 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4265 GetLastError
= staticmethod(GetLastError
)
4267 class PrinterPtr(Printer
):
4268 def __init__(self
, this
):
4270 if not hasattr(self
,"thisown"): self
.thisown
= 0
4271 self
.__class
__ = Printer
4272 _windows_
.Printer_swigregister(PrinterPtr
)
4274 def Printer_GetLastError(*args
, **kwargs
):
4275 """Printer_GetLastError() -> int"""
4276 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4278 class Printout(_core
.Object
):
4280 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4281 def __init__(self
, *args
, **kwargs
):
4282 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4283 newobj
= _windows_
.new_Printout(*args
, **kwargs
)
4284 self
.this
= newobj
.this
4287 self
._setCallbackInfo
(self
, Printout
)
4289 def _setCallbackInfo(*args
, **kwargs
):
4290 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4291 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4293 def GetTitle(*args
, **kwargs
):
4294 """GetTitle(self) -> String"""
4295 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4297 def GetDC(*args
, **kwargs
):
4298 """GetDC(self) -> DC"""
4299 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4301 def SetDC(*args
, **kwargs
):
4302 """SetDC(self, DC dc)"""
4303 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4305 def SetPageSizePixels(*args
, **kwargs
):
4306 """SetPageSizePixels(self, int w, int h)"""
4307 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4309 def GetPageSizePixels(*args
, **kwargs
):
4310 """GetPageSizePixels() -> (w, h)"""
4311 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4313 def SetPageSizeMM(*args
, **kwargs
):
4314 """SetPageSizeMM(self, int w, int h)"""
4315 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4317 def GetPageSizeMM(*args
, **kwargs
):
4318 """GetPageSizeMM() -> (w, h)"""
4319 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4321 def SetPPIScreen(*args
, **kwargs
):
4322 """SetPPIScreen(self, int x, int y)"""
4323 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4325 def GetPPIScreen(*args
, **kwargs
):
4326 """GetPPIScreen() -> (x,y)"""
4327 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4329 def SetPPIPrinter(*args
, **kwargs
):
4330 """SetPPIPrinter(self, int x, int y)"""
4331 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4333 def GetPPIPrinter(*args
, **kwargs
):
4334 """GetPPIPrinter() -> (x,y)"""
4335 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4337 def IsPreview(*args
, **kwargs
):
4338 """IsPreview(self) -> bool"""
4339 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4341 def SetIsPreview(*args
, **kwargs
):
4342 """SetIsPreview(self, bool p)"""
4343 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4345 def base_OnBeginDocument(*args
, **kwargs
):
4346 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4347 return _windows_
.Printout_base_OnBeginDocument(*args
, **kwargs
)
4349 def base_OnEndDocument(*args
, **kwargs
):
4350 """base_OnEndDocument(self)"""
4351 return _windows_
.Printout_base_OnEndDocument(*args
, **kwargs
)
4353 def base_OnBeginPrinting(*args
, **kwargs
):
4354 """base_OnBeginPrinting(self)"""
4355 return _windows_
.Printout_base_OnBeginPrinting(*args
, **kwargs
)
4357 def base_OnEndPrinting(*args
, **kwargs
):
4358 """base_OnEndPrinting(self)"""
4359 return _windows_
.Printout_base_OnEndPrinting(*args
, **kwargs
)
4361 def base_OnPreparePrinting(*args
, **kwargs
):
4362 """base_OnPreparePrinting(self)"""
4363 return _windows_
.Printout_base_OnPreparePrinting(*args
, **kwargs
)
4365 def base_HasPage(*args
, **kwargs
):
4366 """base_HasPage(self, int page) -> bool"""
4367 return _windows_
.Printout_base_HasPage(*args
, **kwargs
)
4369 def base_GetPageInfo(*args
, **kwargs
):
4370 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4371 return _windows_
.Printout_base_GetPageInfo(*args
, **kwargs
)
4374 class PrintoutPtr(Printout
):
4375 def __init__(self
, this
):
4377 if not hasattr(self
,"thisown"): self
.thisown
= 0
4378 self
.__class
__ = Printout
4379 _windows_
.Printout_swigregister(PrintoutPtr
)
4381 class PreviewCanvas(ScrolledWindow
):
4383 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4384 def __init__(self
, *args
, **kwargs
):
4386 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4387 Size size=DefaultSize, long style=0,
4388 String name=PreviewCanvasNameStr) -> PreviewCanvas
4390 newobj
= _windows_
.new_PreviewCanvas(*args
, **kwargs
)
4391 self
.this
= newobj
.this
4394 self
._setOORInfo
(self
)
4397 class PreviewCanvasPtr(PreviewCanvas
):
4398 def __init__(self
, this
):
4400 if not hasattr(self
,"thisown"): self
.thisown
= 0
4401 self
.__class
__ = PreviewCanvas
4402 _windows_
.PreviewCanvas_swigregister(PreviewCanvasPtr
)
4404 class PreviewFrame(Frame
):
4406 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4407 def __init__(self
, *args
, **kwargs
):
4409 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4410 Size size=DefaultSize,
4411 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4413 newobj
= _windows_
.new_PreviewFrame(*args
, **kwargs
)
4414 self
.this
= newobj
.this
4417 self
._setOORInfo
(self
)
4419 def Initialize(*args
, **kwargs
):
4420 """Initialize(self)"""
4421 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4423 def CreateControlBar(*args
, **kwargs
):
4424 """CreateControlBar(self)"""
4425 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4427 def CreateCanvas(*args
, **kwargs
):
4428 """CreateCanvas(self)"""
4429 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4431 def GetControlBar(*args
, **kwargs
):
4432 """GetControlBar(self) -> PreviewControlBar"""
4433 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4436 class PreviewFramePtr(PreviewFrame
):
4437 def __init__(self
, this
):
4439 if not hasattr(self
,"thisown"): self
.thisown
= 0
4440 self
.__class
__ = PreviewFrame
4441 _windows_
.PreviewFrame_swigregister(PreviewFramePtr
)
4443 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4444 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4445 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4446 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4447 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4448 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4449 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4450 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4451 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4452 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4453 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4454 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4455 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4456 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4457 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4458 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4459 class PreviewControlBar(Panel
):
4461 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4462 def __init__(self
, *args
, **kwargs
):
4464 __init__(self, PrintPreview preview, long buttons, Window parent,
4465 Point pos=DefaultPosition, Size size=DefaultSize,
4466 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4468 newobj
= _windows_
.new_PreviewControlBar(*args
, **kwargs
)
4469 self
.this
= newobj
.this
4472 self
._setOORInfo
(self
)
4474 def GetZoomControl(*args
, **kwargs
):
4475 """GetZoomControl(self) -> int"""
4476 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4478 def SetZoomControl(*args
, **kwargs
):
4479 """SetZoomControl(self, int zoom)"""
4480 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4482 def GetPrintPreview(*args
, **kwargs
):
4483 """GetPrintPreview(self) -> PrintPreview"""
4484 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4486 def OnNext(*args
, **kwargs
):
4488 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4490 def OnPrevious(*args
, **kwargs
):
4491 """OnPrevious(self)"""
4492 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4494 def OnFirst(*args
, **kwargs
):
4496 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4498 def OnLast(*args
, **kwargs
):
4500 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4502 def OnGoto(*args
, **kwargs
):
4504 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4507 class PreviewControlBarPtr(PreviewControlBar
):
4508 def __init__(self
, this
):
4510 if not hasattr(self
,"thisown"): self
.thisown
= 0
4511 self
.__class
__ = PreviewControlBar
4512 _windows_
.PreviewControlBar_swigregister(PreviewControlBarPtr
)
4514 class PrintPreview(_core
.Object
):
4516 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4517 def __init__(self
, *args
):
4519 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4520 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4522 newobj
= _windows_
.new_PrintPreview(*args
)
4523 self
.this
= newobj
.this
4526 def SetCurrentPage(*args
, **kwargs
):
4527 """SetCurrentPage(self, int pageNum) -> bool"""
4528 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4530 def GetCurrentPage(*args
, **kwargs
):
4531 """GetCurrentPage(self) -> int"""
4532 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4534 def SetPrintout(*args
, **kwargs
):
4535 """SetPrintout(self, Printout printout)"""
4536 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4538 def GetPrintout(*args
, **kwargs
):
4539 """GetPrintout(self) -> Printout"""
4540 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4542 def GetPrintoutForPrinting(*args
, **kwargs
):
4543 """GetPrintoutForPrinting(self) -> Printout"""
4544 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4546 def SetFrame(*args
, **kwargs
):
4547 """SetFrame(self, Frame frame)"""
4548 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4550 def SetCanvas(*args
, **kwargs
):
4551 """SetCanvas(self, PreviewCanvas canvas)"""
4552 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4554 def GetFrame(*args
, **kwargs
):
4555 """GetFrame(self) -> Frame"""
4556 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4558 def GetCanvas(*args
, **kwargs
):
4559 """GetCanvas(self) -> PreviewCanvas"""
4560 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4562 def PaintPage(*args
, **kwargs
):
4563 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4564 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4566 def DrawBlankPage(*args
, **kwargs
):
4567 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4568 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4570 def RenderPage(*args
, **kwargs
):
4571 """RenderPage(self, int pageNum) -> bool"""
4572 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4574 def AdjustScrollbars(*args
, **kwargs
):
4575 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4576 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4578 def GetPrintDialogData(*args
, **kwargs
):
4579 """GetPrintDialogData(self) -> PrintDialogData"""
4580 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4582 def SetZoom(*args
, **kwargs
):
4583 """SetZoom(self, int percent)"""
4584 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4586 def GetZoom(*args
, **kwargs
):
4587 """GetZoom(self) -> int"""
4588 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4590 def GetMaxPage(*args
, **kwargs
):
4591 """GetMaxPage(self) -> int"""
4592 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4594 def GetMinPage(*args
, **kwargs
):
4595 """GetMinPage(self) -> int"""
4596 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4598 def Ok(*args
, **kwargs
):
4599 """Ok(self) -> bool"""
4600 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4602 def SetOk(*args
, **kwargs
):
4603 """SetOk(self, bool ok)"""
4604 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4606 def Print(*args
, **kwargs
):
4607 """Print(self, bool interactive) -> bool"""
4608 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4610 def DetermineScaling(*args
, **kwargs
):
4611 """DetermineScaling(self)"""
4612 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4614 def __nonzero__(self
): return self
.Ok()
4616 class PrintPreviewPtr(PrintPreview
):
4617 def __init__(self
, this
):
4619 if not hasattr(self
,"thisown"): self
.thisown
= 0
4620 self
.__class
__ = PrintPreview
4621 _windows_
.PrintPreview_swigregister(PrintPreviewPtr
)
4623 class PyPrintPreview(PrintPreview
):
4625 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4626 def __init__(self
, *args
):
4628 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4629 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4631 newobj
= _windows_
.new_PyPrintPreview(*args
)
4632 self
.this
= newobj
.this
4635 self
._setCallbackInfo
(self
, PyPrintPreview
)
4637 def _setCallbackInfo(*args
, **kwargs
):
4638 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4639 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4641 def base_SetCurrentPage(*args
, **kwargs
):
4642 """base_SetCurrentPage(self, int pageNum) -> bool"""
4643 return _windows_
.PyPrintPreview_base_SetCurrentPage(*args
, **kwargs
)
4645 def base_PaintPage(*args
, **kwargs
):
4646 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4647 return _windows_
.PyPrintPreview_base_PaintPage(*args
, **kwargs
)
4649 def base_DrawBlankPage(*args
, **kwargs
):
4650 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4651 return _windows_
.PyPrintPreview_base_DrawBlankPage(*args
, **kwargs
)
4653 def base_RenderPage(*args
, **kwargs
):
4654 """base_RenderPage(self, int pageNum) -> bool"""
4655 return _windows_
.PyPrintPreview_base_RenderPage(*args
, **kwargs
)
4657 def base_SetZoom(*args
, **kwargs
):
4658 """base_SetZoom(self, int percent)"""
4659 return _windows_
.PyPrintPreview_base_SetZoom(*args
, **kwargs
)
4661 def base_Print(*args
, **kwargs
):
4662 """base_Print(self, bool interactive) -> bool"""
4663 return _windows_
.PyPrintPreview_base_Print(*args
, **kwargs
)
4665 def base_DetermineScaling(*args
, **kwargs
):
4666 """base_DetermineScaling(self)"""
4667 return _windows_
.PyPrintPreview_base_DetermineScaling(*args
, **kwargs
)
4670 class PyPrintPreviewPtr(PyPrintPreview
):
4671 def __init__(self
, this
):
4673 if not hasattr(self
,"thisown"): self
.thisown
= 0
4674 self
.__class
__ = PyPrintPreview
4675 _windows_
.PyPrintPreview_swigregister(PyPrintPreviewPtr
)
4677 class PyPreviewFrame(PreviewFrame
):
4679 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4680 def __init__(self
, *args
, **kwargs
):
4682 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4683 Size size=DefaultSize,
4684 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4686 newobj
= _windows_
.new_PyPreviewFrame(*args
, **kwargs
)
4687 self
.this
= newobj
.this
4690 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4692 def _setCallbackInfo(*args
, **kwargs
):
4693 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4694 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4696 def SetPreviewCanvas(*args
, **kwargs
):
4697 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4698 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4700 def SetControlBar(*args
, **kwargs
):
4701 """SetControlBar(self, PreviewControlBar bar)"""
4702 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4704 def base_Initialize(*args
, **kwargs
):
4705 """base_Initialize(self)"""
4706 return _windows_
.PyPreviewFrame_base_Initialize(*args
, **kwargs
)
4708 def base_CreateCanvas(*args
, **kwargs
):
4709 """base_CreateCanvas(self)"""
4710 return _windows_
.PyPreviewFrame_base_CreateCanvas(*args
, **kwargs
)
4712 def base_CreateControlBar(*args
, **kwargs
):
4713 """base_CreateControlBar(self)"""
4714 return _windows_
.PyPreviewFrame_base_CreateControlBar(*args
, **kwargs
)
4717 class PyPreviewFramePtr(PyPreviewFrame
):
4718 def __init__(self
, this
):
4720 if not hasattr(self
,"thisown"): self
.thisown
= 0
4721 self
.__class
__ = PyPreviewFrame
4722 _windows_
.PyPreviewFrame_swigregister(PyPreviewFramePtr
)
4724 class PyPreviewControlBar(PreviewControlBar
):
4726 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4727 def __init__(self
, *args
, **kwargs
):
4729 __init__(self, PrintPreview preview, long buttons, Window parent,
4730 Point pos=DefaultPosition, Size size=DefaultSize,
4731 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4733 newobj
= _windows_
.new_PyPreviewControlBar(*args
, **kwargs
)
4734 self
.this
= newobj
.this
4737 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4739 def _setCallbackInfo(*args
, **kwargs
):
4740 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4741 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4743 def SetPrintPreview(*args
, **kwargs
):
4744 """SetPrintPreview(self, PrintPreview preview)"""
4745 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4747 def base_CreateButtons(*args
, **kwargs
):
4748 """base_CreateButtons(self)"""
4749 return _windows_
.PyPreviewControlBar_base_CreateButtons(*args
, **kwargs
)
4751 def base_SetZoomControl(*args
, **kwargs
):
4752 """base_SetZoomControl(self, int zoom)"""
4753 return _windows_
.PyPreviewControlBar_base_SetZoomControl(*args
, **kwargs
)
4756 class PyPreviewControlBarPtr(PyPreviewControlBar
):
4757 def __init__(self
, this
):
4759 if not hasattr(self
,"thisown"): self
.thisown
= 0
4760 self
.__class
__ = PyPreviewControlBar
4761 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr
)