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 SetTargetRect(*args
, **kwargs
):
206 """SetTargetRect(self, Rect rect)"""
207 return _windows_
.ScrolledWindow_SetTargetRect(*args
, **kwargs
)
209 def GetTargetRect(*args
, **kwargs
):
210 """GetTargetRect(self) -> Rect"""
211 return _windows_
.ScrolledWindow_GetTargetRect(*args
, **kwargs
)
213 def DoPrepareDC(*args
, **kwargs
):
215 DoPrepareDC(self, DC dc)
217 Normally what is called by `PrepareDC`.
219 return _windows_
.ScrolledWindow_DoPrepareDC(*args
, **kwargs
)
221 def GetClassDefaultAttributes(*args
, **kwargs
):
223 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
225 Get the default attributes for this class. This is useful if you want
226 to use the same font or colour in your own control as in a standard
227 control -- which is a much better idea than hard coding specific
228 colours or fonts which might look completely out of place on the
229 user's system, especially if it uses themes.
231 The variant parameter is only relevant under Mac currently and is
232 ignore under other platforms. Under Mac, it will change the size of
233 the returned font. See `wx.Window.SetWindowVariant` for more about
236 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
238 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
240 class ScrolledWindowPtr(ScrolledWindow
):
241 def __init__(self
, this
):
243 if not hasattr(self
,"thisown"): self
.thisown
= 0
244 self
.__class
__ = ScrolledWindow
245 _windows_
.ScrolledWindow_swigregister(ScrolledWindowPtr
)
247 def PreScrolledWindow(*args
, **kwargs
):
248 """PreScrolledWindow() -> ScrolledWindow"""
249 val
= _windows_
.new_PreScrolledWindow(*args
, **kwargs
)
253 def ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
):
255 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
257 Get the default attributes for this class. This is useful if you want
258 to use the same font or colour in your own control as in a standard
259 control -- which is a much better idea than hard coding specific
260 colours or fonts which might look completely out of place on the
261 user's system, especially if it uses themes.
263 The variant parameter is only relevant under Mac currently and is
264 ignore under other platforms. Under Mac, it will change the size of
265 the returned font. See `wx.Window.SetWindowVariant` for more about
268 return _windows_
.ScrolledWindow_GetClassDefaultAttributes(*args
, **kwargs
)
270 #---------------------------------------------------------------------------
272 STAY_ON_TOP
= _windows_
.STAY_ON_TOP
273 ICONIZE
= _windows_
.ICONIZE
274 MINIMIZE
= _windows_
.MINIMIZE
275 MAXIMIZE
= _windows_
.MAXIMIZE
276 CLOSE_BOX
= _windows_
.CLOSE_BOX
277 THICK_FRAME
= _windows_
.THICK_FRAME
278 SYSTEM_MENU
= _windows_
.SYSTEM_MENU
279 MINIMIZE_BOX
= _windows_
.MINIMIZE_BOX
280 MAXIMIZE_BOX
= _windows_
.MAXIMIZE_BOX
281 TINY_CAPTION_HORIZ
= _windows_
.TINY_CAPTION_HORIZ
282 TINY_CAPTION_VERT
= _windows_
.TINY_CAPTION_VERT
283 RESIZE_BOX
= _windows_
.RESIZE_BOX
284 RESIZE_BORDER
= _windows_
.RESIZE_BORDER
285 DIALOG_NO_PARENT
= _windows_
.DIALOG_NO_PARENT
286 DEFAULT_FRAME_STYLE
= _windows_
.DEFAULT_FRAME_STYLE
287 DEFAULT_DIALOG_STYLE
= _windows_
.DEFAULT_DIALOG_STYLE
288 FRAME_TOOL_WINDOW
= _windows_
.FRAME_TOOL_WINDOW
289 FRAME_FLOAT_ON_PARENT
= _windows_
.FRAME_FLOAT_ON_PARENT
290 FRAME_NO_WINDOW_MENU
= _windows_
.FRAME_NO_WINDOW_MENU
291 FRAME_NO_TASKBAR
= _windows_
.FRAME_NO_TASKBAR
292 FRAME_SHAPED
= _windows_
.FRAME_SHAPED
293 DIALOG_MODAL
= _windows_
.DIALOG_MODAL
294 DIALOG_MODELESS
= _windows_
.DIALOG_MODELESS
295 USER_COLOURS
= _windows_
.USER_COLOURS
296 NO_3D
= _windows_
.NO_3D
297 FULLSCREEN_NOMENUBAR
= _windows_
.FULLSCREEN_NOMENUBAR
298 FULLSCREEN_NOTOOLBAR
= _windows_
.FULLSCREEN_NOTOOLBAR
299 FULLSCREEN_NOSTATUSBAR
= _windows_
.FULLSCREEN_NOSTATUSBAR
300 FULLSCREEN_NOBORDER
= _windows_
.FULLSCREEN_NOBORDER
301 FULLSCREEN_NOCAPTION
= _windows_
.FULLSCREEN_NOCAPTION
302 FULLSCREEN_ALL
= _windows_
.FULLSCREEN_ALL
303 TOPLEVEL_EX_DIALOG
= _windows_
.TOPLEVEL_EX_DIALOG
304 class TopLevelWindow(_core
.Window
):
305 def __init__(self
): raise RuntimeError, "No constructor defined"
307 return "<%s.%s; proxy of C++ wxTopLevelWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
308 def Maximize(*args
, **kwargs
):
309 """Maximize(self, bool maximize=True)"""
310 return _windows_
.TopLevelWindow_Maximize(*args
, **kwargs
)
312 def Restore(*args
, **kwargs
):
314 return _windows_
.TopLevelWindow_Restore(*args
, **kwargs
)
316 def Iconize(*args
, **kwargs
):
317 """Iconize(self, bool iconize=True)"""
318 return _windows_
.TopLevelWindow_Iconize(*args
, **kwargs
)
320 def IsMaximized(*args
, **kwargs
):
321 """IsMaximized(self) -> bool"""
322 return _windows_
.TopLevelWindow_IsMaximized(*args
, **kwargs
)
324 def IsIconized(*args
, **kwargs
):
325 """IsIconized(self) -> bool"""
326 return _windows_
.TopLevelWindow_IsIconized(*args
, **kwargs
)
328 def GetIcon(*args
, **kwargs
):
329 """GetIcon(self) -> Icon"""
330 return _windows_
.TopLevelWindow_GetIcon(*args
, **kwargs
)
332 def SetIcon(*args
, **kwargs
):
333 """SetIcon(self, Icon icon)"""
334 return _windows_
.TopLevelWindow_SetIcon(*args
, **kwargs
)
336 def SetIcons(*args
, **kwargs
):
337 """SetIcons(self, wxIconBundle icons)"""
338 return _windows_
.TopLevelWindow_SetIcons(*args
, **kwargs
)
340 def ShowFullScreen(*args
, **kwargs
):
341 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
342 return _windows_
.TopLevelWindow_ShowFullScreen(*args
, **kwargs
)
344 def IsFullScreen(*args
, **kwargs
):
345 """IsFullScreen(self) -> bool"""
346 return _windows_
.TopLevelWindow_IsFullScreen(*args
, **kwargs
)
348 def SetTitle(*args
, **kwargs
):
350 SetTitle(self, String title)
352 Sets the window's title. Applicable only to frames and dialogs.
354 return _windows_
.TopLevelWindow_SetTitle(*args
, **kwargs
)
356 def GetTitle(*args
, **kwargs
):
358 GetTitle(self) -> String
360 Gets the window's title. Applicable only to frames and dialogs.
362 return _windows_
.TopLevelWindow_GetTitle(*args
, **kwargs
)
364 def SetShape(*args
, **kwargs
):
365 """SetShape(self, Region region) -> bool"""
366 return _windows_
.TopLevelWindow_SetShape(*args
, **kwargs
)
369 class TopLevelWindowPtr(TopLevelWindow
):
370 def __init__(self
, this
):
372 if not hasattr(self
,"thisown"): self
.thisown
= 0
373 self
.__class
__ = TopLevelWindow
374 _windows_
.TopLevelWindow_swigregister(TopLevelWindowPtr
)
375 cvar
= _windows_
.cvar
376 FrameNameStr
= cvar
.FrameNameStr
377 DialogNameStr
= cvar
.DialogNameStr
378 StatusLineNameStr
= cvar
.StatusLineNameStr
379 ToolBarNameStr
= cvar
.ToolBarNameStr
381 #---------------------------------------------------------------------------
383 class Frame(TopLevelWindow
):
385 return "<%s.%s; proxy of C++ wxFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
386 def __init__(self
, *args
, **kwargs
):
388 __init__(self, Window parent, int id=-1, String title=EmptyString,
389 Point pos=DefaultPosition, Size size=DefaultSize,
390 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
392 newobj
= _windows_
.new_Frame(*args
, **kwargs
)
393 self
.this
= newobj
.this
396 self
._setOORInfo
(self
)
398 def Create(*args
, **kwargs
):
400 Create(self, Window parent, int id=-1, String title=EmptyString,
401 Point pos=DefaultPosition, Size size=DefaultSize,
402 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
404 return _windows_
.Frame_Create(*args
, **kwargs
)
406 def GetClientAreaOrigin(*args
, **kwargs
):
408 GetClientAreaOrigin(self) -> Point
410 Get the origin of the client area of the window relative to the
411 window's top left corner (the client area may be shifted because of
412 the borders, scrollbars, other decorations...)
414 return _windows_
.Frame_GetClientAreaOrigin(*args
, **kwargs
)
416 def SendSizeEvent(*args
, **kwargs
):
417 """SendSizeEvent(self)"""
418 return _windows_
.Frame_SendSizeEvent(*args
, **kwargs
)
420 def SetMenuBar(*args
, **kwargs
):
421 """SetMenuBar(self, MenuBar menubar)"""
422 return _windows_
.Frame_SetMenuBar(*args
, **kwargs
)
424 def GetMenuBar(*args
, **kwargs
):
425 """GetMenuBar(self) -> MenuBar"""
426 return _windows_
.Frame_GetMenuBar(*args
, **kwargs
)
428 def ProcessCommand(*args
, **kwargs
):
429 """ProcessCommand(self, int winid) -> bool"""
430 return _windows_
.Frame_ProcessCommand(*args
, **kwargs
)
432 Command
= ProcessCommand
433 def CreateStatusBar(*args
, **kwargs
):
435 CreateStatusBar(self, int number=1, long style=ST_SIZEGRIP, int winid=0,
436 String name=StatusLineNameStr) -> StatusBar
438 return _windows_
.Frame_CreateStatusBar(*args
, **kwargs
)
440 def GetStatusBar(*args
, **kwargs
):
441 """GetStatusBar(self) -> StatusBar"""
442 return _windows_
.Frame_GetStatusBar(*args
, **kwargs
)
444 def SetStatusBar(*args
, **kwargs
):
445 """SetStatusBar(self, StatusBar statBar)"""
446 return _windows_
.Frame_SetStatusBar(*args
, **kwargs
)
448 def SetStatusText(*args
, **kwargs
):
449 """SetStatusText(self, String text, int number=0)"""
450 return _windows_
.Frame_SetStatusText(*args
, **kwargs
)
452 def SetStatusWidths(*args
, **kwargs
):
453 """SetStatusWidths(self, int widths, int widths_field)"""
454 return _windows_
.Frame_SetStatusWidths(*args
, **kwargs
)
456 def PushStatusText(*args
, **kwargs
):
457 """PushStatusText(self, String text, int number=0)"""
458 return _windows_
.Frame_PushStatusText(*args
, **kwargs
)
460 def PopStatusText(*args
, **kwargs
):
461 """PopStatusText(self, int number=0)"""
462 return _windows_
.Frame_PopStatusText(*args
, **kwargs
)
464 def SetStatusBarPane(*args
, **kwargs
):
465 """SetStatusBarPane(self, int n)"""
466 return _windows_
.Frame_SetStatusBarPane(*args
, **kwargs
)
468 def GetStatusBarPane(*args
, **kwargs
):
469 """GetStatusBarPane(self) -> int"""
470 return _windows_
.Frame_GetStatusBarPane(*args
, **kwargs
)
472 def CreateToolBar(*args
, **kwargs
):
473 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
474 return _windows_
.Frame_CreateToolBar(*args
, **kwargs
)
476 def GetToolBar(*args
, **kwargs
):
477 """GetToolBar(self) -> wxToolBar"""
478 return _windows_
.Frame_GetToolBar(*args
, **kwargs
)
480 def SetToolBar(*args
, **kwargs
):
481 """SetToolBar(self, wxToolBar toolbar)"""
482 return _windows_
.Frame_SetToolBar(*args
, **kwargs
)
484 def DoGiveHelp(*args
, **kwargs
):
485 """DoGiveHelp(self, String text, bool show)"""
486 return _windows_
.Frame_DoGiveHelp(*args
, **kwargs
)
488 def DoMenuUpdates(*args
, **kwargs
):
489 """DoMenuUpdates(self, Menu menu=None)"""
490 return _windows_
.Frame_DoMenuUpdates(*args
, **kwargs
)
492 def GetClassDefaultAttributes(*args
, **kwargs
):
494 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
496 Get the default attributes for this class. This is useful if you want
497 to use the same font or colour in your own control as in a standard
498 control -- which is a much better idea than hard coding specific
499 colours or fonts which might look completely out of place on the
500 user's system, especially if it uses themes.
502 The variant parameter is only relevant under Mac currently and is
503 ignore under other platforms. Under Mac, it will change the size of
504 the returned font. See `wx.Window.SetWindowVariant` for more about
507 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
509 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
511 class FramePtr(Frame
):
512 def __init__(self
, this
):
514 if not hasattr(self
,"thisown"): self
.thisown
= 0
515 self
.__class
__ = Frame
516 _windows_
.Frame_swigregister(FramePtr
)
518 def PreFrame(*args
, **kwargs
):
519 """PreFrame() -> Frame"""
520 val
= _windows_
.new_PreFrame(*args
, **kwargs
)
524 def Frame_GetClassDefaultAttributes(*args
, **kwargs
):
526 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
528 Get the default attributes for this class. This is useful if you want
529 to use the same font or colour in your own control as in a standard
530 control -- which is a much better idea than hard coding specific
531 colours or fonts which might look completely out of place on the
532 user's system, especially if it uses themes.
534 The variant parameter is only relevant under Mac currently and is
535 ignore under other platforms. Under Mac, it will change the size of
536 the returned font. See `wx.Window.SetWindowVariant` for more about
539 return _windows_
.Frame_GetClassDefaultAttributes(*args
, **kwargs
)
541 #---------------------------------------------------------------------------
543 class Dialog(TopLevelWindow
):
545 return "<%s.%s; proxy of C++ wxDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
546 def __init__(self
, *args
, **kwargs
):
548 __init__(self, Window parent, int id=-1, String title=EmptyString,
549 Point pos=DefaultPosition, Size size=DefaultSize,
550 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
552 newobj
= _windows_
.new_Dialog(*args
, **kwargs
)
553 self
.this
= newobj
.this
556 self
._setOORInfo
(self
)
558 def Create(*args
, **kwargs
):
560 Create(self, Window parent, int id=-1, String title=EmptyString,
561 Point pos=DefaultPosition, Size size=DefaultSize,
562 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
564 return _windows_
.Dialog_Create(*args
, **kwargs
)
566 def SetReturnCode(*args
, **kwargs
):
567 """SetReturnCode(self, int returnCode)"""
568 return _windows_
.Dialog_SetReturnCode(*args
, **kwargs
)
570 def GetReturnCode(*args
, **kwargs
):
571 """GetReturnCode(self) -> int"""
572 return _windows_
.Dialog_GetReturnCode(*args
, **kwargs
)
574 def CreateTextSizer(*args
, **kwargs
):
575 """CreateTextSizer(self, String message) -> Sizer"""
576 return _windows_
.Dialog_CreateTextSizer(*args
, **kwargs
)
578 def CreateButtonSizer(*args
, **kwargs
):
579 """CreateButtonSizer(self, long flags) -> Sizer"""
580 return _windows_
.Dialog_CreateButtonSizer(*args
, **kwargs
)
582 def IsModal(*args
, **kwargs
):
583 """IsModal(self) -> bool"""
584 return _windows_
.Dialog_IsModal(*args
, **kwargs
)
586 def ShowModal(*args
, **kwargs
):
587 """ShowModal(self) -> int"""
588 return _windows_
.Dialog_ShowModal(*args
, **kwargs
)
590 def EndModal(*args
, **kwargs
):
591 """EndModal(self, int retCode)"""
592 return _windows_
.Dialog_EndModal(*args
, **kwargs
)
594 def GetClassDefaultAttributes(*args
, **kwargs
):
596 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
598 Get the default attributes for this class. This is useful if you want
599 to use the same font or colour in your own control as in a standard
600 control -- which is a much better idea than hard coding specific
601 colours or fonts which might look completely out of place on the
602 user's system, especially if it uses themes.
604 The variant parameter is only relevant under Mac currently and is
605 ignore under other platforms. Under Mac, it will change the size of
606 the returned font. See `wx.Window.SetWindowVariant` for more about
609 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
611 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
612 def SendSizeEvent(self
):
613 self
.ProcessEvent(wx
.SizeEvent((-1,-1)))
616 class DialogPtr(Dialog
):
617 def __init__(self
, this
):
619 if not hasattr(self
,"thisown"): self
.thisown
= 0
620 self
.__class
__ = Dialog
621 _windows_
.Dialog_swigregister(DialogPtr
)
623 def PreDialog(*args
, **kwargs
):
624 """PreDialog() -> Dialog"""
625 val
= _windows_
.new_PreDialog(*args
, **kwargs
)
629 def Dialog_GetClassDefaultAttributes(*args
, **kwargs
):
631 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
633 Get the default attributes for this class. This is useful if you want
634 to use the same font or colour in your own control as in a standard
635 control -- which is a much better idea than hard coding specific
636 colours or fonts which might look completely out of place on the
637 user's system, especially if it uses themes.
639 The variant parameter is only relevant under Mac currently and is
640 ignore under other platforms. Under Mac, it will change the size of
641 the returned font. See `wx.Window.SetWindowVariant` for more about
644 return _windows_
.Dialog_GetClassDefaultAttributes(*args
, **kwargs
)
646 #---------------------------------------------------------------------------
648 class MiniFrame(Frame
):
650 return "<%s.%s; proxy of C++ wxMiniFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
651 def __init__(self
, *args
, **kwargs
):
653 __init__(self, Window parent, int id=-1, String title=EmptyString,
654 Point pos=DefaultPosition, Size size=DefaultSize,
655 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
657 newobj
= _windows_
.new_MiniFrame(*args
, **kwargs
)
658 self
.this
= newobj
.this
661 self
._setOORInfo
(self
)
663 def Create(*args
, **kwargs
):
665 Create(self, Window parent, int id=-1, String title=EmptyString,
666 Point pos=DefaultPosition, Size size=DefaultSize,
667 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
669 return _windows_
.MiniFrame_Create(*args
, **kwargs
)
672 class MiniFramePtr(MiniFrame
):
673 def __init__(self
, this
):
675 if not hasattr(self
,"thisown"): self
.thisown
= 0
676 self
.__class
__ = MiniFrame
677 _windows_
.MiniFrame_swigregister(MiniFramePtr
)
679 def PreMiniFrame(*args
, **kwargs
):
680 """PreMiniFrame() -> MiniFrame"""
681 val
= _windows_
.new_PreMiniFrame(*args
, **kwargs
)
685 #---------------------------------------------------------------------------
687 SPLASH_CENTRE_ON_PARENT
= _windows_
.SPLASH_CENTRE_ON_PARENT
688 SPLASH_CENTRE_ON_SCREEN
= _windows_
.SPLASH_CENTRE_ON_SCREEN
689 SPLASH_NO_CENTRE
= _windows_
.SPLASH_NO_CENTRE
690 SPLASH_TIMEOUT
= _windows_
.SPLASH_TIMEOUT
691 SPLASH_NO_TIMEOUT
= _windows_
.SPLASH_NO_TIMEOUT
692 class SplashScreenWindow(_core
.Window
):
694 return "<%s.%s; proxy of C++ wxSplashScreenWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
695 def __init__(self
, *args
, **kwargs
):
697 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
698 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
700 newobj
= _windows_
.new_SplashScreenWindow(*args
, **kwargs
)
701 self
.this
= newobj
.this
704 self
._setOORInfo
(self
)
706 def SetBitmap(*args
, **kwargs
):
707 """SetBitmap(self, Bitmap bitmap)"""
708 return _windows_
.SplashScreenWindow_SetBitmap(*args
, **kwargs
)
710 def GetBitmap(*args
, **kwargs
):
711 """GetBitmap(self) -> Bitmap"""
712 return _windows_
.SplashScreenWindow_GetBitmap(*args
, **kwargs
)
715 class SplashScreenWindowPtr(SplashScreenWindow
):
716 def __init__(self
, this
):
718 if not hasattr(self
,"thisown"): self
.thisown
= 0
719 self
.__class
__ = SplashScreenWindow
720 _windows_
.SplashScreenWindow_swigregister(SplashScreenWindowPtr
)
722 class SplashScreen(Frame
):
724 return "<%s.%s; proxy of C++ wxSplashScreen instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
725 def __init__(self
, *args
, **kwargs
):
727 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
728 Window parent, int id=-1, Point pos=DefaultPosition,
729 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
731 newobj
= _windows_
.new_SplashScreen(*args
, **kwargs
)
732 self
.this
= newobj
.this
735 self
._setOORInfo
(self
)
737 def GetSplashStyle(*args
, **kwargs
):
738 """GetSplashStyle(self) -> long"""
739 return _windows_
.SplashScreen_GetSplashStyle(*args
, **kwargs
)
741 def GetSplashWindow(*args
, **kwargs
):
742 """GetSplashWindow(self) -> SplashScreenWindow"""
743 return _windows_
.SplashScreen_GetSplashWindow(*args
, **kwargs
)
745 def GetTimeout(*args
, **kwargs
):
746 """GetTimeout(self) -> int"""
747 return _windows_
.SplashScreen_GetTimeout(*args
, **kwargs
)
750 class SplashScreenPtr(SplashScreen
):
751 def __init__(self
, this
):
753 if not hasattr(self
,"thisown"): self
.thisown
= 0
754 self
.__class
__ = SplashScreen
755 _windows_
.SplashScreen_swigregister(SplashScreenPtr
)
757 #---------------------------------------------------------------------------
759 class StatusBar(_core
.Window
):
761 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
762 def __init__(self
, *args
, **kwargs
):
763 """__init__(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> StatusBar"""
764 newobj
= _windows_
.new_StatusBar(*args
, **kwargs
)
765 self
.this
= newobj
.this
768 self
._setOORInfo
(self
)
770 def Create(*args
, **kwargs
):
771 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
772 return _windows_
.StatusBar_Create(*args
, **kwargs
)
774 def SetFieldsCount(*args
, **kwargs
):
775 """SetFieldsCount(self, int number=1)"""
776 return _windows_
.StatusBar_SetFieldsCount(*args
, **kwargs
)
778 def GetFieldsCount(*args
, **kwargs
):
779 """GetFieldsCount(self) -> int"""
780 return _windows_
.StatusBar_GetFieldsCount(*args
, **kwargs
)
782 def SetStatusText(*args
, **kwargs
):
783 """SetStatusText(self, String text, int number=0)"""
784 return _windows_
.StatusBar_SetStatusText(*args
, **kwargs
)
786 def GetStatusText(*args
, **kwargs
):
787 """GetStatusText(self, int number=0) -> String"""
788 return _windows_
.StatusBar_GetStatusText(*args
, **kwargs
)
790 def PushStatusText(*args
, **kwargs
):
791 """PushStatusText(self, String text, int number=0)"""
792 return _windows_
.StatusBar_PushStatusText(*args
, **kwargs
)
794 def PopStatusText(*args
, **kwargs
):
795 """PopStatusText(self, int number=0)"""
796 return _windows_
.StatusBar_PopStatusText(*args
, **kwargs
)
798 def SetStatusWidths(*args
, **kwargs
):
799 """SetStatusWidths(self, int widths, int widths_field)"""
800 return _windows_
.StatusBar_SetStatusWidths(*args
, **kwargs
)
802 def GetFieldRect(*args
, **kwargs
):
803 """GetFieldRect(self, int i) -> Rect"""
804 return _windows_
.StatusBar_GetFieldRect(*args
, **kwargs
)
806 def SetMinHeight(*args
, **kwargs
):
807 """SetMinHeight(self, int height)"""
808 return _windows_
.StatusBar_SetMinHeight(*args
, **kwargs
)
810 def GetBorderX(*args
, **kwargs
):
811 """GetBorderX(self) -> int"""
812 return _windows_
.StatusBar_GetBorderX(*args
, **kwargs
)
814 def GetBorderY(*args
, **kwargs
):
815 """GetBorderY(self) -> int"""
816 return _windows_
.StatusBar_GetBorderY(*args
, **kwargs
)
818 def GetClassDefaultAttributes(*args
, **kwargs
):
820 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
822 Get the default attributes for this class. This is useful if you want
823 to use the same font or colour in your own control as in a standard
824 control -- which is a much better idea than hard coding specific
825 colours or fonts which might look completely out of place on the
826 user's system, especially if it uses themes.
828 The variant parameter is only relevant under Mac currently and is
829 ignore under other platforms. Under Mac, it will change the size of
830 the returned font. See `wx.Window.SetWindowVariant` for more about
833 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
835 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
837 class StatusBarPtr(StatusBar
):
838 def __init__(self
, this
):
840 if not hasattr(self
,"thisown"): self
.thisown
= 0
841 self
.__class
__ = StatusBar
842 _windows_
.StatusBar_swigregister(StatusBarPtr
)
844 def PreStatusBar(*args
, **kwargs
):
845 """PreStatusBar() -> StatusBar"""
846 val
= _windows_
.new_PreStatusBar(*args
, **kwargs
)
850 def StatusBar_GetClassDefaultAttributes(*args
, **kwargs
):
852 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
854 Get the default attributes for this class. This is useful if you want
855 to use the same font or colour in your own control as in a standard
856 control -- which is a much better idea than hard coding specific
857 colours or fonts which might look completely out of place on the
858 user's system, especially if it uses themes.
860 The variant parameter is only relevant under Mac currently and is
861 ignore under other platforms. Under Mac, it will change the size of
862 the returned font. See `wx.Window.SetWindowVariant` for more about
865 return _windows_
.StatusBar_GetClassDefaultAttributes(*args
, **kwargs
)
867 #---------------------------------------------------------------------------
869 SP_NOBORDER
= _windows_
.SP_NOBORDER
870 SP_NOSASH
= _windows_
.SP_NOSASH
871 SP_PERMIT_UNSPLIT
= _windows_
.SP_PERMIT_UNSPLIT
872 SP_LIVE_UPDATE
= _windows_
.SP_LIVE_UPDATE
873 SP_3DSASH
= _windows_
.SP_3DSASH
874 SP_3DBORDER
= _windows_
.SP_3DBORDER
875 SP_NO_XP_THEME
= _windows_
.SP_NO_XP_THEME
876 SP_BORDER
= _windows_
.SP_BORDER
877 SP_3D
= _windows_
.SP_3D
878 SPLIT_HORIZONTAL
= _windows_
.SPLIT_HORIZONTAL
879 SPLIT_VERTICAL
= _windows_
.SPLIT_VERTICAL
880 SPLIT_DRAG_NONE
= _windows_
.SPLIT_DRAG_NONE
881 SPLIT_DRAG_DRAGGING
= _windows_
.SPLIT_DRAG_DRAGGING
882 SPLIT_DRAG_LEFT_DOWN
= _windows_
.SPLIT_DRAG_LEFT_DOWN
883 class SplitterWindow(_core
.Window
):
885 wx.SplitterWindow manages up to two subwindows or panes, with an
886 optional vertical or horizontal split which can be used with the mouse
890 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
891 def __init__(self
, *args
, **kwargs
):
893 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
894 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
896 Constructor. Creates and shows a SplitterWindow.
898 if kwargs
.has_key('point'): kwargs
['pos'] = kwargs
['point'];del kwargs
['point']
899 newobj
= _windows_
.new_SplitterWindow(*args
, **kwargs
)
900 self
.this
= newobj
.this
903 self
._setOORInfo
(self
)
905 def Create(*args
, **kwargs
):
907 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
908 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
910 Create the GUI part of the SplitterWindow for the 2-phase create.
912 return _windows_
.SplitterWindow_Create(*args
, **kwargs
)
914 def GetWindow1(*args
, **kwargs
):
916 GetWindow1(self) -> Window
918 Gets the only or left/top pane.
920 return _windows_
.SplitterWindow_GetWindow1(*args
, **kwargs
)
922 def GetWindow2(*args
, **kwargs
):
924 GetWindow2(self) -> Window
926 Gets the right/bottom pane.
928 return _windows_
.SplitterWindow_GetWindow2(*args
, **kwargs
)
930 def SetSplitMode(*args
, **kwargs
):
932 SetSplitMode(self, int mode)
934 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
935 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
938 return _windows_
.SplitterWindow_SetSplitMode(*args
, **kwargs
)
940 def GetSplitMode(*args
, **kwargs
):
942 GetSplitMode(self) -> int
946 return _windows_
.SplitterWindow_GetSplitMode(*args
, **kwargs
)
948 def Initialize(*args
, **kwargs
):
950 Initialize(self, Window window)
952 Initializes the splitter window to have one pane. This should be
953 called if you wish to initially view only a single pane in the
956 return _windows_
.SplitterWindow_Initialize(*args
, **kwargs
)
958 def SplitVertically(*args
, **kwargs
):
960 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
962 Initializes the left and right panes of the splitter window.
964 return _windows_
.SplitterWindow_SplitVertically(*args
, **kwargs
)
966 def SplitHorizontally(*args
, **kwargs
):
968 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
970 Initializes the top and bottom panes of the splitter window.
972 return _windows_
.SplitterWindow_SplitHorizontally(*args
, **kwargs
)
974 def Unsplit(*args
, **kwargs
):
976 Unsplit(self, Window toRemove=None) -> bool
978 Unsplits the window. Pass the pane to remove, or None to remove the
979 right or bottom pane. Returns True if successful, False otherwise (the
980 window was not split).
982 This function will not actually delete the pane being
983 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
984 for the desired behaviour. By default, the pane being
985 removed is only hidden.
987 return _windows_
.SplitterWindow_Unsplit(*args
, **kwargs
)
989 def ReplaceWindow(*args
, **kwargs
):
991 ReplaceWindow(self, Window winOld, Window winNew) -> bool
993 This function replaces one of the windows managed by the
994 SplitterWindow with another one. It is in general better to use it
995 instead of calling Unsplit() and then resplitting the window back
996 because it will provoke much less flicker. It is valid to call this
997 function whether the splitter has two windows or only one.
999 Both parameters should be non-None and winOld must specify one of the
1000 windows managed by the splitter. If the parameters are incorrect or
1001 the window couldn't be replaced, False is returned. Otherwise the
1002 function will return True, but please notice that it will not Destroy
1003 the replaced window and you may wish to do it yourself.
1005 return _windows_
.SplitterWindow_ReplaceWindow(*args
, **kwargs
)
1007 def UpdateSize(*args
, **kwargs
):
1011 Causes any pending sizing of the sash and child panes to take place
1014 Such resizing normally takes place in idle time, in order to wait for
1015 layout to be completed. However, this can cause unacceptable flicker
1016 as the panes are resized after the window has been shown. To work
1017 around this, you can perform window layout (for example by sending a
1018 size event to the parent window), and then call this function, before
1019 showing the top-level window.
1021 return _windows_
.SplitterWindow_UpdateSize(*args
, **kwargs
)
1023 def IsSplit(*args
, **kwargs
):
1025 IsSplit(self) -> bool
1027 Is the window split?
1029 return _windows_
.SplitterWindow_IsSplit(*args
, **kwargs
)
1031 def SetSashSize(*args
, **kwargs
):
1033 SetSashSize(self, int width)
1037 return _windows_
.SplitterWindow_SetSashSize(*args
, **kwargs
)
1039 def SetBorderSize(*args
, **kwargs
):
1041 SetBorderSize(self, int width)
1043 Sets the border size
1045 return _windows_
.SplitterWindow_SetBorderSize(*args
, **kwargs
)
1047 def GetSashSize(*args
, **kwargs
):
1049 GetSashSize(self) -> int
1053 return _windows_
.SplitterWindow_GetSashSize(*args
, **kwargs
)
1055 def GetBorderSize(*args
, **kwargs
):
1057 GetBorderSize(self) -> int
1059 Gets the border size
1061 return _windows_
.SplitterWindow_GetBorderSize(*args
, **kwargs
)
1063 def SetSashPosition(*args
, **kwargs
):
1065 SetSashPosition(self, int position, bool redraw=True)
1067 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1068 are resized and the sash and border are redrawn.
1070 return _windows_
.SplitterWindow_SetSashPosition(*args
, **kwargs
)
1072 def GetSashPosition(*args
, **kwargs
):
1074 GetSashPosition(self) -> int
1076 Returns the surrent sash position.
1078 return _windows_
.SplitterWindow_GetSashPosition(*args
, **kwargs
)
1080 def SetMinimumPaneSize(*args
, **kwargs
):
1082 SetMinimumPaneSize(self, int min)
1084 Sets the minimum pane size in pixels.
1086 The default minimum pane size is zero, which means that either pane
1087 can be reduced to zero by dragging the sash, thus removing one of the
1088 panes. To prevent this behaviour (and veto out-of-range sash
1089 dragging), set a minimum size, for example 20 pixels. If the
1090 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1091 the window may be unsplit even if minimum size is non-zero.
1093 return _windows_
.SplitterWindow_SetMinimumPaneSize(*args
, **kwargs
)
1095 def GetMinimumPaneSize(*args
, **kwargs
):
1097 GetMinimumPaneSize(self) -> int
1099 Gets the minimum pane size in pixels.
1101 return _windows_
.SplitterWindow_GetMinimumPaneSize(*args
, **kwargs
)
1103 def SashHitTest(*args
, **kwargs
):
1105 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1107 Tests for x, y over the sash
1109 return _windows_
.SplitterWindow_SashHitTest(*args
, **kwargs
)
1111 def SizeWindows(*args
, **kwargs
):
1117 return _windows_
.SplitterWindow_SizeWindows(*args
, **kwargs
)
1119 def SetNeedUpdating(*args
, **kwargs
):
1120 """SetNeedUpdating(self, bool needUpdating)"""
1121 return _windows_
.SplitterWindow_SetNeedUpdating(*args
, **kwargs
)
1123 def GetNeedUpdating(*args
, **kwargs
):
1124 """GetNeedUpdating(self) -> bool"""
1125 return _windows_
.SplitterWindow_GetNeedUpdating(*args
, **kwargs
)
1127 def GetClassDefaultAttributes(*args
, **kwargs
):
1129 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1131 Get the default attributes for this class. This is useful if you want
1132 to use the same font or colour in your own control as in a standard
1133 control -- which is a much better idea than hard coding specific
1134 colours or fonts which might look completely out of place on the
1135 user's system, especially if it uses themes.
1137 The variant parameter is only relevant under Mac currently and is
1138 ignore under other platforms. Under Mac, it will change the size of
1139 the returned font. See `wx.Window.SetWindowVariant` for more about
1142 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1144 GetClassDefaultAttributes
= staticmethod(GetClassDefaultAttributes
)
1146 class SplitterWindowPtr(SplitterWindow
):
1147 def __init__(self
, this
):
1149 if not hasattr(self
,"thisown"): self
.thisown
= 0
1150 self
.__class
__ = SplitterWindow
1151 _windows_
.SplitterWindow_swigregister(SplitterWindowPtr
)
1152 SplitterNameStr
= cvar
.SplitterNameStr
1154 def PreSplitterWindow(*args
, **kwargs
):
1156 PreSplitterWindow() -> SplitterWindow
1158 Precreate a SplitterWindow for 2-phase creation.
1160 val
= _windows_
.new_PreSplitterWindow(*args
, **kwargs
)
1164 def SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
):
1166 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1168 Get the default attributes for this class. This is useful if you want
1169 to use the same font or colour in your own control as in a standard
1170 control -- which is a much better idea than hard coding specific
1171 colours or fonts which might look completely out of place on the
1172 user's system, especially if it uses themes.
1174 The variant parameter is only relevant under Mac currently and is
1175 ignore under other platforms. Under Mac, it will change the size of
1176 the returned font. See `wx.Window.SetWindowVariant` for more about
1179 return _windows_
.SplitterWindow_GetClassDefaultAttributes(*args
, **kwargs
)
1181 class SplitterEvent(_core
.NotifyEvent
):
1182 """This class represents the events generated by a splitter control."""
1184 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1185 def __init__(self
, *args
, **kwargs
):
1187 __init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1189 This class represents the events generated by a splitter control.
1191 newobj
= _windows_
.new_SplitterEvent(*args
, **kwargs
)
1192 self
.this
= newobj
.this
1195 def SetSashPosition(*args
, **kwargs
):
1197 SetSashPosition(self, int pos)
1199 This funciton is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1200 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1201 events, sets the the new sash position. In the case of _CHANGING
1202 events, sets the new tracking bar position so visual feedback during
1203 dragging will represent that change that will actually take place. Set
1204 to -1 from the event handler code to prevent repositioning.
1206 return _windows_
.SplitterEvent_SetSashPosition(*args
, **kwargs
)
1208 def GetSashPosition(*args
, **kwargs
):
1210 GetSashPosition(self) -> int
1212 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1213 and EVT_SPLITTER_SASH_POS_CHANGED events.
1215 return _windows_
.SplitterEvent_GetSashPosition(*args
, **kwargs
)
1217 def GetWindowBeingRemoved(*args
, **kwargs
):
1219 GetWindowBeingRemoved(self) -> Window
1221 Returns a pointer to the window being removed when a splitter window
1224 return _windows_
.SplitterEvent_GetWindowBeingRemoved(*args
, **kwargs
)
1226 def GetX(*args
, **kwargs
):
1230 Returns the x coordinate of the double-click point in a
1231 EVT_SPLITTER_DCLICK event.
1233 return _windows_
.SplitterEvent_GetX(*args
, **kwargs
)
1235 def GetY(*args
, **kwargs
):
1239 Returns the y coordinate of the double-click point in a
1240 EVT_SPLITTER_DCLICK event.
1242 return _windows_
.SplitterEvent_GetY(*args
, **kwargs
)
1245 class SplitterEventPtr(SplitterEvent
):
1246 def __init__(self
, this
):
1248 if not hasattr(self
,"thisown"): self
.thisown
= 0
1249 self
.__class
__ = SplitterEvent
1250 _windows_
.SplitterEvent_swigregister(SplitterEventPtr
)
1252 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1253 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
= _windows_
.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1254 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
= _windows_
.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1255 wxEVT_COMMAND_SPLITTER_UNSPLIT
= _windows_
.wxEVT_COMMAND_SPLITTER_UNSPLIT
1256 EVT_SPLITTER_SASH_POS_CHANGED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
, 1 )
1257 EVT_SPLITTER_SASH_POS_CHANGING
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
, 1 )
1258 EVT_SPLITTER_DOUBLECLICKED
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
, 1 )
1259 EVT_SPLITTER_UNSPLIT
= wx
.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT
, 1 )
1260 EVT_SPLITTER_DCLICK
= EVT_SPLITTER_DOUBLECLICKED
1262 #---------------------------------------------------------------------------
1264 SASH_DRAG_NONE
= _windows_
.SASH_DRAG_NONE
1265 SASH_DRAG_DRAGGING
= _windows_
.SASH_DRAG_DRAGGING
1266 SASH_DRAG_LEFT_DOWN
= _windows_
.SASH_DRAG_LEFT_DOWN
1267 SW_NOBORDER
= _windows_
.SW_NOBORDER
1268 SW_BORDER
= _windows_
.SW_BORDER
1269 SW_3DSASH
= _windows_
.SW_3DSASH
1270 SW_3DBORDER
= _windows_
.SW_3DBORDER
1271 SW_3D
= _windows_
.SW_3D
1272 SASH_TOP
= _windows_
.SASH_TOP
1273 SASH_RIGHT
= _windows_
.SASH_RIGHT
1274 SASH_BOTTOM
= _windows_
.SASH_BOTTOM
1275 SASH_LEFT
= _windows_
.SASH_LEFT
1276 SASH_NONE
= _windows_
.SASH_NONE
1277 class SashWindow(_core
.Window
):
1279 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1280 def __init__(self
, *args
, **kwargs
):
1282 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1283 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1284 String name=SashNameStr) -> SashWindow
1286 newobj
= _windows_
.new_SashWindow(*args
, **kwargs
)
1287 self
.this
= newobj
.this
1290 self
._setOORInfo
(self
)
1292 def Create(*args
, **kwargs
):
1294 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1295 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1296 String name=SashNameStr) -> bool
1298 return _windows_
.SashWindow_Create(*args
, **kwargs
)
1300 def SetSashVisible(*args
, **kwargs
):
1301 """SetSashVisible(self, int edge, bool sash)"""
1302 return _windows_
.SashWindow_SetSashVisible(*args
, **kwargs
)
1304 def GetSashVisible(*args
, **kwargs
):
1305 """GetSashVisible(self, int edge) -> bool"""
1306 return _windows_
.SashWindow_GetSashVisible(*args
, **kwargs
)
1308 def SetSashBorder(*args
, **kwargs
):
1309 """SetSashBorder(self, int edge, bool border)"""
1310 return _windows_
.SashWindow_SetSashBorder(*args
, **kwargs
)
1312 def HasBorder(*args
, **kwargs
):
1313 """HasBorder(self, int edge) -> bool"""
1314 return _windows_
.SashWindow_HasBorder(*args
, **kwargs
)
1316 def GetEdgeMargin(*args
, **kwargs
):
1317 """GetEdgeMargin(self, int edge) -> int"""
1318 return _windows_
.SashWindow_GetEdgeMargin(*args
, **kwargs
)
1320 def SetDefaultBorderSize(*args
, **kwargs
):
1321 """SetDefaultBorderSize(self, int width)"""
1322 return _windows_
.SashWindow_SetDefaultBorderSize(*args
, **kwargs
)
1324 def GetDefaultBorderSize(*args
, **kwargs
):
1325 """GetDefaultBorderSize(self) -> int"""
1326 return _windows_
.SashWindow_GetDefaultBorderSize(*args
, **kwargs
)
1328 def SetExtraBorderSize(*args
, **kwargs
):
1329 """SetExtraBorderSize(self, int width)"""
1330 return _windows_
.SashWindow_SetExtraBorderSize(*args
, **kwargs
)
1332 def GetExtraBorderSize(*args
, **kwargs
):
1333 """GetExtraBorderSize(self) -> int"""
1334 return _windows_
.SashWindow_GetExtraBorderSize(*args
, **kwargs
)
1336 def SetMinimumSizeX(*args
, **kwargs
):
1337 """SetMinimumSizeX(self, int min)"""
1338 return _windows_
.SashWindow_SetMinimumSizeX(*args
, **kwargs
)
1340 def SetMinimumSizeY(*args
, **kwargs
):
1341 """SetMinimumSizeY(self, int min)"""
1342 return _windows_
.SashWindow_SetMinimumSizeY(*args
, **kwargs
)
1344 def GetMinimumSizeX(*args
, **kwargs
):
1345 """GetMinimumSizeX(self) -> int"""
1346 return _windows_
.SashWindow_GetMinimumSizeX(*args
, **kwargs
)
1348 def GetMinimumSizeY(*args
, **kwargs
):
1349 """GetMinimumSizeY(self) -> int"""
1350 return _windows_
.SashWindow_GetMinimumSizeY(*args
, **kwargs
)
1352 def SetMaximumSizeX(*args
, **kwargs
):
1353 """SetMaximumSizeX(self, int max)"""
1354 return _windows_
.SashWindow_SetMaximumSizeX(*args
, **kwargs
)
1356 def SetMaximumSizeY(*args
, **kwargs
):
1357 """SetMaximumSizeY(self, int max)"""
1358 return _windows_
.SashWindow_SetMaximumSizeY(*args
, **kwargs
)
1360 def GetMaximumSizeX(*args
, **kwargs
):
1361 """GetMaximumSizeX(self) -> int"""
1362 return _windows_
.SashWindow_GetMaximumSizeX(*args
, **kwargs
)
1364 def GetMaximumSizeY(*args
, **kwargs
):
1365 """GetMaximumSizeY(self) -> int"""
1366 return _windows_
.SashWindow_GetMaximumSizeY(*args
, **kwargs
)
1368 def SashHitTest(*args
, **kwargs
):
1369 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1370 return _windows_
.SashWindow_SashHitTest(*args
, **kwargs
)
1372 def SizeWindows(*args
, **kwargs
):
1373 """SizeWindows(self)"""
1374 return _windows_
.SashWindow_SizeWindows(*args
, **kwargs
)
1377 class SashWindowPtr(SashWindow
):
1378 def __init__(self
, this
):
1380 if not hasattr(self
,"thisown"): self
.thisown
= 0
1381 self
.__class
__ = SashWindow
1382 _windows_
.SashWindow_swigregister(SashWindowPtr
)
1383 SashNameStr
= cvar
.SashNameStr
1384 SashLayoutNameStr
= cvar
.SashLayoutNameStr
1386 def PreSashWindow(*args
, **kwargs
):
1387 """PreSashWindow() -> SashWindow"""
1388 val
= _windows_
.new_PreSashWindow(*args
, **kwargs
)
1392 SASH_STATUS_OK
= _windows_
.SASH_STATUS_OK
1393 SASH_STATUS_OUT_OF_RANGE
= _windows_
.SASH_STATUS_OUT_OF_RANGE
1394 class SashEvent(_core
.CommandEvent
):
1396 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1397 def __init__(self
, *args
, **kwargs
):
1398 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1399 newobj
= _windows_
.new_SashEvent(*args
, **kwargs
)
1400 self
.this
= newobj
.this
1403 def SetEdge(*args
, **kwargs
):
1404 """SetEdge(self, int edge)"""
1405 return _windows_
.SashEvent_SetEdge(*args
, **kwargs
)
1407 def GetEdge(*args
, **kwargs
):
1408 """GetEdge(self) -> int"""
1409 return _windows_
.SashEvent_GetEdge(*args
, **kwargs
)
1411 def SetDragRect(*args
, **kwargs
):
1412 """SetDragRect(self, Rect rect)"""
1413 return _windows_
.SashEvent_SetDragRect(*args
, **kwargs
)
1415 def GetDragRect(*args
, **kwargs
):
1416 """GetDragRect(self) -> Rect"""
1417 return _windows_
.SashEvent_GetDragRect(*args
, **kwargs
)
1419 def SetDragStatus(*args
, **kwargs
):
1420 """SetDragStatus(self, int status)"""
1421 return _windows_
.SashEvent_SetDragStatus(*args
, **kwargs
)
1423 def GetDragStatus(*args
, **kwargs
):
1424 """GetDragStatus(self) -> int"""
1425 return _windows_
.SashEvent_GetDragStatus(*args
, **kwargs
)
1428 class SashEventPtr(SashEvent
):
1429 def __init__(self
, this
):
1431 if not hasattr(self
,"thisown"): self
.thisown
= 0
1432 self
.__class
__ = SashEvent
1433 _windows_
.SashEvent_swigregister(SashEventPtr
)
1435 wxEVT_SASH_DRAGGED
= _windows_
.wxEVT_SASH_DRAGGED
1436 EVT_SASH_DRAGGED
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 1 )
1437 EVT_SASH_DRAGGED_RANGE
= wx
.PyEventBinder( wxEVT_SASH_DRAGGED
, 2 )
1439 #---------------------------------------------------------------------------
1441 LAYOUT_HORIZONTAL
= _windows_
.LAYOUT_HORIZONTAL
1442 LAYOUT_VERTICAL
= _windows_
.LAYOUT_VERTICAL
1443 LAYOUT_NONE
= _windows_
.LAYOUT_NONE
1444 LAYOUT_TOP
= _windows_
.LAYOUT_TOP
1445 LAYOUT_LEFT
= _windows_
.LAYOUT_LEFT
1446 LAYOUT_RIGHT
= _windows_
.LAYOUT_RIGHT
1447 LAYOUT_BOTTOM
= _windows_
.LAYOUT_BOTTOM
1448 LAYOUT_LENGTH_Y
= _windows_
.LAYOUT_LENGTH_Y
1449 LAYOUT_LENGTH_X
= _windows_
.LAYOUT_LENGTH_X
1450 LAYOUT_MRU_LENGTH
= _windows_
.LAYOUT_MRU_LENGTH
1451 LAYOUT_QUERY
= _windows_
.LAYOUT_QUERY
1452 wxEVT_QUERY_LAYOUT_INFO
= _windows_
.wxEVT_QUERY_LAYOUT_INFO
1453 wxEVT_CALCULATE_LAYOUT
= _windows_
.wxEVT_CALCULATE_LAYOUT
1454 class QueryLayoutInfoEvent(_core
.Event
):
1456 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1457 def __init__(self
, *args
, **kwargs
):
1458 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1459 newobj
= _windows_
.new_QueryLayoutInfoEvent(*args
, **kwargs
)
1460 self
.this
= newobj
.this
1463 def SetRequestedLength(*args
, **kwargs
):
1464 """SetRequestedLength(self, int length)"""
1465 return _windows_
.QueryLayoutInfoEvent_SetRequestedLength(*args
, **kwargs
)
1467 def GetRequestedLength(*args
, **kwargs
):
1468 """GetRequestedLength(self) -> int"""
1469 return _windows_
.QueryLayoutInfoEvent_GetRequestedLength(*args
, **kwargs
)
1471 def SetFlags(*args
, **kwargs
):
1472 """SetFlags(self, int flags)"""
1473 return _windows_
.QueryLayoutInfoEvent_SetFlags(*args
, **kwargs
)
1475 def GetFlags(*args
, **kwargs
):
1476 """GetFlags(self) -> int"""
1477 return _windows_
.QueryLayoutInfoEvent_GetFlags(*args
, **kwargs
)
1479 def SetSize(*args
, **kwargs
):
1480 """SetSize(self, Size size)"""
1481 return _windows_
.QueryLayoutInfoEvent_SetSize(*args
, **kwargs
)
1483 def GetSize(*args
, **kwargs
):
1484 """GetSize(self) -> Size"""
1485 return _windows_
.QueryLayoutInfoEvent_GetSize(*args
, **kwargs
)
1487 def SetOrientation(*args
, **kwargs
):
1488 """SetOrientation(self, int orient)"""
1489 return _windows_
.QueryLayoutInfoEvent_SetOrientation(*args
, **kwargs
)
1491 def GetOrientation(*args
, **kwargs
):
1492 """GetOrientation(self) -> int"""
1493 return _windows_
.QueryLayoutInfoEvent_GetOrientation(*args
, **kwargs
)
1495 def SetAlignment(*args
, **kwargs
):
1496 """SetAlignment(self, int align)"""
1497 return _windows_
.QueryLayoutInfoEvent_SetAlignment(*args
, **kwargs
)
1499 def GetAlignment(*args
, **kwargs
):
1500 """GetAlignment(self) -> int"""
1501 return _windows_
.QueryLayoutInfoEvent_GetAlignment(*args
, **kwargs
)
1504 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent
):
1505 def __init__(self
, this
):
1507 if not hasattr(self
,"thisown"): self
.thisown
= 0
1508 self
.__class
__ = QueryLayoutInfoEvent
1509 _windows_
.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr
)
1511 class CalculateLayoutEvent(_core
.Event
):
1513 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1514 def __init__(self
, *args
, **kwargs
):
1515 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1516 newobj
= _windows_
.new_CalculateLayoutEvent(*args
, **kwargs
)
1517 self
.this
= newobj
.this
1520 def SetFlags(*args
, **kwargs
):
1521 """SetFlags(self, int flags)"""
1522 return _windows_
.CalculateLayoutEvent_SetFlags(*args
, **kwargs
)
1524 def GetFlags(*args
, **kwargs
):
1525 """GetFlags(self) -> int"""
1526 return _windows_
.CalculateLayoutEvent_GetFlags(*args
, **kwargs
)
1528 def SetRect(*args
, **kwargs
):
1529 """SetRect(self, Rect rect)"""
1530 return _windows_
.CalculateLayoutEvent_SetRect(*args
, **kwargs
)
1532 def GetRect(*args
, **kwargs
):
1533 """GetRect(self) -> Rect"""
1534 return _windows_
.CalculateLayoutEvent_GetRect(*args
, **kwargs
)
1537 class CalculateLayoutEventPtr(CalculateLayoutEvent
):
1538 def __init__(self
, this
):
1540 if not hasattr(self
,"thisown"): self
.thisown
= 0
1541 self
.__class
__ = CalculateLayoutEvent
1542 _windows_
.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr
)
1544 EVT_QUERY_LAYOUT_INFO
= wx
.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO
)
1545 EVT_CALCULATE_LAYOUT
= wx
.PyEventBinder( wxEVT_CALCULATE_LAYOUT
)
1547 class SashLayoutWindow(SashWindow
):
1549 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1550 def __init__(self
, *args
, **kwargs
):
1552 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1553 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1554 String name=SashLayoutNameStr) -> SashLayoutWindow
1556 newobj
= _windows_
.new_SashLayoutWindow(*args
, **kwargs
)
1557 self
.this
= newobj
.this
1560 self
._setOORInfo
(self
)
1562 def Create(*args
, **kwargs
):
1564 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1565 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1566 String name=SashLayoutNameStr) -> bool
1568 return _windows_
.SashLayoutWindow_Create(*args
, **kwargs
)
1570 def GetAlignment(*args
, **kwargs
):
1571 """GetAlignment(self) -> int"""
1572 return _windows_
.SashLayoutWindow_GetAlignment(*args
, **kwargs
)
1574 def GetOrientation(*args
, **kwargs
):
1575 """GetOrientation(self) -> int"""
1576 return _windows_
.SashLayoutWindow_GetOrientation(*args
, **kwargs
)
1578 def SetAlignment(*args
, **kwargs
):
1579 """SetAlignment(self, int alignment)"""
1580 return _windows_
.SashLayoutWindow_SetAlignment(*args
, **kwargs
)
1582 def SetDefaultSize(*args
, **kwargs
):
1583 """SetDefaultSize(self, Size size)"""
1584 return _windows_
.SashLayoutWindow_SetDefaultSize(*args
, **kwargs
)
1586 def SetOrientation(*args
, **kwargs
):
1587 """SetOrientation(self, int orientation)"""
1588 return _windows_
.SashLayoutWindow_SetOrientation(*args
, **kwargs
)
1591 class SashLayoutWindowPtr(SashLayoutWindow
):
1592 def __init__(self
, this
):
1594 if not hasattr(self
,"thisown"): self
.thisown
= 0
1595 self
.__class
__ = SashLayoutWindow
1596 _windows_
.SashLayoutWindow_swigregister(SashLayoutWindowPtr
)
1598 def PreSashLayoutWindow(*args
, **kwargs
):
1599 """PreSashLayoutWindow() -> SashLayoutWindow"""
1600 val
= _windows_
.new_PreSashLayoutWindow(*args
, **kwargs
)
1604 class LayoutAlgorithm(_core
.Object
):
1606 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1607 def __init__(self
, *args
, **kwargs
):
1608 """__init__(self) -> LayoutAlgorithm"""
1609 newobj
= _windows_
.new_LayoutAlgorithm(*args
, **kwargs
)
1610 self
.this
= newobj
.this
1613 def __del__(self
, destroy
=_windows_
.delete_LayoutAlgorithm
):
1616 if self
.thisown
: destroy(self
)
1619 def LayoutMDIFrame(*args
, **kwargs
):
1620 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1621 return _windows_
.LayoutAlgorithm_LayoutMDIFrame(*args
, **kwargs
)
1623 def LayoutFrame(*args
, **kwargs
):
1624 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1625 return _windows_
.LayoutAlgorithm_LayoutFrame(*args
, **kwargs
)
1627 def LayoutWindow(*args
, **kwargs
):
1628 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1629 return _windows_
.LayoutAlgorithm_LayoutWindow(*args
, **kwargs
)
1632 class LayoutAlgorithmPtr(LayoutAlgorithm
):
1633 def __init__(self
, this
):
1635 if not hasattr(self
,"thisown"): self
.thisown
= 0
1636 self
.__class
__ = LayoutAlgorithm
1637 _windows_
.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr
)
1639 #---------------------------------------------------------------------------
1641 class PopupWindow(_core
.Window
):
1643 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1644 def __init__(self
, *args
, **kwargs
):
1645 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1646 newobj
= _windows_
.new_PopupWindow(*args
, **kwargs
)
1647 self
.this
= newobj
.this
1650 self
._setOORInfo
(self
)
1652 def Create(*args
, **kwargs
):
1653 """Create(self, Window parent, int flags=BORDER_NONE) -> bool"""
1654 return _windows_
.PopupWindow_Create(*args
, **kwargs
)
1656 def Position(*args
, **kwargs
):
1657 """Position(self, Point ptOrigin, Size size)"""
1658 return _windows_
.PopupWindow_Position(*args
, **kwargs
)
1661 class PopupWindowPtr(PopupWindow
):
1662 def __init__(self
, this
):
1664 if not hasattr(self
,"thisown"): self
.thisown
= 0
1665 self
.__class
__ = PopupWindow
1666 _windows_
.PopupWindow_swigregister(PopupWindowPtr
)
1668 def PrePopupWindow(*args
, **kwargs
):
1669 """PrePopupWindow() -> PopupWindow"""
1670 val
= _windows_
.new_PrePopupWindow(*args
, **kwargs
)
1674 #---------------------------------------------------------------------------
1676 class PopupTransientWindow(PopupWindow
):
1678 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1679 def __init__(self
, *args
, **kwargs
):
1680 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1681 newobj
= _windows_
.new_PopupTransientWindow(*args
, **kwargs
)
1682 self
.this
= newobj
.this
1685 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, PopupTransientWindow
)
1687 def _setCallbackInfo(*args
, **kwargs
):
1688 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1689 return _windows_
.PopupTransientWindow__setCallbackInfo(*args
, **kwargs
)
1691 def Popup(*args
, **kwargs
):
1692 """Popup(self, Window focus=None)"""
1693 return _windows_
.PopupTransientWindow_Popup(*args
, **kwargs
)
1695 def Dismiss(*args
, **kwargs
):
1697 return _windows_
.PopupTransientWindow_Dismiss(*args
, **kwargs
)
1700 class PopupTransientWindowPtr(PopupTransientWindow
):
1701 def __init__(self
, this
):
1703 if not hasattr(self
,"thisown"): self
.thisown
= 0
1704 self
.__class
__ = PopupTransientWindow
1705 _windows_
.PopupTransientWindow_swigregister(PopupTransientWindowPtr
)
1707 def PrePopupTransientWindow(*args
, **kwargs
):
1708 """PrePopupTransientWindow() -> PopupTransientWindow"""
1709 val
= _windows_
.new_PrePopupTransientWindow(*args
, **kwargs
)
1713 #---------------------------------------------------------------------------
1715 class TipWindow(PopupTransientWindow
):
1717 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1718 def __init__(self
, *args
, **kwargs
):
1719 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1720 newobj
= _windows_
.new_TipWindow(*args
, **kwargs
)
1721 self
.this
= newobj
.this
1724 self
._setOORInfo
(self
)
1726 def SetBoundingRect(*args
, **kwargs
):
1727 """SetBoundingRect(self, Rect rectBound)"""
1728 return _windows_
.TipWindow_SetBoundingRect(*args
, **kwargs
)
1730 def Close(*args
, **kwargs
):
1732 return _windows_
.TipWindow_Close(*args
, **kwargs
)
1735 class TipWindowPtr(TipWindow
):
1736 def __init__(self
, this
):
1738 if not hasattr(self
,"thisown"): self
.thisown
= 0
1739 self
.__class
__ = TipWindow
1740 _windows_
.TipWindow_swigregister(TipWindowPtr
)
1742 #---------------------------------------------------------------------------
1744 class VScrolledWindow(Panel
):
1746 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1747 def __init__(self
, *args
, **kwargs
):
1749 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1750 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1752 newobj
= _windows_
.new_VScrolledWindow(*args
, **kwargs
)
1753 self
.this
= newobj
.this
1756 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, VScrolledWindow
)
1758 def _setCallbackInfo(*args
, **kwargs
):
1759 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1760 return _windows_
.VScrolledWindow__setCallbackInfo(*args
, **kwargs
)
1762 def Create(*args
, **kwargs
):
1764 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1765 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1767 return _windows_
.VScrolledWindow_Create(*args
, **kwargs
)
1769 def SetLineCount(*args
, **kwargs
):
1770 """SetLineCount(self, size_t count)"""
1771 return _windows_
.VScrolledWindow_SetLineCount(*args
, **kwargs
)
1773 def ScrollToLine(*args
, **kwargs
):
1774 """ScrollToLine(self, size_t line) -> bool"""
1775 return _windows_
.VScrolledWindow_ScrollToLine(*args
, **kwargs
)
1777 def ScrollLines(*args
, **kwargs
):
1779 ScrollLines(self, int lines) -> bool
1781 If the platform and window class supports it, scrolls the window by
1782 the given number of lines down, if lines is positive, or up if lines
1783 is negative. Returns True if the window was scrolled, False if it was
1784 already on top/bottom and nothing was done.
1786 return _windows_
.VScrolledWindow_ScrollLines(*args
, **kwargs
)
1788 def ScrollPages(*args
, **kwargs
):
1790 ScrollPages(self, int pages) -> bool
1792 If the platform and window class supports it, scrolls the window by
1793 the given number of pages down, if pages is positive, or up if pages
1794 is negative. Returns True if the window was scrolled, False if it was
1795 already on top/bottom and nothing was done.
1797 return _windows_
.VScrolledWindow_ScrollPages(*args
, **kwargs
)
1799 def RefreshLine(*args
, **kwargs
):
1800 """RefreshLine(self, size_t line)"""
1801 return _windows_
.VScrolledWindow_RefreshLine(*args
, **kwargs
)
1803 def RefreshLines(*args
, **kwargs
):
1804 """RefreshLines(self, size_t from, size_t to)"""
1805 return _windows_
.VScrolledWindow_RefreshLines(*args
, **kwargs
)
1807 def HitTestXT(*args
, **kwargs
):
1809 HitTestXT(self, int x, int y) -> int
1811 Test where the given (in client coords) point lies
1813 return _windows_
.VScrolledWindow_HitTestXT(*args
, **kwargs
)
1815 def HitTest(*args
, **kwargs
):
1817 HitTest(self, Point pt) -> int
1819 Test where the given (in client coords) point lies
1821 return _windows_
.VScrolledWindow_HitTest(*args
, **kwargs
)
1823 def RefreshAll(*args
, **kwargs
):
1824 """RefreshAll(self)"""
1825 return _windows_
.VScrolledWindow_RefreshAll(*args
, **kwargs
)
1827 def GetLineCount(*args
, **kwargs
):
1828 """GetLineCount(self) -> size_t"""
1829 return _windows_
.VScrolledWindow_GetLineCount(*args
, **kwargs
)
1831 def GetFirstVisibleLine(*args
, **kwargs
):
1832 """GetFirstVisibleLine(self) -> size_t"""
1833 return _windows_
.VScrolledWindow_GetFirstVisibleLine(*args
, **kwargs
)
1835 def GetLastVisibleLine(*args
, **kwargs
):
1836 """GetLastVisibleLine(self) -> size_t"""
1837 return _windows_
.VScrolledWindow_GetLastVisibleLine(*args
, **kwargs
)
1839 def IsVisible(*args
, **kwargs
):
1840 """IsVisible(self, size_t line) -> bool"""
1841 return _windows_
.VScrolledWindow_IsVisible(*args
, **kwargs
)
1844 class VScrolledWindowPtr(VScrolledWindow
):
1845 def __init__(self
, this
):
1847 if not hasattr(self
,"thisown"): self
.thisown
= 0
1848 self
.__class
__ = VScrolledWindow
1849 _windows_
.VScrolledWindow_swigregister(VScrolledWindowPtr
)
1851 def PreVScrolledWindow(*args
, **kwargs
):
1852 """PreVScrolledWindow() -> VScrolledWindow"""
1853 val
= _windows_
.new_PreVScrolledWindow(*args
, **kwargs
)
1857 class VListBox(VScrolledWindow
):
1859 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1860 def __init__(self
, *args
, **kwargs
):
1862 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1863 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1865 newobj
= _windows_
.new_VListBox(*args
, **kwargs
)
1866 self
.this
= newobj
.this
1869 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, VListBox
)
1871 def _setCallbackInfo(*args
, **kwargs
):
1872 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1873 return _windows_
.VListBox__setCallbackInfo(*args
, **kwargs
)
1875 def Create(*args
, **kwargs
):
1877 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1878 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
1880 return _windows_
.VListBox_Create(*args
, **kwargs
)
1882 def GetItemCount(*args
, **kwargs
):
1883 """GetItemCount(self) -> size_t"""
1884 return _windows_
.VListBox_GetItemCount(*args
, **kwargs
)
1886 def HasMultipleSelection(*args
, **kwargs
):
1887 """HasMultipleSelection(self) -> bool"""
1888 return _windows_
.VListBox_HasMultipleSelection(*args
, **kwargs
)
1890 def GetSelection(*args
, **kwargs
):
1891 """GetSelection(self) -> int"""
1892 return _windows_
.VListBox_GetSelection(*args
, **kwargs
)
1894 def IsCurrent(*args
, **kwargs
):
1895 """IsCurrent(self, size_t item) -> bool"""
1896 return _windows_
.VListBox_IsCurrent(*args
, **kwargs
)
1898 def IsSelected(*args
, **kwargs
):
1899 """IsSelected(self, size_t item) -> bool"""
1900 return _windows_
.VListBox_IsSelected(*args
, **kwargs
)
1902 def GetSelectedCount(*args
, **kwargs
):
1903 """GetSelectedCount(self) -> size_t"""
1904 return _windows_
.VListBox_GetSelectedCount(*args
, **kwargs
)
1906 def GetFirstSelected(*args
, **kwargs
):
1907 """GetFirstSelected(self) -> PyObject"""
1908 return _windows_
.VListBox_GetFirstSelected(*args
, **kwargs
)
1910 def GetNextSelected(*args
, **kwargs
):
1911 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
1912 return _windows_
.VListBox_GetNextSelected(*args
, **kwargs
)
1914 def GetMargins(*args
, **kwargs
):
1915 """GetMargins(self) -> Point"""
1916 return _windows_
.VListBox_GetMargins(*args
, **kwargs
)
1918 def GetSelectionBackground(*args
, **kwargs
):
1919 """GetSelectionBackground(self) -> Colour"""
1920 return _windows_
.VListBox_GetSelectionBackground(*args
, **kwargs
)
1922 def SetItemCount(*args
, **kwargs
):
1923 """SetItemCount(self, size_t count)"""
1924 return _windows_
.VListBox_SetItemCount(*args
, **kwargs
)
1926 def Clear(*args
, **kwargs
):
1928 return _windows_
.VListBox_Clear(*args
, **kwargs
)
1930 def SetSelection(*args
, **kwargs
):
1931 """SetSelection(self, int selection)"""
1932 return _windows_
.VListBox_SetSelection(*args
, **kwargs
)
1934 def Select(*args
, **kwargs
):
1935 """Select(self, size_t item, bool select=True) -> bool"""
1936 return _windows_
.VListBox_Select(*args
, **kwargs
)
1938 def SelectRange(*args
, **kwargs
):
1939 """SelectRange(self, size_t from, size_t to) -> bool"""
1940 return _windows_
.VListBox_SelectRange(*args
, **kwargs
)
1942 def Toggle(*args
, **kwargs
):
1943 """Toggle(self, size_t item)"""
1944 return _windows_
.VListBox_Toggle(*args
, **kwargs
)
1946 def SelectAll(*args
, **kwargs
):
1947 """SelectAll(self) -> bool"""
1948 return _windows_
.VListBox_SelectAll(*args
, **kwargs
)
1950 def DeselectAll(*args
, **kwargs
):
1951 """DeselectAll(self) -> bool"""
1952 return _windows_
.VListBox_DeselectAll(*args
, **kwargs
)
1954 def SetMargins(*args
, **kwargs
):
1955 """SetMargins(self, Point pt)"""
1956 return _windows_
.VListBox_SetMargins(*args
, **kwargs
)
1958 def SetMarginsXY(*args
, **kwargs
):
1959 """SetMarginsXY(self, int x, int y)"""
1960 return _windows_
.VListBox_SetMarginsXY(*args
, **kwargs
)
1962 def SetSelectionBackground(*args
, **kwargs
):
1963 """SetSelectionBackground(self, Colour col)"""
1964 return _windows_
.VListBox_SetSelectionBackground(*args
, **kwargs
)
1967 class VListBoxPtr(VListBox
):
1968 def __init__(self
, this
):
1970 if not hasattr(self
,"thisown"): self
.thisown
= 0
1971 self
.__class
__ = VListBox
1972 _windows_
.VListBox_swigregister(VListBoxPtr
)
1973 VListBoxNameStr
= cvar
.VListBoxNameStr
1975 def PreVListBox(*args
, **kwargs
):
1976 """PreVListBox() -> VListBox"""
1977 val
= _windows_
.new_PreVListBox(*args
, **kwargs
)
1981 class HtmlListBox(VListBox
):
1983 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
1984 def __init__(self
, *args
, **kwargs
):
1986 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1987 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
1989 newobj
= _windows_
.new_HtmlListBox(*args
, **kwargs
)
1990 self
.this
= newobj
.this
1993 self
._setOORInfo
(self
);self
._setCallbackInfo
(self
, HtmlListBox
)
1995 def _setCallbackInfo(*args
, **kwargs
):
1996 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1997 return _windows_
.HtmlListBox__setCallbackInfo(*args
, **kwargs
)
1999 def Create(*args
, **kwargs
):
2001 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
2002 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
2004 return _windows_
.HtmlListBox_Create(*args
, **kwargs
)
2006 def RefreshAll(*args
, **kwargs
):
2007 """RefreshAll(self)"""
2008 return _windows_
.HtmlListBox_RefreshAll(*args
, **kwargs
)
2010 def SetItemCount(*args
, **kwargs
):
2011 """SetItemCount(self, size_t count)"""
2012 return _windows_
.HtmlListBox_SetItemCount(*args
, **kwargs
)
2014 def GetFileSystem(*args
, **kwargs
):
2015 """GetFileSystem(self) -> FileSystem"""
2016 return _windows_
.HtmlListBox_GetFileSystem(*args
, **kwargs
)
2019 class HtmlListBoxPtr(HtmlListBox
):
2020 def __init__(self
, this
):
2022 if not hasattr(self
,"thisown"): self
.thisown
= 0
2023 self
.__class
__ = HtmlListBox
2024 _windows_
.HtmlListBox_swigregister(HtmlListBoxPtr
)
2026 def PreHtmlListBox(*args
, **kwargs
):
2027 """PreHtmlListBox() -> HtmlListBox"""
2028 val
= _windows_
.new_PreHtmlListBox(*args
, **kwargs
)
2032 #---------------------------------------------------------------------------
2034 class TaskBarIcon(_core
.EvtHandler
):
2036 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2037 def __init__(self
, *args
, **kwargs
):
2038 """__init__(self) -> TaskBarIcon"""
2039 newobj
= _windows_
.new_TaskBarIcon(*args
, **kwargs
)
2040 self
.this
= newobj
.this
2043 def __del__(self
, destroy
=_windows_
.delete_TaskBarIcon
):
2046 if self
.thisown
: destroy(self
)
2049 def Destroy(*args
, **kwargs
):
2053 Deletes the C++ object this Python object is a proxy for.
2055 return _windows_
.TaskBarIcon_Destroy(*args
, **kwargs
)
2057 def IsOk(*args
, **kwargs
):
2058 """IsOk(self) -> bool"""
2059 return _windows_
.TaskBarIcon_IsOk(*args
, **kwargs
)
2061 def __nonzero__(self
): return self
.IsOk()
2062 def IsIconInstalled(*args
, **kwargs
):
2063 """IsIconInstalled(self) -> bool"""
2064 return _windows_
.TaskBarIcon_IsIconInstalled(*args
, **kwargs
)
2066 def SetIcon(*args
, **kwargs
):
2067 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2068 return _windows_
.TaskBarIcon_SetIcon(*args
, **kwargs
)
2070 def RemoveIcon(*args
, **kwargs
):
2071 """RemoveIcon(self) -> bool"""
2072 return _windows_
.TaskBarIcon_RemoveIcon(*args
, **kwargs
)
2074 def PopupMenu(*args
, **kwargs
):
2075 """PopupMenu(self, Menu menu) -> bool"""
2076 return _windows_
.TaskBarIcon_PopupMenu(*args
, **kwargs
)
2079 class TaskBarIconPtr(TaskBarIcon
):
2080 def __init__(self
, this
):
2082 if not hasattr(self
,"thisown"): self
.thisown
= 0
2083 self
.__class
__ = TaskBarIcon
2084 _windows_
.TaskBarIcon_swigregister(TaskBarIconPtr
)
2086 class TaskBarIconEvent(_core
.Event
):
2088 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2089 def __init__(self
, *args
, **kwargs
):
2090 """__init__(self, wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
2091 newobj
= _windows_
.new_TaskBarIconEvent(*args
, **kwargs
)
2092 self
.this
= newobj
.this
2096 class TaskBarIconEventPtr(TaskBarIconEvent
):
2097 def __init__(self
, this
):
2099 if not hasattr(self
,"thisown"): self
.thisown
= 0
2100 self
.__class
__ = TaskBarIconEvent
2101 _windows_
.TaskBarIconEvent_swigregister(TaskBarIconEventPtr
)
2103 wxEVT_TASKBAR_MOVE
= _windows_
.wxEVT_TASKBAR_MOVE
2104 wxEVT_TASKBAR_LEFT_DOWN
= _windows_
.wxEVT_TASKBAR_LEFT_DOWN
2105 wxEVT_TASKBAR_LEFT_UP
= _windows_
.wxEVT_TASKBAR_LEFT_UP
2106 wxEVT_TASKBAR_RIGHT_DOWN
= _windows_
.wxEVT_TASKBAR_RIGHT_DOWN
2107 wxEVT_TASKBAR_RIGHT_UP
= _windows_
.wxEVT_TASKBAR_RIGHT_UP
2108 wxEVT_TASKBAR_LEFT_DCLICK
= _windows_
.wxEVT_TASKBAR_LEFT_DCLICK
2109 wxEVT_TASKBAR_RIGHT_DCLICK
= _windows_
.wxEVT_TASKBAR_RIGHT_DCLICK
2110 EVT_TASKBAR_MOVE
= wx
.PyEventBinder ( wxEVT_TASKBAR_MOVE
)
2111 EVT_TASKBAR_LEFT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN
)
2112 EVT_TASKBAR_LEFT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP
)
2113 EVT_TASKBAR_RIGHT_DOWN
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN
)
2114 EVT_TASKBAR_RIGHT_UP
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP
)
2115 EVT_TASKBAR_LEFT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK
)
2116 EVT_TASKBAR_RIGHT_DCLICK
= wx
.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK
)
2118 #---------------------------------------------------------------------------
2120 class ColourData(_core
.Object
):
2122 This class holds a variety of information related to the colour
2123 chooser dialog, used to transfer settings and results to and from the
2127 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2128 def __init__(self
, *args
, **kwargs
):
2130 __init__(self) -> ColourData
2132 Constructor, sets default values.
2134 newobj
= _windows_
.new_ColourData(*args
, **kwargs
)
2135 self
.this
= newobj
.this
2138 def __del__(self
, destroy
=_windows_
.delete_ColourData
):
2141 if self
.thisown
: destroy(self
)
2144 def GetChooseFull(*args
, **kwargs
):
2146 GetChooseFull(self) -> bool
2148 Under Windows, determines whether the Windows colour dialog will
2149 display the full dialog with custom colour selection controls. Has no
2150 meaning under other platforms. The default value is true.
2152 return _windows_
.ColourData_GetChooseFull(*args
, **kwargs
)
2154 def GetColour(*args
, **kwargs
):
2156 GetColour(self) -> Colour
2158 Gets the colour (pre)selected by the dialog.
2160 return _windows_
.ColourData_GetColour(*args
, **kwargs
)
2162 def GetCustomColour(*args
, **kwargs
):
2164 GetCustomColour(self, int i) -> Colour
2166 Gets the i'th custom colour associated with the colour dialog. i
2167 should be an integer between 0 and 15. The default custom colours are
2168 all invalid colours.
2170 return _windows_
.ColourData_GetCustomColour(*args
, **kwargs
)
2172 def SetChooseFull(*args
, **kwargs
):
2174 SetChooseFull(self, int flag)
2176 Under Windows, tells the Windows colour dialog to display the full
2177 dialog with custom colour selection controls. Under other platforms,
2178 has no effect. The default value is true.
2180 return _windows_
.ColourData_SetChooseFull(*args
, **kwargs
)
2182 def SetColour(*args
, **kwargs
):
2184 SetColour(self, Colour colour)
2186 Sets the default colour for the colour dialog. The default colour is
2189 return _windows_
.ColourData_SetColour(*args
, **kwargs
)
2191 def SetCustomColour(*args
, **kwargs
):
2193 SetCustomColour(self, int i, Colour colour)
2195 Sets the i'th custom colour for the colour dialog. i should be an
2196 integer between 0 and 15. The default custom colours are all invalid colours.
2198 return _windows_
.ColourData_SetCustomColour(*args
, **kwargs
)
2201 class ColourDataPtr(ColourData
):
2202 def __init__(self
, this
):
2204 if not hasattr(self
,"thisown"): self
.thisown
= 0
2205 self
.__class
__ = ColourData
2206 _windows_
.ColourData_swigregister(ColourDataPtr
)
2207 FileSelectorPromptStr
= cvar
.FileSelectorPromptStr
2208 DirSelectorPromptStr
= cvar
.DirSelectorPromptStr
2209 DirDialogNameStr
= cvar
.DirDialogNameStr
2210 FileSelectorDefaultWildcardStr
= cvar
.FileSelectorDefaultWildcardStr
2211 GetTextFromUserPromptStr
= cvar
.GetTextFromUserPromptStr
2212 MessageBoxCaptionStr
= cvar
.MessageBoxCaptionStr
2214 class ColourDialog(Dialog
):
2215 """This class represents the colour chooser dialog."""
2217 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2218 def __init__(self
, *args
, **kwargs
):
2220 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2222 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2223 which will be copied to the colour dialog's internal ColourData
2226 newobj
= _windows_
.new_ColourDialog(*args
, **kwargs
)
2227 self
.this
= newobj
.this
2230 self
._setOORInfo
(self
)
2232 def GetColourData(*args
, **kwargs
):
2234 GetColourData(self) -> ColourData
2236 Returns a reference to the `wx.ColourData` used by the dialog.
2238 return _windows_
.ColourDialog_GetColourData(*args
, **kwargs
)
2241 class ColourDialogPtr(ColourDialog
):
2242 def __init__(self
, this
):
2244 if not hasattr(self
,"thisown"): self
.thisown
= 0
2245 self
.__class
__ = ColourDialog
2246 _windows_
.ColourDialog_swigregister(ColourDialogPtr
)
2248 class DirDialog(Dialog
):
2250 wx.DirDialog allows the user to select a directory by browising the
2254 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2255 def __init__(self
, *args
, **kwargs
):
2257 __init__(self, Window parent, String message=DirSelectorPromptStr,
2258 String defaultPath=EmptyString, long style=0,
2259 Point pos=DefaultPosition, Size size=DefaultSize,
2260 String name=DirDialogNameStr) -> DirDialog
2262 Constructor. Use ShowModal method to show the dialog.
2264 newobj
= _windows_
.new_DirDialog(*args
, **kwargs
)
2265 self
.this
= newobj
.this
2268 self
._setOORInfo
(self
)
2270 def GetPath(*args
, **kwargs
):
2272 GetPath(self) -> String
2274 Returns the default or user-selected path.
2276 return _windows_
.DirDialog_GetPath(*args
, **kwargs
)
2278 def GetMessage(*args
, **kwargs
):
2280 GetMessage(self) -> String
2282 Returns the message that will be displayed on the dialog.
2284 return _windows_
.DirDialog_GetMessage(*args
, **kwargs
)
2286 def GetStyle(*args
, **kwargs
):
2288 GetStyle(self) -> long
2290 Returns the dialog style.
2292 return _windows_
.DirDialog_GetStyle(*args
, **kwargs
)
2294 def SetMessage(*args
, **kwargs
):
2296 SetMessage(self, String message)
2298 Sets the message that will be displayed on the dialog.
2300 return _windows_
.DirDialog_SetMessage(*args
, **kwargs
)
2302 def SetPath(*args
, **kwargs
):
2304 SetPath(self, String path)
2306 Sets the default path.
2308 return _windows_
.DirDialog_SetPath(*args
, **kwargs
)
2311 class DirDialogPtr(DirDialog
):
2312 def __init__(self
, this
):
2314 if not hasattr(self
,"thisown"): self
.thisown
= 0
2315 self
.__class
__ = DirDialog
2316 _windows_
.DirDialog_swigregister(DirDialogPtr
)
2318 class FileDialog(Dialog
):
2320 wx.FileDialog allows the user to select one or more files from the
2324 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2325 def __init__(self
, *args
, **kwargs
):
2327 __init__(self, Window parent, String message=FileSelectorPromptStr,
2328 String defaultDir=EmptyString, String defaultFile=EmptyString,
2329 String wildcard=FileSelectorDefaultWildcardStr,
2330 long style=0, Point pos=DefaultPosition) -> FileDialog
2332 Constructor. Use ShowModal method to show the dialog.
2334 newobj
= _windows_
.new_FileDialog(*args
, **kwargs
)
2335 self
.this
= newobj
.this
2338 self
._setOORInfo
(self
)
2340 def SetMessage(*args
, **kwargs
):
2342 SetMessage(self, String message)
2344 Sets the message that will be displayed on the dialog.
2346 return _windows_
.FileDialog_SetMessage(*args
, **kwargs
)
2348 def SetPath(*args
, **kwargs
):
2350 SetPath(self, String path)
2352 Sets the path (the combined directory and filename that will be
2353 returned when the dialog is dismissed).
2355 return _windows_
.FileDialog_SetPath(*args
, **kwargs
)
2357 def SetDirectory(*args
, **kwargs
):
2359 SetDirectory(self, String dir)
2361 Sets the default directory.
2363 return _windows_
.FileDialog_SetDirectory(*args
, **kwargs
)
2365 def SetFilename(*args
, **kwargs
):
2367 SetFilename(self, String name)
2369 Sets the default filename.
2371 return _windows_
.FileDialog_SetFilename(*args
, **kwargs
)
2373 def SetWildcard(*args
, **kwargs
):
2375 SetWildcard(self, String wildCard)
2377 Sets the wildcard, which can contain multiple file types, for
2380 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2383 return _windows_
.FileDialog_SetWildcard(*args
, **kwargs
)
2385 def SetStyle(*args
, **kwargs
):
2387 SetStyle(self, long style)
2389 Sets the dialog style.
2391 return _windows_
.FileDialog_SetStyle(*args
, **kwargs
)
2393 def SetFilterIndex(*args
, **kwargs
):
2395 SetFilterIndex(self, int filterIndex)
2397 Sets the default filter index, starting from zero.
2399 return _windows_
.FileDialog_SetFilterIndex(*args
, **kwargs
)
2401 def GetMessage(*args
, **kwargs
):
2403 GetMessage(self) -> String
2405 Returns the message that will be displayed on the dialog.
2407 return _windows_
.FileDialog_GetMessage(*args
, **kwargs
)
2409 def GetPath(*args
, **kwargs
):
2411 GetPath(self) -> String
2413 Returns the full path (directory and filename) of the selected file.
2415 return _windows_
.FileDialog_GetPath(*args
, **kwargs
)
2417 def GetDirectory(*args
, **kwargs
):
2419 GetDirectory(self) -> String
2421 Returns the default directory.
2423 return _windows_
.FileDialog_GetDirectory(*args
, **kwargs
)
2425 def GetFilename(*args
, **kwargs
):
2427 GetFilename(self) -> String
2429 Returns the default filename.
2431 return _windows_
.FileDialog_GetFilename(*args
, **kwargs
)
2433 def GetWildcard(*args
, **kwargs
):
2435 GetWildcard(self) -> String
2437 Returns the file dialog wildcard.
2439 return _windows_
.FileDialog_GetWildcard(*args
, **kwargs
)
2441 def GetStyle(*args
, **kwargs
):
2443 GetStyle(self) -> long
2445 Returns the dialog style.
2447 return _windows_
.FileDialog_GetStyle(*args
, **kwargs
)
2449 def GetFilterIndex(*args
, **kwargs
):
2451 GetFilterIndex(self) -> int
2453 Returns the index into the list of filters supplied, optionally, in
2454 the wildcard parameter. Before the dialog is shown, this is the index
2455 which will be used when the dialog is first displayed. After the
2456 dialog is shown, this is the index selected by the user.
2458 return _windows_
.FileDialog_GetFilterIndex(*args
, **kwargs
)
2460 def GetFilenames(*args
, **kwargs
):
2462 GetFilenames(self) -> PyObject
2464 Returns a list of filenames chosen in the dialog. This function
2465 should only be used with the dialogs which have wx.MULTIPLE style, use
2466 GetFilename for the others.
2468 return _windows_
.FileDialog_GetFilenames(*args
, **kwargs
)
2470 def GetPaths(*args
, **kwargs
):
2472 GetPaths(self) -> PyObject
2474 Fills the array paths with the full paths of the files chosen. This
2475 function should only be used with the dialogs which have wx.MULTIPLE
2476 style, use GetPath for the others.
2478 return _windows_
.FileDialog_GetPaths(*args
, **kwargs
)
2481 class FileDialogPtr(FileDialog
):
2482 def __init__(self
, this
):
2484 if not hasattr(self
,"thisown"): self
.thisown
= 0
2485 self
.__class
__ = FileDialog
2486 _windows_
.FileDialog_swigregister(FileDialogPtr
)
2488 CHOICEDLG_STYLE
= _windows_
.CHOICEDLG_STYLE
2489 class MultiChoiceDialog(Dialog
):
2490 """A simple dialog with a multi selection listbox."""
2492 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2493 def __init__(self
, *args
, **kwargs
):
2495 __init__(Window parent, String message, String caption,
2496 List choices=[], long style=CHOICEDLG_STYLE,
2497 Point pos=DefaultPosition) -> MultiChoiceDialog
2499 Constructor. Use ShowModal method to show the dialog.
2501 newobj
= _windows_
.new_MultiChoiceDialog(*args
, **kwargs
)
2502 self
.this
= newobj
.this
2505 self
._setOORInfo
(self
)
2507 def SetSelections(*args
, **kwargs
):
2509 SetSelections(List selections)
2511 Specify the items in the list that should be selected, using a list of
2514 return _windows_
.MultiChoiceDialog_SetSelections(*args
, **kwargs
)
2516 def GetSelections(*args
, **kwargs
):
2518 GetSelections() -> [selections]
2520 Returns a list of integers representing the items that are selected.
2522 return _windows_
.MultiChoiceDialog_GetSelections(*args
, **kwargs
)
2525 class MultiChoiceDialogPtr(MultiChoiceDialog
):
2526 def __init__(self
, this
):
2528 if not hasattr(self
,"thisown"): self
.thisown
= 0
2529 self
.__class
__ = MultiChoiceDialog
2530 _windows_
.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr
)
2532 class SingleChoiceDialog(Dialog
):
2533 """A simple dialog with a single selection listbox."""
2535 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2536 def __init__(self
, *args
, **kwargs
):
2538 __init__(Window parent, String message, String caption,
2539 List choices=[], long style=CHOICEDLG_STYLE,
2540 Point pos=DefaultPosition) -> SingleChoiceDialog
2542 Constructor. Use ShowModal method to show the dialog.
2544 newobj
= _windows_
.new_SingleChoiceDialog(*args
, **kwargs
)
2545 self
.this
= newobj
.this
2548 self
._setOORInfo
(self
)
2550 def GetSelection(*args
, **kwargs
):
2552 GetSelection(self) -> int
2554 Get the index of teh currently selected item.
2556 return _windows_
.SingleChoiceDialog_GetSelection(*args
, **kwargs
)
2558 def GetStringSelection(*args
, **kwargs
):
2560 GetStringSelection(self) -> String
2562 Returns the string value of the currently selected item
2564 return _windows_
.SingleChoiceDialog_GetStringSelection(*args
, **kwargs
)
2566 def SetSelection(*args
, **kwargs
):
2568 SetSelection(self, int sel)
2570 Set the current selected item to sel
2572 return _windows_
.SingleChoiceDialog_SetSelection(*args
, **kwargs
)
2575 class SingleChoiceDialogPtr(SingleChoiceDialog
):
2576 def __init__(self
, this
):
2578 if not hasattr(self
,"thisown"): self
.thisown
= 0
2579 self
.__class
__ = SingleChoiceDialog
2580 _windows_
.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr
)
2582 class TextEntryDialog(Dialog
):
2583 """A dialog with text control, [ok] and [cancel] buttons"""
2585 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2586 def __init__(self
, *args
, **kwargs
):
2588 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2589 String defaultValue=EmptyString,
2590 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2592 Constructor. Use ShowModal method to show the dialog.
2594 newobj
= _windows_
.new_TextEntryDialog(*args
, **kwargs
)
2595 self
.this
= newobj
.this
2598 self
._setOORInfo
(self
)
2600 def GetValue(*args
, **kwargs
):
2602 GetValue(self) -> String
2604 Returns the text that the user has entered if the user has pressed OK,
2605 or the original value if the user has pressed Cancel.
2607 return _windows_
.TextEntryDialog_GetValue(*args
, **kwargs
)
2609 def SetValue(*args
, **kwargs
):
2611 SetValue(self, String value)
2613 Sets the default text value.
2615 return _windows_
.TextEntryDialog_SetValue(*args
, **kwargs
)
2618 class TextEntryDialogPtr(TextEntryDialog
):
2619 def __init__(self
, this
):
2621 if not hasattr(self
,"thisown"): self
.thisown
= 0
2622 self
.__class
__ = TextEntryDialog
2623 _windows_
.TextEntryDialog_swigregister(TextEntryDialogPtr
)
2625 class FontData(_core
.Object
):
2627 This class holds a variety of information related to font dialogs and
2628 is used to transfer settings to and results from a `wx.FontDialog`.
2631 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2632 def __init__(self
, *args
, **kwargs
):
2634 __init__(self) -> FontData
2636 This class holds a variety of information related to font dialogs and
2637 is used to transfer settings to and results from a `wx.FontDialog`.
2639 newobj
= _windows_
.new_FontData(*args
, **kwargs
)
2640 self
.this
= newobj
.this
2643 def __del__(self
, destroy
=_windows_
.delete_FontData
):
2646 if self
.thisown
: destroy(self
)
2649 def EnableEffects(*args
, **kwargs
):
2651 EnableEffects(self, bool enable)
2653 Enables or disables 'effects' under MS Windows only. This refers to
2654 the controls for manipulating colour, strikeout and underline
2655 properties. The default value is true.
2657 return _windows_
.FontData_EnableEffects(*args
, **kwargs
)
2659 def GetAllowSymbols(*args
, **kwargs
):
2661 GetAllowSymbols(self) -> bool
2663 Under MS Windows, returns a flag determining whether symbol fonts can
2664 be selected. Has no effect on other platforms. The default value is
2667 return _windows_
.FontData_GetAllowSymbols(*args
, **kwargs
)
2669 def GetColour(*args
, **kwargs
):
2671 GetColour(self) -> Colour
2673 Gets the colour associated with the font dialog. The default value is
2676 return _windows_
.FontData_GetColour(*args
, **kwargs
)
2678 def GetChosenFont(*args
, **kwargs
):
2680 GetChosenFont(self) -> Font
2682 Gets the font chosen by the user.
2684 return _windows_
.FontData_GetChosenFont(*args
, **kwargs
)
2686 def GetEnableEffects(*args
, **kwargs
):
2688 GetEnableEffects(self) -> bool
2690 Determines whether 'effects' are enabled under Windows.
2692 return _windows_
.FontData_GetEnableEffects(*args
, **kwargs
)
2694 def GetInitialFont(*args
, **kwargs
):
2696 GetInitialFont(self) -> Font
2698 Gets the font that will be initially used by the font dialog. This
2699 should have previously been set by the application.
2701 return _windows_
.FontData_GetInitialFont(*args
, **kwargs
)
2703 def GetShowHelp(*args
, **kwargs
):
2705 GetShowHelp(self) -> bool
2707 Returns true if the Help button will be shown (Windows only). The
2708 default value is false.
2710 return _windows_
.FontData_GetShowHelp(*args
, **kwargs
)
2712 def SetAllowSymbols(*args
, **kwargs
):
2714 SetAllowSymbols(self, bool allowSymbols)
2716 Under MS Windows, determines whether symbol fonts can be selected. Has
2717 no effect on other platforms. The default value is true.
2719 return _windows_
.FontData_SetAllowSymbols(*args
, **kwargs
)
2721 def SetChosenFont(*args
, **kwargs
):
2723 SetChosenFont(self, Font font)
2725 Sets the font that will be returned to the user (normally for internal
2728 return _windows_
.FontData_SetChosenFont(*args
, **kwargs
)
2730 def SetColour(*args
, **kwargs
):
2732 SetColour(self, Colour colour)
2734 Sets the colour that will be used for the font foreground colour. The
2735 default colour is black.
2737 return _windows_
.FontData_SetColour(*args
, **kwargs
)
2739 def SetInitialFont(*args
, **kwargs
):
2741 SetInitialFont(self, Font font)
2743 Sets the font that will be initially used by the font dialog.
2745 return _windows_
.FontData_SetInitialFont(*args
, **kwargs
)
2747 def SetRange(*args
, **kwargs
):
2749 SetRange(self, int min, int max)
2751 Sets the valid range for the font point size (Windows only). The
2752 default is 0, 0 (unrestricted range).
2754 return _windows_
.FontData_SetRange(*args
, **kwargs
)
2756 def SetShowHelp(*args
, **kwargs
):
2758 SetShowHelp(self, bool showHelp)
2760 Determines whether the Help button will be displayed in the font
2761 dialog (Windows only). The default value is false.
2763 return _windows_
.FontData_SetShowHelp(*args
, **kwargs
)
2766 class FontDataPtr(FontData
):
2767 def __init__(self
, this
):
2769 if not hasattr(self
,"thisown"): self
.thisown
= 0
2770 self
.__class
__ = FontData
2771 _windows_
.FontData_swigregister(FontDataPtr
)
2773 class FontDialog(Dialog
):
2775 wx.FontDialog allows the user to select a system font and its attributes.
2781 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2782 def __init__(self
, *args
, **kwargs
):
2784 __init__(self, Window parent, FontData data) -> FontDialog
2786 Constructor. Pass a parent window and the `wx.FontData` object to be
2787 used to initialize the dialog controls. Call `ShowModal` to display
2788 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2789 results with via the `wx.FontData` returned by `GetFontData`.
2791 newobj
= _windows_
.new_FontDialog(*args
, **kwargs
)
2792 self
.this
= newobj
.this
2795 self
._setOORInfo
(self
)
2797 def GetFontData(*args
, **kwargs
):
2799 GetFontData(self) -> FontData
2801 Returns a reference to the internal `wx.FontData` used by the
2804 return _windows_
.FontDialog_GetFontData(*args
, **kwargs
)
2807 class FontDialogPtr(FontDialog
):
2808 def __init__(self
, this
):
2810 if not hasattr(self
,"thisown"): self
.thisown
= 0
2811 self
.__class
__ = FontDialog
2812 _windows_
.FontDialog_swigregister(FontDialogPtr
)
2814 class MessageDialog(Dialog
):
2816 This class provides a simple dialog that shows a single or multi-line
2817 message, with a choice of OK, Yes, No and/or Cancel buttons.
2820 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2821 def __init__(self
, *args
, **kwargs
):
2823 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2824 long style=wxOK|wxCANCEL|wxCENTRE,
2825 Point pos=DefaultPosition) -> MessageDialog
2827 Constructor, use `ShowModal` to display the dialog.
2829 newobj
= _windows_
.new_MessageDialog(*args
, **kwargs
)
2830 self
.this
= newobj
.this
2833 self
._setOORInfo
(self
)
2836 class MessageDialogPtr(MessageDialog
):
2837 def __init__(self
, this
):
2839 if not hasattr(self
,"thisown"): self
.thisown
= 0
2840 self
.__class
__ = MessageDialog
2841 _windows_
.MessageDialog_swigregister(MessageDialogPtr
)
2843 class ProgressDialog(Frame
):
2845 A dialog that shows a short message and a progress bar. Optionally, it
2846 can display an ABORT button.
2849 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2850 def __init__(self
, *args
, **kwargs
):
2852 __init__(self, String title, String message, int maximum=100, Window parent=None,
2853 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2855 Constructor. Creates the dialog, displays it and disables user input
2856 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2859 newobj
= _windows_
.new_ProgressDialog(*args
, **kwargs
)
2860 self
.this
= newobj
.this
2863 self
._setOORInfo
(self
)
2865 def Update(*args
, **kwargs
):
2867 Update(self, int value, String newmsg=EmptyString) -> bool
2869 Updates the dialog, setting the progress bar to the new value and, if
2870 given changes the message above it. The value given should be less
2871 than or equal to the maximum value given to the constructor and the
2872 dialog is closed if it is equal to the maximum. Returns true unless
2873 the Cancel button has been pressed.
2875 If false is returned, the application can either immediately destroy
2876 the dialog or ask the user for the confirmation and if the abort is
2877 not confirmed the dialog may be resumed with Resume function.
2879 return _windows_
.ProgressDialog_Update(*args
, **kwargs
)
2881 def Resume(*args
, **kwargs
):
2885 Can be used to continue with the dialog, after the user had chosen to
2888 return _windows_
.ProgressDialog_Resume(*args
, **kwargs
)
2891 class ProgressDialogPtr(ProgressDialog
):
2892 def __init__(self
, this
):
2894 if not hasattr(self
,"thisown"): self
.thisown
= 0
2895 self
.__class
__ = ProgressDialog
2896 _windows_
.ProgressDialog_swigregister(ProgressDialogPtr
)
2898 FR_DOWN
= _windows_
.FR_DOWN
2899 FR_WHOLEWORD
= _windows_
.FR_WHOLEWORD
2900 FR_MATCHCASE
= _windows_
.FR_MATCHCASE
2901 FR_REPLACEDIALOG
= _windows_
.FR_REPLACEDIALOG
2902 FR_NOUPDOWN
= _windows_
.FR_NOUPDOWN
2903 FR_NOMATCHCASE
= _windows_
.FR_NOMATCHCASE
2904 FR_NOWHOLEWORD
= _windows_
.FR_NOWHOLEWORD
2905 wxEVT_COMMAND_FIND
= _windows_
.wxEVT_COMMAND_FIND
2906 wxEVT_COMMAND_FIND_NEXT
= _windows_
.wxEVT_COMMAND_FIND_NEXT
2907 wxEVT_COMMAND_FIND_REPLACE
= _windows_
.wxEVT_COMMAND_FIND_REPLACE
2908 wxEVT_COMMAND_FIND_REPLACE_ALL
= _windows_
.wxEVT_COMMAND_FIND_REPLACE_ALL
2909 wxEVT_COMMAND_FIND_CLOSE
= _windows_
.wxEVT_COMMAND_FIND_CLOSE
2910 EVT_FIND
= wx
.PyEventBinder( wxEVT_COMMAND_FIND
, 1 )
2911 EVT_FIND_NEXT
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_NEXT
, 1 )
2912 EVT_FIND_REPLACE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE
, 1 )
2913 EVT_FIND_REPLACE_ALL
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL
, 1 )
2914 EVT_FIND_CLOSE
= wx
.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE
, 1 )
2916 # For backwards compatibility. Should they be removed?
2917 EVT_COMMAND_FIND
= EVT_FIND
2918 EVT_COMMAND_FIND_NEXT
= EVT_FIND_NEXT
2919 EVT_COMMAND_FIND_REPLACE
= EVT_FIND_REPLACE
2920 EVT_COMMAND_FIND_REPLACE_ALL
= EVT_FIND_REPLACE_ALL
2921 EVT_COMMAND_FIND_CLOSE
= EVT_FIND_CLOSE
2923 class FindDialogEvent(_core
.CommandEvent
):
2924 """Events for the FindReplaceDialog"""
2926 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
2927 def __init__(self
, *args
, **kwargs
):
2929 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2931 Events for the FindReplaceDialog
2933 newobj
= _windows_
.new_FindDialogEvent(*args
, **kwargs
)
2934 self
.this
= newobj
.this
2937 def GetFlags(*args
, **kwargs
):
2939 GetFlags(self) -> int
2941 Get the currently selected flags: this is the combination of
2942 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2944 return _windows_
.FindDialogEvent_GetFlags(*args
, **kwargs
)
2946 def GetFindString(*args
, **kwargs
):
2948 GetFindString(self) -> String
2950 Return the string to find (never empty).
2952 return _windows_
.FindDialogEvent_GetFindString(*args
, **kwargs
)
2954 def GetReplaceString(*args
, **kwargs
):
2956 GetReplaceString(self) -> String
2958 Return the string to replace the search string with (only for replace
2959 and replace all events).
2961 return _windows_
.FindDialogEvent_GetReplaceString(*args
, **kwargs
)
2963 def GetDialog(*args
, **kwargs
):
2965 GetDialog(self) -> FindReplaceDialog
2967 Return the pointer to the dialog which generated this event.
2969 return _windows_
.FindDialogEvent_GetDialog(*args
, **kwargs
)
2971 def SetFlags(*args
, **kwargs
):
2972 """SetFlags(self, int flags)"""
2973 return _windows_
.FindDialogEvent_SetFlags(*args
, **kwargs
)
2975 def SetFindString(*args
, **kwargs
):
2976 """SetFindString(self, String str)"""
2977 return _windows_
.FindDialogEvent_SetFindString(*args
, **kwargs
)
2979 def SetReplaceString(*args
, **kwargs
):
2980 """SetReplaceString(self, String str)"""
2981 return _windows_
.FindDialogEvent_SetReplaceString(*args
, **kwargs
)
2984 class FindDialogEventPtr(FindDialogEvent
):
2985 def __init__(self
, this
):
2987 if not hasattr(self
,"thisown"): self
.thisown
= 0
2988 self
.__class
__ = FindDialogEvent
2989 _windows_
.FindDialogEvent_swigregister(FindDialogEventPtr
)
2991 class FindReplaceData(_core
.Object
):
2993 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2994 to initialize the dialog with the default values and will keep the
2995 last values from the dialog when it is closed. It is also updated each
2996 time a `wx.FindDialogEvent` is generated so instead of using the
2997 `wx.FindDialogEvent` methods you can also directly query this object.
2999 Note that all SetXXX() methods may only be called before showing the
3000 dialog and calling them has no effect later.
3003 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3004 def __init__(self
, *args
, **kwargs
):
3006 __init__(self, int flags=0) -> FindReplaceData
3008 Constuctor initializes the flags to default value (0).
3010 newobj
= _windows_
.new_FindReplaceData(*args
, **kwargs
)
3011 self
.this
= newobj
.this
3014 def __del__(self
, destroy
=_windows_
.delete_FindReplaceData
):
3017 if self
.thisown
: destroy(self
)
3020 def GetFindString(*args
, **kwargs
):
3022 GetFindString(self) -> String
3024 Get the string to find.
3026 return _windows_
.FindReplaceData_GetFindString(*args
, **kwargs
)
3028 def GetReplaceString(*args
, **kwargs
):
3030 GetReplaceString(self) -> String
3032 Get the replacement string.
3034 return _windows_
.FindReplaceData_GetReplaceString(*args
, **kwargs
)
3036 def GetFlags(*args
, **kwargs
):
3038 GetFlags(self) -> int
3040 Get the combination of flag values.
3042 return _windows_
.FindReplaceData_GetFlags(*args
, **kwargs
)
3044 def SetFlags(*args
, **kwargs
):
3046 SetFlags(self, int flags)
3048 Set the flags to use to initialize the controls of the dialog.
3050 return _windows_
.FindReplaceData_SetFlags(*args
, **kwargs
)
3052 def SetFindString(*args
, **kwargs
):
3054 SetFindString(self, String str)
3056 Set the string to find (used as initial value by the dialog).
3058 return _windows_
.FindReplaceData_SetFindString(*args
, **kwargs
)
3060 def SetReplaceString(*args
, **kwargs
):
3062 SetReplaceString(self, String str)
3064 Set the replacement string (used as initial value by the dialog).
3066 return _windows_
.FindReplaceData_SetReplaceString(*args
, **kwargs
)
3069 class FindReplaceDataPtr(FindReplaceData
):
3070 def __init__(self
, this
):
3072 if not hasattr(self
,"thisown"): self
.thisown
= 0
3073 self
.__class
__ = FindReplaceData
3074 _windows_
.FindReplaceData_swigregister(FindReplaceDataPtr
)
3076 class FindReplaceDialog(Dialog
):
3078 wx.FindReplaceDialog is a standard modeless dialog which is used to
3079 allow the user to search for some text (and possibly replace it with
3080 something else). The actual searching is supposed to be done in the
3081 owner window which is the parent of this dialog. Note that it means
3082 that unlike for the other standard dialogs this one must have a parent
3083 window. Also note that there is no way to use this dialog in a modal
3084 way; it is always, by design and implementation, modeless.
3087 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3088 def __init__(self
, *args
, **kwargs
):
3090 __init__(self, Window parent, FindReplaceData data, String title,
3091 int style=0) -> FindReplaceDialog
3093 Create a FindReplaceDialog. The parent and data parameters must be
3094 non-None. Use Show to display the dialog.
3096 newobj
= _windows_
.new_FindReplaceDialog(*args
, **kwargs
)
3097 self
.this
= newobj
.this
3100 self
._setOORInfo
(self
)
3102 def Create(*args
, **kwargs
):
3104 Create(self, Window parent, FindReplaceData data, String title,
3105 int style=0) -> bool
3107 Create the dialog, for 2-phase create.
3109 return _windows_
.FindReplaceDialog_Create(*args
, **kwargs
)
3111 def GetData(*args
, **kwargs
):
3113 GetData(self) -> FindReplaceData
3115 Get the FindReplaceData object used by this dialog.
3117 return _windows_
.FindReplaceDialog_GetData(*args
, **kwargs
)
3119 def SetData(*args
, **kwargs
):
3121 SetData(self, FindReplaceData data)
3123 Set the FindReplaceData object used by this dialog.
3125 return _windows_
.FindReplaceDialog_SetData(*args
, **kwargs
)
3128 class FindReplaceDialogPtr(FindReplaceDialog
):
3129 def __init__(self
, this
):
3131 if not hasattr(self
,"thisown"): self
.thisown
= 0
3132 self
.__class
__ = FindReplaceDialog
3133 _windows_
.FindReplaceDialog_swigregister(FindReplaceDialogPtr
)
3135 def PreFindReplaceDialog(*args
, **kwargs
):
3137 PreFindReplaceDialog() -> FindReplaceDialog
3139 Precreate a FindReplaceDialog for 2-phase creation
3141 val
= _windows_
.new_PreFindReplaceDialog(*args
, **kwargs
)
3145 #---------------------------------------------------------------------------
3147 IDM_WINDOWTILE
= _windows_
.IDM_WINDOWTILE
3148 IDM_WINDOWTILEHOR
= _windows_
.IDM_WINDOWTILEHOR
3149 IDM_WINDOWCASCADE
= _windows_
.IDM_WINDOWCASCADE
3150 IDM_WINDOWICONS
= _windows_
.IDM_WINDOWICONS
3151 IDM_WINDOWNEXT
= _windows_
.IDM_WINDOWNEXT
3152 IDM_WINDOWTILEVERT
= _windows_
.IDM_WINDOWTILEVERT
3153 FIRST_MDI_CHILD
= _windows_
.FIRST_MDI_CHILD
3154 LAST_MDI_CHILD
= _windows_
.LAST_MDI_CHILD
3155 class MDIParentFrame(Frame
):
3157 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3158 def __init__(self
, *args
, **kwargs
):
3160 __init__(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) -> MDIParentFrame
3165 newobj
= _windows_
.new_MDIParentFrame(*args
, **kwargs
)
3166 self
.this
= newobj
.this
3169 self
._setOORInfo
(self
)
3171 def Create(*args
, **kwargs
):
3173 Create(self, Window parent, int id=-1, String title=EmptyString,
3174 Point pos=DefaultPosition, Size size=DefaultSize,
3175 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3176 String name=FrameNameStr) -> bool
3178 return _windows_
.MDIParentFrame_Create(*args
, **kwargs
)
3180 def ActivateNext(*args
, **kwargs
):
3181 """ActivateNext(self)"""
3182 return _windows_
.MDIParentFrame_ActivateNext(*args
, **kwargs
)
3184 def ActivatePrevious(*args
, **kwargs
):
3185 """ActivatePrevious(self)"""
3186 return _windows_
.MDIParentFrame_ActivatePrevious(*args
, **kwargs
)
3188 def ArrangeIcons(*args
, **kwargs
):
3189 """ArrangeIcons(self)"""
3190 return _windows_
.MDIParentFrame_ArrangeIcons(*args
, **kwargs
)
3192 def Cascade(*args
, **kwargs
):
3194 return _windows_
.MDIParentFrame_Cascade(*args
, **kwargs
)
3196 def GetActiveChild(*args
, **kwargs
):
3197 """GetActiveChild(self) -> MDIChildFrame"""
3198 return _windows_
.MDIParentFrame_GetActiveChild(*args
, **kwargs
)
3200 def GetClientWindow(*args
, **kwargs
):
3201 """GetClientWindow(self) -> MDIClientWindow"""
3202 return _windows_
.MDIParentFrame_GetClientWindow(*args
, **kwargs
)
3204 def GetToolBar(*args
, **kwargs
):
3205 """GetToolBar(self) -> Window"""
3206 return _windows_
.MDIParentFrame_GetToolBar(*args
, **kwargs
)
3208 def GetWindowMenu(*args
, **kwargs
):
3209 """GetWindowMenu(self) -> Menu"""
3210 return _windows_
.MDIParentFrame_GetWindowMenu(*args
, **kwargs
)
3212 def SetWindowMenu(*args
, **kwargs
):
3213 """SetWindowMenu(self, Menu menu)"""
3214 return _windows_
.MDIParentFrame_SetWindowMenu(*args
, **kwargs
)
3216 def SetToolBar(*args
, **kwargs
):
3217 """SetToolBar(self, wxToolBar toolbar)"""
3218 return _windows_
.MDIParentFrame_SetToolBar(*args
, **kwargs
)
3220 def Tile(*args
, **kwargs
):
3222 return _windows_
.MDIParentFrame_Tile(*args
, **kwargs
)
3225 class MDIParentFramePtr(MDIParentFrame
):
3226 def __init__(self
, this
):
3228 if not hasattr(self
,"thisown"): self
.thisown
= 0
3229 self
.__class
__ = MDIParentFrame
3230 _windows_
.MDIParentFrame_swigregister(MDIParentFramePtr
)
3232 def PreMDIParentFrame(*args
, **kwargs
):
3233 """PreMDIParentFrame() -> MDIParentFrame"""
3234 val
= _windows_
.new_PreMDIParentFrame(*args
, **kwargs
)
3238 class MDIChildFrame(Frame
):
3240 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3241 def __init__(self
, *args
, **kwargs
):
3243 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3244 Point pos=DefaultPosition, Size size=DefaultSize,
3245 long style=DEFAULT_FRAME_STYLE,
3246 String name=FrameNameStr) -> MDIChildFrame
3248 newobj
= _windows_
.new_MDIChildFrame(*args
, **kwargs
)
3249 self
.this
= newobj
.this
3252 self
._setOORInfo
(self
)
3254 def Create(*args
, **kwargs
):
3256 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3257 Point pos=DefaultPosition, Size size=DefaultSize,
3258 long style=DEFAULT_FRAME_STYLE,
3259 String name=FrameNameStr) -> bool
3261 return _windows_
.MDIChildFrame_Create(*args
, **kwargs
)
3263 def Activate(*args
, **kwargs
):
3264 """Activate(self)"""
3265 return _windows_
.MDIChildFrame_Activate(*args
, **kwargs
)
3267 def Maximize(*args
, **kwargs
):
3268 """Maximize(self, bool maximize)"""
3269 return _windows_
.MDIChildFrame_Maximize(*args
, **kwargs
)
3271 def Restore(*args
, **kwargs
):
3273 return _windows_
.MDIChildFrame_Restore(*args
, **kwargs
)
3276 class MDIChildFramePtr(MDIChildFrame
):
3277 def __init__(self
, this
):
3279 if not hasattr(self
,"thisown"): self
.thisown
= 0
3280 self
.__class
__ = MDIChildFrame
3281 _windows_
.MDIChildFrame_swigregister(MDIChildFramePtr
)
3283 def PreMDIChildFrame(*args
, **kwargs
):
3284 """PreMDIChildFrame() -> MDIChildFrame"""
3285 val
= _windows_
.new_PreMDIChildFrame(*args
, **kwargs
)
3289 class MDIClientWindow(_core
.Window
):
3291 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3292 def __init__(self
, *args
, **kwargs
):
3293 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3294 newobj
= _windows_
.new_MDIClientWindow(*args
, **kwargs
)
3295 self
.this
= newobj
.this
3298 self
._setOORInfo
(self
)
3300 def Create(*args
, **kwargs
):
3301 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3302 return _windows_
.MDIClientWindow_Create(*args
, **kwargs
)
3305 class MDIClientWindowPtr(MDIClientWindow
):
3306 def __init__(self
, this
):
3308 if not hasattr(self
,"thisown"): self
.thisown
= 0
3309 self
.__class
__ = MDIClientWindow
3310 _windows_
.MDIClientWindow_swigregister(MDIClientWindowPtr
)
3312 def PreMDIClientWindow(*args
, **kwargs
):
3313 """PreMDIClientWindow() -> MDIClientWindow"""
3314 val
= _windows_
.new_PreMDIClientWindow(*args
, **kwargs
)
3318 #---------------------------------------------------------------------------
3320 class PyWindow(_core
.Window
):
3322 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3323 def __init__(self
, *args
, **kwargs
):
3325 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3326 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3328 newobj
= _windows_
.new_PyWindow(*args
, **kwargs
)
3329 self
.this
= newobj
.this
3332 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyWindow
)
3334 def _setCallbackInfo(*args
, **kwargs
):
3335 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3336 return _windows_
.PyWindow__setCallbackInfo(*args
, **kwargs
)
3338 def SetBestSize(*args
, **kwargs
):
3339 """SetBestSize(self, Size size)"""
3340 return _windows_
.PyWindow_SetBestSize(*args
, **kwargs
)
3342 def base_DoMoveWindow(*args
, **kwargs
):
3343 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3344 return _windows_
.PyWindow_base_DoMoveWindow(*args
, **kwargs
)
3346 def base_DoSetSize(*args
, **kwargs
):
3347 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3348 return _windows_
.PyWindow_base_DoSetSize(*args
, **kwargs
)
3350 def base_DoSetClientSize(*args
, **kwargs
):
3351 """base_DoSetClientSize(self, int width, int height)"""
3352 return _windows_
.PyWindow_base_DoSetClientSize(*args
, **kwargs
)
3354 def base_DoSetVirtualSize(*args
, **kwargs
):
3355 """base_DoSetVirtualSize(self, int x, int y)"""
3356 return _windows_
.PyWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3358 def base_DoGetSize(*args
, **kwargs
):
3359 """base_DoGetSize() -> (width, height)"""
3360 return _windows_
.PyWindow_base_DoGetSize(*args
, **kwargs
)
3362 def base_DoGetClientSize(*args
, **kwargs
):
3363 """base_DoGetClientSize() -> (width, height)"""
3364 return _windows_
.PyWindow_base_DoGetClientSize(*args
, **kwargs
)
3366 def base_DoGetPosition(*args
, **kwargs
):
3367 """base_DoGetPosition() -> (x,y)"""
3368 return _windows_
.PyWindow_base_DoGetPosition(*args
, **kwargs
)
3370 def base_DoGetVirtualSize(*args
, **kwargs
):
3371 """base_DoGetVirtualSize(self) -> Size"""
3372 return _windows_
.PyWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3374 def base_DoGetBestSize(*args
, **kwargs
):
3375 """base_DoGetBestSize(self) -> Size"""
3376 return _windows_
.PyWindow_base_DoGetBestSize(*args
, **kwargs
)
3378 def base_InitDialog(*args
, **kwargs
):
3379 """base_InitDialog(self)"""
3380 return _windows_
.PyWindow_base_InitDialog(*args
, **kwargs
)
3382 def base_TransferDataToWindow(*args
, **kwargs
):
3383 """base_TransferDataToWindow(self) -> bool"""
3384 return _windows_
.PyWindow_base_TransferDataToWindow(*args
, **kwargs
)
3386 def base_TransferDataFromWindow(*args
, **kwargs
):
3387 """base_TransferDataFromWindow(self) -> bool"""
3388 return _windows_
.PyWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3390 def base_Validate(*args
, **kwargs
):
3391 """base_Validate(self) -> bool"""
3392 return _windows_
.PyWindow_base_Validate(*args
, **kwargs
)
3394 def base_AcceptsFocus(*args
, **kwargs
):
3395 """base_AcceptsFocus(self) -> bool"""
3396 return _windows_
.PyWindow_base_AcceptsFocus(*args
, **kwargs
)
3398 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3399 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3400 return _windows_
.PyWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3402 def base_GetMaxSize(*args
, **kwargs
):
3403 """base_GetMaxSize(self) -> Size"""
3404 return _windows_
.PyWindow_base_GetMaxSize(*args
, **kwargs
)
3406 def base_AddChild(*args
, **kwargs
):
3407 """base_AddChild(self, Window child)"""
3408 return _windows_
.PyWindow_base_AddChild(*args
, **kwargs
)
3410 def base_RemoveChild(*args
, **kwargs
):
3411 """base_RemoveChild(self, Window child)"""
3412 return _windows_
.PyWindow_base_RemoveChild(*args
, **kwargs
)
3414 def base_ShouldInheritColours(*args
, **kwargs
):
3415 """base_ShouldInheritColours(self) -> bool"""
3416 return _windows_
.PyWindow_base_ShouldInheritColours(*args
, **kwargs
)
3418 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3419 """base_ApplyParentThemeBackground(self, Colour c)"""
3420 return _windows_
.PyWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3422 def base_GetDefaultAttributes(*args
, **kwargs
):
3423 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3424 return _windows_
.PyWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3427 class PyWindowPtr(PyWindow
):
3428 def __init__(self
, this
):
3430 if not hasattr(self
,"thisown"): self
.thisown
= 0
3431 self
.__class
__ = PyWindow
3432 _windows_
.PyWindow_swigregister(PyWindowPtr
)
3434 def PrePyWindow(*args
, **kwargs
):
3435 """PrePyWindow() -> PyWindow"""
3436 val
= _windows_
.new_PrePyWindow(*args
, **kwargs
)
3440 class PyPanel(Panel
):
3442 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3443 def __init__(self
, *args
, **kwargs
):
3445 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3446 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3448 newobj
= _windows_
.new_PyPanel(*args
, **kwargs
)
3449 self
.this
= newobj
.this
3452 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3454 def _setCallbackInfo(*args
, **kwargs
):
3455 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3456 return _windows_
.PyPanel__setCallbackInfo(*args
, **kwargs
)
3458 def SetBestSize(*args
, **kwargs
):
3459 """SetBestSize(self, Size size)"""
3460 return _windows_
.PyPanel_SetBestSize(*args
, **kwargs
)
3462 def base_DoMoveWindow(*args
, **kwargs
):
3463 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3464 return _windows_
.PyPanel_base_DoMoveWindow(*args
, **kwargs
)
3466 def base_DoSetSize(*args
, **kwargs
):
3467 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3468 return _windows_
.PyPanel_base_DoSetSize(*args
, **kwargs
)
3470 def base_DoSetClientSize(*args
, **kwargs
):
3471 """base_DoSetClientSize(self, int width, int height)"""
3472 return _windows_
.PyPanel_base_DoSetClientSize(*args
, **kwargs
)
3474 def base_DoSetVirtualSize(*args
, **kwargs
):
3475 """base_DoSetVirtualSize(self, int x, int y)"""
3476 return _windows_
.PyPanel_base_DoSetVirtualSize(*args
, **kwargs
)
3478 def base_DoGetSize(*args
, **kwargs
):
3479 """base_DoGetSize() -> (width, height)"""
3480 return _windows_
.PyPanel_base_DoGetSize(*args
, **kwargs
)
3482 def base_DoGetClientSize(*args
, **kwargs
):
3483 """base_DoGetClientSize() -> (width, height)"""
3484 return _windows_
.PyPanel_base_DoGetClientSize(*args
, **kwargs
)
3486 def base_DoGetPosition(*args
, **kwargs
):
3487 """base_DoGetPosition() -> (x,y)"""
3488 return _windows_
.PyPanel_base_DoGetPosition(*args
, **kwargs
)
3490 def base_DoGetVirtualSize(*args
, **kwargs
):
3491 """base_DoGetVirtualSize(self) -> Size"""
3492 return _windows_
.PyPanel_base_DoGetVirtualSize(*args
, **kwargs
)
3494 def base_DoGetBestSize(*args
, **kwargs
):
3495 """base_DoGetBestSize(self) -> Size"""
3496 return _windows_
.PyPanel_base_DoGetBestSize(*args
, **kwargs
)
3498 def base_InitDialog(*args
, **kwargs
):
3499 """base_InitDialog(self)"""
3500 return _windows_
.PyPanel_base_InitDialog(*args
, **kwargs
)
3502 def base_TransferDataToWindow(*args
, **kwargs
):
3503 """base_TransferDataToWindow(self) -> bool"""
3504 return _windows_
.PyPanel_base_TransferDataToWindow(*args
, **kwargs
)
3506 def base_TransferDataFromWindow(*args
, **kwargs
):
3507 """base_TransferDataFromWindow(self) -> bool"""
3508 return _windows_
.PyPanel_base_TransferDataFromWindow(*args
, **kwargs
)
3510 def base_Validate(*args
, **kwargs
):
3511 """base_Validate(self) -> bool"""
3512 return _windows_
.PyPanel_base_Validate(*args
, **kwargs
)
3514 def base_AcceptsFocus(*args
, **kwargs
):
3515 """base_AcceptsFocus(self) -> bool"""
3516 return _windows_
.PyPanel_base_AcceptsFocus(*args
, **kwargs
)
3518 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3519 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3520 return _windows_
.PyPanel_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3522 def base_GetMaxSize(*args
, **kwargs
):
3523 """base_GetMaxSize(self) -> Size"""
3524 return _windows_
.PyPanel_base_GetMaxSize(*args
, **kwargs
)
3526 def base_AddChild(*args
, **kwargs
):
3527 """base_AddChild(self, Window child)"""
3528 return _windows_
.PyPanel_base_AddChild(*args
, **kwargs
)
3530 def base_RemoveChild(*args
, **kwargs
):
3531 """base_RemoveChild(self, Window child)"""
3532 return _windows_
.PyPanel_base_RemoveChild(*args
, **kwargs
)
3534 def base_ShouldInheritColours(*args
, **kwargs
):
3535 """base_ShouldInheritColours(self) -> bool"""
3536 return _windows_
.PyPanel_base_ShouldInheritColours(*args
, **kwargs
)
3538 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3539 """base_ApplyParentThemeBackground(self, Colour c)"""
3540 return _windows_
.PyPanel_base_ApplyParentThemeBackground(*args
, **kwargs
)
3542 def base_GetDefaultAttributes(*args
, **kwargs
):
3543 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3544 return _windows_
.PyPanel_base_GetDefaultAttributes(*args
, **kwargs
)
3547 class PyPanelPtr(PyPanel
):
3548 def __init__(self
, this
):
3550 if not hasattr(self
,"thisown"): self
.thisown
= 0
3551 self
.__class
__ = PyPanel
3552 _windows_
.PyPanel_swigregister(PyPanelPtr
)
3554 def PrePyPanel(*args
, **kwargs
):
3555 """PrePyPanel() -> PyPanel"""
3556 val
= _windows_
.new_PrePyPanel(*args
, **kwargs
)
3560 class PyScrolledWindow(ScrolledWindow
):
3562 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3563 def __init__(self
, *args
, **kwargs
):
3565 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3566 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3568 newobj
= _windows_
.new_PyScrolledWindow(*args
, **kwargs
)
3569 self
.this
= newobj
.this
3572 self
._setOORInfo
(self
); self
._setCallbackInfo
(self
, PyPanel
)
3574 def _setCallbackInfo(*args
, **kwargs
):
3575 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3576 return _windows_
.PyScrolledWindow__setCallbackInfo(*args
, **kwargs
)
3578 def SetBestSize(*args
, **kwargs
):
3579 """SetBestSize(self, Size size)"""
3580 return _windows_
.PyScrolledWindow_SetBestSize(*args
, **kwargs
)
3582 def base_DoMoveWindow(*args
, **kwargs
):
3583 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3584 return _windows_
.PyScrolledWindow_base_DoMoveWindow(*args
, **kwargs
)
3586 def base_DoSetSize(*args
, **kwargs
):
3587 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3588 return _windows_
.PyScrolledWindow_base_DoSetSize(*args
, **kwargs
)
3590 def base_DoSetClientSize(*args
, **kwargs
):
3591 """base_DoSetClientSize(self, int width, int height)"""
3592 return _windows_
.PyScrolledWindow_base_DoSetClientSize(*args
, **kwargs
)
3594 def base_DoSetVirtualSize(*args
, **kwargs
):
3595 """base_DoSetVirtualSize(self, int x, int y)"""
3596 return _windows_
.PyScrolledWindow_base_DoSetVirtualSize(*args
, **kwargs
)
3598 def base_DoGetSize(*args
, **kwargs
):
3599 """base_DoGetSize() -> (width, height)"""
3600 return _windows_
.PyScrolledWindow_base_DoGetSize(*args
, **kwargs
)
3602 def base_DoGetClientSize(*args
, **kwargs
):
3603 """base_DoGetClientSize() -> (width, height)"""
3604 return _windows_
.PyScrolledWindow_base_DoGetClientSize(*args
, **kwargs
)
3606 def base_DoGetPosition(*args
, **kwargs
):
3607 """base_DoGetPosition() -> (x,y)"""
3608 return _windows_
.PyScrolledWindow_base_DoGetPosition(*args
, **kwargs
)
3610 def base_DoGetVirtualSize(*args
, **kwargs
):
3611 """base_DoGetVirtualSize(self) -> Size"""
3612 return _windows_
.PyScrolledWindow_base_DoGetVirtualSize(*args
, **kwargs
)
3614 def base_DoGetBestSize(*args
, **kwargs
):
3615 """base_DoGetBestSize(self) -> Size"""
3616 return _windows_
.PyScrolledWindow_base_DoGetBestSize(*args
, **kwargs
)
3618 def base_InitDialog(*args
, **kwargs
):
3619 """base_InitDialog(self)"""
3620 return _windows_
.PyScrolledWindow_base_InitDialog(*args
, **kwargs
)
3622 def base_TransferDataToWindow(*args
, **kwargs
):
3623 """base_TransferDataToWindow(self) -> bool"""
3624 return _windows_
.PyScrolledWindow_base_TransferDataToWindow(*args
, **kwargs
)
3626 def base_TransferDataFromWindow(*args
, **kwargs
):
3627 """base_TransferDataFromWindow(self) -> bool"""
3628 return _windows_
.PyScrolledWindow_base_TransferDataFromWindow(*args
, **kwargs
)
3630 def base_Validate(*args
, **kwargs
):
3631 """base_Validate(self) -> bool"""
3632 return _windows_
.PyScrolledWindow_base_Validate(*args
, **kwargs
)
3634 def base_AcceptsFocus(*args
, **kwargs
):
3635 """base_AcceptsFocus(self) -> bool"""
3636 return _windows_
.PyScrolledWindow_base_AcceptsFocus(*args
, **kwargs
)
3638 def base_AcceptsFocusFromKeyboard(*args
, **kwargs
):
3639 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3640 return _windows_
.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args
, **kwargs
)
3642 def base_GetMaxSize(*args
, **kwargs
):
3643 """base_GetMaxSize(self) -> Size"""
3644 return _windows_
.PyScrolledWindow_base_GetMaxSize(*args
, **kwargs
)
3646 def base_AddChild(*args
, **kwargs
):
3647 """base_AddChild(self, Window child)"""
3648 return _windows_
.PyScrolledWindow_base_AddChild(*args
, **kwargs
)
3650 def base_RemoveChild(*args
, **kwargs
):
3651 """base_RemoveChild(self, Window child)"""
3652 return _windows_
.PyScrolledWindow_base_RemoveChild(*args
, **kwargs
)
3654 def base_ShouldInheritColours(*args
, **kwargs
):
3655 """base_ShouldInheritColours(self) -> bool"""
3656 return _windows_
.PyScrolledWindow_base_ShouldInheritColours(*args
, **kwargs
)
3658 def base_ApplyParentThemeBackground(*args
, **kwargs
):
3659 """base_ApplyParentThemeBackground(self, Colour c)"""
3660 return _windows_
.PyScrolledWindow_base_ApplyParentThemeBackground(*args
, **kwargs
)
3662 def base_GetDefaultAttributes(*args
, **kwargs
):
3663 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3664 return _windows_
.PyScrolledWindow_base_GetDefaultAttributes(*args
, **kwargs
)
3667 class PyScrolledWindowPtr(PyScrolledWindow
):
3668 def __init__(self
, this
):
3670 if not hasattr(self
,"thisown"): self
.thisown
= 0
3671 self
.__class
__ = PyScrolledWindow
3672 _windows_
.PyScrolledWindow_swigregister(PyScrolledWindowPtr
)
3674 def PrePyScrolledWindow(*args
, **kwargs
):
3675 """PrePyScrolledWindow() -> PyScrolledWindow"""
3676 val
= _windows_
.new_PrePyScrolledWindow(*args
, **kwargs
)
3680 #---------------------------------------------------------------------------
3682 PRINT_MODE_NONE
= _windows_
.PRINT_MODE_NONE
3683 PRINT_MODE_PREVIEW
= _windows_
.PRINT_MODE_PREVIEW
3684 PRINT_MODE_FILE
= _windows_
.PRINT_MODE_FILE
3685 PRINT_MODE_PRINTER
= _windows_
.PRINT_MODE_PRINTER
3686 PRINT_MODE_STREAM
= _windows_
.PRINT_MODE_STREAM
3687 class PrintData(_core
.Object
):
3689 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3690 def __init__(self
, *args
):
3692 __init__(self) -> PrintData
3693 __init__(self, PrintData data) -> PrintData
3695 newobj
= _windows_
.new_PrintData(*args
)
3696 self
.this
= newobj
.this
3699 def __del__(self
, destroy
=_windows_
.delete_PrintData
):
3702 if self
.thisown
: destroy(self
)
3705 def GetNoCopies(*args
, **kwargs
):
3706 """GetNoCopies(self) -> int"""
3707 return _windows_
.PrintData_GetNoCopies(*args
, **kwargs
)
3709 def GetCollate(*args
, **kwargs
):
3710 """GetCollate(self) -> bool"""
3711 return _windows_
.PrintData_GetCollate(*args
, **kwargs
)
3713 def GetOrientation(*args
, **kwargs
):
3714 """GetOrientation(self) -> int"""
3715 return _windows_
.PrintData_GetOrientation(*args
, **kwargs
)
3717 def Ok(*args
, **kwargs
):
3718 """Ok(self) -> bool"""
3719 return _windows_
.PrintData_Ok(*args
, **kwargs
)
3721 def GetPrinterName(*args
, **kwargs
):
3722 """GetPrinterName(self) -> String"""
3723 return _windows_
.PrintData_GetPrinterName(*args
, **kwargs
)
3725 def GetColour(*args
, **kwargs
):
3726 """GetColour(self) -> bool"""
3727 return _windows_
.PrintData_GetColour(*args
, **kwargs
)
3729 def GetDuplex(*args
, **kwargs
):
3730 """GetDuplex(self) -> int"""
3731 return _windows_
.PrintData_GetDuplex(*args
, **kwargs
)
3733 def GetPaperId(*args
, **kwargs
):
3734 """GetPaperId(self) -> int"""
3735 return _windows_
.PrintData_GetPaperId(*args
, **kwargs
)
3737 def GetPaperSize(*args
, **kwargs
):
3738 """GetPaperSize(self) -> Size"""
3739 return _windows_
.PrintData_GetPaperSize(*args
, **kwargs
)
3741 def GetQuality(*args
, **kwargs
):
3742 """GetQuality(self) -> int"""
3743 return _windows_
.PrintData_GetQuality(*args
, **kwargs
)
3745 def SetNoCopies(*args
, **kwargs
):
3746 """SetNoCopies(self, int v)"""
3747 return _windows_
.PrintData_SetNoCopies(*args
, **kwargs
)
3749 def SetCollate(*args
, **kwargs
):
3750 """SetCollate(self, bool flag)"""
3751 return _windows_
.PrintData_SetCollate(*args
, **kwargs
)
3753 def SetOrientation(*args
, **kwargs
):
3754 """SetOrientation(self, int orient)"""
3755 return _windows_
.PrintData_SetOrientation(*args
, **kwargs
)
3757 def SetPrinterName(*args
, **kwargs
):
3758 """SetPrinterName(self, String name)"""
3759 return _windows_
.PrintData_SetPrinterName(*args
, **kwargs
)
3761 def SetColour(*args
, **kwargs
):
3762 """SetColour(self, bool colour)"""
3763 return _windows_
.PrintData_SetColour(*args
, **kwargs
)
3765 def SetDuplex(*args
, **kwargs
):
3766 """SetDuplex(self, int duplex)"""
3767 return _windows_
.PrintData_SetDuplex(*args
, **kwargs
)
3769 def SetPaperId(*args
, **kwargs
):
3770 """SetPaperId(self, int sizeId)"""
3771 return _windows_
.PrintData_SetPaperId(*args
, **kwargs
)
3773 def SetPaperSize(*args
, **kwargs
):
3774 """SetPaperSize(self, Size sz)"""
3775 return _windows_
.PrintData_SetPaperSize(*args
, **kwargs
)
3777 def SetQuality(*args
, **kwargs
):
3778 """SetQuality(self, int quality)"""
3779 return _windows_
.PrintData_SetQuality(*args
, **kwargs
)
3781 def GetPrinterCommand(*args
, **kwargs
):
3782 """GetPrinterCommand(self) -> String"""
3783 return _windows_
.PrintData_GetPrinterCommand(*args
, **kwargs
)
3785 def GetPrinterOptions(*args
, **kwargs
):
3786 """GetPrinterOptions(self) -> String"""
3787 return _windows_
.PrintData_GetPrinterOptions(*args
, **kwargs
)
3789 def GetPreviewCommand(*args
, **kwargs
):
3790 """GetPreviewCommand(self) -> String"""
3791 return _windows_
.PrintData_GetPreviewCommand(*args
, **kwargs
)
3793 def GetFilename(*args
, **kwargs
):
3794 """GetFilename(self) -> String"""
3795 return _windows_
.PrintData_GetFilename(*args
, **kwargs
)
3797 def GetFontMetricPath(*args
, **kwargs
):
3798 """GetFontMetricPath(self) -> String"""
3799 return _windows_
.PrintData_GetFontMetricPath(*args
, **kwargs
)
3801 def GetPrinterScaleX(*args
, **kwargs
):
3802 """GetPrinterScaleX(self) -> double"""
3803 return _windows_
.PrintData_GetPrinterScaleX(*args
, **kwargs
)
3805 def GetPrinterScaleY(*args
, **kwargs
):
3806 """GetPrinterScaleY(self) -> double"""
3807 return _windows_
.PrintData_GetPrinterScaleY(*args
, **kwargs
)
3809 def GetPrinterTranslateX(*args
, **kwargs
):
3810 """GetPrinterTranslateX(self) -> long"""
3811 return _windows_
.PrintData_GetPrinterTranslateX(*args
, **kwargs
)
3813 def GetPrinterTranslateY(*args
, **kwargs
):
3814 """GetPrinterTranslateY(self) -> long"""
3815 return _windows_
.PrintData_GetPrinterTranslateY(*args
, **kwargs
)
3817 def GetPrintMode(*args
, **kwargs
):
3818 """GetPrintMode(self) -> int"""
3819 return _windows_
.PrintData_GetPrintMode(*args
, **kwargs
)
3821 def SetPrinterCommand(*args
, **kwargs
):
3822 """SetPrinterCommand(self, String command)"""
3823 return _windows_
.PrintData_SetPrinterCommand(*args
, **kwargs
)
3825 def SetPrinterOptions(*args
, **kwargs
):
3826 """SetPrinterOptions(self, String options)"""
3827 return _windows_
.PrintData_SetPrinterOptions(*args
, **kwargs
)
3829 def SetPreviewCommand(*args
, **kwargs
):
3830 """SetPreviewCommand(self, String command)"""
3831 return _windows_
.PrintData_SetPreviewCommand(*args
, **kwargs
)
3833 def SetFilename(*args
, **kwargs
):
3834 """SetFilename(self, String filename)"""
3835 return _windows_
.PrintData_SetFilename(*args
, **kwargs
)
3837 def SetFontMetricPath(*args
, **kwargs
):
3838 """SetFontMetricPath(self, String path)"""
3839 return _windows_
.PrintData_SetFontMetricPath(*args
, **kwargs
)
3841 def SetPrinterScaleX(*args
, **kwargs
):
3842 """SetPrinterScaleX(self, double x)"""
3843 return _windows_
.PrintData_SetPrinterScaleX(*args
, **kwargs
)
3845 def SetPrinterScaleY(*args
, **kwargs
):
3846 """SetPrinterScaleY(self, double y)"""
3847 return _windows_
.PrintData_SetPrinterScaleY(*args
, **kwargs
)
3849 def SetPrinterScaling(*args
, **kwargs
):
3850 """SetPrinterScaling(self, double x, double y)"""
3851 return _windows_
.PrintData_SetPrinterScaling(*args
, **kwargs
)
3853 def SetPrinterTranslateX(*args
, **kwargs
):
3854 """SetPrinterTranslateX(self, long x)"""
3855 return _windows_
.PrintData_SetPrinterTranslateX(*args
, **kwargs
)
3857 def SetPrinterTranslateY(*args
, **kwargs
):
3858 """SetPrinterTranslateY(self, long y)"""
3859 return _windows_
.PrintData_SetPrinterTranslateY(*args
, **kwargs
)
3861 def SetPrinterTranslation(*args
, **kwargs
):
3862 """SetPrinterTranslation(self, long x, long y)"""
3863 return _windows_
.PrintData_SetPrinterTranslation(*args
, **kwargs
)
3865 def SetPrintMode(*args
, **kwargs
):
3866 """SetPrintMode(self, int printMode)"""
3867 return _windows_
.PrintData_SetPrintMode(*args
, **kwargs
)
3869 def GetOutputStream(*args
, **kwargs
):
3870 """GetOutputStream(self) -> OutputStream"""
3871 return _windows_
.PrintData_GetOutputStream(*args
, **kwargs
)
3873 def SetOutputStream(*args
, **kwargs
):
3874 """SetOutputStream(self, OutputStream outputstream)"""
3875 return _windows_
.PrintData_SetOutputStream(*args
, **kwargs
)
3877 def __nonzero__(self
): return self
.Ok()
3879 class PrintDataPtr(PrintData
):
3880 def __init__(self
, this
):
3882 if not hasattr(self
,"thisown"): self
.thisown
= 0
3883 self
.__class
__ = PrintData
3884 _windows_
.PrintData_swigregister(PrintDataPtr
)
3885 PrintoutTitleStr
= cvar
.PrintoutTitleStr
3886 PreviewCanvasNameStr
= cvar
.PreviewCanvasNameStr
3888 class PageSetupDialogData(_core
.Object
):
3890 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
3891 def __init__(self
, *args
):
3893 __init__(self) -> PageSetupDialogData
3894 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
3896 newobj
= _windows_
.new_PageSetupDialogData(*args
)
3897 self
.this
= newobj
.this
3900 def __del__(self
, destroy
=_windows_
.delete_PageSetupDialogData
):
3903 if self
.thisown
: destroy(self
)
3906 def EnableHelp(*args
, **kwargs
):
3907 """EnableHelp(self, bool flag)"""
3908 return _windows_
.PageSetupDialogData_EnableHelp(*args
, **kwargs
)
3910 def EnableMargins(*args
, **kwargs
):
3911 """EnableMargins(self, bool flag)"""
3912 return _windows_
.PageSetupDialogData_EnableMargins(*args
, **kwargs
)
3914 def EnableOrientation(*args
, **kwargs
):
3915 """EnableOrientation(self, bool flag)"""
3916 return _windows_
.PageSetupDialogData_EnableOrientation(*args
, **kwargs
)
3918 def EnablePaper(*args
, **kwargs
):
3919 """EnablePaper(self, bool flag)"""
3920 return _windows_
.PageSetupDialogData_EnablePaper(*args
, **kwargs
)
3922 def EnablePrinter(*args
, **kwargs
):
3923 """EnablePrinter(self, bool flag)"""
3924 return _windows_
.PageSetupDialogData_EnablePrinter(*args
, **kwargs
)
3926 def GetDefaultMinMargins(*args
, **kwargs
):
3927 """GetDefaultMinMargins(self) -> bool"""
3928 return _windows_
.PageSetupDialogData_GetDefaultMinMargins(*args
, **kwargs
)
3930 def GetEnableMargins(*args
, **kwargs
):
3931 """GetEnableMargins(self) -> bool"""
3932 return _windows_
.PageSetupDialogData_GetEnableMargins(*args
, **kwargs
)
3934 def GetEnableOrientation(*args
, **kwargs
):
3935 """GetEnableOrientation(self) -> bool"""
3936 return _windows_
.PageSetupDialogData_GetEnableOrientation(*args
, **kwargs
)
3938 def GetEnablePaper(*args
, **kwargs
):
3939 """GetEnablePaper(self) -> bool"""
3940 return _windows_
.PageSetupDialogData_GetEnablePaper(*args
, **kwargs
)
3942 def GetEnablePrinter(*args
, **kwargs
):
3943 """GetEnablePrinter(self) -> bool"""
3944 return _windows_
.PageSetupDialogData_GetEnablePrinter(*args
, **kwargs
)
3946 def GetEnableHelp(*args
, **kwargs
):
3947 """GetEnableHelp(self) -> bool"""
3948 return _windows_
.PageSetupDialogData_GetEnableHelp(*args
, **kwargs
)
3950 def GetDefaultInfo(*args
, **kwargs
):
3951 """GetDefaultInfo(self) -> bool"""
3952 return _windows_
.PageSetupDialogData_GetDefaultInfo(*args
, **kwargs
)
3954 def GetMarginTopLeft(*args
, **kwargs
):
3955 """GetMarginTopLeft(self) -> Point"""
3956 return _windows_
.PageSetupDialogData_GetMarginTopLeft(*args
, **kwargs
)
3958 def GetMarginBottomRight(*args
, **kwargs
):
3959 """GetMarginBottomRight(self) -> Point"""
3960 return _windows_
.PageSetupDialogData_GetMarginBottomRight(*args
, **kwargs
)
3962 def GetMinMarginTopLeft(*args
, **kwargs
):
3963 """GetMinMarginTopLeft(self) -> Point"""
3964 return _windows_
.PageSetupDialogData_GetMinMarginTopLeft(*args
, **kwargs
)
3966 def GetMinMarginBottomRight(*args
, **kwargs
):
3967 """GetMinMarginBottomRight(self) -> Point"""
3968 return _windows_
.PageSetupDialogData_GetMinMarginBottomRight(*args
, **kwargs
)
3970 def GetPaperId(*args
, **kwargs
):
3971 """GetPaperId(self) -> int"""
3972 return _windows_
.PageSetupDialogData_GetPaperId(*args
, **kwargs
)
3974 def GetPaperSize(*args
, **kwargs
):
3975 """GetPaperSize(self) -> Size"""
3976 return _windows_
.PageSetupDialogData_GetPaperSize(*args
, **kwargs
)
3978 def GetPrintData(*args
, **kwargs
):
3979 """GetPrintData(self) -> PrintData"""
3980 return _windows_
.PageSetupDialogData_GetPrintData(*args
, **kwargs
)
3982 def Ok(*args
, **kwargs
):
3983 """Ok(self) -> bool"""
3984 return _windows_
.PageSetupDialogData_Ok(*args
, **kwargs
)
3986 def SetDefaultInfo(*args
, **kwargs
):
3987 """SetDefaultInfo(self, bool flag)"""
3988 return _windows_
.PageSetupDialogData_SetDefaultInfo(*args
, **kwargs
)
3990 def SetDefaultMinMargins(*args
, **kwargs
):
3991 """SetDefaultMinMargins(self, bool flag)"""
3992 return _windows_
.PageSetupDialogData_SetDefaultMinMargins(*args
, **kwargs
)
3994 def SetMarginTopLeft(*args
, **kwargs
):
3995 """SetMarginTopLeft(self, Point pt)"""
3996 return _windows_
.PageSetupDialogData_SetMarginTopLeft(*args
, **kwargs
)
3998 def SetMarginBottomRight(*args
, **kwargs
):
3999 """SetMarginBottomRight(self, Point pt)"""
4000 return _windows_
.PageSetupDialogData_SetMarginBottomRight(*args
, **kwargs
)
4002 def SetMinMarginTopLeft(*args
, **kwargs
):
4003 """SetMinMarginTopLeft(self, Point pt)"""
4004 return _windows_
.PageSetupDialogData_SetMinMarginTopLeft(*args
, **kwargs
)
4006 def SetMinMarginBottomRight(*args
, **kwargs
):
4007 """SetMinMarginBottomRight(self, Point pt)"""
4008 return _windows_
.PageSetupDialogData_SetMinMarginBottomRight(*args
, **kwargs
)
4010 def SetPaperId(*args
, **kwargs
):
4011 """SetPaperId(self, int id)"""
4012 return _windows_
.PageSetupDialogData_SetPaperId(*args
, **kwargs
)
4014 def SetPaperSize(*args
, **kwargs
):
4015 """SetPaperSize(self, Size size)"""
4016 return _windows_
.PageSetupDialogData_SetPaperSize(*args
, **kwargs
)
4018 def SetPrintData(*args
, **kwargs
):
4019 """SetPrintData(self, PrintData printData)"""
4020 return _windows_
.PageSetupDialogData_SetPrintData(*args
, **kwargs
)
4022 def __nonzero__(self
): return self
.Ok()
4024 class PageSetupDialogDataPtr(PageSetupDialogData
):
4025 def __init__(self
, this
):
4027 if not hasattr(self
,"thisown"): self
.thisown
= 0
4028 self
.__class
__ = PageSetupDialogData
4029 _windows_
.PageSetupDialogData_swigregister(PageSetupDialogDataPtr
)
4031 class PageSetupDialog(Dialog
):
4033 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4034 def __init__(self
, *args
, **kwargs
):
4035 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4036 newobj
= _windows_
.new_PageSetupDialog(*args
, **kwargs
)
4037 self
.this
= newobj
.this
4040 self
._setOORInfo
(self
)
4042 def GetPageSetupData(*args
, **kwargs
):
4043 """GetPageSetupData(self) -> PageSetupDialogData"""
4044 return _windows_
.PageSetupDialog_GetPageSetupData(*args
, **kwargs
)
4046 def ShowModal(*args
, **kwargs
):
4047 """ShowModal(self) -> int"""
4048 return _windows_
.PageSetupDialog_ShowModal(*args
, **kwargs
)
4051 class PageSetupDialogPtr(PageSetupDialog
):
4052 def __init__(self
, this
):
4054 if not hasattr(self
,"thisown"): self
.thisown
= 0
4055 self
.__class
__ = PageSetupDialog
4056 _windows_
.PageSetupDialog_swigregister(PageSetupDialogPtr
)
4058 class PrintDialogData(_core
.Object
):
4060 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4061 def __init__(self
, *args
):
4063 __init__(self) -> PrintDialogData
4064 __init__(self, PrintData printData) -> PrintDialogData
4066 newobj
= _windows_
.new_PrintDialogData(*args
)
4067 self
.this
= newobj
.this
4070 def __del__(self
, destroy
=_windows_
.delete_PrintDialogData
):
4073 if self
.thisown
: destroy(self
)
4076 def GetFromPage(*args
, **kwargs
):
4077 """GetFromPage(self) -> int"""
4078 return _windows_
.PrintDialogData_GetFromPage(*args
, **kwargs
)
4080 def GetToPage(*args
, **kwargs
):
4081 """GetToPage(self) -> int"""
4082 return _windows_
.PrintDialogData_GetToPage(*args
, **kwargs
)
4084 def GetMinPage(*args
, **kwargs
):
4085 """GetMinPage(self) -> int"""
4086 return _windows_
.PrintDialogData_GetMinPage(*args
, **kwargs
)
4088 def GetMaxPage(*args
, **kwargs
):
4089 """GetMaxPage(self) -> int"""
4090 return _windows_
.PrintDialogData_GetMaxPage(*args
, **kwargs
)
4092 def GetNoCopies(*args
, **kwargs
):
4093 """GetNoCopies(self) -> int"""
4094 return _windows_
.PrintDialogData_GetNoCopies(*args
, **kwargs
)
4096 def GetAllPages(*args
, **kwargs
):
4097 """GetAllPages(self) -> bool"""
4098 return _windows_
.PrintDialogData_GetAllPages(*args
, **kwargs
)
4100 def GetSelection(*args
, **kwargs
):
4101 """GetSelection(self) -> bool"""
4102 return _windows_
.PrintDialogData_GetSelection(*args
, **kwargs
)
4104 def GetCollate(*args
, **kwargs
):
4105 """GetCollate(self) -> bool"""
4106 return _windows_
.PrintDialogData_GetCollate(*args
, **kwargs
)
4108 def GetPrintToFile(*args
, **kwargs
):
4109 """GetPrintToFile(self) -> bool"""
4110 return _windows_
.PrintDialogData_GetPrintToFile(*args
, **kwargs
)
4112 def GetSetupDialog(*args
, **kwargs
):
4113 """GetSetupDialog(self) -> bool"""
4114 return _windows_
.PrintDialogData_GetSetupDialog(*args
, **kwargs
)
4116 def SetFromPage(*args
, **kwargs
):
4117 """SetFromPage(self, int v)"""
4118 return _windows_
.PrintDialogData_SetFromPage(*args
, **kwargs
)
4120 def SetToPage(*args
, **kwargs
):
4121 """SetToPage(self, int v)"""
4122 return _windows_
.PrintDialogData_SetToPage(*args
, **kwargs
)
4124 def SetMinPage(*args
, **kwargs
):
4125 """SetMinPage(self, int v)"""
4126 return _windows_
.PrintDialogData_SetMinPage(*args
, **kwargs
)
4128 def SetMaxPage(*args
, **kwargs
):
4129 """SetMaxPage(self, int v)"""
4130 return _windows_
.PrintDialogData_SetMaxPage(*args
, **kwargs
)
4132 def SetNoCopies(*args
, **kwargs
):
4133 """SetNoCopies(self, int v)"""
4134 return _windows_
.PrintDialogData_SetNoCopies(*args
, **kwargs
)
4136 def SetAllPages(*args
, **kwargs
):
4137 """SetAllPages(self, bool flag)"""
4138 return _windows_
.PrintDialogData_SetAllPages(*args
, **kwargs
)
4140 def SetSelection(*args
, **kwargs
):
4141 """SetSelection(self, bool flag)"""
4142 return _windows_
.PrintDialogData_SetSelection(*args
, **kwargs
)
4144 def SetCollate(*args
, **kwargs
):
4145 """SetCollate(self, bool flag)"""
4146 return _windows_
.PrintDialogData_SetCollate(*args
, **kwargs
)
4148 def SetPrintToFile(*args
, **kwargs
):
4149 """SetPrintToFile(self, bool flag)"""
4150 return _windows_
.PrintDialogData_SetPrintToFile(*args
, **kwargs
)
4152 def SetSetupDialog(*args
, **kwargs
):
4153 """SetSetupDialog(self, bool flag)"""
4154 return _windows_
.PrintDialogData_SetSetupDialog(*args
, **kwargs
)
4156 def EnablePrintToFile(*args
, **kwargs
):
4157 """EnablePrintToFile(self, bool flag)"""
4158 return _windows_
.PrintDialogData_EnablePrintToFile(*args
, **kwargs
)
4160 def EnableSelection(*args
, **kwargs
):
4161 """EnableSelection(self, bool flag)"""
4162 return _windows_
.PrintDialogData_EnableSelection(*args
, **kwargs
)
4164 def EnablePageNumbers(*args
, **kwargs
):
4165 """EnablePageNumbers(self, bool flag)"""
4166 return _windows_
.PrintDialogData_EnablePageNumbers(*args
, **kwargs
)
4168 def EnableHelp(*args
, **kwargs
):
4169 """EnableHelp(self, bool flag)"""
4170 return _windows_
.PrintDialogData_EnableHelp(*args
, **kwargs
)
4172 def GetEnablePrintToFile(*args
, **kwargs
):
4173 """GetEnablePrintToFile(self) -> bool"""
4174 return _windows_
.PrintDialogData_GetEnablePrintToFile(*args
, **kwargs
)
4176 def GetEnableSelection(*args
, **kwargs
):
4177 """GetEnableSelection(self) -> bool"""
4178 return _windows_
.PrintDialogData_GetEnableSelection(*args
, **kwargs
)
4180 def GetEnablePageNumbers(*args
, **kwargs
):
4181 """GetEnablePageNumbers(self) -> bool"""
4182 return _windows_
.PrintDialogData_GetEnablePageNumbers(*args
, **kwargs
)
4184 def GetEnableHelp(*args
, **kwargs
):
4185 """GetEnableHelp(self) -> bool"""
4186 return _windows_
.PrintDialogData_GetEnableHelp(*args
, **kwargs
)
4188 def Ok(*args
, **kwargs
):
4189 """Ok(self) -> bool"""
4190 return _windows_
.PrintDialogData_Ok(*args
, **kwargs
)
4192 def GetPrintData(*args
, **kwargs
):
4193 """GetPrintData(self) -> PrintData"""
4194 return _windows_
.PrintDialogData_GetPrintData(*args
, **kwargs
)
4196 def SetPrintData(*args
, **kwargs
):
4197 """SetPrintData(self, PrintData printData)"""
4198 return _windows_
.PrintDialogData_SetPrintData(*args
, **kwargs
)
4200 def __nonzero__(self
): return self
.Ok()
4202 class PrintDialogDataPtr(PrintDialogData
):
4203 def __init__(self
, this
):
4205 if not hasattr(self
,"thisown"): self
.thisown
= 0
4206 self
.__class
__ = PrintDialogData
4207 _windows_
.PrintDialogData_swigregister(PrintDialogDataPtr
)
4209 class PrintDialog(Dialog
):
4211 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4212 def __init__(self
, *args
, **kwargs
):
4213 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4214 newobj
= _windows_
.new_PrintDialog(*args
, **kwargs
)
4215 self
.this
= newobj
.this
4218 self
._setOORInfo
(self
)
4220 def GetPrintDialogData(*args
, **kwargs
):
4221 """GetPrintDialogData(self) -> PrintDialogData"""
4222 return _windows_
.PrintDialog_GetPrintDialogData(*args
, **kwargs
)
4224 def GetPrintDC(*args
, **kwargs
):
4225 """GetPrintDC(self) -> DC"""
4226 return _windows_
.PrintDialog_GetPrintDC(*args
, **kwargs
)
4228 def ShowModal(*args
, **kwargs
):
4229 """ShowModal(self) -> int"""
4230 return _windows_
.PrintDialog_ShowModal(*args
, **kwargs
)
4233 class PrintDialogPtr(PrintDialog
):
4234 def __init__(self
, this
):
4236 if not hasattr(self
,"thisown"): self
.thisown
= 0
4237 self
.__class
__ = PrintDialog
4238 _windows_
.PrintDialog_swigregister(PrintDialogPtr
)
4240 PRINTER_NO_ERROR
= _windows_
.PRINTER_NO_ERROR
4241 PRINTER_CANCELLED
= _windows_
.PRINTER_CANCELLED
4242 PRINTER_ERROR
= _windows_
.PRINTER_ERROR
4243 class Printer(_core
.Object
):
4245 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4246 def __init__(self
, *args
, **kwargs
):
4247 """__init__(self, PrintDialogData data=None) -> Printer"""
4248 newobj
= _windows_
.new_Printer(*args
, **kwargs
)
4249 self
.this
= newobj
.this
4252 def __del__(self
, destroy
=_windows_
.delete_Printer
):
4255 if self
.thisown
: destroy(self
)
4258 def CreateAbortWindow(*args
, **kwargs
):
4259 """CreateAbortWindow(self, Window parent, Printout printout)"""
4260 return _windows_
.Printer_CreateAbortWindow(*args
, **kwargs
)
4262 def GetPrintDialogData(*args
, **kwargs
):
4263 """GetPrintDialogData(self) -> PrintDialogData"""
4264 return _windows_
.Printer_GetPrintDialogData(*args
, **kwargs
)
4266 def Print(*args
, **kwargs
):
4267 """Print(self, Window parent, Printout printout, int prompt=True) -> bool"""
4268 return _windows_
.Printer_Print(*args
, **kwargs
)
4270 def PrintDialog(*args
, **kwargs
):
4271 """PrintDialog(self, Window parent) -> DC"""
4272 return _windows_
.Printer_PrintDialog(*args
, **kwargs
)
4274 def ReportError(*args
, **kwargs
):
4275 """ReportError(self, Window parent, Printout printout, String message)"""
4276 return _windows_
.Printer_ReportError(*args
, **kwargs
)
4278 def Setup(*args
, **kwargs
):
4279 """Setup(self, Window parent) -> bool"""
4280 return _windows_
.Printer_Setup(*args
, **kwargs
)
4282 def GetAbort(*args
, **kwargs
):
4283 """GetAbort(self) -> bool"""
4284 return _windows_
.Printer_GetAbort(*args
, **kwargs
)
4286 def GetLastError(*args
, **kwargs
):
4287 """GetLastError() -> int"""
4288 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4290 GetLastError
= staticmethod(GetLastError
)
4292 class PrinterPtr(Printer
):
4293 def __init__(self
, this
):
4295 if not hasattr(self
,"thisown"): self
.thisown
= 0
4296 self
.__class
__ = Printer
4297 _windows_
.Printer_swigregister(PrinterPtr
)
4299 def Printer_GetLastError(*args
, **kwargs
):
4300 """Printer_GetLastError() -> int"""
4301 return _windows_
.Printer_GetLastError(*args
, **kwargs
)
4303 class Printout(_core
.Object
):
4305 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4306 def __init__(self
, *args
, **kwargs
):
4307 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4308 newobj
= _windows_
.new_Printout(*args
, **kwargs
)
4309 self
.this
= newobj
.this
4312 self
._setCallbackInfo
(self
, Printout
)
4314 def _setCallbackInfo(*args
, **kwargs
):
4315 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4316 return _windows_
.Printout__setCallbackInfo(*args
, **kwargs
)
4318 def GetTitle(*args
, **kwargs
):
4319 """GetTitle(self) -> String"""
4320 return _windows_
.Printout_GetTitle(*args
, **kwargs
)
4322 def GetDC(*args
, **kwargs
):
4323 """GetDC(self) -> DC"""
4324 return _windows_
.Printout_GetDC(*args
, **kwargs
)
4326 def SetDC(*args
, **kwargs
):
4327 """SetDC(self, DC dc)"""
4328 return _windows_
.Printout_SetDC(*args
, **kwargs
)
4330 def SetPageSizePixels(*args
, **kwargs
):
4331 """SetPageSizePixels(self, int w, int h)"""
4332 return _windows_
.Printout_SetPageSizePixels(*args
, **kwargs
)
4334 def GetPageSizePixels(*args
, **kwargs
):
4335 """GetPageSizePixels() -> (w, h)"""
4336 return _windows_
.Printout_GetPageSizePixels(*args
, **kwargs
)
4338 def SetPageSizeMM(*args
, **kwargs
):
4339 """SetPageSizeMM(self, int w, int h)"""
4340 return _windows_
.Printout_SetPageSizeMM(*args
, **kwargs
)
4342 def GetPageSizeMM(*args
, **kwargs
):
4343 """GetPageSizeMM() -> (w, h)"""
4344 return _windows_
.Printout_GetPageSizeMM(*args
, **kwargs
)
4346 def SetPPIScreen(*args
, **kwargs
):
4347 """SetPPIScreen(self, int x, int y)"""
4348 return _windows_
.Printout_SetPPIScreen(*args
, **kwargs
)
4350 def GetPPIScreen(*args
, **kwargs
):
4351 """GetPPIScreen() -> (x,y)"""
4352 return _windows_
.Printout_GetPPIScreen(*args
, **kwargs
)
4354 def SetPPIPrinter(*args
, **kwargs
):
4355 """SetPPIPrinter(self, int x, int y)"""
4356 return _windows_
.Printout_SetPPIPrinter(*args
, **kwargs
)
4358 def GetPPIPrinter(*args
, **kwargs
):
4359 """GetPPIPrinter() -> (x,y)"""
4360 return _windows_
.Printout_GetPPIPrinter(*args
, **kwargs
)
4362 def IsPreview(*args
, **kwargs
):
4363 """IsPreview(self) -> bool"""
4364 return _windows_
.Printout_IsPreview(*args
, **kwargs
)
4366 def SetIsPreview(*args
, **kwargs
):
4367 """SetIsPreview(self, bool p)"""
4368 return _windows_
.Printout_SetIsPreview(*args
, **kwargs
)
4370 def base_OnBeginDocument(*args
, **kwargs
):
4371 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4372 return _windows_
.Printout_base_OnBeginDocument(*args
, **kwargs
)
4374 def base_OnEndDocument(*args
, **kwargs
):
4375 """base_OnEndDocument(self)"""
4376 return _windows_
.Printout_base_OnEndDocument(*args
, **kwargs
)
4378 def base_OnBeginPrinting(*args
, **kwargs
):
4379 """base_OnBeginPrinting(self)"""
4380 return _windows_
.Printout_base_OnBeginPrinting(*args
, **kwargs
)
4382 def base_OnEndPrinting(*args
, **kwargs
):
4383 """base_OnEndPrinting(self)"""
4384 return _windows_
.Printout_base_OnEndPrinting(*args
, **kwargs
)
4386 def base_OnPreparePrinting(*args
, **kwargs
):
4387 """base_OnPreparePrinting(self)"""
4388 return _windows_
.Printout_base_OnPreparePrinting(*args
, **kwargs
)
4390 def base_HasPage(*args
, **kwargs
):
4391 """base_HasPage(self, int page) -> bool"""
4392 return _windows_
.Printout_base_HasPage(*args
, **kwargs
)
4394 def base_GetPageInfo(*args
, **kwargs
):
4395 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4396 return _windows_
.Printout_base_GetPageInfo(*args
, **kwargs
)
4399 class PrintoutPtr(Printout
):
4400 def __init__(self
, this
):
4402 if not hasattr(self
,"thisown"): self
.thisown
= 0
4403 self
.__class
__ = Printout
4404 _windows_
.Printout_swigregister(PrintoutPtr
)
4406 class PreviewCanvas(ScrolledWindow
):
4408 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4409 def __init__(self
, *args
, **kwargs
):
4411 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4412 Size size=DefaultSize, long style=0,
4413 String name=PreviewCanvasNameStr) -> PreviewCanvas
4415 newobj
= _windows_
.new_PreviewCanvas(*args
, **kwargs
)
4416 self
.this
= newobj
.this
4419 self
._setOORInfo
(self
)
4422 class PreviewCanvasPtr(PreviewCanvas
):
4423 def __init__(self
, this
):
4425 if not hasattr(self
,"thisown"): self
.thisown
= 0
4426 self
.__class
__ = PreviewCanvas
4427 _windows_
.PreviewCanvas_swigregister(PreviewCanvasPtr
)
4429 class PreviewFrame(Frame
):
4431 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4432 def __init__(self
, *args
, **kwargs
):
4434 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4435 Size size=DefaultSize,
4436 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4438 newobj
= _windows_
.new_PreviewFrame(*args
, **kwargs
)
4439 self
.this
= newobj
.this
4442 self
._setOORInfo
(self
)
4444 def Initialize(*args
, **kwargs
):
4445 """Initialize(self)"""
4446 return _windows_
.PreviewFrame_Initialize(*args
, **kwargs
)
4448 def CreateControlBar(*args
, **kwargs
):
4449 """CreateControlBar(self)"""
4450 return _windows_
.PreviewFrame_CreateControlBar(*args
, **kwargs
)
4452 def CreateCanvas(*args
, **kwargs
):
4453 """CreateCanvas(self)"""
4454 return _windows_
.PreviewFrame_CreateCanvas(*args
, **kwargs
)
4456 def GetControlBar(*args
, **kwargs
):
4457 """GetControlBar(self) -> PreviewControlBar"""
4458 return _windows_
.PreviewFrame_GetControlBar(*args
, **kwargs
)
4461 class PreviewFramePtr(PreviewFrame
):
4462 def __init__(self
, this
):
4464 if not hasattr(self
,"thisown"): self
.thisown
= 0
4465 self
.__class
__ = PreviewFrame
4466 _windows_
.PreviewFrame_swigregister(PreviewFramePtr
)
4468 PREVIEW_PRINT
= _windows_
.PREVIEW_PRINT
4469 PREVIEW_PREVIOUS
= _windows_
.PREVIEW_PREVIOUS
4470 PREVIEW_NEXT
= _windows_
.PREVIEW_NEXT
4471 PREVIEW_ZOOM
= _windows_
.PREVIEW_ZOOM
4472 PREVIEW_FIRST
= _windows_
.PREVIEW_FIRST
4473 PREVIEW_LAST
= _windows_
.PREVIEW_LAST
4474 PREVIEW_GOTO
= _windows_
.PREVIEW_GOTO
4475 PREVIEW_DEFAULT
= _windows_
.PREVIEW_DEFAULT
4476 ID_PREVIEW_CLOSE
= _windows_
.ID_PREVIEW_CLOSE
4477 ID_PREVIEW_NEXT
= _windows_
.ID_PREVIEW_NEXT
4478 ID_PREVIEW_PREVIOUS
= _windows_
.ID_PREVIEW_PREVIOUS
4479 ID_PREVIEW_PRINT
= _windows_
.ID_PREVIEW_PRINT
4480 ID_PREVIEW_ZOOM
= _windows_
.ID_PREVIEW_ZOOM
4481 ID_PREVIEW_FIRST
= _windows_
.ID_PREVIEW_FIRST
4482 ID_PREVIEW_LAST
= _windows_
.ID_PREVIEW_LAST
4483 ID_PREVIEW_GOTO
= _windows_
.ID_PREVIEW_GOTO
4484 class PreviewControlBar(Panel
):
4486 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4487 def __init__(self
, *args
, **kwargs
):
4489 __init__(self, PrintPreview preview, long buttons, Window parent,
4490 Point pos=DefaultPosition, Size size=DefaultSize,
4491 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4493 newobj
= _windows_
.new_PreviewControlBar(*args
, **kwargs
)
4494 self
.this
= newobj
.this
4497 self
._setOORInfo
(self
)
4499 def GetZoomControl(*args
, **kwargs
):
4500 """GetZoomControl(self) -> int"""
4501 return _windows_
.PreviewControlBar_GetZoomControl(*args
, **kwargs
)
4503 def SetZoomControl(*args
, **kwargs
):
4504 """SetZoomControl(self, int zoom)"""
4505 return _windows_
.PreviewControlBar_SetZoomControl(*args
, **kwargs
)
4507 def GetPrintPreview(*args
, **kwargs
):
4508 """GetPrintPreview(self) -> PrintPreview"""
4509 return _windows_
.PreviewControlBar_GetPrintPreview(*args
, **kwargs
)
4511 def OnNext(*args
, **kwargs
):
4513 return _windows_
.PreviewControlBar_OnNext(*args
, **kwargs
)
4515 def OnPrevious(*args
, **kwargs
):
4516 """OnPrevious(self)"""
4517 return _windows_
.PreviewControlBar_OnPrevious(*args
, **kwargs
)
4519 def OnFirst(*args
, **kwargs
):
4521 return _windows_
.PreviewControlBar_OnFirst(*args
, **kwargs
)
4523 def OnLast(*args
, **kwargs
):
4525 return _windows_
.PreviewControlBar_OnLast(*args
, **kwargs
)
4527 def OnGoto(*args
, **kwargs
):
4529 return _windows_
.PreviewControlBar_OnGoto(*args
, **kwargs
)
4532 class PreviewControlBarPtr(PreviewControlBar
):
4533 def __init__(self
, this
):
4535 if not hasattr(self
,"thisown"): self
.thisown
= 0
4536 self
.__class
__ = PreviewControlBar
4537 _windows_
.PreviewControlBar_swigregister(PreviewControlBarPtr
)
4539 class PrintPreview(_core
.Object
):
4541 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4542 def __init__(self
, *args
):
4544 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4545 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4547 newobj
= _windows_
.new_PrintPreview(*args
)
4548 self
.this
= newobj
.this
4551 def SetCurrentPage(*args
, **kwargs
):
4552 """SetCurrentPage(self, int pageNum) -> bool"""
4553 return _windows_
.PrintPreview_SetCurrentPage(*args
, **kwargs
)
4555 def GetCurrentPage(*args
, **kwargs
):
4556 """GetCurrentPage(self) -> int"""
4557 return _windows_
.PrintPreview_GetCurrentPage(*args
, **kwargs
)
4559 def SetPrintout(*args
, **kwargs
):
4560 """SetPrintout(self, Printout printout)"""
4561 return _windows_
.PrintPreview_SetPrintout(*args
, **kwargs
)
4563 def GetPrintout(*args
, **kwargs
):
4564 """GetPrintout(self) -> Printout"""
4565 return _windows_
.PrintPreview_GetPrintout(*args
, **kwargs
)
4567 def GetPrintoutForPrinting(*args
, **kwargs
):
4568 """GetPrintoutForPrinting(self) -> Printout"""
4569 return _windows_
.PrintPreview_GetPrintoutForPrinting(*args
, **kwargs
)
4571 def SetFrame(*args
, **kwargs
):
4572 """SetFrame(self, Frame frame)"""
4573 return _windows_
.PrintPreview_SetFrame(*args
, **kwargs
)
4575 def SetCanvas(*args
, **kwargs
):
4576 """SetCanvas(self, PreviewCanvas canvas)"""
4577 return _windows_
.PrintPreview_SetCanvas(*args
, **kwargs
)
4579 def GetFrame(*args
, **kwargs
):
4580 """GetFrame(self) -> Frame"""
4581 return _windows_
.PrintPreview_GetFrame(*args
, **kwargs
)
4583 def GetCanvas(*args
, **kwargs
):
4584 """GetCanvas(self) -> PreviewCanvas"""
4585 return _windows_
.PrintPreview_GetCanvas(*args
, **kwargs
)
4587 def PaintPage(*args
, **kwargs
):
4588 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4589 return _windows_
.PrintPreview_PaintPage(*args
, **kwargs
)
4591 def DrawBlankPage(*args
, **kwargs
):
4592 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4593 return _windows_
.PrintPreview_DrawBlankPage(*args
, **kwargs
)
4595 def RenderPage(*args
, **kwargs
):
4596 """RenderPage(self, int pageNum) -> bool"""
4597 return _windows_
.PrintPreview_RenderPage(*args
, **kwargs
)
4599 def AdjustScrollbars(*args
, **kwargs
):
4600 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4601 return _windows_
.PrintPreview_AdjustScrollbars(*args
, **kwargs
)
4603 def GetPrintDialogData(*args
, **kwargs
):
4604 """GetPrintDialogData(self) -> PrintDialogData"""
4605 return _windows_
.PrintPreview_GetPrintDialogData(*args
, **kwargs
)
4607 def SetZoom(*args
, **kwargs
):
4608 """SetZoom(self, int percent)"""
4609 return _windows_
.PrintPreview_SetZoom(*args
, **kwargs
)
4611 def GetZoom(*args
, **kwargs
):
4612 """GetZoom(self) -> int"""
4613 return _windows_
.PrintPreview_GetZoom(*args
, **kwargs
)
4615 def GetMaxPage(*args
, **kwargs
):
4616 """GetMaxPage(self) -> int"""
4617 return _windows_
.PrintPreview_GetMaxPage(*args
, **kwargs
)
4619 def GetMinPage(*args
, **kwargs
):
4620 """GetMinPage(self) -> int"""
4621 return _windows_
.PrintPreview_GetMinPage(*args
, **kwargs
)
4623 def Ok(*args
, **kwargs
):
4624 """Ok(self) -> bool"""
4625 return _windows_
.PrintPreview_Ok(*args
, **kwargs
)
4627 def SetOk(*args
, **kwargs
):
4628 """SetOk(self, bool ok)"""
4629 return _windows_
.PrintPreview_SetOk(*args
, **kwargs
)
4631 def Print(*args
, **kwargs
):
4632 """Print(self, bool interactive) -> bool"""
4633 return _windows_
.PrintPreview_Print(*args
, **kwargs
)
4635 def DetermineScaling(*args
, **kwargs
):
4636 """DetermineScaling(self)"""
4637 return _windows_
.PrintPreview_DetermineScaling(*args
, **kwargs
)
4639 def __nonzero__(self
): return self
.Ok()
4641 class PrintPreviewPtr(PrintPreview
):
4642 def __init__(self
, this
):
4644 if not hasattr(self
,"thisown"): self
.thisown
= 0
4645 self
.__class
__ = PrintPreview
4646 _windows_
.PrintPreview_swigregister(PrintPreviewPtr
)
4648 class PyPrintPreview(PrintPreview
):
4650 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4651 def __init__(self
, *args
):
4653 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4654 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4656 newobj
= _windows_
.new_PyPrintPreview(*args
)
4657 self
.this
= newobj
.this
4660 self
._setCallbackInfo
(self
, PyPrintPreview
)
4662 def _setCallbackInfo(*args
, **kwargs
):
4663 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4664 return _windows_
.PyPrintPreview__setCallbackInfo(*args
, **kwargs
)
4666 def base_SetCurrentPage(*args
, **kwargs
):
4667 """base_SetCurrentPage(self, int pageNum) -> bool"""
4668 return _windows_
.PyPrintPreview_base_SetCurrentPage(*args
, **kwargs
)
4670 def base_PaintPage(*args
, **kwargs
):
4671 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4672 return _windows_
.PyPrintPreview_base_PaintPage(*args
, **kwargs
)
4674 def base_DrawBlankPage(*args
, **kwargs
):
4675 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4676 return _windows_
.PyPrintPreview_base_DrawBlankPage(*args
, **kwargs
)
4678 def base_RenderPage(*args
, **kwargs
):
4679 """base_RenderPage(self, int pageNum) -> bool"""
4680 return _windows_
.PyPrintPreview_base_RenderPage(*args
, **kwargs
)
4682 def base_SetZoom(*args
, **kwargs
):
4683 """base_SetZoom(self, int percent)"""
4684 return _windows_
.PyPrintPreview_base_SetZoom(*args
, **kwargs
)
4686 def base_Print(*args
, **kwargs
):
4687 """base_Print(self, bool interactive) -> bool"""
4688 return _windows_
.PyPrintPreview_base_Print(*args
, **kwargs
)
4690 def base_DetermineScaling(*args
, **kwargs
):
4691 """base_DetermineScaling(self)"""
4692 return _windows_
.PyPrintPreview_base_DetermineScaling(*args
, **kwargs
)
4695 class PyPrintPreviewPtr(PyPrintPreview
):
4696 def __init__(self
, this
):
4698 if not hasattr(self
,"thisown"): self
.thisown
= 0
4699 self
.__class
__ = PyPrintPreview
4700 _windows_
.PyPrintPreview_swigregister(PyPrintPreviewPtr
)
4702 class PyPreviewFrame(PreviewFrame
):
4704 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4705 def __init__(self
, *args
, **kwargs
):
4707 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4708 Size size=DefaultSize,
4709 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4711 newobj
= _windows_
.new_PyPreviewFrame(*args
, **kwargs
)
4712 self
.this
= newobj
.this
4715 self
._setCallbackInfo
(self
, PyPreviewFrame
); self
._setOORInfo
(self
)
4717 def _setCallbackInfo(*args
, **kwargs
):
4718 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4719 return _windows_
.PyPreviewFrame__setCallbackInfo(*args
, **kwargs
)
4721 def SetPreviewCanvas(*args
, **kwargs
):
4722 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4723 return _windows_
.PyPreviewFrame_SetPreviewCanvas(*args
, **kwargs
)
4725 def SetControlBar(*args
, **kwargs
):
4726 """SetControlBar(self, PreviewControlBar bar)"""
4727 return _windows_
.PyPreviewFrame_SetControlBar(*args
, **kwargs
)
4729 def base_Initialize(*args
, **kwargs
):
4730 """base_Initialize(self)"""
4731 return _windows_
.PyPreviewFrame_base_Initialize(*args
, **kwargs
)
4733 def base_CreateCanvas(*args
, **kwargs
):
4734 """base_CreateCanvas(self)"""
4735 return _windows_
.PyPreviewFrame_base_CreateCanvas(*args
, **kwargs
)
4737 def base_CreateControlBar(*args
, **kwargs
):
4738 """base_CreateControlBar(self)"""
4739 return _windows_
.PyPreviewFrame_base_CreateControlBar(*args
, **kwargs
)
4742 class PyPreviewFramePtr(PyPreviewFrame
):
4743 def __init__(self
, this
):
4745 if not hasattr(self
,"thisown"): self
.thisown
= 0
4746 self
.__class
__ = PyPreviewFrame
4747 _windows_
.PyPreviewFrame_swigregister(PyPreviewFramePtr
)
4749 class PyPreviewControlBar(PreviewControlBar
):
4751 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self
.__class
__.__module
__, self
.__class
__.__name
__, self
.this
,)
4752 def __init__(self
, *args
, **kwargs
):
4754 __init__(self, PrintPreview preview, long buttons, Window parent,
4755 Point pos=DefaultPosition, Size size=DefaultSize,
4756 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4758 newobj
= _windows_
.new_PyPreviewControlBar(*args
, **kwargs
)
4759 self
.this
= newobj
.this
4762 self
._setCallbackInfo
(self
, PyPreviewControlBar
); self
._setOORInfo
(self
)
4764 def _setCallbackInfo(*args
, **kwargs
):
4765 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4766 return _windows_
.PyPreviewControlBar__setCallbackInfo(*args
, **kwargs
)
4768 def SetPrintPreview(*args
, **kwargs
):
4769 """SetPrintPreview(self, PrintPreview preview)"""
4770 return _windows_
.PyPreviewControlBar_SetPrintPreview(*args
, **kwargs
)
4772 def base_CreateButtons(*args
, **kwargs
):
4773 """base_CreateButtons(self)"""
4774 return _windows_
.PyPreviewControlBar_base_CreateButtons(*args
, **kwargs
)
4776 def base_SetZoomControl(*args
, **kwargs
):
4777 """base_SetZoomControl(self, int zoom)"""
4778 return _windows_
.PyPreviewControlBar_base_SetZoomControl(*args
, **kwargs
)
4781 class PyPreviewControlBarPtr(PyPreviewControlBar
):
4782 def __init__(self
, this
):
4784 if not hasattr(self
,"thisown"): self
.thisown
= 0
4785 self
.__class
__ = PyPreviewControlBar
4786 _windows_
.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr
)