]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/mac/_windows.py
Implemented text wrapping for GTK (1.2 and 2.X).
[wxWidgets.git] / wxPython / src / mac / _windows.py
1 # This file was created automatically by SWIG.
2 # Don't modify this file, modify the SWIG interface instead.
3
4 import _windows_
5
6 def _swig_setattr_nondynamic(self,class_type,name,value,static=1):
7 if (name == "this"):
8 if isinstance(value, class_type):
9 self.__dict__[name] = value.this
10 if hasattr(value,"thisown"): self.__dict__["thisown"] = value.thisown
11 del value.thisown
12 return
13 method = class_type.__swig_setmethods__.get(name,None)
14 if method: return method(self,value)
15 if (not static) or hasattr(self,name) or (name == "thisown"):
16 self.__dict__[name] = value
17 else:
18 raise AttributeError("You cannot add attributes to %s" % self)
19
20 def _swig_setattr(self,class_type,name,value):
21 return _swig_setattr_nondynamic(self,class_type,name,value,0)
22
23 def _swig_getattr(self,class_type,name):
24 method = class_type.__swig_getmethods__.get(name,None)
25 if method: return method(self)
26 raise AttributeError,name
27
28 import types
29 try:
30 _object = types.ObjectType
31 _newclass = 1
32 except AttributeError:
33 class _object : pass
34 _newclass = 0
35 del types
36
37
38 def _swig_setattr_nondynamic_method(set):
39 def set_attr(self,name,value):
40 if hasattr(self,name) or (name in ("this", "thisown")):
41 set(self,name,value)
42 else:
43 raise AttributeError("You cannot add attributes to %s" % self)
44 return set_attr
45
46
47 import _core
48 wx = _core
49 #---------------------------------------------------------------------------
50
51 class Panel(_core.Window):
52 """Proxy of C++ Panel class"""
53 def __repr__(self):
54 return "<%s.%s; proxy of C++ wxPanel instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
55 def __init__(self, *args, **kwargs):
56 """
57 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
58 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
59 String name=PanelNameStr) -> Panel
60 """
61 newobj = _windows_.new_Panel(*args, **kwargs)
62 self.this = newobj.this
63 self.thisown = 1
64 del newobj.thisown
65 self._setOORInfo(self)
66
67 def Create(*args, **kwargs):
68 """
69 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
70 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
71 String name=PanelNameStr) -> bool
72
73 Create the GUI part of the Window for 2-phase creation mode.
74 """
75 return _windows_.Panel_Create(*args, **kwargs)
76
77 def InitDialog(*args, **kwargs):
78 """
79 InitDialog(self)
80
81 Sends an EVT_INIT_DIALOG event, whose handler usually transfers data
82 to the dialog via validators.
83 """
84 return _windows_.Panel_InitDialog(*args, **kwargs)
85
86 def SetFocus(*args, **kwargs):
87 """
88 SetFocus(self)
89
90 Overrides `wx.Window.SetFocus`. This method uses the (undocumented)
91 mix-in class wxControlContainer which manages the focus and TAB logic
92 for controls which usually have child controls. In practice, if you
93 call this method and the panel has at least one child window, then the
94 focus will be given to the child window.
95 """
96 return _windows_.Panel_SetFocus(*args, **kwargs)
97
98 def SetFocusIgnoringChildren(*args, **kwargs):
99 """
100 SetFocusIgnoringChildren(self)
101
102 In contrast to `SetFocus` (see above) this will set the focus to the
103 panel even of there are child windows in the panel. This is only
104 rarely needed.
105 """
106 return _windows_.Panel_SetFocusIgnoringChildren(*args, **kwargs)
107
108 def GetClassDefaultAttributes(*args, **kwargs):
109 """
110 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
111
112 Get the default attributes for this class. This is useful if you want
113 to use the same font or colour in your own control as in a standard
114 control -- which is a much better idea than hard coding specific
115 colours or fonts which might look completely out of place on the
116 user's system, especially if it uses themes.
117
118 The variant parameter is only relevant under Mac currently and is
119 ignore under other platforms. Under Mac, it will change the size of
120 the returned font. See `wx.Window.SetWindowVariant` for more about
121 this.
122 """
123 return _windows_.Panel_GetClassDefaultAttributes(*args, **kwargs)
124
125 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
126
127 class PanelPtr(Panel):
128 def __init__(self, this):
129 self.this = this
130 if not hasattr(self,"thisown"): self.thisown = 0
131 self.__class__ = Panel
132 _windows_.Panel_swigregister(PanelPtr)
133
134 def PrePanel(*args, **kwargs):
135 """PrePanel() -> Panel"""
136 val = _windows_.new_PrePanel(*args, **kwargs)
137 val.thisown = 1
138 return val
139
140 def Panel_GetClassDefaultAttributes(*args, **kwargs):
141 """
142 Panel_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
143
144 Get the default attributes for this class. This is useful if you want
145 to use the same font or colour in your own control as in a standard
146 control -- which is a much better idea than hard coding specific
147 colours or fonts which might look completely out of place on the
148 user's system, especially if it uses themes.
149
150 The variant parameter is only relevant under Mac currently and is
151 ignore under other platforms. Under Mac, it will change the size of
152 the returned font. See `wx.Window.SetWindowVariant` for more about
153 this.
154 """
155 return _windows_.Panel_GetClassDefaultAttributes(*args, **kwargs)
156
157 #---------------------------------------------------------------------------
158
159 class ScrolledWindow(Panel):
160 """Proxy of C++ ScrolledWindow class"""
161 def __repr__(self):
162 return "<%s.%s; proxy of C++ wxScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
163 def __init__(self, *args, **kwargs):
164 """
165 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
166 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
167 String name=PanelNameStr) -> ScrolledWindow
168 """
169 newobj = _windows_.new_ScrolledWindow(*args, **kwargs)
170 self.this = newobj.this
171 self.thisown = 1
172 del newobj.thisown
173 self._setOORInfo(self)
174
175 def Create(*args, **kwargs):
176 """
177 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
178 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
179 String name=PanelNameStr) -> bool
180
181 Create the GUI part of the Window for 2-phase creation mode.
182 """
183 return _windows_.ScrolledWindow_Create(*args, **kwargs)
184
185 def SetScrollbars(*args, **kwargs):
186 """
187 SetScrollbars(self, int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
188 int noUnitsY, int xPos=0, int yPos=0, bool noRefresh=False)
189 """
190 return _windows_.ScrolledWindow_SetScrollbars(*args, **kwargs)
191
192 def Scroll(*args, **kwargs):
193 """Scroll(self, int x, int y)"""
194 return _windows_.ScrolledWindow_Scroll(*args, **kwargs)
195
196 def GetScrollPageSize(*args, **kwargs):
197 """GetScrollPageSize(self, int orient) -> int"""
198 return _windows_.ScrolledWindow_GetScrollPageSize(*args, **kwargs)
199
200 def SetScrollPageSize(*args, **kwargs):
201 """SetScrollPageSize(self, int orient, int pageSize)"""
202 return _windows_.ScrolledWindow_SetScrollPageSize(*args, **kwargs)
203
204 def SetScrollRate(*args, **kwargs):
205 """SetScrollRate(self, int xstep, int ystep)"""
206 return _windows_.ScrolledWindow_SetScrollRate(*args, **kwargs)
207
208 def GetScrollPixelsPerUnit(*args, **kwargs):
209 """
210 GetScrollPixelsPerUnit() -> (xUnit, yUnit)
211
212 Get the size of one logical unit in physical units.
213 """
214 return _windows_.ScrolledWindow_GetScrollPixelsPerUnit(*args, **kwargs)
215
216 def EnableScrolling(*args, **kwargs):
217 """EnableScrolling(self, bool x_scrolling, bool y_scrolling)"""
218 return _windows_.ScrolledWindow_EnableScrolling(*args, **kwargs)
219
220 def GetViewStart(*args, **kwargs):
221 """
222 GetViewStart() -> (x,y)
223
224 Get the view start
225 """
226 return _windows_.ScrolledWindow_GetViewStart(*args, **kwargs)
227
228 def SetScale(*args, **kwargs):
229 """SetScale(self, double xs, double ys)"""
230 return _windows_.ScrolledWindow_SetScale(*args, **kwargs)
231
232 def GetScaleX(*args, **kwargs):
233 """GetScaleX(self) -> double"""
234 return _windows_.ScrolledWindow_GetScaleX(*args, **kwargs)
235
236 def GetScaleY(*args, **kwargs):
237 """GetScaleY(self) -> double"""
238 return _windows_.ScrolledWindow_GetScaleY(*args, **kwargs)
239
240 def CalcScrolledPosition(*args):
241 """
242 CalcScrolledPosition(self, Point pt) -> Point
243 CalcScrolledPosition(int x, int y) -> (sx, sy)
244
245 Translate between scrolled and unscrolled coordinates.
246 """
247 return _windows_.ScrolledWindow_CalcScrolledPosition(*args)
248
249 def CalcUnscrolledPosition(*args):
250 """
251 CalcUnscrolledPosition(self, Point pt) -> Point
252 CalcUnscrolledPosition(int x, int y) -> (ux, uy)
253
254 Translate between scrolled and unscrolled coordinates.
255 """
256 return _windows_.ScrolledWindow_CalcUnscrolledPosition(*args)
257
258 def AdjustScrollbars(*args, **kwargs):
259 """AdjustScrollbars(self)"""
260 return _windows_.ScrolledWindow_AdjustScrollbars(*args, **kwargs)
261
262 def CalcScrollInc(*args, **kwargs):
263 """CalcScrollInc(self, ScrollWinEvent event) -> int"""
264 return _windows_.ScrolledWindow_CalcScrollInc(*args, **kwargs)
265
266 def SetTargetWindow(*args, **kwargs):
267 """SetTargetWindow(self, Window target)"""
268 return _windows_.ScrolledWindow_SetTargetWindow(*args, **kwargs)
269
270 def GetTargetWindow(*args, **kwargs):
271 """GetTargetWindow(self) -> Window"""
272 return _windows_.ScrolledWindow_GetTargetWindow(*args, **kwargs)
273
274 def SetTargetRect(*args, **kwargs):
275 """SetTargetRect(self, Rect rect)"""
276 return _windows_.ScrolledWindow_SetTargetRect(*args, **kwargs)
277
278 def GetTargetRect(*args, **kwargs):
279 """GetTargetRect(self) -> Rect"""
280 return _windows_.ScrolledWindow_GetTargetRect(*args, **kwargs)
281
282 def DoPrepareDC(*args, **kwargs):
283 """
284 DoPrepareDC(self, DC dc)
285
286 Normally what is called by `PrepareDC`.
287 """
288 return _windows_.ScrolledWindow_DoPrepareDC(*args, **kwargs)
289
290 def GetClassDefaultAttributes(*args, **kwargs):
291 """
292 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
293
294 Get the default attributes for this class. This is useful if you want
295 to use the same font or colour in your own control as in a standard
296 control -- which is a much better idea than hard coding specific
297 colours or fonts which might look completely out of place on the
298 user's system, especially if it uses themes.
299
300 The variant parameter is only relevant under Mac currently and is
301 ignore under other platforms. Under Mac, it will change the size of
302 the returned font. See `wx.Window.SetWindowVariant` for more about
303 this.
304 """
305 return _windows_.ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs)
306
307 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
308
309 class ScrolledWindowPtr(ScrolledWindow):
310 def __init__(self, this):
311 self.this = this
312 if not hasattr(self,"thisown"): self.thisown = 0
313 self.__class__ = ScrolledWindow
314 _windows_.ScrolledWindow_swigregister(ScrolledWindowPtr)
315
316 def PreScrolledWindow(*args, **kwargs):
317 """PreScrolledWindow() -> ScrolledWindow"""
318 val = _windows_.new_PreScrolledWindow(*args, **kwargs)
319 val.thisown = 1
320 return val
321
322 def ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs):
323 """
324 ScrolledWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
325
326 Get the default attributes for this class. This is useful if you want
327 to use the same font or colour in your own control as in a standard
328 control -- which is a much better idea than hard coding specific
329 colours or fonts which might look completely out of place on the
330 user's system, especially if it uses themes.
331
332 The variant parameter is only relevant under Mac currently and is
333 ignore under other platforms. Under Mac, it will change the size of
334 the returned font. See `wx.Window.SetWindowVariant` for more about
335 this.
336 """
337 return _windows_.ScrolledWindow_GetClassDefaultAttributes(*args, **kwargs)
338
339 #---------------------------------------------------------------------------
340
341 STAY_ON_TOP = _windows_.STAY_ON_TOP
342 ICONIZE = _windows_.ICONIZE
343 MINIMIZE = _windows_.MINIMIZE
344 MAXIMIZE = _windows_.MAXIMIZE
345 CLOSE_BOX = _windows_.CLOSE_BOX
346 THICK_FRAME = _windows_.THICK_FRAME
347 SYSTEM_MENU = _windows_.SYSTEM_MENU
348 MINIMIZE_BOX = _windows_.MINIMIZE_BOX
349 MAXIMIZE_BOX = _windows_.MAXIMIZE_BOX
350 TINY_CAPTION_HORIZ = _windows_.TINY_CAPTION_HORIZ
351 TINY_CAPTION_VERT = _windows_.TINY_CAPTION_VERT
352 RESIZE_BOX = _windows_.RESIZE_BOX
353 RESIZE_BORDER = _windows_.RESIZE_BORDER
354 DIALOG_NO_PARENT = _windows_.DIALOG_NO_PARENT
355 DEFAULT_FRAME_STYLE = _windows_.DEFAULT_FRAME_STYLE
356 DEFAULT_DIALOG_STYLE = _windows_.DEFAULT_DIALOG_STYLE
357 FRAME_TOOL_WINDOW = _windows_.FRAME_TOOL_WINDOW
358 FRAME_FLOAT_ON_PARENT = _windows_.FRAME_FLOAT_ON_PARENT
359 FRAME_NO_WINDOW_MENU = _windows_.FRAME_NO_WINDOW_MENU
360 FRAME_NO_TASKBAR = _windows_.FRAME_NO_TASKBAR
361 FRAME_SHAPED = _windows_.FRAME_SHAPED
362 FRAME_DRAWER = _windows_.FRAME_DRAWER
363 FRAME_EX_METAL = _windows_.FRAME_EX_METAL
364 DIALOG_EX_METAL = _windows_.DIALOG_EX_METAL
365 DIALOG_MODAL = _windows_.DIALOG_MODAL
366 DIALOG_MODELESS = _windows_.DIALOG_MODELESS
367 USER_COLOURS = _windows_.USER_COLOURS
368 NO_3D = _windows_.NO_3D
369 FULLSCREEN_NOMENUBAR = _windows_.FULLSCREEN_NOMENUBAR
370 FULLSCREEN_NOTOOLBAR = _windows_.FULLSCREEN_NOTOOLBAR
371 FULLSCREEN_NOSTATUSBAR = _windows_.FULLSCREEN_NOSTATUSBAR
372 FULLSCREEN_NOBORDER = _windows_.FULLSCREEN_NOBORDER
373 FULLSCREEN_NOCAPTION = _windows_.FULLSCREEN_NOCAPTION
374 FULLSCREEN_ALL = _windows_.FULLSCREEN_ALL
375 TOPLEVEL_EX_DIALOG = _windows_.TOPLEVEL_EX_DIALOG
376 USER_ATTENTION_INFO = _windows_.USER_ATTENTION_INFO
377 USER_ATTENTION_ERROR = _windows_.USER_ATTENTION_ERROR
378 class TopLevelWindow(_core.Window):
379 """Proxy of C++ TopLevelWindow class"""
380 def __init__(self): raise RuntimeError, "No constructor defined"
381 def __repr__(self):
382 return "<%s.%s; proxy of C++ wxTopLevelWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
383 def Maximize(*args, **kwargs):
384 """Maximize(self, bool maximize=True)"""
385 return _windows_.TopLevelWindow_Maximize(*args, **kwargs)
386
387 def Restore(*args, **kwargs):
388 """Restore(self)"""
389 return _windows_.TopLevelWindow_Restore(*args, **kwargs)
390
391 def Iconize(*args, **kwargs):
392 """Iconize(self, bool iconize=True)"""
393 return _windows_.TopLevelWindow_Iconize(*args, **kwargs)
394
395 def IsMaximized(*args, **kwargs):
396 """IsMaximized(self) -> bool"""
397 return _windows_.TopLevelWindow_IsMaximized(*args, **kwargs)
398
399 def IsIconized(*args, **kwargs):
400 """IsIconized(self) -> bool"""
401 return _windows_.TopLevelWindow_IsIconized(*args, **kwargs)
402
403 def GetIcon(*args, **kwargs):
404 """GetIcon(self) -> Icon"""
405 return _windows_.TopLevelWindow_GetIcon(*args, **kwargs)
406
407 def SetIcon(*args, **kwargs):
408 """SetIcon(self, Icon icon)"""
409 return _windows_.TopLevelWindow_SetIcon(*args, **kwargs)
410
411 def SetIcons(*args, **kwargs):
412 """SetIcons(self, wxIconBundle icons)"""
413 return _windows_.TopLevelWindow_SetIcons(*args, **kwargs)
414
415 def ShowFullScreen(*args, **kwargs):
416 """ShowFullScreen(self, bool show, long style=FULLSCREEN_ALL) -> bool"""
417 return _windows_.TopLevelWindow_ShowFullScreen(*args, **kwargs)
418
419 def IsFullScreen(*args, **kwargs):
420 """IsFullScreen(self) -> bool"""
421 return _windows_.TopLevelWindow_IsFullScreen(*args, **kwargs)
422
423 def SetTitle(*args, **kwargs):
424 """
425 SetTitle(self, String title)
426
427 Sets the window's title. Applicable only to frames and dialogs.
428 """
429 return _windows_.TopLevelWindow_SetTitle(*args, **kwargs)
430
431 def GetTitle(*args, **kwargs):
432 """
433 GetTitle(self) -> String
434
435 Gets the window's title. Applicable only to frames and dialogs.
436 """
437 return _windows_.TopLevelWindow_GetTitle(*args, **kwargs)
438
439 def SetShape(*args, **kwargs):
440 """SetShape(self, Region region) -> bool"""
441 return _windows_.TopLevelWindow_SetShape(*args, **kwargs)
442
443 def RequestUserAttention(*args, **kwargs):
444 """RequestUserAttention(self, int flags=USER_ATTENTION_INFO)"""
445 return _windows_.TopLevelWindow_RequestUserAttention(*args, **kwargs)
446
447 def IsActive(*args, **kwargs):
448 """IsActive(self) -> bool"""
449 return _windows_.TopLevelWindow_IsActive(*args, **kwargs)
450
451 def MacSetMetalAppearance(*args, **kwargs):
452 """MacSetMetalAppearance(self, bool on)"""
453 return _windows_.TopLevelWindow_MacSetMetalAppearance(*args, **kwargs)
454
455 def MacGetMetalAppearance(*args, **kwargs):
456 """MacGetMetalAppearance(self) -> bool"""
457 return _windows_.TopLevelWindow_MacGetMetalAppearance(*args, **kwargs)
458
459
460 class TopLevelWindowPtr(TopLevelWindow):
461 def __init__(self, this):
462 self.this = this
463 if not hasattr(self,"thisown"): self.thisown = 0
464 self.__class__ = TopLevelWindow
465 _windows_.TopLevelWindow_swigregister(TopLevelWindowPtr)
466 cvar = _windows_.cvar
467 FrameNameStr = cvar.FrameNameStr
468 DialogNameStr = cvar.DialogNameStr
469 StatusLineNameStr = cvar.StatusLineNameStr
470 ToolBarNameStr = cvar.ToolBarNameStr
471
472 #---------------------------------------------------------------------------
473
474 class Frame(TopLevelWindow):
475 """Proxy of C++ Frame class"""
476 def __repr__(self):
477 return "<%s.%s; proxy of C++ wxFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
478 def __init__(self, *args, **kwargs):
479 """
480 __init__(self, Window parent, int id=-1, String title=EmptyString,
481 Point pos=DefaultPosition, Size size=DefaultSize,
482 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> Frame
483 """
484 newobj = _windows_.new_Frame(*args, **kwargs)
485 self.this = newobj.this
486 self.thisown = 1
487 del newobj.thisown
488 self._setOORInfo(self)
489
490 def Create(*args, **kwargs):
491 """
492 Create(self, Window parent, int id=-1, String title=EmptyString,
493 Point pos=DefaultPosition, Size size=DefaultSize,
494 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
495 """
496 return _windows_.Frame_Create(*args, **kwargs)
497
498 def GetClientAreaOrigin(*args, **kwargs):
499 """
500 GetClientAreaOrigin(self) -> Point
501
502 Get the origin of the client area of the window relative to the
503 window's top left corner (the client area may be shifted because of
504 the borders, scrollbars, other decorations...)
505 """
506 return _windows_.Frame_GetClientAreaOrigin(*args, **kwargs)
507
508 def SendSizeEvent(*args, **kwargs):
509 """SendSizeEvent(self)"""
510 return _windows_.Frame_SendSizeEvent(*args, **kwargs)
511
512 def SetMenuBar(*args, **kwargs):
513 """SetMenuBar(self, MenuBar menubar)"""
514 return _windows_.Frame_SetMenuBar(*args, **kwargs)
515
516 def GetMenuBar(*args, **kwargs):
517 """GetMenuBar(self) -> MenuBar"""
518 return _windows_.Frame_GetMenuBar(*args, **kwargs)
519
520 def ProcessCommand(*args, **kwargs):
521 """ProcessCommand(self, int winid) -> bool"""
522 return _windows_.Frame_ProcessCommand(*args, **kwargs)
523
524 Command = ProcessCommand
525 def CreateStatusBar(*args, **kwargs):
526 """
527 CreateStatusBar(self, int number=1, long style=DEFAULT_STATUSBAR_STYLE, int winid=0,
528 String name=StatusLineNameStr) -> StatusBar
529 """
530 return _windows_.Frame_CreateStatusBar(*args, **kwargs)
531
532 def GetStatusBar(*args, **kwargs):
533 """GetStatusBar(self) -> StatusBar"""
534 return _windows_.Frame_GetStatusBar(*args, **kwargs)
535
536 def SetStatusBar(*args, **kwargs):
537 """SetStatusBar(self, StatusBar statBar)"""
538 return _windows_.Frame_SetStatusBar(*args, **kwargs)
539
540 def SetStatusText(*args, **kwargs):
541 """SetStatusText(self, String text, int number=0)"""
542 return _windows_.Frame_SetStatusText(*args, **kwargs)
543
544 def SetStatusWidths(*args, **kwargs):
545 """SetStatusWidths(self, int widths)"""
546 return _windows_.Frame_SetStatusWidths(*args, **kwargs)
547
548 def PushStatusText(*args, **kwargs):
549 """PushStatusText(self, String text, int number=0)"""
550 return _windows_.Frame_PushStatusText(*args, **kwargs)
551
552 def PopStatusText(*args, **kwargs):
553 """PopStatusText(self, int number=0)"""
554 return _windows_.Frame_PopStatusText(*args, **kwargs)
555
556 def SetStatusBarPane(*args, **kwargs):
557 """SetStatusBarPane(self, int n)"""
558 return _windows_.Frame_SetStatusBarPane(*args, **kwargs)
559
560 def GetStatusBarPane(*args, **kwargs):
561 """GetStatusBarPane(self) -> int"""
562 return _windows_.Frame_GetStatusBarPane(*args, **kwargs)
563
564 def CreateToolBar(*args, **kwargs):
565 """CreateToolBar(self, long style=-1, int winid=-1, String name=ToolBarNameStr) -> wxToolBar"""
566 return _windows_.Frame_CreateToolBar(*args, **kwargs)
567
568 def GetToolBar(*args, **kwargs):
569 """GetToolBar(self) -> wxToolBar"""
570 return _windows_.Frame_GetToolBar(*args, **kwargs)
571
572 def SetToolBar(*args, **kwargs):
573 """SetToolBar(self, wxToolBar toolbar)"""
574 return _windows_.Frame_SetToolBar(*args, **kwargs)
575
576 def DoGiveHelp(*args, **kwargs):
577 """DoGiveHelp(self, String text, bool show)"""
578 return _windows_.Frame_DoGiveHelp(*args, **kwargs)
579
580 def DoMenuUpdates(*args, **kwargs):
581 """DoMenuUpdates(self, Menu menu=None)"""
582 return _windows_.Frame_DoMenuUpdates(*args, **kwargs)
583
584 def GetClassDefaultAttributes(*args, **kwargs):
585 """
586 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
587
588 Get the default attributes for this class. This is useful if you want
589 to use the same font or colour in your own control as in a standard
590 control -- which is a much better idea than hard coding specific
591 colours or fonts which might look completely out of place on the
592 user's system, especially if it uses themes.
593
594 The variant parameter is only relevant under Mac currently and is
595 ignore under other platforms. Under Mac, it will change the size of
596 the returned font. See `wx.Window.SetWindowVariant` for more about
597 this.
598 """
599 return _windows_.Frame_GetClassDefaultAttributes(*args, **kwargs)
600
601 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
602
603 class FramePtr(Frame):
604 def __init__(self, this):
605 self.this = this
606 if not hasattr(self,"thisown"): self.thisown = 0
607 self.__class__ = Frame
608 _windows_.Frame_swigregister(FramePtr)
609
610 def PreFrame(*args, **kwargs):
611 """PreFrame() -> Frame"""
612 val = _windows_.new_PreFrame(*args, **kwargs)
613 val.thisown = 1
614 return val
615
616 def Frame_GetClassDefaultAttributes(*args, **kwargs):
617 """
618 Frame_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
619
620 Get the default attributes for this class. This is useful if you want
621 to use the same font or colour in your own control as in a standard
622 control -- which is a much better idea than hard coding specific
623 colours or fonts which might look completely out of place on the
624 user's system, especially if it uses themes.
625
626 The variant parameter is only relevant under Mac currently and is
627 ignore under other platforms. Under Mac, it will change the size of
628 the returned font. See `wx.Window.SetWindowVariant` for more about
629 this.
630 """
631 return _windows_.Frame_GetClassDefaultAttributes(*args, **kwargs)
632
633 #---------------------------------------------------------------------------
634
635 class Dialog(TopLevelWindow):
636 """Proxy of C++ Dialog class"""
637 def __repr__(self):
638 return "<%s.%s; proxy of C++ wxDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
639 def __init__(self, *args, **kwargs):
640 """
641 __init__(self, Window parent, int id=-1, String title=EmptyString,
642 Point pos=DefaultPosition, Size size=DefaultSize,
643 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> Dialog
644 """
645 newobj = _windows_.new_Dialog(*args, **kwargs)
646 self.this = newobj.this
647 self.thisown = 1
648 del newobj.thisown
649 self._setOORInfo(self)
650
651 def Create(*args, **kwargs):
652 """
653 Create(self, Window parent, int id=-1, String title=EmptyString,
654 Point pos=DefaultPosition, Size size=DefaultSize,
655 long style=DEFAULT_DIALOG_STYLE, String name=DialogNameStr) -> bool
656 """
657 return _windows_.Dialog_Create(*args, **kwargs)
658
659 def SetReturnCode(*args, **kwargs):
660 """SetReturnCode(self, int returnCode)"""
661 return _windows_.Dialog_SetReturnCode(*args, **kwargs)
662
663 def GetReturnCode(*args, **kwargs):
664 """GetReturnCode(self) -> int"""
665 return _windows_.Dialog_GetReturnCode(*args, **kwargs)
666
667 def CreateTextSizer(*args, **kwargs):
668 """CreateTextSizer(self, String message) -> Sizer"""
669 return _windows_.Dialog_CreateTextSizer(*args, **kwargs)
670
671 def CreateButtonSizer(*args, **kwargs):
672 """CreateButtonSizer(self, long flags) -> Sizer"""
673 return _windows_.Dialog_CreateButtonSizer(*args, **kwargs)
674
675 def CreateStdDialogButtonSizer(*args, **kwargs):
676 """CreateStdDialogButtonSizer(self, long flags) -> StdDialogButtonSizer"""
677 return _windows_.Dialog_CreateStdDialogButtonSizer(*args, **kwargs)
678
679 def IsModal(*args, **kwargs):
680 """IsModal(self) -> bool"""
681 return _windows_.Dialog_IsModal(*args, **kwargs)
682
683 def ShowModal(*args, **kwargs):
684 """ShowModal(self) -> int"""
685 return _windows_.Dialog_ShowModal(*args, **kwargs)
686
687 def EndModal(*args, **kwargs):
688 """EndModal(self, int retCode)"""
689 return _windows_.Dialog_EndModal(*args, **kwargs)
690
691 def GetClassDefaultAttributes(*args, **kwargs):
692 """
693 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
694
695 Get the default attributes for this class. This is useful if you want
696 to use the same font or colour in your own control as in a standard
697 control -- which is a much better idea than hard coding specific
698 colours or fonts which might look completely out of place on the
699 user's system, especially if it uses themes.
700
701 The variant parameter is only relevant under Mac currently and is
702 ignore under other platforms. Under Mac, it will change the size of
703 the returned font. See `wx.Window.SetWindowVariant` for more about
704 this.
705 """
706 return _windows_.Dialog_GetClassDefaultAttributes(*args, **kwargs)
707
708 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
709 def SendSizeEvent(self):
710 self.ProcessEvent(wx.SizeEvent((-1,-1)))
711
712
713 class DialogPtr(Dialog):
714 def __init__(self, this):
715 self.this = this
716 if not hasattr(self,"thisown"): self.thisown = 0
717 self.__class__ = Dialog
718 _windows_.Dialog_swigregister(DialogPtr)
719
720 def PreDialog(*args, **kwargs):
721 """PreDialog() -> Dialog"""
722 val = _windows_.new_PreDialog(*args, **kwargs)
723 val.thisown = 1
724 return val
725
726 def Dialog_GetClassDefaultAttributes(*args, **kwargs):
727 """
728 Dialog_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
729
730 Get the default attributes for this class. This is useful if you want
731 to use the same font or colour in your own control as in a standard
732 control -- which is a much better idea than hard coding specific
733 colours or fonts which might look completely out of place on the
734 user's system, especially if it uses themes.
735
736 The variant parameter is only relevant under Mac currently and is
737 ignore under other platforms. Under Mac, it will change the size of
738 the returned font. See `wx.Window.SetWindowVariant` for more about
739 this.
740 """
741 return _windows_.Dialog_GetClassDefaultAttributes(*args, **kwargs)
742
743 #---------------------------------------------------------------------------
744
745 class MiniFrame(Frame):
746 """Proxy of C++ MiniFrame class"""
747 def __repr__(self):
748 return "<%s.%s; proxy of C++ wxMiniFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
749 def __init__(self, *args, **kwargs):
750 """
751 __init__(self, Window parent, int id=-1, String title=EmptyString,
752 Point pos=DefaultPosition, Size size=DefaultSize,
753 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> MiniFrame
754 """
755 newobj = _windows_.new_MiniFrame(*args, **kwargs)
756 self.this = newobj.this
757 self.thisown = 1
758 del newobj.thisown
759 self._setOORInfo(self)
760
761 def Create(*args, **kwargs):
762 """
763 Create(self, Window parent, int id=-1, String title=EmptyString,
764 Point pos=DefaultPosition, Size size=DefaultSize,
765 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> bool
766 """
767 return _windows_.MiniFrame_Create(*args, **kwargs)
768
769
770 class MiniFramePtr(MiniFrame):
771 def __init__(self, this):
772 self.this = this
773 if not hasattr(self,"thisown"): self.thisown = 0
774 self.__class__ = MiniFrame
775 _windows_.MiniFrame_swigregister(MiniFramePtr)
776
777 def PreMiniFrame(*args, **kwargs):
778 """PreMiniFrame() -> MiniFrame"""
779 val = _windows_.new_PreMiniFrame(*args, **kwargs)
780 val.thisown = 1
781 return val
782
783 #---------------------------------------------------------------------------
784
785 SPLASH_CENTRE_ON_PARENT = _windows_.SPLASH_CENTRE_ON_PARENT
786 SPLASH_CENTRE_ON_SCREEN = _windows_.SPLASH_CENTRE_ON_SCREEN
787 SPLASH_NO_CENTRE = _windows_.SPLASH_NO_CENTRE
788 SPLASH_TIMEOUT = _windows_.SPLASH_TIMEOUT
789 SPLASH_NO_TIMEOUT = _windows_.SPLASH_NO_TIMEOUT
790 class SplashScreenWindow(_core.Window):
791 """Proxy of C++ SplashScreenWindow class"""
792 def __repr__(self):
793 return "<%s.%s; proxy of C++ wxSplashScreenWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
794 def __init__(self, *args, **kwargs):
795 """
796 __init__(self, Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
797 Size size=DefaultSize, long style=NO_BORDER) -> SplashScreenWindow
798 """
799 newobj = _windows_.new_SplashScreenWindow(*args, **kwargs)
800 self.this = newobj.this
801 self.thisown = 1
802 del newobj.thisown
803 self._setOORInfo(self)
804
805 def SetBitmap(*args, **kwargs):
806 """SetBitmap(self, Bitmap bitmap)"""
807 return _windows_.SplashScreenWindow_SetBitmap(*args, **kwargs)
808
809 def GetBitmap(*args, **kwargs):
810 """GetBitmap(self) -> Bitmap"""
811 return _windows_.SplashScreenWindow_GetBitmap(*args, **kwargs)
812
813
814 class SplashScreenWindowPtr(SplashScreenWindow):
815 def __init__(self, this):
816 self.this = this
817 if not hasattr(self,"thisown"): self.thisown = 0
818 self.__class__ = SplashScreenWindow
819 _windows_.SplashScreenWindow_swigregister(SplashScreenWindowPtr)
820
821 class SplashScreen(Frame):
822 """Proxy of C++ SplashScreen class"""
823 def __repr__(self):
824 return "<%s.%s; proxy of C++ wxSplashScreen instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
825 def __init__(self, *args, **kwargs):
826 """
827 __init__(self, Bitmap bitmap, long splashStyle, int milliseconds,
828 Window parent, int id=-1, Point pos=DefaultPosition,
829 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -> SplashScreen
830 """
831 newobj = _windows_.new_SplashScreen(*args, **kwargs)
832 self.this = newobj.this
833 self.thisown = 1
834 del newobj.thisown
835 self._setOORInfo(self)
836
837 def GetSplashStyle(*args, **kwargs):
838 """GetSplashStyle(self) -> long"""
839 return _windows_.SplashScreen_GetSplashStyle(*args, **kwargs)
840
841 def GetSplashWindow(*args, **kwargs):
842 """GetSplashWindow(self) -> SplashScreenWindow"""
843 return _windows_.SplashScreen_GetSplashWindow(*args, **kwargs)
844
845 def GetTimeout(*args, **kwargs):
846 """GetTimeout(self) -> int"""
847 return _windows_.SplashScreen_GetTimeout(*args, **kwargs)
848
849
850 class SplashScreenPtr(SplashScreen):
851 def __init__(self, this):
852 self.this = this
853 if not hasattr(self,"thisown"): self.thisown = 0
854 self.__class__ = SplashScreen
855 _windows_.SplashScreen_swigregister(SplashScreenPtr)
856
857 #---------------------------------------------------------------------------
858
859 SB_NORMAL = _windows_.SB_NORMAL
860 SB_FLAT = _windows_.SB_FLAT
861 SB_RAISED = _windows_.SB_RAISED
862 class StatusBar(_core.Window):
863 """Proxy of C++ StatusBar class"""
864 def __repr__(self):
865 return "<%s.%s; proxy of C++ wxStatusBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
866 def __init__(self, *args, **kwargs):
867 """
868 __init__(self, Window parent, int id=-1, long style=DEFAULT_STATUSBAR_STYLE,
869 String name=StatusLineNameStr) -> StatusBar
870 """
871 newobj = _windows_.new_StatusBar(*args, **kwargs)
872 self.this = newobj.this
873 self.thisown = 1
874 del newobj.thisown
875 self._setOORInfo(self)
876
877 def Create(*args, **kwargs):
878 """Create(self, Window parent, int id=-1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -> bool"""
879 return _windows_.StatusBar_Create(*args, **kwargs)
880
881 def SetFieldsCount(*args, **kwargs):
882 """SetFieldsCount(self, int number=1)"""
883 return _windows_.StatusBar_SetFieldsCount(*args, **kwargs)
884
885 def GetFieldsCount(*args, **kwargs):
886 """GetFieldsCount(self) -> int"""
887 return _windows_.StatusBar_GetFieldsCount(*args, **kwargs)
888
889 def SetStatusText(*args, **kwargs):
890 """SetStatusText(self, String text, int number=0)"""
891 return _windows_.StatusBar_SetStatusText(*args, **kwargs)
892
893 def GetStatusText(*args, **kwargs):
894 """GetStatusText(self, int number=0) -> String"""
895 return _windows_.StatusBar_GetStatusText(*args, **kwargs)
896
897 def PushStatusText(*args, **kwargs):
898 """PushStatusText(self, String text, int number=0)"""
899 return _windows_.StatusBar_PushStatusText(*args, **kwargs)
900
901 def PopStatusText(*args, **kwargs):
902 """PopStatusText(self, int number=0)"""
903 return _windows_.StatusBar_PopStatusText(*args, **kwargs)
904
905 def SetStatusWidths(*args, **kwargs):
906 """SetStatusWidths(self, int widths)"""
907 return _windows_.StatusBar_SetStatusWidths(*args, **kwargs)
908
909 def SetStatusStyles(*args, **kwargs):
910 """SetStatusStyles(self, int styles)"""
911 return _windows_.StatusBar_SetStatusStyles(*args, **kwargs)
912
913 def GetFieldRect(*args, **kwargs):
914 """GetFieldRect(self, int i) -> Rect"""
915 return _windows_.StatusBar_GetFieldRect(*args, **kwargs)
916
917 def SetMinHeight(*args, **kwargs):
918 """SetMinHeight(self, int height)"""
919 return _windows_.StatusBar_SetMinHeight(*args, **kwargs)
920
921 def GetBorderX(*args, **kwargs):
922 """GetBorderX(self) -> int"""
923 return _windows_.StatusBar_GetBorderX(*args, **kwargs)
924
925 def GetBorderY(*args, **kwargs):
926 """GetBorderY(self) -> int"""
927 return _windows_.StatusBar_GetBorderY(*args, **kwargs)
928
929 def GetClassDefaultAttributes(*args, **kwargs):
930 """
931 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
932
933 Get the default attributes for this class. This is useful if you want
934 to use the same font or colour in your own control as in a standard
935 control -- which is a much better idea than hard coding specific
936 colours or fonts which might look completely out of place on the
937 user's system, especially if it uses themes.
938
939 The variant parameter is only relevant under Mac currently and is
940 ignore under other platforms. Under Mac, it will change the size of
941 the returned font. See `wx.Window.SetWindowVariant` for more about
942 this.
943 """
944 return _windows_.StatusBar_GetClassDefaultAttributes(*args, **kwargs)
945
946 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
947
948 class StatusBarPtr(StatusBar):
949 def __init__(self, this):
950 self.this = this
951 if not hasattr(self,"thisown"): self.thisown = 0
952 self.__class__ = StatusBar
953 _windows_.StatusBar_swigregister(StatusBarPtr)
954
955 def PreStatusBar(*args, **kwargs):
956 """PreStatusBar() -> StatusBar"""
957 val = _windows_.new_PreStatusBar(*args, **kwargs)
958 val.thisown = 1
959 return val
960
961 def StatusBar_GetClassDefaultAttributes(*args, **kwargs):
962 """
963 StatusBar_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
964
965 Get the default attributes for this class. This is useful if you want
966 to use the same font or colour in your own control as in a standard
967 control -- which is a much better idea than hard coding specific
968 colours or fonts which might look completely out of place on the
969 user's system, especially if it uses themes.
970
971 The variant parameter is only relevant under Mac currently and is
972 ignore under other platforms. Under Mac, it will change the size of
973 the returned font. See `wx.Window.SetWindowVariant` for more about
974 this.
975 """
976 return _windows_.StatusBar_GetClassDefaultAttributes(*args, **kwargs)
977
978 #---------------------------------------------------------------------------
979
980 SP_NOBORDER = _windows_.SP_NOBORDER
981 SP_NOSASH = _windows_.SP_NOSASH
982 SP_PERMIT_UNSPLIT = _windows_.SP_PERMIT_UNSPLIT
983 SP_LIVE_UPDATE = _windows_.SP_LIVE_UPDATE
984 SP_3DSASH = _windows_.SP_3DSASH
985 SP_3DBORDER = _windows_.SP_3DBORDER
986 SP_NO_XP_THEME = _windows_.SP_NO_XP_THEME
987 SP_BORDER = _windows_.SP_BORDER
988 SP_3D = _windows_.SP_3D
989 SPLIT_HORIZONTAL = _windows_.SPLIT_HORIZONTAL
990 SPLIT_VERTICAL = _windows_.SPLIT_VERTICAL
991 SPLIT_DRAG_NONE = _windows_.SPLIT_DRAG_NONE
992 SPLIT_DRAG_DRAGGING = _windows_.SPLIT_DRAG_DRAGGING
993 SPLIT_DRAG_LEFT_DOWN = _windows_.SPLIT_DRAG_LEFT_DOWN
994 class SplitterWindow(_core.Window):
995 """
996 wx.SplitterWindow manages up to two subwindows or panes, with an
997 optional vertical or horizontal split which can be used with the mouse
998 or programmatically.
999 """
1000 def __repr__(self):
1001 return "<%s.%s; proxy of C++ wxSplitterWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1002 def __init__(self, *args, **kwargs):
1003 """
1004 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1005 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> SplitterWindow
1006
1007 Constructor. Creates and shows a SplitterWindow.
1008 """
1009 if kwargs.has_key('point'): kwargs['pos'] = kwargs['point'];del kwargs['point']
1010 newobj = _windows_.new_SplitterWindow(*args, **kwargs)
1011 self.this = newobj.this
1012 self.thisown = 1
1013 del newobj.thisown
1014 self._setOORInfo(self)
1015
1016 def Create(*args, **kwargs):
1017 """
1018 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1019 Size size=DefaultSize, long style=SP_3D, String name=SplitterNameStr) -> bool
1020
1021 Create the GUI part of the SplitterWindow for the 2-phase create.
1022 """
1023 return _windows_.SplitterWindow_Create(*args, **kwargs)
1024
1025 def GetWindow1(*args, **kwargs):
1026 """
1027 GetWindow1(self) -> Window
1028
1029 Gets the only or left/top pane.
1030 """
1031 return _windows_.SplitterWindow_GetWindow1(*args, **kwargs)
1032
1033 def GetWindow2(*args, **kwargs):
1034 """
1035 GetWindow2(self) -> Window
1036
1037 Gets the right/bottom pane.
1038 """
1039 return _windows_.SplitterWindow_GetWindow2(*args, **kwargs)
1040
1041 def SetSplitMode(*args, **kwargs):
1042 """
1043 SetSplitMode(self, int mode)
1044
1045 Sets the split mode. The mode can be wx.SPLIT_VERTICAL or
1046 wx.SPLIT_HORIZONTAL. This only sets the internal variable; does not
1047 update the display.
1048 """
1049 return _windows_.SplitterWindow_SetSplitMode(*args, **kwargs)
1050
1051 def GetSplitMode(*args, **kwargs):
1052 """
1053 GetSplitMode(self) -> int
1054
1055 Gets the split mode
1056 """
1057 return _windows_.SplitterWindow_GetSplitMode(*args, **kwargs)
1058
1059 def Initialize(*args, **kwargs):
1060 """
1061 Initialize(self, Window window)
1062
1063 Initializes the splitter window to have one pane. This should be
1064 called if you wish to initially view only a single pane in the
1065 splitter window. The child window is shown if it is currently hidden.
1066 """
1067 return _windows_.SplitterWindow_Initialize(*args, **kwargs)
1068
1069 def SplitVertically(*args, **kwargs):
1070 """
1071 SplitVertically(self, Window window1, Window window2, int sashPosition=0) -> bool
1072
1073 Initializes the left and right panes of the splitter window. The
1074 child windows are shown if they are currently hidden.
1075 """
1076 return _windows_.SplitterWindow_SplitVertically(*args, **kwargs)
1077
1078 def SplitHorizontally(*args, **kwargs):
1079 """
1080 SplitHorizontally(self, Window window1, Window window2, int sashPosition=0) -> bool
1081
1082 Initializes the top and bottom panes of the splitter window. The
1083 child windows are shown if they are currently hidden.
1084 """
1085 return _windows_.SplitterWindow_SplitHorizontally(*args, **kwargs)
1086
1087 def Unsplit(*args, **kwargs):
1088 """
1089 Unsplit(self, Window toRemove=None) -> bool
1090
1091 Unsplits the window. Pass the pane to remove, or None to remove the
1092 right or bottom pane. Returns True if successful, False otherwise (the
1093 window was not split).
1094
1095 This function will not actually delete the pane being
1096 removed; it sends EVT_SPLITTER_UNSPLIT which can be handled
1097 for the desired behaviour. By default, the pane being
1098 removed is only hidden.
1099 """
1100 return _windows_.SplitterWindow_Unsplit(*args, **kwargs)
1101
1102 def ReplaceWindow(*args, **kwargs):
1103 """
1104 ReplaceWindow(self, Window winOld, Window winNew) -> bool
1105
1106 This function replaces one of the windows managed by the
1107 SplitterWindow with another one. It is in general better to use it
1108 instead of calling Unsplit() and then resplitting the window back
1109 because it will provoke much less flicker. It is valid to call this
1110 function whether the splitter has two windows or only one.
1111
1112 Both parameters should be non-None and winOld must specify one of the
1113 windows managed by the splitter. If the parameters are incorrect or
1114 the window couldn't be replaced, False is returned. Otherwise the
1115 function will return True, but please notice that it will not Destroy
1116 the replaced window and you may wish to do it yourself.
1117 """
1118 return _windows_.SplitterWindow_ReplaceWindow(*args, **kwargs)
1119
1120 def UpdateSize(*args, **kwargs):
1121 """
1122 UpdateSize(self)
1123
1124 Causes any pending sizing of the sash and child panes to take place
1125 immediately.
1126
1127 Such resizing normally takes place in idle time, in order to wait for
1128 layout to be completed. However, this can cause unacceptable flicker
1129 as the panes are resized after the window has been shown. To work
1130 around this, you can perform window layout (for example by sending a
1131 size event to the parent window), and then call this function, before
1132 showing the top-level window.
1133 """
1134 return _windows_.SplitterWindow_UpdateSize(*args, **kwargs)
1135
1136 def IsSplit(*args, **kwargs):
1137 """
1138 IsSplit(self) -> bool
1139
1140 Is the window split?
1141 """
1142 return _windows_.SplitterWindow_IsSplit(*args, **kwargs)
1143
1144 def SetSashSize(*args, **kwargs):
1145 """
1146 SetSashSize(self, int width)
1147
1148 Sets the sash size.
1149 """
1150 return _windows_.SplitterWindow_SetSashSize(*args, **kwargs)
1151
1152 def SetBorderSize(*args, **kwargs):
1153 """
1154 SetBorderSize(self, int width)
1155
1156 Sets the border size. Currently a NOP.
1157 """
1158 return _windows_.SplitterWindow_SetBorderSize(*args, **kwargs)
1159
1160 def GetSashSize(*args, **kwargs):
1161 """
1162 GetSashSize(self) -> int
1163
1164 Gets the sash size
1165 """
1166 return _windows_.SplitterWindow_GetSashSize(*args, **kwargs)
1167
1168 def GetBorderSize(*args, **kwargs):
1169 """
1170 GetBorderSize(self) -> int
1171
1172 Gets the border size
1173 """
1174 return _windows_.SplitterWindow_GetBorderSize(*args, **kwargs)
1175
1176 def SetSashPosition(*args, **kwargs):
1177 """
1178 SetSashPosition(self, int position, bool redraw=True)
1179
1180 Sets the sash position, in pixels. If redraw is Ttrue then the panes
1181 are resized and the sash and border are redrawn.
1182 """
1183 return _windows_.SplitterWindow_SetSashPosition(*args, **kwargs)
1184
1185 def GetSashPosition(*args, **kwargs):
1186 """
1187 GetSashPosition(self) -> int
1188
1189 Returns the surrent sash position.
1190 """
1191 return _windows_.SplitterWindow_GetSashPosition(*args, **kwargs)
1192
1193 def SetSashGravity(*args, **kwargs):
1194 """
1195 SetSashGravity(self, double gravity)
1196
1197 Set the sash gravity. Gravity is a floating-point factor between 0.0
1198 and 1.0 which controls position of sash while resizing the
1199 `wx.SplitterWindow`. The gravity specifies how much the left/top
1200 window will grow while resizing.
1201 """
1202 return _windows_.SplitterWindow_SetSashGravity(*args, **kwargs)
1203
1204 def GetSashGravity(*args, **kwargs):
1205 """
1206 GetSashGravity(self) -> double
1207
1208 Gets the sash gravity.
1209
1210 :see: `SetSashGravity`
1211
1212 """
1213 return _windows_.SplitterWindow_GetSashGravity(*args, **kwargs)
1214
1215 def SetMinimumPaneSize(*args, **kwargs):
1216 """
1217 SetMinimumPaneSize(self, int min)
1218
1219 Sets the minimum pane size in pixels.
1220
1221 The default minimum pane size is zero, which means that either pane
1222 can be reduced to zero by dragging the sash, thus removing one of the
1223 panes. To prevent this behaviour (and veto out-of-range sash
1224 dragging), set a minimum size, for example 20 pixels. If the
1225 wx.SP_PERMIT_UNSPLIT style is used when a splitter window is created,
1226 the window may be unsplit even if minimum size is non-zero.
1227 """
1228 return _windows_.SplitterWindow_SetMinimumPaneSize(*args, **kwargs)
1229
1230 def GetMinimumPaneSize(*args, **kwargs):
1231 """
1232 GetMinimumPaneSize(self) -> int
1233
1234 Gets the minimum pane size in pixels.
1235 """
1236 return _windows_.SplitterWindow_GetMinimumPaneSize(*args, **kwargs)
1237
1238 def SashHitTest(*args, **kwargs):
1239 """
1240 SashHitTest(self, int x, int y, int tolerance=5) -> bool
1241
1242 Tests for x, y over the sash
1243 """
1244 return _windows_.SplitterWindow_SashHitTest(*args, **kwargs)
1245
1246 def SizeWindows(*args, **kwargs):
1247 """
1248 SizeWindows(self)
1249
1250 Resizes subwindows
1251 """
1252 return _windows_.SplitterWindow_SizeWindows(*args, **kwargs)
1253
1254 def SetNeedUpdating(*args, **kwargs):
1255 """SetNeedUpdating(self, bool needUpdating)"""
1256 return _windows_.SplitterWindow_SetNeedUpdating(*args, **kwargs)
1257
1258 def GetNeedUpdating(*args, **kwargs):
1259 """GetNeedUpdating(self) -> bool"""
1260 return _windows_.SplitterWindow_GetNeedUpdating(*args, **kwargs)
1261
1262 def GetClassDefaultAttributes(*args, **kwargs):
1263 """
1264 GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1265
1266 Get the default attributes for this class. This is useful if you want
1267 to use the same font or colour in your own control as in a standard
1268 control -- which is a much better idea than hard coding specific
1269 colours or fonts which might look completely out of place on the
1270 user's system, especially if it uses themes.
1271
1272 The variant parameter is only relevant under Mac currently and is
1273 ignore under other platforms. Under Mac, it will change the size of
1274 the returned font. See `wx.Window.SetWindowVariant` for more about
1275 this.
1276 """
1277 return _windows_.SplitterWindow_GetClassDefaultAttributes(*args, **kwargs)
1278
1279 GetClassDefaultAttributes = staticmethod(GetClassDefaultAttributes)
1280
1281 class SplitterWindowPtr(SplitterWindow):
1282 def __init__(self, this):
1283 self.this = this
1284 if not hasattr(self,"thisown"): self.thisown = 0
1285 self.__class__ = SplitterWindow
1286 _windows_.SplitterWindow_swigregister(SplitterWindowPtr)
1287 SplitterNameStr = cvar.SplitterNameStr
1288
1289 def PreSplitterWindow(*args, **kwargs):
1290 """
1291 PreSplitterWindow() -> SplitterWindow
1292
1293 Precreate a SplitterWindow for 2-phase creation.
1294 """
1295 val = _windows_.new_PreSplitterWindow(*args, **kwargs)
1296 val.thisown = 1
1297 return val
1298
1299 def SplitterWindow_GetClassDefaultAttributes(*args, **kwargs):
1300 """
1301 SplitterWindow_GetClassDefaultAttributes(int variant=WINDOW_VARIANT_NORMAL) -> VisualAttributes
1302
1303 Get the default attributes for this class. This is useful if you want
1304 to use the same font or colour in your own control as in a standard
1305 control -- which is a much better idea than hard coding specific
1306 colours or fonts which might look completely out of place on the
1307 user's system, especially if it uses themes.
1308
1309 The variant parameter is only relevant under Mac currently and is
1310 ignore under other platforms. Under Mac, it will change the size of
1311 the returned font. See `wx.Window.SetWindowVariant` for more about
1312 this.
1313 """
1314 return _windows_.SplitterWindow_GetClassDefaultAttributes(*args, **kwargs)
1315
1316 class SplitterEvent(_core.NotifyEvent):
1317 """This class represents the events generated by a splitter control."""
1318 def __repr__(self):
1319 return "<%s.%s; proxy of C++ wxSplitterEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1320 def __init__(self, *args, **kwargs):
1321 """
1322 __init__(self, wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -> SplitterEvent
1323
1324 This class represents the events generated by a splitter control.
1325 """
1326 newobj = _windows_.new_SplitterEvent(*args, **kwargs)
1327 self.this = newobj.this
1328 self.thisown = 1
1329 del newobj.thisown
1330 def SetSashPosition(*args, **kwargs):
1331 """
1332 SetSashPosition(self, int pos)
1333
1334 This function is only meaningful during EVT_SPLITTER_SASH_POS_CHANGING
1335 and EVT_SPLITTER_SASH_POS_CHANGED events. In the case of _CHANGED
1336 events, sets the the new sash position. In the case of _CHANGING
1337 events, sets the new tracking bar position so visual feedback during
1338 dragging will represent that change that will actually take place. Set
1339 to -1 from the event handler code to prevent repositioning.
1340 """
1341 return _windows_.SplitterEvent_SetSashPosition(*args, **kwargs)
1342
1343 def GetSashPosition(*args, **kwargs):
1344 """
1345 GetSashPosition(self) -> int
1346
1347 Returns the new sash position while in EVT_SPLITTER_SASH_POS_CHANGING
1348 and EVT_SPLITTER_SASH_POS_CHANGED events.
1349 """
1350 return _windows_.SplitterEvent_GetSashPosition(*args, **kwargs)
1351
1352 def GetWindowBeingRemoved(*args, **kwargs):
1353 """
1354 GetWindowBeingRemoved(self) -> Window
1355
1356 Returns a pointer to the window being removed when a splitter window
1357 is unsplit.
1358 """
1359 return _windows_.SplitterEvent_GetWindowBeingRemoved(*args, **kwargs)
1360
1361 def GetX(*args, **kwargs):
1362 """
1363 GetX(self) -> int
1364
1365 Returns the x coordinate of the double-click point in a
1366 EVT_SPLITTER_DCLICK event.
1367 """
1368 return _windows_.SplitterEvent_GetX(*args, **kwargs)
1369
1370 def GetY(*args, **kwargs):
1371 """
1372 GetY(self) -> int
1373
1374 Returns the y coordinate of the double-click point in a
1375 EVT_SPLITTER_DCLICK event.
1376 """
1377 return _windows_.SplitterEvent_GetY(*args, **kwargs)
1378
1379
1380 class SplitterEventPtr(SplitterEvent):
1381 def __init__(self, this):
1382 self.this = this
1383 if not hasattr(self,"thisown"): self.thisown = 0
1384 self.__class__ = SplitterEvent
1385 _windows_.SplitterEvent_swigregister(SplitterEventPtr)
1386
1387 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
1388 wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING = _windows_.wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
1389 wxEVT_COMMAND_SPLITTER_DOUBLECLICKED = _windows_.wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
1390 wxEVT_COMMAND_SPLITTER_UNSPLIT = _windows_.wxEVT_COMMAND_SPLITTER_UNSPLIT
1391 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED, 1 )
1392 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING, 1 )
1393 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED, 1 )
1394 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT, 1 )
1395 EVT_SPLITTER_DCLICK = EVT_SPLITTER_DOUBLECLICKED
1396
1397 #---------------------------------------------------------------------------
1398
1399 SASH_DRAG_NONE = _windows_.SASH_DRAG_NONE
1400 SASH_DRAG_DRAGGING = _windows_.SASH_DRAG_DRAGGING
1401 SASH_DRAG_LEFT_DOWN = _windows_.SASH_DRAG_LEFT_DOWN
1402 SW_NOBORDER = _windows_.SW_NOBORDER
1403 SW_BORDER = _windows_.SW_BORDER
1404 SW_3DSASH = _windows_.SW_3DSASH
1405 SW_3DBORDER = _windows_.SW_3DBORDER
1406 SW_3D = _windows_.SW_3D
1407 SASH_TOP = _windows_.SASH_TOP
1408 SASH_RIGHT = _windows_.SASH_RIGHT
1409 SASH_BOTTOM = _windows_.SASH_BOTTOM
1410 SASH_LEFT = _windows_.SASH_LEFT
1411 SASH_NONE = _windows_.SASH_NONE
1412 class SashWindow(_core.Window):
1413 """Proxy of C++ SashWindow class"""
1414 def __repr__(self):
1415 return "<%s.%s; proxy of C++ wxSashWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1416 def __init__(self, *args, **kwargs):
1417 """
1418 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1419 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1420 String name=SashNameStr) -> SashWindow
1421 """
1422 newobj = _windows_.new_SashWindow(*args, **kwargs)
1423 self.this = newobj.this
1424 self.thisown = 1
1425 del newobj.thisown
1426 self._setOORInfo(self)
1427
1428 def Create(*args, **kwargs):
1429 """
1430 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1431 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1432 String name=SashNameStr) -> bool
1433 """
1434 return _windows_.SashWindow_Create(*args, **kwargs)
1435
1436 def SetSashVisible(*args, **kwargs):
1437 """SetSashVisible(self, int edge, bool sash)"""
1438 return _windows_.SashWindow_SetSashVisible(*args, **kwargs)
1439
1440 def GetSashVisible(*args, **kwargs):
1441 """GetSashVisible(self, int edge) -> bool"""
1442 return _windows_.SashWindow_GetSashVisible(*args, **kwargs)
1443
1444 def SetSashBorder(*args, **kwargs):
1445 """SetSashBorder(self, int edge, bool border)"""
1446 return _windows_.SashWindow_SetSashBorder(*args, **kwargs)
1447
1448 def HasBorder(*args, **kwargs):
1449 """HasBorder(self, int edge) -> bool"""
1450 return _windows_.SashWindow_HasBorder(*args, **kwargs)
1451
1452 def GetEdgeMargin(*args, **kwargs):
1453 """GetEdgeMargin(self, int edge) -> int"""
1454 return _windows_.SashWindow_GetEdgeMargin(*args, **kwargs)
1455
1456 def SetDefaultBorderSize(*args, **kwargs):
1457 """SetDefaultBorderSize(self, int width)"""
1458 return _windows_.SashWindow_SetDefaultBorderSize(*args, **kwargs)
1459
1460 def GetDefaultBorderSize(*args, **kwargs):
1461 """GetDefaultBorderSize(self) -> int"""
1462 return _windows_.SashWindow_GetDefaultBorderSize(*args, **kwargs)
1463
1464 def SetExtraBorderSize(*args, **kwargs):
1465 """SetExtraBorderSize(self, int width)"""
1466 return _windows_.SashWindow_SetExtraBorderSize(*args, **kwargs)
1467
1468 def GetExtraBorderSize(*args, **kwargs):
1469 """GetExtraBorderSize(self) -> int"""
1470 return _windows_.SashWindow_GetExtraBorderSize(*args, **kwargs)
1471
1472 def SetMinimumSizeX(*args, **kwargs):
1473 """SetMinimumSizeX(self, int min)"""
1474 return _windows_.SashWindow_SetMinimumSizeX(*args, **kwargs)
1475
1476 def SetMinimumSizeY(*args, **kwargs):
1477 """SetMinimumSizeY(self, int min)"""
1478 return _windows_.SashWindow_SetMinimumSizeY(*args, **kwargs)
1479
1480 def GetMinimumSizeX(*args, **kwargs):
1481 """GetMinimumSizeX(self) -> int"""
1482 return _windows_.SashWindow_GetMinimumSizeX(*args, **kwargs)
1483
1484 def GetMinimumSizeY(*args, **kwargs):
1485 """GetMinimumSizeY(self) -> int"""
1486 return _windows_.SashWindow_GetMinimumSizeY(*args, **kwargs)
1487
1488 def SetMaximumSizeX(*args, **kwargs):
1489 """SetMaximumSizeX(self, int max)"""
1490 return _windows_.SashWindow_SetMaximumSizeX(*args, **kwargs)
1491
1492 def SetMaximumSizeY(*args, **kwargs):
1493 """SetMaximumSizeY(self, int max)"""
1494 return _windows_.SashWindow_SetMaximumSizeY(*args, **kwargs)
1495
1496 def GetMaximumSizeX(*args, **kwargs):
1497 """GetMaximumSizeX(self) -> int"""
1498 return _windows_.SashWindow_GetMaximumSizeX(*args, **kwargs)
1499
1500 def GetMaximumSizeY(*args, **kwargs):
1501 """GetMaximumSizeY(self) -> int"""
1502 return _windows_.SashWindow_GetMaximumSizeY(*args, **kwargs)
1503
1504 def SashHitTest(*args, **kwargs):
1505 """SashHitTest(self, int x, int y, int tolerance=2) -> int"""
1506 return _windows_.SashWindow_SashHitTest(*args, **kwargs)
1507
1508 def SizeWindows(*args, **kwargs):
1509 """SizeWindows(self)"""
1510 return _windows_.SashWindow_SizeWindows(*args, **kwargs)
1511
1512
1513 class SashWindowPtr(SashWindow):
1514 def __init__(self, this):
1515 self.this = this
1516 if not hasattr(self,"thisown"): self.thisown = 0
1517 self.__class__ = SashWindow
1518 _windows_.SashWindow_swigregister(SashWindowPtr)
1519 SashNameStr = cvar.SashNameStr
1520 SashLayoutNameStr = cvar.SashLayoutNameStr
1521
1522 def PreSashWindow(*args, **kwargs):
1523 """PreSashWindow() -> SashWindow"""
1524 val = _windows_.new_PreSashWindow(*args, **kwargs)
1525 val.thisown = 1
1526 return val
1527
1528 SASH_STATUS_OK = _windows_.SASH_STATUS_OK
1529 SASH_STATUS_OUT_OF_RANGE = _windows_.SASH_STATUS_OUT_OF_RANGE
1530 class SashEvent(_core.CommandEvent):
1531 """Proxy of C++ SashEvent class"""
1532 def __repr__(self):
1533 return "<%s.%s; proxy of C++ wxSashEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1534 def __init__(self, *args, **kwargs):
1535 """__init__(self, int id=0, int edge=SASH_NONE) -> SashEvent"""
1536 newobj = _windows_.new_SashEvent(*args, **kwargs)
1537 self.this = newobj.this
1538 self.thisown = 1
1539 del newobj.thisown
1540 def SetEdge(*args, **kwargs):
1541 """SetEdge(self, int edge)"""
1542 return _windows_.SashEvent_SetEdge(*args, **kwargs)
1543
1544 def GetEdge(*args, **kwargs):
1545 """GetEdge(self) -> int"""
1546 return _windows_.SashEvent_GetEdge(*args, **kwargs)
1547
1548 def SetDragRect(*args, **kwargs):
1549 """SetDragRect(self, Rect rect)"""
1550 return _windows_.SashEvent_SetDragRect(*args, **kwargs)
1551
1552 def GetDragRect(*args, **kwargs):
1553 """GetDragRect(self) -> Rect"""
1554 return _windows_.SashEvent_GetDragRect(*args, **kwargs)
1555
1556 def SetDragStatus(*args, **kwargs):
1557 """SetDragStatus(self, int status)"""
1558 return _windows_.SashEvent_SetDragStatus(*args, **kwargs)
1559
1560 def GetDragStatus(*args, **kwargs):
1561 """GetDragStatus(self) -> int"""
1562 return _windows_.SashEvent_GetDragStatus(*args, **kwargs)
1563
1564
1565 class SashEventPtr(SashEvent):
1566 def __init__(self, this):
1567 self.this = this
1568 if not hasattr(self,"thisown"): self.thisown = 0
1569 self.__class__ = SashEvent
1570 _windows_.SashEvent_swigregister(SashEventPtr)
1571
1572 wxEVT_SASH_DRAGGED = _windows_.wxEVT_SASH_DRAGGED
1573 EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 1 )
1574 EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED, 2 )
1575
1576 #---------------------------------------------------------------------------
1577
1578 LAYOUT_HORIZONTAL = _windows_.LAYOUT_HORIZONTAL
1579 LAYOUT_VERTICAL = _windows_.LAYOUT_VERTICAL
1580 LAYOUT_NONE = _windows_.LAYOUT_NONE
1581 LAYOUT_TOP = _windows_.LAYOUT_TOP
1582 LAYOUT_LEFT = _windows_.LAYOUT_LEFT
1583 LAYOUT_RIGHT = _windows_.LAYOUT_RIGHT
1584 LAYOUT_BOTTOM = _windows_.LAYOUT_BOTTOM
1585 LAYOUT_LENGTH_Y = _windows_.LAYOUT_LENGTH_Y
1586 LAYOUT_LENGTH_X = _windows_.LAYOUT_LENGTH_X
1587 LAYOUT_MRU_LENGTH = _windows_.LAYOUT_MRU_LENGTH
1588 LAYOUT_QUERY = _windows_.LAYOUT_QUERY
1589 wxEVT_QUERY_LAYOUT_INFO = _windows_.wxEVT_QUERY_LAYOUT_INFO
1590 wxEVT_CALCULATE_LAYOUT = _windows_.wxEVT_CALCULATE_LAYOUT
1591 class QueryLayoutInfoEvent(_core.Event):
1592 """Proxy of C++ QueryLayoutInfoEvent class"""
1593 def __repr__(self):
1594 return "<%s.%s; proxy of C++ wxQueryLayoutInfoEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1595 def __init__(self, *args, **kwargs):
1596 """__init__(self, int id=0) -> QueryLayoutInfoEvent"""
1597 newobj = _windows_.new_QueryLayoutInfoEvent(*args, **kwargs)
1598 self.this = newobj.this
1599 self.thisown = 1
1600 del newobj.thisown
1601 def SetRequestedLength(*args, **kwargs):
1602 """SetRequestedLength(self, int length)"""
1603 return _windows_.QueryLayoutInfoEvent_SetRequestedLength(*args, **kwargs)
1604
1605 def GetRequestedLength(*args, **kwargs):
1606 """GetRequestedLength(self) -> int"""
1607 return _windows_.QueryLayoutInfoEvent_GetRequestedLength(*args, **kwargs)
1608
1609 def SetFlags(*args, **kwargs):
1610 """SetFlags(self, int flags)"""
1611 return _windows_.QueryLayoutInfoEvent_SetFlags(*args, **kwargs)
1612
1613 def GetFlags(*args, **kwargs):
1614 """GetFlags(self) -> int"""
1615 return _windows_.QueryLayoutInfoEvent_GetFlags(*args, **kwargs)
1616
1617 def SetSize(*args, **kwargs):
1618 """SetSize(self, Size size)"""
1619 return _windows_.QueryLayoutInfoEvent_SetSize(*args, **kwargs)
1620
1621 def GetSize(*args, **kwargs):
1622 """GetSize(self) -> Size"""
1623 return _windows_.QueryLayoutInfoEvent_GetSize(*args, **kwargs)
1624
1625 def SetOrientation(*args, **kwargs):
1626 """SetOrientation(self, int orient)"""
1627 return _windows_.QueryLayoutInfoEvent_SetOrientation(*args, **kwargs)
1628
1629 def GetOrientation(*args, **kwargs):
1630 """GetOrientation(self) -> int"""
1631 return _windows_.QueryLayoutInfoEvent_GetOrientation(*args, **kwargs)
1632
1633 def SetAlignment(*args, **kwargs):
1634 """SetAlignment(self, int align)"""
1635 return _windows_.QueryLayoutInfoEvent_SetAlignment(*args, **kwargs)
1636
1637 def GetAlignment(*args, **kwargs):
1638 """GetAlignment(self) -> int"""
1639 return _windows_.QueryLayoutInfoEvent_GetAlignment(*args, **kwargs)
1640
1641
1642 class QueryLayoutInfoEventPtr(QueryLayoutInfoEvent):
1643 def __init__(self, this):
1644 self.this = this
1645 if not hasattr(self,"thisown"): self.thisown = 0
1646 self.__class__ = QueryLayoutInfoEvent
1647 _windows_.QueryLayoutInfoEvent_swigregister(QueryLayoutInfoEventPtr)
1648
1649 class CalculateLayoutEvent(_core.Event):
1650 """Proxy of C++ CalculateLayoutEvent class"""
1651 def __repr__(self):
1652 return "<%s.%s; proxy of C++ wxCalculateLayoutEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1653 def __init__(self, *args, **kwargs):
1654 """__init__(self, int id=0) -> CalculateLayoutEvent"""
1655 newobj = _windows_.new_CalculateLayoutEvent(*args, **kwargs)
1656 self.this = newobj.this
1657 self.thisown = 1
1658 del newobj.thisown
1659 def SetFlags(*args, **kwargs):
1660 """SetFlags(self, int flags)"""
1661 return _windows_.CalculateLayoutEvent_SetFlags(*args, **kwargs)
1662
1663 def GetFlags(*args, **kwargs):
1664 """GetFlags(self) -> int"""
1665 return _windows_.CalculateLayoutEvent_GetFlags(*args, **kwargs)
1666
1667 def SetRect(*args, **kwargs):
1668 """SetRect(self, Rect rect)"""
1669 return _windows_.CalculateLayoutEvent_SetRect(*args, **kwargs)
1670
1671 def GetRect(*args, **kwargs):
1672 """GetRect(self) -> Rect"""
1673 return _windows_.CalculateLayoutEvent_GetRect(*args, **kwargs)
1674
1675
1676 class CalculateLayoutEventPtr(CalculateLayoutEvent):
1677 def __init__(self, this):
1678 self.this = this
1679 if not hasattr(self,"thisown"): self.thisown = 0
1680 self.__class__ = CalculateLayoutEvent
1681 _windows_.CalculateLayoutEvent_swigregister(CalculateLayoutEventPtr)
1682
1683 EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
1684 EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
1685
1686 class SashLayoutWindow(SashWindow):
1687 """Proxy of C++ SashLayoutWindow class"""
1688 def __repr__(self):
1689 return "<%s.%s; proxy of C++ wxSashLayoutWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1690 def __init__(self, *args, **kwargs):
1691 """
1692 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
1693 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1694 String name=SashLayoutNameStr) -> SashLayoutWindow
1695 """
1696 newobj = _windows_.new_SashLayoutWindow(*args, **kwargs)
1697 self.this = newobj.this
1698 self.thisown = 1
1699 del newobj.thisown
1700 self._setOORInfo(self)
1701
1702 def Create(*args, **kwargs):
1703 """
1704 Create(self, Window parent, int id=-1, Point pos=DefaultPosition,
1705 Size size=DefaultSize, long style=wxCLIP_CHILDREN|wxSW_3D,
1706 String name=SashLayoutNameStr) -> bool
1707 """
1708 return _windows_.SashLayoutWindow_Create(*args, **kwargs)
1709
1710 def GetAlignment(*args, **kwargs):
1711 """GetAlignment(self) -> int"""
1712 return _windows_.SashLayoutWindow_GetAlignment(*args, **kwargs)
1713
1714 def GetOrientation(*args, **kwargs):
1715 """GetOrientation(self) -> int"""
1716 return _windows_.SashLayoutWindow_GetOrientation(*args, **kwargs)
1717
1718 def SetAlignment(*args, **kwargs):
1719 """SetAlignment(self, int alignment)"""
1720 return _windows_.SashLayoutWindow_SetAlignment(*args, **kwargs)
1721
1722 def SetDefaultSize(*args, **kwargs):
1723 """SetDefaultSize(self, Size size)"""
1724 return _windows_.SashLayoutWindow_SetDefaultSize(*args, **kwargs)
1725
1726 def SetOrientation(*args, **kwargs):
1727 """SetOrientation(self, int orientation)"""
1728 return _windows_.SashLayoutWindow_SetOrientation(*args, **kwargs)
1729
1730
1731 class SashLayoutWindowPtr(SashLayoutWindow):
1732 def __init__(self, this):
1733 self.this = this
1734 if not hasattr(self,"thisown"): self.thisown = 0
1735 self.__class__ = SashLayoutWindow
1736 _windows_.SashLayoutWindow_swigregister(SashLayoutWindowPtr)
1737
1738 def PreSashLayoutWindow(*args, **kwargs):
1739 """PreSashLayoutWindow() -> SashLayoutWindow"""
1740 val = _windows_.new_PreSashLayoutWindow(*args, **kwargs)
1741 val.thisown = 1
1742 return val
1743
1744 class LayoutAlgorithm(_core.Object):
1745 """Proxy of C++ LayoutAlgorithm class"""
1746 def __repr__(self):
1747 return "<%s.%s; proxy of C++ wxLayoutAlgorithm instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1748 def __init__(self, *args, **kwargs):
1749 """__init__(self) -> LayoutAlgorithm"""
1750 newobj = _windows_.new_LayoutAlgorithm(*args, **kwargs)
1751 self.this = newobj.this
1752 self.thisown = 1
1753 del newobj.thisown
1754 def __del__(self, destroy=_windows_.delete_LayoutAlgorithm):
1755 """__del__(self)"""
1756 try:
1757 if self.thisown: destroy(self)
1758 except: pass
1759
1760 def LayoutMDIFrame(*args, **kwargs):
1761 """LayoutMDIFrame(self, MDIParentFrame frame, Rect rect=None) -> bool"""
1762 return _windows_.LayoutAlgorithm_LayoutMDIFrame(*args, **kwargs)
1763
1764 def LayoutFrame(*args, **kwargs):
1765 """LayoutFrame(self, Frame frame, Window mainWindow=None) -> bool"""
1766 return _windows_.LayoutAlgorithm_LayoutFrame(*args, **kwargs)
1767
1768 def LayoutWindow(*args, **kwargs):
1769 """LayoutWindow(self, Window parent, Window mainWindow=None) -> bool"""
1770 return _windows_.LayoutAlgorithm_LayoutWindow(*args, **kwargs)
1771
1772
1773 class LayoutAlgorithmPtr(LayoutAlgorithm):
1774 def __init__(self, this):
1775 self.this = this
1776 if not hasattr(self,"thisown"): self.thisown = 0
1777 self.__class__ = LayoutAlgorithm
1778 _windows_.LayoutAlgorithm_swigregister(LayoutAlgorithmPtr)
1779
1780 class PopupWindow(_core.Window):
1781 """Proxy of C++ PopupWindow class"""
1782 def __repr__(self):
1783 return "<%s.%s; proxy of C++ wxPopupWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1784 def __init__(self, *args, **kwargs):
1785 """__init__(self, Window parent, int flags=BORDER_NONE) -> PopupWindow"""
1786 newobj = _windows_.new_PopupWindow(*args, **kwargs)
1787 self.this = newobj.this
1788 self.thisown = 1
1789 del newobj.thisown
1790
1791 class PopupWindowPtr(PopupWindow):
1792 def __init__(self, this):
1793 self.this = this
1794 if not hasattr(self,"thisown"): self.thisown = 0
1795 self.__class__ = PopupWindow
1796 _windows_.PopupWindow_swigregister(PopupWindowPtr)
1797
1798 def PrePopupWindow(*args, **kwargs):
1799 """PrePopupWindow() -> PopupWindow"""
1800 val = _windows_.new_PrePopupWindow(*args, **kwargs)
1801 val.thisown = 1
1802 return val
1803
1804 class PopupTransientWindow(PopupWindow):
1805 """Proxy of C++ PopupTransientWindow class"""
1806 def __repr__(self):
1807 return "<%s.%s; proxy of C++ wxPyPopupTransientWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1808 def __init__(self, *args, **kwargs):
1809 """__init__(self, Window parent, int style=BORDER_NONE) -> PopupTransientWindow"""
1810 newobj = _windows_.new_PopupTransientWindow(*args, **kwargs)
1811 self.this = newobj.this
1812 self.thisown = 1
1813 del newobj.thisown
1814
1815 class PopupTransientWindowPtr(PopupTransientWindow):
1816 def __init__(self, this):
1817 self.this = this
1818 if not hasattr(self,"thisown"): self.thisown = 0
1819 self.__class__ = PopupTransientWindow
1820 _windows_.PopupTransientWindow_swigregister(PopupTransientWindowPtr)
1821
1822 def PrePopupTransientWindow(*args, **kwargs):
1823 """PrePopupTransientWindow() -> PopupTransientWindow"""
1824 val = _windows_.new_PrePopupTransientWindow(*args, **kwargs)
1825 val.thisown = 1
1826 return val
1827
1828 #---------------------------------------------------------------------------
1829
1830 class TipWindow(Frame):
1831 """Proxy of C++ TipWindow class"""
1832 def __repr__(self):
1833 return "<%s.%s; proxy of C++ wxTipWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1834 def __init__(self, *args, **kwargs):
1835 """__init__(self, Window parent, String text, int maxLength=100, Rect rectBound=None) -> TipWindow"""
1836 newobj = _windows_.new_TipWindow(*args, **kwargs)
1837 self.this = newobj.this
1838 self.thisown = 1
1839 del newobj.thisown
1840 self._setOORInfo(self)
1841
1842 def SetBoundingRect(*args, **kwargs):
1843 """SetBoundingRect(self, Rect rectBound)"""
1844 return _windows_.TipWindow_SetBoundingRect(*args, **kwargs)
1845
1846 def Close(*args, **kwargs):
1847 """
1848 Close(self)
1849
1850 This function simply generates a EVT_CLOSE event whose handler usually
1851 tries to close the window. It doesn't close the window itself,
1852 however. If force is False (the default) then the window's close
1853 handler will be allowed to veto the destruction of the window.
1854 """
1855 return _windows_.TipWindow_Close(*args, **kwargs)
1856
1857
1858 class TipWindowPtr(TipWindow):
1859 def __init__(self, this):
1860 self.this = this
1861 if not hasattr(self,"thisown"): self.thisown = 0
1862 self.__class__ = TipWindow
1863 _windows_.TipWindow_swigregister(TipWindowPtr)
1864
1865 #---------------------------------------------------------------------------
1866
1867 class VScrolledWindow(Panel):
1868 """Proxy of C++ VScrolledWindow class"""
1869 def __repr__(self):
1870 return "<%s.%s; proxy of C++ wxPyVScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1871 def __init__(self, *args, **kwargs):
1872 """
1873 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1874 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> VScrolledWindow
1875 """
1876 newobj = _windows_.new_VScrolledWindow(*args, **kwargs)
1877 self.this = newobj.this
1878 self.thisown = 1
1879 del newobj.thisown
1880 self._setOORInfo(self); self._setCallbackInfo(self, VScrolledWindow)
1881
1882 def _setCallbackInfo(*args, **kwargs):
1883 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1884 return _windows_.VScrolledWindow__setCallbackInfo(*args, **kwargs)
1885
1886 def Create(*args, **kwargs):
1887 """
1888 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1889 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> bool
1890 """
1891 return _windows_.VScrolledWindow_Create(*args, **kwargs)
1892
1893 def SetLineCount(*args, **kwargs):
1894 """SetLineCount(self, size_t count)"""
1895 return _windows_.VScrolledWindow_SetLineCount(*args, **kwargs)
1896
1897 def ScrollToLine(*args, **kwargs):
1898 """ScrollToLine(self, size_t line) -> bool"""
1899 return _windows_.VScrolledWindow_ScrollToLine(*args, **kwargs)
1900
1901 def ScrollLines(*args, **kwargs):
1902 """
1903 ScrollLines(self, int lines) -> bool
1904
1905 If the platform and window class supports it, scrolls the window by
1906 the given number of lines down, if lines is positive, or up if lines
1907 is negative. Returns True if the window was scrolled, False if it was
1908 already on top/bottom and nothing was done.
1909 """
1910 return _windows_.VScrolledWindow_ScrollLines(*args, **kwargs)
1911
1912 def ScrollPages(*args, **kwargs):
1913 """
1914 ScrollPages(self, int pages) -> bool
1915
1916 If the platform and window class supports it, scrolls the window by
1917 the given number of pages down, if pages is positive, or up if pages
1918 is negative. Returns True if the window was scrolled, False if it was
1919 already on top/bottom and nothing was done.
1920 """
1921 return _windows_.VScrolledWindow_ScrollPages(*args, **kwargs)
1922
1923 def RefreshLine(*args, **kwargs):
1924 """RefreshLine(self, size_t line)"""
1925 return _windows_.VScrolledWindow_RefreshLine(*args, **kwargs)
1926
1927 def RefreshLines(*args, **kwargs):
1928 """RefreshLines(self, size_t from, size_t to)"""
1929 return _windows_.VScrolledWindow_RefreshLines(*args, **kwargs)
1930
1931 def HitTestXY(*args, **kwargs):
1932 """
1933 HitTestXY(self, int x, int y) -> int
1934
1935 Test where the given (in client coords) point lies
1936 """
1937 return _windows_.VScrolledWindow_HitTestXY(*args, **kwargs)
1938
1939 def HitTest(*args, **kwargs):
1940 """
1941 HitTest(self, Point pt) -> int
1942
1943 Test where the given (in client coords) point lies
1944 """
1945 return _windows_.VScrolledWindow_HitTest(*args, **kwargs)
1946
1947 def RefreshAll(*args, **kwargs):
1948 """RefreshAll(self)"""
1949 return _windows_.VScrolledWindow_RefreshAll(*args, **kwargs)
1950
1951 def GetLineCount(*args, **kwargs):
1952 """GetLineCount(self) -> size_t"""
1953 return _windows_.VScrolledWindow_GetLineCount(*args, **kwargs)
1954
1955 def GetFirstVisibleLine(*args, **kwargs):
1956 """GetFirstVisibleLine(self) -> size_t"""
1957 return _windows_.VScrolledWindow_GetFirstVisibleLine(*args, **kwargs)
1958
1959 def GetLastVisibleLine(*args, **kwargs):
1960 """GetLastVisibleLine(self) -> size_t"""
1961 return _windows_.VScrolledWindow_GetLastVisibleLine(*args, **kwargs)
1962
1963 def IsVisible(*args, **kwargs):
1964 """IsVisible(self, size_t line) -> bool"""
1965 return _windows_.VScrolledWindow_IsVisible(*args, **kwargs)
1966
1967
1968 class VScrolledWindowPtr(VScrolledWindow):
1969 def __init__(self, this):
1970 self.this = this
1971 if not hasattr(self,"thisown"): self.thisown = 0
1972 self.__class__ = VScrolledWindow
1973 _windows_.VScrolledWindow_swigregister(VScrolledWindowPtr)
1974
1975 def PreVScrolledWindow(*args, **kwargs):
1976 """PreVScrolledWindow() -> VScrolledWindow"""
1977 val = _windows_.new_PreVScrolledWindow(*args, **kwargs)
1978 val.thisown = 1
1979 return val
1980
1981 class VListBox(VScrolledWindow):
1982 """Proxy of C++ VListBox class"""
1983 def __repr__(self):
1984 return "<%s.%s; proxy of C++ wxPyVListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1985 def __init__(self, *args, **kwargs):
1986 """
1987 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
1988 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> VListBox
1989 """
1990 newobj = _windows_.new_VListBox(*args, **kwargs)
1991 self.this = newobj.this
1992 self.thisown = 1
1993 del newobj.thisown
1994 self._setOORInfo(self);self._setCallbackInfo(self, VListBox)
1995
1996 def _setCallbackInfo(*args, **kwargs):
1997 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
1998 return _windows_.VListBox__setCallbackInfo(*args, **kwargs)
1999
2000 def Create(*args, **kwargs):
2001 """
2002 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
2003 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
2004 """
2005 return _windows_.VListBox_Create(*args, **kwargs)
2006
2007 def GetItemCount(*args, **kwargs):
2008 """GetItemCount(self) -> size_t"""
2009 return _windows_.VListBox_GetItemCount(*args, **kwargs)
2010
2011 def HasMultipleSelection(*args, **kwargs):
2012 """HasMultipleSelection(self) -> bool"""
2013 return _windows_.VListBox_HasMultipleSelection(*args, **kwargs)
2014
2015 def GetSelection(*args, **kwargs):
2016 """GetSelection(self) -> int"""
2017 return _windows_.VListBox_GetSelection(*args, **kwargs)
2018
2019 def IsCurrent(*args, **kwargs):
2020 """IsCurrent(self, size_t item) -> bool"""
2021 return _windows_.VListBox_IsCurrent(*args, **kwargs)
2022
2023 def IsSelected(*args, **kwargs):
2024 """IsSelected(self, size_t item) -> bool"""
2025 return _windows_.VListBox_IsSelected(*args, **kwargs)
2026
2027 def GetSelectedCount(*args, **kwargs):
2028 """GetSelectedCount(self) -> size_t"""
2029 return _windows_.VListBox_GetSelectedCount(*args, **kwargs)
2030
2031 def GetFirstSelected(*args, **kwargs):
2032 """GetFirstSelected(self) -> PyObject"""
2033 return _windows_.VListBox_GetFirstSelected(*args, **kwargs)
2034
2035 def GetNextSelected(*args, **kwargs):
2036 """GetNextSelected(self, unsigned long cookie) -> PyObject"""
2037 return _windows_.VListBox_GetNextSelected(*args, **kwargs)
2038
2039 def GetMargins(*args, **kwargs):
2040 """GetMargins(self) -> Point"""
2041 return _windows_.VListBox_GetMargins(*args, **kwargs)
2042
2043 def GetSelectionBackground(*args, **kwargs):
2044 """GetSelectionBackground(self) -> Colour"""
2045 return _windows_.VListBox_GetSelectionBackground(*args, **kwargs)
2046
2047 def SetItemCount(*args, **kwargs):
2048 """SetItemCount(self, size_t count)"""
2049 return _windows_.VListBox_SetItemCount(*args, **kwargs)
2050
2051 def Clear(*args, **kwargs):
2052 """Clear(self)"""
2053 return _windows_.VListBox_Clear(*args, **kwargs)
2054
2055 def SetSelection(*args, **kwargs):
2056 """SetSelection(self, int selection)"""
2057 return _windows_.VListBox_SetSelection(*args, **kwargs)
2058
2059 def Select(*args, **kwargs):
2060 """Select(self, size_t item, bool select=True) -> bool"""
2061 return _windows_.VListBox_Select(*args, **kwargs)
2062
2063 def SelectRange(*args, **kwargs):
2064 """SelectRange(self, size_t from, size_t to) -> bool"""
2065 return _windows_.VListBox_SelectRange(*args, **kwargs)
2066
2067 def Toggle(*args, **kwargs):
2068 """Toggle(self, size_t item)"""
2069 return _windows_.VListBox_Toggle(*args, **kwargs)
2070
2071 def SelectAll(*args, **kwargs):
2072 """SelectAll(self) -> bool"""
2073 return _windows_.VListBox_SelectAll(*args, **kwargs)
2074
2075 def DeselectAll(*args, **kwargs):
2076 """DeselectAll(self) -> bool"""
2077 return _windows_.VListBox_DeselectAll(*args, **kwargs)
2078
2079 def SetMargins(*args, **kwargs):
2080 """SetMargins(self, Point pt)"""
2081 return _windows_.VListBox_SetMargins(*args, **kwargs)
2082
2083 def SetMarginsXY(*args, **kwargs):
2084 """SetMarginsXY(self, int x, int y)"""
2085 return _windows_.VListBox_SetMarginsXY(*args, **kwargs)
2086
2087 def SetSelectionBackground(*args, **kwargs):
2088 """SetSelectionBackground(self, Colour col)"""
2089 return _windows_.VListBox_SetSelectionBackground(*args, **kwargs)
2090
2091
2092 class VListBoxPtr(VListBox):
2093 def __init__(self, this):
2094 self.this = this
2095 if not hasattr(self,"thisown"): self.thisown = 0
2096 self.__class__ = VListBox
2097 _windows_.VListBox_swigregister(VListBoxPtr)
2098 VListBoxNameStr = cvar.VListBoxNameStr
2099
2100 def PreVListBox(*args, **kwargs):
2101 """PreVListBox() -> VListBox"""
2102 val = _windows_.new_PreVListBox(*args, **kwargs)
2103 val.thisown = 1
2104 return val
2105
2106 class HtmlListBox(VListBox):
2107 """Proxy of C++ HtmlListBox class"""
2108 def __repr__(self):
2109 return "<%s.%s; proxy of C++ wxPyHtmlListBox instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2110 def __init__(self, *args, **kwargs):
2111 """
2112 __init__(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
2113 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> HtmlListBox
2114 """
2115 newobj = _windows_.new_HtmlListBox(*args, **kwargs)
2116 self.this = newobj.this
2117 self.thisown = 1
2118 del newobj.thisown
2119 self._setOORInfo(self);self._setCallbackInfo(self, HtmlListBox)
2120
2121 def _setCallbackInfo(*args, **kwargs):
2122 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
2123 return _windows_.HtmlListBox__setCallbackInfo(*args, **kwargs)
2124
2125 def Create(*args, **kwargs):
2126 """
2127 Create(self, Window parent, int id=ID_ANY, Point pos=DefaultPosition,
2128 Size size=DefaultSize, long style=0, String name=VListBoxNameStr) -> bool
2129 """
2130 return _windows_.HtmlListBox_Create(*args, **kwargs)
2131
2132 def RefreshAll(*args, **kwargs):
2133 """RefreshAll(self)"""
2134 return _windows_.HtmlListBox_RefreshAll(*args, **kwargs)
2135
2136 def SetItemCount(*args, **kwargs):
2137 """SetItemCount(self, size_t count)"""
2138 return _windows_.HtmlListBox_SetItemCount(*args, **kwargs)
2139
2140 def GetFileSystem(*args, **kwargs):
2141 """GetFileSystem(self) -> FileSystem"""
2142 return _windows_.HtmlListBox_GetFileSystem(*args, **kwargs)
2143
2144
2145 class HtmlListBoxPtr(HtmlListBox):
2146 def __init__(self, this):
2147 self.this = this
2148 if not hasattr(self,"thisown"): self.thisown = 0
2149 self.__class__ = HtmlListBox
2150 _windows_.HtmlListBox_swigregister(HtmlListBoxPtr)
2151
2152 def PreHtmlListBox(*args, **kwargs):
2153 """PreHtmlListBox() -> HtmlListBox"""
2154 val = _windows_.new_PreHtmlListBox(*args, **kwargs)
2155 val.thisown = 1
2156 return val
2157
2158 #---------------------------------------------------------------------------
2159
2160 class TaskBarIcon(_core.EvtHandler):
2161 """Proxy of C++ TaskBarIcon class"""
2162 def __repr__(self):
2163 return "<%s.%s; proxy of C++ wxPyTaskBarIcon instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2164 def __init__(self, *args, **kwargs):
2165 """__init__(self) -> TaskBarIcon"""
2166 newobj = _windows_.new_TaskBarIcon(*args, **kwargs)
2167 self.this = newobj.this
2168 self.thisown = 1
2169 del newobj.thisown
2170 self._setCallbackInfo(self, TaskBarIcon, 0)
2171
2172 def _setCallbackInfo(*args, **kwargs):
2173 """_setCallbackInfo(self, PyObject self, PyObject _class, int incref)"""
2174 return _windows_.TaskBarIcon__setCallbackInfo(*args, **kwargs)
2175
2176 def Destroy(*args, **kwargs):
2177 """
2178 Destroy(self)
2179
2180 Deletes the C++ object this Python object is a proxy for.
2181 """
2182 return _windows_.TaskBarIcon_Destroy(*args, **kwargs)
2183
2184 def IsOk(*args, **kwargs):
2185 """IsOk(self) -> bool"""
2186 return _windows_.TaskBarIcon_IsOk(*args, **kwargs)
2187
2188 def __nonzero__(self): return self.IsOk()
2189 def IsIconInstalled(*args, **kwargs):
2190 """IsIconInstalled(self) -> bool"""
2191 return _windows_.TaskBarIcon_IsIconInstalled(*args, **kwargs)
2192
2193 def SetIcon(*args, **kwargs):
2194 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
2195 return _windows_.TaskBarIcon_SetIcon(*args, **kwargs)
2196
2197 def RemoveIcon(*args, **kwargs):
2198 """RemoveIcon(self) -> bool"""
2199 return _windows_.TaskBarIcon_RemoveIcon(*args, **kwargs)
2200
2201 def PopupMenu(*args, **kwargs):
2202 """PopupMenu(self, Menu menu) -> bool"""
2203 return _windows_.TaskBarIcon_PopupMenu(*args, **kwargs)
2204
2205
2206 class TaskBarIconPtr(TaskBarIcon):
2207 def __init__(self, this):
2208 self.this = this
2209 if not hasattr(self,"thisown"): self.thisown = 0
2210 self.__class__ = TaskBarIcon
2211 _windows_.TaskBarIcon_swigregister(TaskBarIconPtr)
2212
2213 class TaskBarIconEvent(_core.Event):
2214 """Proxy of C++ TaskBarIconEvent class"""
2215 def __repr__(self):
2216 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2217 def __init__(self, *args, **kwargs):
2218 """__init__(self, wxEventType evtType, wxTaskBarIcon tbIcon) -> TaskBarIconEvent"""
2219 newobj = _windows_.new_TaskBarIconEvent(*args, **kwargs)
2220 self.this = newobj.this
2221 self.thisown = 1
2222 del newobj.thisown
2223
2224 class TaskBarIconEventPtr(TaskBarIconEvent):
2225 def __init__(self, this):
2226 self.this = this
2227 if not hasattr(self,"thisown"): self.thisown = 0
2228 self.__class__ = TaskBarIconEvent
2229 _windows_.TaskBarIconEvent_swigregister(TaskBarIconEventPtr)
2230
2231 wxEVT_TASKBAR_MOVE = _windows_.wxEVT_TASKBAR_MOVE
2232 wxEVT_TASKBAR_LEFT_DOWN = _windows_.wxEVT_TASKBAR_LEFT_DOWN
2233 wxEVT_TASKBAR_LEFT_UP = _windows_.wxEVT_TASKBAR_LEFT_UP
2234 wxEVT_TASKBAR_RIGHT_DOWN = _windows_.wxEVT_TASKBAR_RIGHT_DOWN
2235 wxEVT_TASKBAR_RIGHT_UP = _windows_.wxEVT_TASKBAR_RIGHT_UP
2236 wxEVT_TASKBAR_LEFT_DCLICK = _windows_.wxEVT_TASKBAR_LEFT_DCLICK
2237 wxEVT_TASKBAR_RIGHT_DCLICK = _windows_.wxEVT_TASKBAR_RIGHT_DCLICK
2238 EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
2239 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
2240 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
2241 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
2242 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
2243 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
2244 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
2245
2246 #---------------------------------------------------------------------------
2247
2248 class ColourData(_core.Object):
2249 """
2250 This class holds a variety of information related to the colour
2251 chooser dialog, used to transfer settings and results to and from the
2252 `wx.ColourDialog`.
2253 """
2254 def __repr__(self):
2255 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2256 def __init__(self, *args, **kwargs):
2257 """
2258 __init__(self) -> ColourData
2259
2260 Constructor, sets default values.
2261 """
2262 newobj = _windows_.new_ColourData(*args, **kwargs)
2263 self.this = newobj.this
2264 self.thisown = 1
2265 del newobj.thisown
2266 def __del__(self, destroy=_windows_.delete_ColourData):
2267 """__del__(self)"""
2268 try:
2269 if self.thisown: destroy(self)
2270 except: pass
2271
2272 def GetChooseFull(*args, **kwargs):
2273 """
2274 GetChooseFull(self) -> bool
2275
2276 Under Windows, determines whether the Windows colour dialog will
2277 display the full dialog with custom colour selection controls. Has no
2278 meaning under other platforms. The default value is true.
2279 """
2280 return _windows_.ColourData_GetChooseFull(*args, **kwargs)
2281
2282 def GetColour(*args, **kwargs):
2283 """
2284 GetColour(self) -> Colour
2285
2286 Gets the colour (pre)selected by the dialog.
2287 """
2288 return _windows_.ColourData_GetColour(*args, **kwargs)
2289
2290 def GetCustomColour(*args, **kwargs):
2291 """
2292 GetCustomColour(self, int i) -> Colour
2293
2294 Gets the i'th custom colour associated with the colour dialog. i
2295 should be an integer between 0 and 15. The default custom colours are
2296 all invalid colours.
2297 """
2298 return _windows_.ColourData_GetCustomColour(*args, **kwargs)
2299
2300 def SetChooseFull(*args, **kwargs):
2301 """
2302 SetChooseFull(self, int flag)
2303
2304 Under Windows, tells the Windows colour dialog to display the full
2305 dialog with custom colour selection controls. Under other platforms,
2306 has no effect. The default value is true.
2307 """
2308 return _windows_.ColourData_SetChooseFull(*args, **kwargs)
2309
2310 def SetColour(*args, **kwargs):
2311 """
2312 SetColour(self, Colour colour)
2313
2314 Sets the default colour for the colour dialog. The default colour is
2315 black.
2316 """
2317 return _windows_.ColourData_SetColour(*args, **kwargs)
2318
2319 def SetCustomColour(*args, **kwargs):
2320 """
2321 SetCustomColour(self, int i, Colour colour)
2322
2323 Sets the i'th custom colour for the colour dialog. i should be an
2324 integer between 0 and 15. The default custom colours are all invalid colours.
2325 """
2326 return _windows_.ColourData_SetCustomColour(*args, **kwargs)
2327
2328
2329 class ColourDataPtr(ColourData):
2330 def __init__(self, this):
2331 self.this = this
2332 if not hasattr(self,"thisown"): self.thisown = 0
2333 self.__class__ = ColourData
2334 _windows_.ColourData_swigregister(ColourDataPtr)
2335 FileSelectorPromptStr = cvar.FileSelectorPromptStr
2336 DirSelectorPromptStr = cvar.DirSelectorPromptStr
2337 DirDialogNameStr = cvar.DirDialogNameStr
2338 FileSelectorDefaultWildcardStr = cvar.FileSelectorDefaultWildcardStr
2339 GetTextFromUserPromptStr = cvar.GetTextFromUserPromptStr
2340 MessageBoxCaptionStr = cvar.MessageBoxCaptionStr
2341
2342 class ColourDialog(Dialog):
2343 """This class represents the colour chooser dialog."""
2344 def __repr__(self):
2345 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2346 def __init__(self, *args, **kwargs):
2347 """
2348 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2349
2350 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2351 which will be copied to the colour dialog's internal ColourData
2352 instance.
2353 """
2354 newobj = _windows_.new_ColourDialog(*args, **kwargs)
2355 self.this = newobj.this
2356 self.thisown = 1
2357 del newobj.thisown
2358 self._setOORInfo(self)
2359
2360 def GetColourData(*args, **kwargs):
2361 """
2362 GetColourData(self) -> ColourData
2363
2364 Returns a reference to the `wx.ColourData` used by the dialog.
2365 """
2366 return _windows_.ColourDialog_GetColourData(*args, **kwargs)
2367
2368
2369 class ColourDialogPtr(ColourDialog):
2370 def __init__(self, this):
2371 self.this = this
2372 if not hasattr(self,"thisown"): self.thisown = 0
2373 self.__class__ = ColourDialog
2374 _windows_.ColourDialog_swigregister(ColourDialogPtr)
2375
2376 class DirDialog(Dialog):
2377 """
2378 wx.DirDialog allows the user to select a directory by browising the
2379 file system.
2380 """
2381 def __repr__(self):
2382 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2383 def __init__(self, *args, **kwargs):
2384 """
2385 __init__(self, Window parent, String message=DirSelectorPromptStr,
2386 String defaultPath=EmptyString, long style=0,
2387 Point pos=DefaultPosition, Size size=DefaultSize,
2388 String name=DirDialogNameStr) -> DirDialog
2389
2390 Constructor. Use ShowModal method to show the dialog.
2391 """
2392 newobj = _windows_.new_DirDialog(*args, **kwargs)
2393 self.this = newobj.this
2394 self.thisown = 1
2395 del newobj.thisown
2396 self._setOORInfo(self)
2397
2398 def GetPath(*args, **kwargs):
2399 """
2400 GetPath(self) -> String
2401
2402 Returns the default or user-selected path.
2403 """
2404 return _windows_.DirDialog_GetPath(*args, **kwargs)
2405
2406 def GetMessage(*args, **kwargs):
2407 """
2408 GetMessage(self) -> String
2409
2410 Returns the message that will be displayed on the dialog.
2411 """
2412 return _windows_.DirDialog_GetMessage(*args, **kwargs)
2413
2414 def GetStyle(*args, **kwargs):
2415 """
2416 GetStyle(self) -> long
2417
2418 Returns the dialog style.
2419 """
2420 return _windows_.DirDialog_GetStyle(*args, **kwargs)
2421
2422 def SetMessage(*args, **kwargs):
2423 """
2424 SetMessage(self, String message)
2425
2426 Sets the message that will be displayed on the dialog.
2427 """
2428 return _windows_.DirDialog_SetMessage(*args, **kwargs)
2429
2430 def SetPath(*args, **kwargs):
2431 """
2432 SetPath(self, String path)
2433
2434 Sets the default path.
2435 """
2436 return _windows_.DirDialog_SetPath(*args, **kwargs)
2437
2438
2439 class DirDialogPtr(DirDialog):
2440 def __init__(self, this):
2441 self.this = this
2442 if not hasattr(self,"thisown"): self.thisown = 0
2443 self.__class__ = DirDialog
2444 _windows_.DirDialog_swigregister(DirDialogPtr)
2445
2446 class FileDialog(Dialog):
2447 """
2448 wx.FileDialog allows the user to select one or more files from the
2449 filesystem.
2450 """
2451 def __repr__(self):
2452 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2453 def __init__(self, *args, **kwargs):
2454 """
2455 __init__(self, Window parent, String message=FileSelectorPromptStr,
2456 String defaultDir=EmptyString, String defaultFile=EmptyString,
2457 String wildcard=FileSelectorDefaultWildcardStr,
2458 long style=0, Point pos=DefaultPosition) -> FileDialog
2459
2460 Constructor. Use ShowModal method to show the dialog.
2461 """
2462 newobj = _windows_.new_FileDialog(*args, **kwargs)
2463 self.this = newobj.this
2464 self.thisown = 1
2465 del newobj.thisown
2466 self._setOORInfo(self)
2467
2468 def SetMessage(*args, **kwargs):
2469 """
2470 SetMessage(self, String message)
2471
2472 Sets the message that will be displayed on the dialog.
2473 """
2474 return _windows_.FileDialog_SetMessage(*args, **kwargs)
2475
2476 def SetPath(*args, **kwargs):
2477 """
2478 SetPath(self, String path)
2479
2480 Sets the path (the combined directory and filename that will be
2481 returned when the dialog is dismissed).
2482 """
2483 return _windows_.FileDialog_SetPath(*args, **kwargs)
2484
2485 def SetDirectory(*args, **kwargs):
2486 """
2487 SetDirectory(self, String dir)
2488
2489 Sets the default directory.
2490 """
2491 return _windows_.FileDialog_SetDirectory(*args, **kwargs)
2492
2493 def SetFilename(*args, **kwargs):
2494 """
2495 SetFilename(self, String name)
2496
2497 Sets the default filename.
2498 """
2499 return _windows_.FileDialog_SetFilename(*args, **kwargs)
2500
2501 def SetWildcard(*args, **kwargs):
2502 """
2503 SetWildcard(self, String wildCard)
2504
2505 Sets the wildcard, which can contain multiple file types, for
2506 example::
2507
2508 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2509
2510 """
2511 return _windows_.FileDialog_SetWildcard(*args, **kwargs)
2512
2513 def SetStyle(*args, **kwargs):
2514 """
2515 SetStyle(self, long style)
2516
2517 Sets the dialog style.
2518 """
2519 return _windows_.FileDialog_SetStyle(*args, **kwargs)
2520
2521 def SetFilterIndex(*args, **kwargs):
2522 """
2523 SetFilterIndex(self, int filterIndex)
2524
2525 Sets the default filter index, starting from zero.
2526 """
2527 return _windows_.FileDialog_SetFilterIndex(*args, **kwargs)
2528
2529 def GetMessage(*args, **kwargs):
2530 """
2531 GetMessage(self) -> String
2532
2533 Returns the message that will be displayed on the dialog.
2534 """
2535 return _windows_.FileDialog_GetMessage(*args, **kwargs)
2536
2537 def GetPath(*args, **kwargs):
2538 """
2539 GetPath(self) -> String
2540
2541 Returns the full path (directory and filename) of the selected file.
2542 """
2543 return _windows_.FileDialog_GetPath(*args, **kwargs)
2544
2545 def GetDirectory(*args, **kwargs):
2546 """
2547 GetDirectory(self) -> String
2548
2549 Returns the default directory.
2550 """
2551 return _windows_.FileDialog_GetDirectory(*args, **kwargs)
2552
2553 def GetFilename(*args, **kwargs):
2554 """
2555 GetFilename(self) -> String
2556
2557 Returns the default filename.
2558 """
2559 return _windows_.FileDialog_GetFilename(*args, **kwargs)
2560
2561 def GetWildcard(*args, **kwargs):
2562 """
2563 GetWildcard(self) -> String
2564
2565 Returns the file dialog wildcard.
2566 """
2567 return _windows_.FileDialog_GetWildcard(*args, **kwargs)
2568
2569 def GetStyle(*args, **kwargs):
2570 """
2571 GetStyle(self) -> long
2572
2573 Returns the dialog style.
2574 """
2575 return _windows_.FileDialog_GetStyle(*args, **kwargs)
2576
2577 def GetFilterIndex(*args, **kwargs):
2578 """
2579 GetFilterIndex(self) -> int
2580
2581 Returns the index into the list of filters supplied, optionally, in
2582 the wildcard parameter. Before the dialog is shown, this is the index
2583 which will be used when the dialog is first displayed. After the
2584 dialog is shown, this is the index selected by the user.
2585 """
2586 return _windows_.FileDialog_GetFilterIndex(*args, **kwargs)
2587
2588 def GetFilenames(*args, **kwargs):
2589 """
2590 GetFilenames(self) -> PyObject
2591
2592 Returns a list of filenames chosen in the dialog. This function
2593 should only be used with the dialogs which have wx.MULTIPLE style, use
2594 GetFilename for the others.
2595 """
2596 return _windows_.FileDialog_GetFilenames(*args, **kwargs)
2597
2598 def GetPaths(*args, **kwargs):
2599 """
2600 GetPaths(self) -> PyObject
2601
2602 Fills the array paths with the full paths of the files chosen. This
2603 function should only be used with the dialogs which have wx.MULTIPLE
2604 style, use GetPath for the others.
2605 """
2606 return _windows_.FileDialog_GetPaths(*args, **kwargs)
2607
2608
2609 class FileDialogPtr(FileDialog):
2610 def __init__(self, this):
2611 self.this = this
2612 if not hasattr(self,"thisown"): self.thisown = 0
2613 self.__class__ = FileDialog
2614 _windows_.FileDialog_swigregister(FileDialogPtr)
2615
2616 CHOICEDLG_STYLE = _windows_.CHOICEDLG_STYLE
2617 class MultiChoiceDialog(Dialog):
2618 """A simple dialog with a multi selection listbox."""
2619 def __repr__(self):
2620 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2621 def __init__(self, *args, **kwargs):
2622 """
2623 __init__(Window parent, String message, String caption,
2624 List choices=[], long style=CHOICEDLG_STYLE,
2625 Point pos=DefaultPosition) -> MultiChoiceDialog
2626
2627 Constructor. Use ShowModal method to show the dialog.
2628 """
2629 newobj = _windows_.new_MultiChoiceDialog(*args, **kwargs)
2630 self.this = newobj.this
2631 self.thisown = 1
2632 del newobj.thisown
2633 self._setOORInfo(self)
2634
2635 def SetSelections(*args, **kwargs):
2636 """
2637 SetSelections(List selections)
2638
2639 Specify the items in the list that should be selected, using a list of
2640 integers.
2641 """
2642 return _windows_.MultiChoiceDialog_SetSelections(*args, **kwargs)
2643
2644 def GetSelections(*args, **kwargs):
2645 """
2646 GetSelections() -> [selections]
2647
2648 Returns a list of integers representing the items that are selected.
2649 """
2650 return _windows_.MultiChoiceDialog_GetSelections(*args, **kwargs)
2651
2652
2653 class MultiChoiceDialogPtr(MultiChoiceDialog):
2654 def __init__(self, this):
2655 self.this = this
2656 if not hasattr(self,"thisown"): self.thisown = 0
2657 self.__class__ = MultiChoiceDialog
2658 _windows_.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr)
2659
2660 class SingleChoiceDialog(Dialog):
2661 """A simple dialog with a single selection listbox."""
2662 def __repr__(self):
2663 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2664 def __init__(self, *args, **kwargs):
2665 """
2666 __init__(Window parent, String message, String caption,
2667 List choices=[], long style=CHOICEDLG_STYLE,
2668 Point pos=DefaultPosition) -> SingleChoiceDialog
2669
2670 Constructor. Use ShowModal method to show the dialog.
2671 """
2672 newobj = _windows_.new_SingleChoiceDialog(*args, **kwargs)
2673 self.this = newobj.this
2674 self.thisown = 1
2675 del newobj.thisown
2676 self._setOORInfo(self)
2677
2678 def GetSelection(*args, **kwargs):
2679 """
2680 GetSelection(self) -> int
2681
2682 Get the index of teh currently selected item.
2683 """
2684 return _windows_.SingleChoiceDialog_GetSelection(*args, **kwargs)
2685
2686 def GetStringSelection(*args, **kwargs):
2687 """
2688 GetStringSelection(self) -> String
2689
2690 Returns the string value of the currently selected item
2691 """
2692 return _windows_.SingleChoiceDialog_GetStringSelection(*args, **kwargs)
2693
2694 def SetSelection(*args, **kwargs):
2695 """
2696 SetSelection(self, int sel)
2697
2698 Set the current selected item to sel
2699 """
2700 return _windows_.SingleChoiceDialog_SetSelection(*args, **kwargs)
2701
2702
2703 class SingleChoiceDialogPtr(SingleChoiceDialog):
2704 def __init__(self, this):
2705 self.this = this
2706 if not hasattr(self,"thisown"): self.thisown = 0
2707 self.__class__ = SingleChoiceDialog
2708 _windows_.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr)
2709
2710 TextEntryDialogStyle = _windows_.TextEntryDialogStyle
2711 class TextEntryDialog(Dialog):
2712 """A dialog with text control, [ok] and [cancel] buttons"""
2713 def __repr__(self):
2714 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2715 def __init__(self, *args, **kwargs):
2716 """
2717 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2718 String defaultValue=EmptyString,
2719 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> TextEntryDialog
2720
2721 Constructor. Use ShowModal method to show the dialog.
2722 """
2723 newobj = _windows_.new_TextEntryDialog(*args, **kwargs)
2724 self.this = newobj.this
2725 self.thisown = 1
2726 del newobj.thisown
2727 self._setOORInfo(self)
2728
2729 def GetValue(*args, **kwargs):
2730 """
2731 GetValue(self) -> String
2732
2733 Returns the text that the user has entered if the user has pressed OK,
2734 or the original value if the user has pressed Cancel.
2735 """
2736 return _windows_.TextEntryDialog_GetValue(*args, **kwargs)
2737
2738 def SetValue(*args, **kwargs):
2739 """
2740 SetValue(self, String value)
2741
2742 Sets the default text value.
2743 """
2744 return _windows_.TextEntryDialog_SetValue(*args, **kwargs)
2745
2746
2747 class TextEntryDialogPtr(TextEntryDialog):
2748 def __init__(self, this):
2749 self.this = this
2750 if not hasattr(self,"thisown"): self.thisown = 0
2751 self.__class__ = TextEntryDialog
2752 _windows_.TextEntryDialog_swigregister(TextEntryDialogPtr)
2753
2754 class PasswordEntryDialog(TextEntryDialog):
2755 """Proxy of C++ PasswordEntryDialog class"""
2756 def __repr__(self):
2757 return "<%s.%s; proxy of C++ wxPasswordEntryDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2758 def __init__(self, *args, **kwargs):
2759 """
2760 __init__(self, Window parent, String message, String caption=GetPasswordFromUserPromptStr,
2761 String value=EmptyString,
2762 long style=TextEntryDialogStyle, Point pos=DefaultPosition) -> PasswordEntryDialog
2763 """
2764 newobj = _windows_.new_PasswordEntryDialog(*args, **kwargs)
2765 self.this = newobj.this
2766 self.thisown = 1
2767 del newobj.thisown
2768
2769 class PasswordEntryDialogPtr(PasswordEntryDialog):
2770 def __init__(self, this):
2771 self.this = this
2772 if not hasattr(self,"thisown"): self.thisown = 0
2773 self.__class__ = PasswordEntryDialog
2774 _windows_.PasswordEntryDialog_swigregister(PasswordEntryDialogPtr)
2775 GetPasswordFromUserPromptStr = cvar.GetPasswordFromUserPromptStr
2776
2777 class FontData(_core.Object):
2778 """
2779 This class holds a variety of information related to font dialogs and
2780 is used to transfer settings to and results from a `wx.FontDialog`.
2781 """
2782 def __repr__(self):
2783 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2784 def __init__(self, *args, **kwargs):
2785 """
2786 __init__(self) -> FontData
2787
2788 This class holds a variety of information related to font dialogs and
2789 is used to transfer settings to and results from a `wx.FontDialog`.
2790 """
2791 newobj = _windows_.new_FontData(*args, **kwargs)
2792 self.this = newobj.this
2793 self.thisown = 1
2794 del newobj.thisown
2795 def __del__(self, destroy=_windows_.delete_FontData):
2796 """__del__(self)"""
2797 try:
2798 if self.thisown: destroy(self)
2799 except: pass
2800
2801 def EnableEffects(*args, **kwargs):
2802 """
2803 EnableEffects(self, bool enable)
2804
2805 Enables or disables 'effects' under MS Windows only. This refers to
2806 the controls for manipulating colour, strikeout and underline
2807 properties. The default value is true.
2808 """
2809 return _windows_.FontData_EnableEffects(*args, **kwargs)
2810
2811 def GetAllowSymbols(*args, **kwargs):
2812 """
2813 GetAllowSymbols(self) -> bool
2814
2815 Under MS Windows, returns a flag determining whether symbol fonts can
2816 be selected. Has no effect on other platforms. The default value is
2817 true.
2818 """
2819 return _windows_.FontData_GetAllowSymbols(*args, **kwargs)
2820
2821 def GetColour(*args, **kwargs):
2822 """
2823 GetColour(self) -> Colour
2824
2825 Gets the colour associated with the font dialog. The default value is
2826 black.
2827 """
2828 return _windows_.FontData_GetColour(*args, **kwargs)
2829
2830 def GetChosenFont(*args, **kwargs):
2831 """
2832 GetChosenFont(self) -> Font
2833
2834 Gets the font chosen by the user.
2835 """
2836 return _windows_.FontData_GetChosenFont(*args, **kwargs)
2837
2838 def GetEnableEffects(*args, **kwargs):
2839 """
2840 GetEnableEffects(self) -> bool
2841
2842 Determines whether 'effects' are enabled under Windows.
2843 """
2844 return _windows_.FontData_GetEnableEffects(*args, **kwargs)
2845
2846 def GetInitialFont(*args, **kwargs):
2847 """
2848 GetInitialFont(self) -> Font
2849
2850 Gets the font that will be initially used by the font dialog. This
2851 should have previously been set by the application.
2852 """
2853 return _windows_.FontData_GetInitialFont(*args, **kwargs)
2854
2855 def GetShowHelp(*args, **kwargs):
2856 """
2857 GetShowHelp(self) -> bool
2858
2859 Returns true if the Help button will be shown (Windows only). The
2860 default value is false.
2861 """
2862 return _windows_.FontData_GetShowHelp(*args, **kwargs)
2863
2864 def SetAllowSymbols(*args, **kwargs):
2865 """
2866 SetAllowSymbols(self, bool allowSymbols)
2867
2868 Under MS Windows, determines whether symbol fonts can be selected. Has
2869 no effect on other platforms. The default value is true.
2870 """
2871 return _windows_.FontData_SetAllowSymbols(*args, **kwargs)
2872
2873 def SetChosenFont(*args, **kwargs):
2874 """
2875 SetChosenFont(self, Font font)
2876
2877 Sets the font that will be returned to the user (normally for internal
2878 use only).
2879 """
2880 return _windows_.FontData_SetChosenFont(*args, **kwargs)
2881
2882 def SetColour(*args, **kwargs):
2883 """
2884 SetColour(self, Colour colour)
2885
2886 Sets the colour that will be used for the font foreground colour. The
2887 default colour is black.
2888 """
2889 return _windows_.FontData_SetColour(*args, **kwargs)
2890
2891 def SetInitialFont(*args, **kwargs):
2892 """
2893 SetInitialFont(self, Font font)
2894
2895 Sets the font that will be initially used by the font dialog.
2896 """
2897 return _windows_.FontData_SetInitialFont(*args, **kwargs)
2898
2899 def SetRange(*args, **kwargs):
2900 """
2901 SetRange(self, int min, int max)
2902
2903 Sets the valid range for the font point size (Windows only). The
2904 default is 0, 0 (unrestricted range).
2905 """
2906 return _windows_.FontData_SetRange(*args, **kwargs)
2907
2908 def SetShowHelp(*args, **kwargs):
2909 """
2910 SetShowHelp(self, bool showHelp)
2911
2912 Determines whether the Help button will be displayed in the font
2913 dialog (Windows only). The default value is false.
2914 """
2915 return _windows_.FontData_SetShowHelp(*args, **kwargs)
2916
2917
2918 class FontDataPtr(FontData):
2919 def __init__(self, this):
2920 self.this = this
2921 if not hasattr(self,"thisown"): self.thisown = 0
2922 self.__class__ = FontData
2923 _windows_.FontData_swigregister(FontDataPtr)
2924
2925 class FontDialog(Dialog):
2926 """
2927 wx.FontDialog allows the user to select a system font and its attributes.
2928
2929 :see: `wx.FontData`
2930
2931 """
2932 def __repr__(self):
2933 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2934 def __init__(self, *args, **kwargs):
2935 """
2936 __init__(self, Window parent, FontData data) -> FontDialog
2937
2938 Constructor. Pass a parent window and the `wx.FontData` object to be
2939 used to initialize the dialog controls. Call `ShowModal` to display
2940 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2941 results with via the `wx.FontData` returned by `GetFontData`.
2942 """
2943 newobj = _windows_.new_FontDialog(*args, **kwargs)
2944 self.this = newobj.this
2945 self.thisown = 1
2946 del newobj.thisown
2947 self._setOORInfo(self)
2948
2949 def GetFontData(*args, **kwargs):
2950 """
2951 GetFontData(self) -> FontData
2952
2953 Returns a reference to the internal `wx.FontData` used by the
2954 wx.FontDialog.
2955 """
2956 return _windows_.FontDialog_GetFontData(*args, **kwargs)
2957
2958
2959 class FontDialogPtr(FontDialog):
2960 def __init__(self, this):
2961 self.this = this
2962 if not hasattr(self,"thisown"): self.thisown = 0
2963 self.__class__ = FontDialog
2964 _windows_.FontDialog_swigregister(FontDialogPtr)
2965
2966 class MessageDialog(Dialog):
2967 """
2968 This class provides a simple dialog that shows a single or multi-line
2969 message, with a choice of OK, Yes, No and/or Cancel buttons.
2970 """
2971 def __repr__(self):
2972 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2973 def __init__(self, *args, **kwargs):
2974 """
2975 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2976 long style=wxOK|wxCANCEL|wxCENTRE,
2977 Point pos=DefaultPosition) -> MessageDialog
2978
2979 Constructor, use `ShowModal` to display the dialog.
2980 """
2981 newobj = _windows_.new_MessageDialog(*args, **kwargs)
2982 self.this = newobj.this
2983 self.thisown = 1
2984 del newobj.thisown
2985 self._setOORInfo(self)
2986
2987
2988 class MessageDialogPtr(MessageDialog):
2989 def __init__(self, this):
2990 self.this = this
2991 if not hasattr(self,"thisown"): self.thisown = 0
2992 self.__class__ = MessageDialog
2993 _windows_.MessageDialog_swigregister(MessageDialogPtr)
2994
2995 class ProgressDialog(Frame):
2996 """
2997 A dialog that shows a short message and a progress bar. Optionally, it
2998 can display an ABORT button.
2999 """
3000 def __repr__(self):
3001 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3002 def __init__(self, *args, **kwargs):
3003 """
3004 __init__(self, String title, String message, int maximum=100, Window parent=None,
3005 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
3006
3007 Constructor. Creates the dialog, displays it and disables user input
3008 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
3009 parent window only.
3010 """
3011 newobj = _windows_.new_ProgressDialog(*args, **kwargs)
3012 self.this = newobj.this
3013 self.thisown = 1
3014 del newobj.thisown
3015 self._setOORInfo(self)
3016
3017 def Update(*args, **kwargs):
3018 """
3019 Update(self, int value, String newmsg=EmptyString) -> bool
3020
3021 Updates the dialog, setting the progress bar to the new value and, if
3022 given changes the message above it. The value given should be less
3023 than or equal to the maximum value given to the constructor and the
3024 dialog is closed if it is equal to the maximum. Returns True unless
3025 the Cancel button has been pressed.
3026
3027 If false is returned, the application can either immediately destroy
3028 the dialog or ask the user for the confirmation and if the abort is
3029 not confirmed the dialog may be resumed with Resume function.
3030 """
3031 return _windows_.ProgressDialog_Update(*args, **kwargs)
3032
3033 def Resume(*args, **kwargs):
3034 """
3035 Resume(self)
3036
3037 Can be used to continue with the dialog, after the user had chosen to
3038 abort.
3039 """
3040 return _windows_.ProgressDialog_Resume(*args, **kwargs)
3041
3042
3043 class ProgressDialogPtr(ProgressDialog):
3044 def __init__(self, this):
3045 self.this = this
3046 if not hasattr(self,"thisown"): self.thisown = 0
3047 self.__class__ = ProgressDialog
3048 _windows_.ProgressDialog_swigregister(ProgressDialogPtr)
3049
3050 FR_DOWN = _windows_.FR_DOWN
3051 FR_WHOLEWORD = _windows_.FR_WHOLEWORD
3052 FR_MATCHCASE = _windows_.FR_MATCHCASE
3053 FR_REPLACEDIALOG = _windows_.FR_REPLACEDIALOG
3054 FR_NOUPDOWN = _windows_.FR_NOUPDOWN
3055 FR_NOMATCHCASE = _windows_.FR_NOMATCHCASE
3056 FR_NOWHOLEWORD = _windows_.FR_NOWHOLEWORD
3057 wxEVT_COMMAND_FIND = _windows_.wxEVT_COMMAND_FIND
3058 wxEVT_COMMAND_FIND_NEXT = _windows_.wxEVT_COMMAND_FIND_NEXT
3059 wxEVT_COMMAND_FIND_REPLACE = _windows_.wxEVT_COMMAND_FIND_REPLACE
3060 wxEVT_COMMAND_FIND_REPLACE_ALL = _windows_.wxEVT_COMMAND_FIND_REPLACE_ALL
3061 wxEVT_COMMAND_FIND_CLOSE = _windows_.wxEVT_COMMAND_FIND_CLOSE
3062 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 )
3063 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 )
3064 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 )
3065 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 )
3066 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 )
3067
3068 # For backwards compatibility. Should they be removed?
3069 EVT_COMMAND_FIND = EVT_FIND
3070 EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
3071 EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
3072 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
3073 EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
3074
3075 class FindDialogEvent(_core.CommandEvent):
3076 """Events for the FindReplaceDialog"""
3077 def __repr__(self):
3078 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3079 def __init__(self, *args, **kwargs):
3080 """
3081 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
3082
3083 Events for the FindReplaceDialog
3084 """
3085 newobj = _windows_.new_FindDialogEvent(*args, **kwargs)
3086 self.this = newobj.this
3087 self.thisown = 1
3088 del newobj.thisown
3089 def GetFlags(*args, **kwargs):
3090 """
3091 GetFlags(self) -> int
3092
3093 Get the currently selected flags: this is the combination of
3094 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
3095 """
3096 return _windows_.FindDialogEvent_GetFlags(*args, **kwargs)
3097
3098 def GetFindString(*args, **kwargs):
3099 """
3100 GetFindString(self) -> String
3101
3102 Return the string to find (never empty).
3103 """
3104 return _windows_.FindDialogEvent_GetFindString(*args, **kwargs)
3105
3106 def GetReplaceString(*args, **kwargs):
3107 """
3108 GetReplaceString(self) -> String
3109
3110 Return the string to replace the search string with (only for replace
3111 and replace all events).
3112 """
3113 return _windows_.FindDialogEvent_GetReplaceString(*args, **kwargs)
3114
3115 def GetDialog(*args, **kwargs):
3116 """
3117 GetDialog(self) -> FindReplaceDialog
3118
3119 Return the pointer to the dialog which generated this event.
3120 """
3121 return _windows_.FindDialogEvent_GetDialog(*args, **kwargs)
3122
3123 def SetFlags(*args, **kwargs):
3124 """SetFlags(self, int flags)"""
3125 return _windows_.FindDialogEvent_SetFlags(*args, **kwargs)
3126
3127 def SetFindString(*args, **kwargs):
3128 """SetFindString(self, String str)"""
3129 return _windows_.FindDialogEvent_SetFindString(*args, **kwargs)
3130
3131 def SetReplaceString(*args, **kwargs):
3132 """SetReplaceString(self, String str)"""
3133 return _windows_.FindDialogEvent_SetReplaceString(*args, **kwargs)
3134
3135
3136 class FindDialogEventPtr(FindDialogEvent):
3137 def __init__(self, this):
3138 self.this = this
3139 if not hasattr(self,"thisown"): self.thisown = 0
3140 self.__class__ = FindDialogEvent
3141 _windows_.FindDialogEvent_swigregister(FindDialogEventPtr)
3142
3143 class FindReplaceData(_core.Object):
3144 """
3145 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
3146 to initialize the dialog with the default values and will keep the
3147 last values from the dialog when it is closed. It is also updated each
3148 time a `wx.FindDialogEvent` is generated so instead of using the
3149 `wx.FindDialogEvent` methods you can also directly query this object.
3150
3151 Note that all SetXXX() methods may only be called before showing the
3152 dialog and calling them has no effect later.
3153 """
3154 def __repr__(self):
3155 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3156 def __init__(self, *args, **kwargs):
3157 """
3158 __init__(self, int flags=0) -> FindReplaceData
3159
3160 Constuctor initializes the flags to default value (0).
3161 """
3162 newobj = _windows_.new_FindReplaceData(*args, **kwargs)
3163 self.this = newobj.this
3164 self.thisown = 1
3165 del newobj.thisown
3166 def __del__(self, destroy=_windows_.delete_FindReplaceData):
3167 """__del__(self)"""
3168 try:
3169 if self.thisown: destroy(self)
3170 except: pass
3171
3172 def GetFindString(*args, **kwargs):
3173 """
3174 GetFindString(self) -> String
3175
3176 Get the string to find.
3177 """
3178 return _windows_.FindReplaceData_GetFindString(*args, **kwargs)
3179
3180 def GetReplaceString(*args, **kwargs):
3181 """
3182 GetReplaceString(self) -> String
3183
3184 Get the replacement string.
3185 """
3186 return _windows_.FindReplaceData_GetReplaceString(*args, **kwargs)
3187
3188 def GetFlags(*args, **kwargs):
3189 """
3190 GetFlags(self) -> int
3191
3192 Get the combination of flag values.
3193 """
3194 return _windows_.FindReplaceData_GetFlags(*args, **kwargs)
3195
3196 def SetFlags(*args, **kwargs):
3197 """
3198 SetFlags(self, int flags)
3199
3200 Set the flags to use to initialize the controls of the dialog.
3201 """
3202 return _windows_.FindReplaceData_SetFlags(*args, **kwargs)
3203
3204 def SetFindString(*args, **kwargs):
3205 """
3206 SetFindString(self, String str)
3207
3208 Set the string to find (used as initial value by the dialog).
3209 """
3210 return _windows_.FindReplaceData_SetFindString(*args, **kwargs)
3211
3212 def SetReplaceString(*args, **kwargs):
3213 """
3214 SetReplaceString(self, String str)
3215
3216 Set the replacement string (used as initial value by the dialog).
3217 """
3218 return _windows_.FindReplaceData_SetReplaceString(*args, **kwargs)
3219
3220
3221 class FindReplaceDataPtr(FindReplaceData):
3222 def __init__(self, this):
3223 self.this = this
3224 if not hasattr(self,"thisown"): self.thisown = 0
3225 self.__class__ = FindReplaceData
3226 _windows_.FindReplaceData_swigregister(FindReplaceDataPtr)
3227
3228 class FindReplaceDialog(Dialog):
3229 """
3230 wx.FindReplaceDialog is a standard modeless dialog which is used to
3231 allow the user to search for some text (and possibly replace it with
3232 something else). The actual searching is supposed to be done in the
3233 owner window which is the parent of this dialog. Note that it means
3234 that unlike for the other standard dialogs this one must have a parent
3235 window. Also note that there is no way to use this dialog in a modal
3236 way; it is always, by design and implementation, modeless.
3237 """
3238 def __repr__(self):
3239 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3240 def __init__(self, *args, **kwargs):
3241 """
3242 __init__(self, Window parent, FindReplaceData data, String title,
3243 int style=0) -> FindReplaceDialog
3244
3245 Create a FindReplaceDialog. The parent and data parameters must be
3246 non-None. Use Show to display the dialog.
3247 """
3248 newobj = _windows_.new_FindReplaceDialog(*args, **kwargs)
3249 self.this = newobj.this
3250 self.thisown = 1
3251 del newobj.thisown
3252 self._setOORInfo(self)
3253
3254 def Create(*args, **kwargs):
3255 """
3256 Create(self, Window parent, FindReplaceData data, String title,
3257 int style=0) -> bool
3258
3259 Create the dialog, for 2-phase create.
3260 """
3261 return _windows_.FindReplaceDialog_Create(*args, **kwargs)
3262
3263 def GetData(*args, **kwargs):
3264 """
3265 GetData(self) -> FindReplaceData
3266
3267 Get the FindReplaceData object used by this dialog.
3268 """
3269 return _windows_.FindReplaceDialog_GetData(*args, **kwargs)
3270
3271 def SetData(*args, **kwargs):
3272 """
3273 SetData(self, FindReplaceData data)
3274
3275 Set the FindReplaceData object used by this dialog.
3276 """
3277 return _windows_.FindReplaceDialog_SetData(*args, **kwargs)
3278
3279
3280 class FindReplaceDialogPtr(FindReplaceDialog):
3281 def __init__(self, this):
3282 self.this = this
3283 if not hasattr(self,"thisown"): self.thisown = 0
3284 self.__class__ = FindReplaceDialog
3285 _windows_.FindReplaceDialog_swigregister(FindReplaceDialogPtr)
3286
3287 def PreFindReplaceDialog(*args, **kwargs):
3288 """
3289 PreFindReplaceDialog() -> FindReplaceDialog
3290
3291 Precreate a FindReplaceDialog for 2-phase creation
3292 """
3293 val = _windows_.new_PreFindReplaceDialog(*args, **kwargs)
3294 val.thisown = 1
3295 return val
3296
3297 #---------------------------------------------------------------------------
3298
3299 IDM_WINDOWTILE = _windows_.IDM_WINDOWTILE
3300 IDM_WINDOWTILEHOR = _windows_.IDM_WINDOWTILEHOR
3301 IDM_WINDOWCASCADE = _windows_.IDM_WINDOWCASCADE
3302 IDM_WINDOWICONS = _windows_.IDM_WINDOWICONS
3303 IDM_WINDOWNEXT = _windows_.IDM_WINDOWNEXT
3304 IDM_WINDOWTILEVERT = _windows_.IDM_WINDOWTILEVERT
3305 IDM_WINDOWPREV = _windows_.IDM_WINDOWPREV
3306 FIRST_MDI_CHILD = _windows_.FIRST_MDI_CHILD
3307 LAST_MDI_CHILD = _windows_.LAST_MDI_CHILD
3308 class MDIParentFrame(Frame):
3309 """Proxy of C++ MDIParentFrame class"""
3310 def __repr__(self):
3311 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3312 def __init__(self, *args, **kwargs):
3313 """
3314 __init__(self, Window parent, int id=-1, String title=EmptyString,
3315 Point pos=DefaultPosition, Size size=DefaultSize,
3316 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3317 String name=FrameNameStr) -> MDIParentFrame
3318 """
3319 newobj = _windows_.new_MDIParentFrame(*args, **kwargs)
3320 self.this = newobj.this
3321 self.thisown = 1
3322 del newobj.thisown
3323 self._setOORInfo(self)
3324
3325 def Create(*args, **kwargs):
3326 """
3327 Create(self, Window parent, int id=-1, String title=EmptyString,
3328 Point pos=DefaultPosition, Size size=DefaultSize,
3329 long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3330 String name=FrameNameStr) -> bool
3331 """
3332 return _windows_.MDIParentFrame_Create(*args, **kwargs)
3333
3334 def ActivateNext(*args, **kwargs):
3335 """ActivateNext(self)"""
3336 return _windows_.MDIParentFrame_ActivateNext(*args, **kwargs)
3337
3338 def ActivatePrevious(*args, **kwargs):
3339 """ActivatePrevious(self)"""
3340 return _windows_.MDIParentFrame_ActivatePrevious(*args, **kwargs)
3341
3342 def ArrangeIcons(*args, **kwargs):
3343 """ArrangeIcons(self)"""
3344 return _windows_.MDIParentFrame_ArrangeIcons(*args, **kwargs)
3345
3346 def Cascade(*args, **kwargs):
3347 """Cascade(self)"""
3348 return _windows_.MDIParentFrame_Cascade(*args, **kwargs)
3349
3350 def GetActiveChild(*args, **kwargs):
3351 """GetActiveChild(self) -> MDIChildFrame"""
3352 return _windows_.MDIParentFrame_GetActiveChild(*args, **kwargs)
3353
3354 def GetClientWindow(*args, **kwargs):
3355 """GetClientWindow(self) -> MDIClientWindow"""
3356 return _windows_.MDIParentFrame_GetClientWindow(*args, **kwargs)
3357
3358 def GetToolBar(*args, **kwargs):
3359 """GetToolBar(self) -> Window"""
3360 return _windows_.MDIParentFrame_GetToolBar(*args, **kwargs)
3361
3362 def Tile(*args, **kwargs):
3363 """Tile(self, int orient=HORIZONTAL)"""
3364 return _windows_.MDIParentFrame_Tile(*args, **kwargs)
3365
3366
3367 class MDIParentFramePtr(MDIParentFrame):
3368 def __init__(self, this):
3369 self.this = this
3370 if not hasattr(self,"thisown"): self.thisown = 0
3371 self.__class__ = MDIParentFrame
3372 _windows_.MDIParentFrame_swigregister(MDIParentFramePtr)
3373
3374 def PreMDIParentFrame(*args, **kwargs):
3375 """PreMDIParentFrame() -> MDIParentFrame"""
3376 val = _windows_.new_PreMDIParentFrame(*args, **kwargs)
3377 val.thisown = 1
3378 return val
3379
3380 class MDIChildFrame(Frame):
3381 """Proxy of C++ MDIChildFrame class"""
3382 def __repr__(self):
3383 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3384 def __init__(self, *args, **kwargs):
3385 """
3386 __init__(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3387 Point pos=DefaultPosition, Size size=DefaultSize,
3388 long style=DEFAULT_FRAME_STYLE,
3389 String name=FrameNameStr) -> MDIChildFrame
3390 """
3391 newobj = _windows_.new_MDIChildFrame(*args, **kwargs)
3392 self.this = newobj.this
3393 self.thisown = 1
3394 del newobj.thisown
3395 self._setOORInfo(self)
3396
3397 def Create(*args, **kwargs):
3398 """
3399 Create(self, MDIParentFrame parent, int id=-1, String title=EmptyString,
3400 Point pos=DefaultPosition, Size size=DefaultSize,
3401 long style=DEFAULT_FRAME_STYLE,
3402 String name=FrameNameStr) -> bool
3403 """
3404 return _windows_.MDIChildFrame_Create(*args, **kwargs)
3405
3406 def Activate(*args, **kwargs):
3407 """Activate(self)"""
3408 return _windows_.MDIChildFrame_Activate(*args, **kwargs)
3409
3410 def Maximize(*args, **kwargs):
3411 """Maximize(self, bool maximize=True)"""
3412 return _windows_.MDIChildFrame_Maximize(*args, **kwargs)
3413
3414 def Restore(*args, **kwargs):
3415 """Restore(self)"""
3416 return _windows_.MDIChildFrame_Restore(*args, **kwargs)
3417
3418
3419 class MDIChildFramePtr(MDIChildFrame):
3420 def __init__(self, this):
3421 self.this = this
3422 if not hasattr(self,"thisown"): self.thisown = 0
3423 self.__class__ = MDIChildFrame
3424 _windows_.MDIChildFrame_swigregister(MDIChildFramePtr)
3425
3426 def PreMDIChildFrame(*args, **kwargs):
3427 """PreMDIChildFrame() -> MDIChildFrame"""
3428 val = _windows_.new_PreMDIChildFrame(*args, **kwargs)
3429 val.thisown = 1
3430 return val
3431
3432 class MDIClientWindow(_core.Window):
3433 """Proxy of C++ MDIClientWindow class"""
3434 def __repr__(self):
3435 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3436 def __init__(self, *args, **kwargs):
3437 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3438 newobj = _windows_.new_MDIClientWindow(*args, **kwargs)
3439 self.this = newobj.this
3440 self.thisown = 1
3441 del newobj.thisown
3442 self._setOORInfo(self)
3443
3444 def Create(*args, **kwargs):
3445 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3446 return _windows_.MDIClientWindow_Create(*args, **kwargs)
3447
3448
3449 class MDIClientWindowPtr(MDIClientWindow):
3450 def __init__(self, this):
3451 self.this = this
3452 if not hasattr(self,"thisown"): self.thisown = 0
3453 self.__class__ = MDIClientWindow
3454 _windows_.MDIClientWindow_swigregister(MDIClientWindowPtr)
3455
3456 def PreMDIClientWindow(*args, **kwargs):
3457 """PreMDIClientWindow() -> MDIClientWindow"""
3458 val = _windows_.new_PreMDIClientWindow(*args, **kwargs)
3459 val.thisown = 1
3460 return val
3461
3462 #---------------------------------------------------------------------------
3463
3464 class PyWindow(_core.Window):
3465 """Proxy of C++ PyWindow class"""
3466 def __repr__(self):
3467 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3468 def __init__(self, *args, **kwargs):
3469 """
3470 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3471 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyWindow
3472 """
3473 newobj = _windows_.new_PyWindow(*args, **kwargs)
3474 self.this = newobj.this
3475 self.thisown = 1
3476 del newobj.thisown
3477 self._setOORInfo(self); self._setCallbackInfo(self, PyWindow)
3478
3479 def _setCallbackInfo(*args, **kwargs):
3480 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3481 return _windows_.PyWindow__setCallbackInfo(*args, **kwargs)
3482
3483 def SetBestSize(*args, **kwargs):
3484 """SetBestSize(self, Size size)"""
3485 return _windows_.PyWindow_SetBestSize(*args, **kwargs)
3486
3487 def base_DoMoveWindow(*args, **kwargs):
3488 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3489 return _windows_.PyWindow_base_DoMoveWindow(*args, **kwargs)
3490
3491 def base_DoSetSize(*args, **kwargs):
3492 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3493 return _windows_.PyWindow_base_DoSetSize(*args, **kwargs)
3494
3495 def base_DoSetClientSize(*args, **kwargs):
3496 """base_DoSetClientSize(self, int width, int height)"""
3497 return _windows_.PyWindow_base_DoSetClientSize(*args, **kwargs)
3498
3499 def base_DoSetVirtualSize(*args, **kwargs):
3500 """base_DoSetVirtualSize(self, int x, int y)"""
3501 return _windows_.PyWindow_base_DoSetVirtualSize(*args, **kwargs)
3502
3503 def base_DoGetSize(*args, **kwargs):
3504 """base_DoGetSize() -> (width, height)"""
3505 return _windows_.PyWindow_base_DoGetSize(*args, **kwargs)
3506
3507 def base_DoGetClientSize(*args, **kwargs):
3508 """base_DoGetClientSize() -> (width, height)"""
3509 return _windows_.PyWindow_base_DoGetClientSize(*args, **kwargs)
3510
3511 def base_DoGetPosition(*args, **kwargs):
3512 """base_DoGetPosition() -> (x,y)"""
3513 return _windows_.PyWindow_base_DoGetPosition(*args, **kwargs)
3514
3515 def base_DoGetVirtualSize(*args, **kwargs):
3516 """base_DoGetVirtualSize(self) -> Size"""
3517 return _windows_.PyWindow_base_DoGetVirtualSize(*args, **kwargs)
3518
3519 def base_DoGetBestSize(*args, **kwargs):
3520 """base_DoGetBestSize(self) -> Size"""
3521 return _windows_.PyWindow_base_DoGetBestSize(*args, **kwargs)
3522
3523 def base_InitDialog(*args, **kwargs):
3524 """base_InitDialog(self)"""
3525 return _windows_.PyWindow_base_InitDialog(*args, **kwargs)
3526
3527 def base_TransferDataToWindow(*args, **kwargs):
3528 """base_TransferDataToWindow(self) -> bool"""
3529 return _windows_.PyWindow_base_TransferDataToWindow(*args, **kwargs)
3530
3531 def base_TransferDataFromWindow(*args, **kwargs):
3532 """base_TransferDataFromWindow(self) -> bool"""
3533 return _windows_.PyWindow_base_TransferDataFromWindow(*args, **kwargs)
3534
3535 def base_Validate(*args, **kwargs):
3536 """base_Validate(self) -> bool"""
3537 return _windows_.PyWindow_base_Validate(*args, **kwargs)
3538
3539 def base_AcceptsFocus(*args, **kwargs):
3540 """base_AcceptsFocus(self) -> bool"""
3541 return _windows_.PyWindow_base_AcceptsFocus(*args, **kwargs)
3542
3543 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3544 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3545 return _windows_.PyWindow_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3546
3547 def base_GetMaxSize(*args, **kwargs):
3548 """base_GetMaxSize(self) -> Size"""
3549 return _windows_.PyWindow_base_GetMaxSize(*args, **kwargs)
3550
3551 def base_AddChild(*args, **kwargs):
3552 """base_AddChild(self, Window child)"""
3553 return _windows_.PyWindow_base_AddChild(*args, **kwargs)
3554
3555 def base_RemoveChild(*args, **kwargs):
3556 """base_RemoveChild(self, Window child)"""
3557 return _windows_.PyWindow_base_RemoveChild(*args, **kwargs)
3558
3559 def base_ShouldInheritColours(*args, **kwargs):
3560 """base_ShouldInheritColours(self) -> bool"""
3561 return _windows_.PyWindow_base_ShouldInheritColours(*args, **kwargs)
3562
3563 def base_ApplyParentThemeBackground(*args, **kwargs):
3564 """base_ApplyParentThemeBackground(self, Colour c)"""
3565 return _windows_.PyWindow_base_ApplyParentThemeBackground(*args, **kwargs)
3566
3567 def base_GetDefaultAttributes(*args, **kwargs):
3568 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3569 return _windows_.PyWindow_base_GetDefaultAttributes(*args, **kwargs)
3570
3571
3572 class PyWindowPtr(PyWindow):
3573 def __init__(self, this):
3574 self.this = this
3575 if not hasattr(self,"thisown"): self.thisown = 0
3576 self.__class__ = PyWindow
3577 _windows_.PyWindow_swigregister(PyWindowPtr)
3578
3579 def PrePyWindow(*args, **kwargs):
3580 """PrePyWindow() -> PyWindow"""
3581 val = _windows_.new_PrePyWindow(*args, **kwargs)
3582 val.thisown = 1
3583 return val
3584
3585 class PyPanel(Panel):
3586 """Proxy of C++ PyPanel class"""
3587 def __repr__(self):
3588 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3589 def __init__(self, *args, **kwargs):
3590 """
3591 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3592 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyPanel
3593 """
3594 newobj = _windows_.new_PyPanel(*args, **kwargs)
3595 self.this = newobj.this
3596 self.thisown = 1
3597 del newobj.thisown
3598 self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)
3599
3600 def _setCallbackInfo(*args, **kwargs):
3601 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3602 return _windows_.PyPanel__setCallbackInfo(*args, **kwargs)
3603
3604 def SetBestSize(*args, **kwargs):
3605 """SetBestSize(self, Size size)"""
3606 return _windows_.PyPanel_SetBestSize(*args, **kwargs)
3607
3608 def base_DoMoveWindow(*args, **kwargs):
3609 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3610 return _windows_.PyPanel_base_DoMoveWindow(*args, **kwargs)
3611
3612 def base_DoSetSize(*args, **kwargs):
3613 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3614 return _windows_.PyPanel_base_DoSetSize(*args, **kwargs)
3615
3616 def base_DoSetClientSize(*args, **kwargs):
3617 """base_DoSetClientSize(self, int width, int height)"""
3618 return _windows_.PyPanel_base_DoSetClientSize(*args, **kwargs)
3619
3620 def base_DoSetVirtualSize(*args, **kwargs):
3621 """base_DoSetVirtualSize(self, int x, int y)"""
3622 return _windows_.PyPanel_base_DoSetVirtualSize(*args, **kwargs)
3623
3624 def base_DoGetSize(*args, **kwargs):
3625 """base_DoGetSize() -> (width, height)"""
3626 return _windows_.PyPanel_base_DoGetSize(*args, **kwargs)
3627
3628 def base_DoGetClientSize(*args, **kwargs):
3629 """base_DoGetClientSize() -> (width, height)"""
3630 return _windows_.PyPanel_base_DoGetClientSize(*args, **kwargs)
3631
3632 def base_DoGetPosition(*args, **kwargs):
3633 """base_DoGetPosition() -> (x,y)"""
3634 return _windows_.PyPanel_base_DoGetPosition(*args, **kwargs)
3635
3636 def base_DoGetVirtualSize(*args, **kwargs):
3637 """base_DoGetVirtualSize(self) -> Size"""
3638 return _windows_.PyPanel_base_DoGetVirtualSize(*args, **kwargs)
3639
3640 def base_DoGetBestSize(*args, **kwargs):
3641 """base_DoGetBestSize(self) -> Size"""
3642 return _windows_.PyPanel_base_DoGetBestSize(*args, **kwargs)
3643
3644 def base_InitDialog(*args, **kwargs):
3645 """base_InitDialog(self)"""
3646 return _windows_.PyPanel_base_InitDialog(*args, **kwargs)
3647
3648 def base_TransferDataToWindow(*args, **kwargs):
3649 """base_TransferDataToWindow(self) -> bool"""
3650 return _windows_.PyPanel_base_TransferDataToWindow(*args, **kwargs)
3651
3652 def base_TransferDataFromWindow(*args, **kwargs):
3653 """base_TransferDataFromWindow(self) -> bool"""
3654 return _windows_.PyPanel_base_TransferDataFromWindow(*args, **kwargs)
3655
3656 def base_Validate(*args, **kwargs):
3657 """base_Validate(self) -> bool"""
3658 return _windows_.PyPanel_base_Validate(*args, **kwargs)
3659
3660 def base_AcceptsFocus(*args, **kwargs):
3661 """base_AcceptsFocus(self) -> bool"""
3662 return _windows_.PyPanel_base_AcceptsFocus(*args, **kwargs)
3663
3664 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3665 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3666 return _windows_.PyPanel_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3667
3668 def base_GetMaxSize(*args, **kwargs):
3669 """base_GetMaxSize(self) -> Size"""
3670 return _windows_.PyPanel_base_GetMaxSize(*args, **kwargs)
3671
3672 def base_AddChild(*args, **kwargs):
3673 """base_AddChild(self, Window child)"""
3674 return _windows_.PyPanel_base_AddChild(*args, **kwargs)
3675
3676 def base_RemoveChild(*args, **kwargs):
3677 """base_RemoveChild(self, Window child)"""
3678 return _windows_.PyPanel_base_RemoveChild(*args, **kwargs)
3679
3680 def base_ShouldInheritColours(*args, **kwargs):
3681 """base_ShouldInheritColours(self) -> bool"""
3682 return _windows_.PyPanel_base_ShouldInheritColours(*args, **kwargs)
3683
3684 def base_ApplyParentThemeBackground(*args, **kwargs):
3685 """base_ApplyParentThemeBackground(self, Colour c)"""
3686 return _windows_.PyPanel_base_ApplyParentThemeBackground(*args, **kwargs)
3687
3688 def base_GetDefaultAttributes(*args, **kwargs):
3689 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3690 return _windows_.PyPanel_base_GetDefaultAttributes(*args, **kwargs)
3691
3692
3693 class PyPanelPtr(PyPanel):
3694 def __init__(self, this):
3695 self.this = this
3696 if not hasattr(self,"thisown"): self.thisown = 0
3697 self.__class__ = PyPanel
3698 _windows_.PyPanel_swigregister(PyPanelPtr)
3699
3700 def PrePyPanel(*args, **kwargs):
3701 """PrePyPanel() -> PyPanel"""
3702 val = _windows_.new_PrePyPanel(*args, **kwargs)
3703 val.thisown = 1
3704 return val
3705
3706 class PyScrolledWindow(ScrolledWindow):
3707 """Proxy of C++ PyScrolledWindow class"""
3708 def __repr__(self):
3709 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3710 def __init__(self, *args, **kwargs):
3711 """
3712 __init__(self, Window parent, int id=-1, Point pos=DefaultPosition,
3713 Size size=DefaultSize, long style=0, String name=PanelNameStr) -> PyScrolledWindow
3714 """
3715 newobj = _windows_.new_PyScrolledWindow(*args, **kwargs)
3716 self.this = newobj.this
3717 self.thisown = 1
3718 del newobj.thisown
3719 self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)
3720
3721 def _setCallbackInfo(*args, **kwargs):
3722 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3723 return _windows_.PyScrolledWindow__setCallbackInfo(*args, **kwargs)
3724
3725 def SetBestSize(*args, **kwargs):
3726 """SetBestSize(self, Size size)"""
3727 return _windows_.PyScrolledWindow_SetBestSize(*args, **kwargs)
3728
3729 def base_DoMoveWindow(*args, **kwargs):
3730 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3731 return _windows_.PyScrolledWindow_base_DoMoveWindow(*args, **kwargs)
3732
3733 def base_DoSetSize(*args, **kwargs):
3734 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3735 return _windows_.PyScrolledWindow_base_DoSetSize(*args, **kwargs)
3736
3737 def base_DoSetClientSize(*args, **kwargs):
3738 """base_DoSetClientSize(self, int width, int height)"""
3739 return _windows_.PyScrolledWindow_base_DoSetClientSize(*args, **kwargs)
3740
3741 def base_DoSetVirtualSize(*args, **kwargs):
3742 """base_DoSetVirtualSize(self, int x, int y)"""
3743 return _windows_.PyScrolledWindow_base_DoSetVirtualSize(*args, **kwargs)
3744
3745 def base_DoGetSize(*args, **kwargs):
3746 """base_DoGetSize() -> (width, height)"""
3747 return _windows_.PyScrolledWindow_base_DoGetSize(*args, **kwargs)
3748
3749 def base_DoGetClientSize(*args, **kwargs):
3750 """base_DoGetClientSize() -> (width, height)"""
3751 return _windows_.PyScrolledWindow_base_DoGetClientSize(*args, **kwargs)
3752
3753 def base_DoGetPosition(*args, **kwargs):
3754 """base_DoGetPosition() -> (x,y)"""
3755 return _windows_.PyScrolledWindow_base_DoGetPosition(*args, **kwargs)
3756
3757 def base_DoGetVirtualSize(*args, **kwargs):
3758 """base_DoGetVirtualSize(self) -> Size"""
3759 return _windows_.PyScrolledWindow_base_DoGetVirtualSize(*args, **kwargs)
3760
3761 def base_DoGetBestSize(*args, **kwargs):
3762 """base_DoGetBestSize(self) -> Size"""
3763 return _windows_.PyScrolledWindow_base_DoGetBestSize(*args, **kwargs)
3764
3765 def base_InitDialog(*args, **kwargs):
3766 """base_InitDialog(self)"""
3767 return _windows_.PyScrolledWindow_base_InitDialog(*args, **kwargs)
3768
3769 def base_TransferDataToWindow(*args, **kwargs):
3770 """base_TransferDataToWindow(self) -> bool"""
3771 return _windows_.PyScrolledWindow_base_TransferDataToWindow(*args, **kwargs)
3772
3773 def base_TransferDataFromWindow(*args, **kwargs):
3774 """base_TransferDataFromWindow(self) -> bool"""
3775 return _windows_.PyScrolledWindow_base_TransferDataFromWindow(*args, **kwargs)
3776
3777 def base_Validate(*args, **kwargs):
3778 """base_Validate(self) -> bool"""
3779 return _windows_.PyScrolledWindow_base_Validate(*args, **kwargs)
3780
3781 def base_AcceptsFocus(*args, **kwargs):
3782 """base_AcceptsFocus(self) -> bool"""
3783 return _windows_.PyScrolledWindow_base_AcceptsFocus(*args, **kwargs)
3784
3785 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3786 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3787 return _windows_.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3788
3789 def base_GetMaxSize(*args, **kwargs):
3790 """base_GetMaxSize(self) -> Size"""
3791 return _windows_.PyScrolledWindow_base_GetMaxSize(*args, **kwargs)
3792
3793 def base_AddChild(*args, **kwargs):
3794 """base_AddChild(self, Window child)"""
3795 return _windows_.PyScrolledWindow_base_AddChild(*args, **kwargs)
3796
3797 def base_RemoveChild(*args, **kwargs):
3798 """base_RemoveChild(self, Window child)"""
3799 return _windows_.PyScrolledWindow_base_RemoveChild(*args, **kwargs)
3800
3801 def base_ShouldInheritColours(*args, **kwargs):
3802 """base_ShouldInheritColours(self) -> bool"""
3803 return _windows_.PyScrolledWindow_base_ShouldInheritColours(*args, **kwargs)
3804
3805 def base_ApplyParentThemeBackground(*args, **kwargs):
3806 """base_ApplyParentThemeBackground(self, Colour c)"""
3807 return _windows_.PyScrolledWindow_base_ApplyParentThemeBackground(*args, **kwargs)
3808
3809 def base_GetDefaultAttributes(*args, **kwargs):
3810 """base_GetDefaultAttributes(self) -> VisualAttributes"""
3811 return _windows_.PyScrolledWindow_base_GetDefaultAttributes(*args, **kwargs)
3812
3813
3814 class PyScrolledWindowPtr(PyScrolledWindow):
3815 def __init__(self, this):
3816 self.this = this
3817 if not hasattr(self,"thisown"): self.thisown = 0
3818 self.__class__ = PyScrolledWindow
3819 _windows_.PyScrolledWindow_swigregister(PyScrolledWindowPtr)
3820
3821 def PrePyScrolledWindow(*args, **kwargs):
3822 """PrePyScrolledWindow() -> PyScrolledWindow"""
3823 val = _windows_.new_PrePyScrolledWindow(*args, **kwargs)
3824 val.thisown = 1
3825 return val
3826
3827 #---------------------------------------------------------------------------
3828
3829 PRINT_MODE_NONE = _windows_.PRINT_MODE_NONE
3830 PRINT_MODE_PREVIEW = _windows_.PRINT_MODE_PREVIEW
3831 PRINT_MODE_FILE = _windows_.PRINT_MODE_FILE
3832 PRINT_MODE_PRINTER = _windows_.PRINT_MODE_PRINTER
3833 PRINT_MODE_STREAM = _windows_.PRINT_MODE_STREAM
3834 PRINTBIN_DEFAULT = _windows_.PRINTBIN_DEFAULT
3835 PRINTBIN_ONLYONE = _windows_.PRINTBIN_ONLYONE
3836 PRINTBIN_LOWER = _windows_.PRINTBIN_LOWER
3837 PRINTBIN_MIDDLE = _windows_.PRINTBIN_MIDDLE
3838 PRINTBIN_MANUAL = _windows_.PRINTBIN_MANUAL
3839 PRINTBIN_ENVELOPE = _windows_.PRINTBIN_ENVELOPE
3840 PRINTBIN_ENVMANUAL = _windows_.PRINTBIN_ENVMANUAL
3841 PRINTBIN_AUTO = _windows_.PRINTBIN_AUTO
3842 PRINTBIN_TRACTOR = _windows_.PRINTBIN_TRACTOR
3843 PRINTBIN_SMALLFMT = _windows_.PRINTBIN_SMALLFMT
3844 PRINTBIN_LARGEFMT = _windows_.PRINTBIN_LARGEFMT
3845 PRINTBIN_LARGECAPACITY = _windows_.PRINTBIN_LARGECAPACITY
3846 PRINTBIN_CASSETTE = _windows_.PRINTBIN_CASSETTE
3847 PRINTBIN_FORMSOURCE = _windows_.PRINTBIN_FORMSOURCE
3848 PRINTBIN_USER = _windows_.PRINTBIN_USER
3849 class PrintData(_core.Object):
3850 """Proxy of C++ PrintData class"""
3851 def __repr__(self):
3852 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3853 def __init__(self, *args):
3854 """
3855 __init__(self) -> PrintData
3856 __init__(self, PrintData data) -> PrintData
3857 """
3858 newobj = _windows_.new_PrintData(*args)
3859 self.this = newobj.this
3860 self.thisown = 1
3861 del newobj.thisown
3862 def __del__(self, destroy=_windows_.delete_PrintData):
3863 """__del__(self)"""
3864 try:
3865 if self.thisown: destroy(self)
3866 except: pass
3867
3868 def GetNoCopies(*args, **kwargs):
3869 """GetNoCopies(self) -> int"""
3870 return _windows_.PrintData_GetNoCopies(*args, **kwargs)
3871
3872 def GetCollate(*args, **kwargs):
3873 """GetCollate(self) -> bool"""
3874 return _windows_.PrintData_GetCollate(*args, **kwargs)
3875
3876 def GetOrientation(*args, **kwargs):
3877 """GetOrientation(self) -> int"""
3878 return _windows_.PrintData_GetOrientation(*args, **kwargs)
3879
3880 def Ok(*args, **kwargs):
3881 """Ok(self) -> bool"""
3882 return _windows_.PrintData_Ok(*args, **kwargs)
3883
3884 def GetPrinterName(*args, **kwargs):
3885 """GetPrinterName(self) -> String"""
3886 return _windows_.PrintData_GetPrinterName(*args, **kwargs)
3887
3888 def GetColour(*args, **kwargs):
3889 """GetColour(self) -> bool"""
3890 return _windows_.PrintData_GetColour(*args, **kwargs)
3891
3892 def GetDuplex(*args, **kwargs):
3893 """GetDuplex(self) -> int"""
3894 return _windows_.PrintData_GetDuplex(*args, **kwargs)
3895
3896 def GetPaperId(*args, **kwargs):
3897 """GetPaperId(self) -> int"""
3898 return _windows_.PrintData_GetPaperId(*args, **kwargs)
3899
3900 def GetPaperSize(*args, **kwargs):
3901 """GetPaperSize(self) -> Size"""
3902 return _windows_.PrintData_GetPaperSize(*args, **kwargs)
3903
3904 def GetQuality(*args, **kwargs):
3905 """GetQuality(self) -> int"""
3906 return _windows_.PrintData_GetQuality(*args, **kwargs)
3907
3908 def GetBin(*args, **kwargs):
3909 """GetBin(self) -> int"""
3910 return _windows_.PrintData_GetBin(*args, **kwargs)
3911
3912 def GetPrintMode(*args, **kwargs):
3913 """GetPrintMode(self) -> int"""
3914 return _windows_.PrintData_GetPrintMode(*args, **kwargs)
3915
3916 def SetNoCopies(*args, **kwargs):
3917 """SetNoCopies(self, int v)"""
3918 return _windows_.PrintData_SetNoCopies(*args, **kwargs)
3919
3920 def SetCollate(*args, **kwargs):
3921 """SetCollate(self, bool flag)"""
3922 return _windows_.PrintData_SetCollate(*args, **kwargs)
3923
3924 def SetOrientation(*args, **kwargs):
3925 """SetOrientation(self, int orient)"""
3926 return _windows_.PrintData_SetOrientation(*args, **kwargs)
3927
3928 def SetPrinterName(*args, **kwargs):
3929 """SetPrinterName(self, String name)"""
3930 return _windows_.PrintData_SetPrinterName(*args, **kwargs)
3931
3932 def SetColour(*args, **kwargs):
3933 """SetColour(self, bool colour)"""
3934 return _windows_.PrintData_SetColour(*args, **kwargs)
3935
3936 def SetDuplex(*args, **kwargs):
3937 """SetDuplex(self, int duplex)"""
3938 return _windows_.PrintData_SetDuplex(*args, **kwargs)
3939
3940 def SetPaperId(*args, **kwargs):
3941 """SetPaperId(self, int sizeId)"""
3942 return _windows_.PrintData_SetPaperId(*args, **kwargs)
3943
3944 def SetPaperSize(*args, **kwargs):
3945 """SetPaperSize(self, Size sz)"""
3946 return _windows_.PrintData_SetPaperSize(*args, **kwargs)
3947
3948 def SetQuality(*args, **kwargs):
3949 """SetQuality(self, int quality)"""
3950 return _windows_.PrintData_SetQuality(*args, **kwargs)
3951
3952 def SetBin(*args, **kwargs):
3953 """SetBin(self, int bin)"""
3954 return _windows_.PrintData_SetBin(*args, **kwargs)
3955
3956 def SetPrintMode(*args, **kwargs):
3957 """SetPrintMode(self, int printMode)"""
3958 return _windows_.PrintData_SetPrintMode(*args, **kwargs)
3959
3960 def GetFilename(*args, **kwargs):
3961 """GetFilename(self) -> String"""
3962 return _windows_.PrintData_GetFilename(*args, **kwargs)
3963
3964 def SetFilename(*args, **kwargs):
3965 """SetFilename(self, String filename)"""
3966 return _windows_.PrintData_SetFilename(*args, **kwargs)
3967
3968 def __nonzero__(self): return self.Ok()
3969 def GetPrivData(*args, **kwargs):
3970 """GetPrivData(self) -> PyObject"""
3971 return _windows_.PrintData_GetPrivData(*args, **kwargs)
3972
3973 def SetPrivData(*args, **kwargs):
3974 """SetPrivData(self, PyObject data)"""
3975 return _windows_.PrintData_SetPrivData(*args, **kwargs)
3976
3977 def GetPrinterCommand(*args, **kwargs):
3978 """GetPrinterCommand(self) -> String"""
3979 return _windows_.PrintData_GetPrinterCommand(*args, **kwargs)
3980
3981 def GetPrinterOptions(*args, **kwargs):
3982 """GetPrinterOptions(self) -> String"""
3983 return _windows_.PrintData_GetPrinterOptions(*args, **kwargs)
3984
3985 def GetPreviewCommand(*args, **kwargs):
3986 """GetPreviewCommand(self) -> String"""
3987 return _windows_.PrintData_GetPreviewCommand(*args, **kwargs)
3988
3989 def GetFontMetricPath(*args, **kwargs):
3990 """GetFontMetricPath(self) -> String"""
3991 return _windows_.PrintData_GetFontMetricPath(*args, **kwargs)
3992
3993 def GetPrinterScaleX(*args, **kwargs):
3994 """GetPrinterScaleX(self) -> double"""
3995 return _windows_.PrintData_GetPrinterScaleX(*args, **kwargs)
3996
3997 def GetPrinterScaleY(*args, **kwargs):
3998 """GetPrinterScaleY(self) -> double"""
3999 return _windows_.PrintData_GetPrinterScaleY(*args, **kwargs)
4000
4001 def GetPrinterTranslateX(*args, **kwargs):
4002 """GetPrinterTranslateX(self) -> long"""
4003 return _windows_.PrintData_GetPrinterTranslateX(*args, **kwargs)
4004
4005 def GetPrinterTranslateY(*args, **kwargs):
4006 """GetPrinterTranslateY(self) -> long"""
4007 return _windows_.PrintData_GetPrinterTranslateY(*args, **kwargs)
4008
4009 def SetPrinterCommand(*args, **kwargs):
4010 """SetPrinterCommand(self, String command)"""
4011 return _windows_.PrintData_SetPrinterCommand(*args, **kwargs)
4012
4013 def SetPrinterOptions(*args, **kwargs):
4014 """SetPrinterOptions(self, String options)"""
4015 return _windows_.PrintData_SetPrinterOptions(*args, **kwargs)
4016
4017 def SetPreviewCommand(*args, **kwargs):
4018 """SetPreviewCommand(self, String command)"""
4019 return _windows_.PrintData_SetPreviewCommand(*args, **kwargs)
4020
4021 def SetFontMetricPath(*args, **kwargs):
4022 """SetFontMetricPath(self, String path)"""
4023 return _windows_.PrintData_SetFontMetricPath(*args, **kwargs)
4024
4025 def SetPrinterScaleX(*args, **kwargs):
4026 """SetPrinterScaleX(self, double x)"""
4027 return _windows_.PrintData_SetPrinterScaleX(*args, **kwargs)
4028
4029 def SetPrinterScaleY(*args, **kwargs):
4030 """SetPrinterScaleY(self, double y)"""
4031 return _windows_.PrintData_SetPrinterScaleY(*args, **kwargs)
4032
4033 def SetPrinterScaling(*args, **kwargs):
4034 """SetPrinterScaling(self, double x, double y)"""
4035 return _windows_.PrintData_SetPrinterScaling(*args, **kwargs)
4036
4037 def SetPrinterTranslateX(*args, **kwargs):
4038 """SetPrinterTranslateX(self, long x)"""
4039 return _windows_.PrintData_SetPrinterTranslateX(*args, **kwargs)
4040
4041 def SetPrinterTranslateY(*args, **kwargs):
4042 """SetPrinterTranslateY(self, long y)"""
4043 return _windows_.PrintData_SetPrinterTranslateY(*args, **kwargs)
4044
4045 def SetPrinterTranslation(*args, **kwargs):
4046 """SetPrinterTranslation(self, long x, long y)"""
4047 return _windows_.PrintData_SetPrinterTranslation(*args, **kwargs)
4048
4049
4050 class PrintDataPtr(PrintData):
4051 def __init__(self, this):
4052 self.this = this
4053 if not hasattr(self,"thisown"): self.thisown = 0
4054 self.__class__ = PrintData
4055 _windows_.PrintData_swigregister(PrintDataPtr)
4056 PrintoutTitleStr = cvar.PrintoutTitleStr
4057 PreviewCanvasNameStr = cvar.PreviewCanvasNameStr
4058
4059 class PageSetupDialogData(_core.Object):
4060 """Proxy of C++ PageSetupDialogData class"""
4061 def __repr__(self):
4062 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4063 def __init__(self, *args):
4064 """
4065 __init__(self) -> PageSetupDialogData
4066 __init__(self, PageSetupDialogData data) -> PageSetupDialogData
4067 __init__(self, PrintData data) -> PageSetupDialogData
4068 """
4069 newobj = _windows_.new_PageSetupDialogData(*args)
4070 self.this = newobj.this
4071 self.thisown = 1
4072 del newobj.thisown
4073 def __del__(self, destroy=_windows_.delete_PageSetupDialogData):
4074 """__del__(self)"""
4075 try:
4076 if self.thisown: destroy(self)
4077 except: pass
4078
4079 def EnableHelp(*args, **kwargs):
4080 """EnableHelp(self, bool flag)"""
4081 return _windows_.PageSetupDialogData_EnableHelp(*args, **kwargs)
4082
4083 def EnableMargins(*args, **kwargs):
4084 """EnableMargins(self, bool flag)"""
4085 return _windows_.PageSetupDialogData_EnableMargins(*args, **kwargs)
4086
4087 def EnableOrientation(*args, **kwargs):
4088 """EnableOrientation(self, bool flag)"""
4089 return _windows_.PageSetupDialogData_EnableOrientation(*args, **kwargs)
4090
4091 def EnablePaper(*args, **kwargs):
4092 """EnablePaper(self, bool flag)"""
4093 return _windows_.PageSetupDialogData_EnablePaper(*args, **kwargs)
4094
4095 def EnablePrinter(*args, **kwargs):
4096 """EnablePrinter(self, bool flag)"""
4097 return _windows_.PageSetupDialogData_EnablePrinter(*args, **kwargs)
4098
4099 def GetDefaultMinMargins(*args, **kwargs):
4100 """GetDefaultMinMargins(self) -> bool"""
4101 return _windows_.PageSetupDialogData_GetDefaultMinMargins(*args, **kwargs)
4102
4103 def GetEnableMargins(*args, **kwargs):
4104 """GetEnableMargins(self) -> bool"""
4105 return _windows_.PageSetupDialogData_GetEnableMargins(*args, **kwargs)
4106
4107 def GetEnableOrientation(*args, **kwargs):
4108 """GetEnableOrientation(self) -> bool"""
4109 return _windows_.PageSetupDialogData_GetEnableOrientation(*args, **kwargs)
4110
4111 def GetEnablePaper(*args, **kwargs):
4112 """GetEnablePaper(self) -> bool"""
4113 return _windows_.PageSetupDialogData_GetEnablePaper(*args, **kwargs)
4114
4115 def GetEnablePrinter(*args, **kwargs):
4116 """GetEnablePrinter(self) -> bool"""
4117 return _windows_.PageSetupDialogData_GetEnablePrinter(*args, **kwargs)
4118
4119 def GetEnableHelp(*args, **kwargs):
4120 """GetEnableHelp(self) -> bool"""
4121 return _windows_.PageSetupDialogData_GetEnableHelp(*args, **kwargs)
4122
4123 def GetDefaultInfo(*args, **kwargs):
4124 """GetDefaultInfo(self) -> bool"""
4125 return _windows_.PageSetupDialogData_GetDefaultInfo(*args, **kwargs)
4126
4127 def GetMarginTopLeft(*args, **kwargs):
4128 """GetMarginTopLeft(self) -> Point"""
4129 return _windows_.PageSetupDialogData_GetMarginTopLeft(*args, **kwargs)
4130
4131 def GetMarginBottomRight(*args, **kwargs):
4132 """GetMarginBottomRight(self) -> Point"""
4133 return _windows_.PageSetupDialogData_GetMarginBottomRight(*args, **kwargs)
4134
4135 def GetMinMarginTopLeft(*args, **kwargs):
4136 """GetMinMarginTopLeft(self) -> Point"""
4137 return _windows_.PageSetupDialogData_GetMinMarginTopLeft(*args, **kwargs)
4138
4139 def GetMinMarginBottomRight(*args, **kwargs):
4140 """GetMinMarginBottomRight(self) -> Point"""
4141 return _windows_.PageSetupDialogData_GetMinMarginBottomRight(*args, **kwargs)
4142
4143 def GetPaperId(*args, **kwargs):
4144 """GetPaperId(self) -> int"""
4145 return _windows_.PageSetupDialogData_GetPaperId(*args, **kwargs)
4146
4147 def GetPaperSize(*args, **kwargs):
4148 """GetPaperSize(self) -> Size"""
4149 return _windows_.PageSetupDialogData_GetPaperSize(*args, **kwargs)
4150
4151 def GetPrintData(*args, **kwargs):
4152 """GetPrintData(self) -> PrintData"""
4153 return _windows_.PageSetupDialogData_GetPrintData(*args, **kwargs)
4154
4155 def Ok(*args, **kwargs):
4156 """Ok(self) -> bool"""
4157 return _windows_.PageSetupDialogData_Ok(*args, **kwargs)
4158
4159 def SetDefaultInfo(*args, **kwargs):
4160 """SetDefaultInfo(self, bool flag)"""
4161 return _windows_.PageSetupDialogData_SetDefaultInfo(*args, **kwargs)
4162
4163 def SetDefaultMinMargins(*args, **kwargs):
4164 """SetDefaultMinMargins(self, bool flag)"""
4165 return _windows_.PageSetupDialogData_SetDefaultMinMargins(*args, **kwargs)
4166
4167 def SetMarginTopLeft(*args, **kwargs):
4168 """SetMarginTopLeft(self, Point pt)"""
4169 return _windows_.PageSetupDialogData_SetMarginTopLeft(*args, **kwargs)
4170
4171 def SetMarginBottomRight(*args, **kwargs):
4172 """SetMarginBottomRight(self, Point pt)"""
4173 return _windows_.PageSetupDialogData_SetMarginBottomRight(*args, **kwargs)
4174
4175 def SetMinMarginTopLeft(*args, **kwargs):
4176 """SetMinMarginTopLeft(self, Point pt)"""
4177 return _windows_.PageSetupDialogData_SetMinMarginTopLeft(*args, **kwargs)
4178
4179 def SetMinMarginBottomRight(*args, **kwargs):
4180 """SetMinMarginBottomRight(self, Point pt)"""
4181 return _windows_.PageSetupDialogData_SetMinMarginBottomRight(*args, **kwargs)
4182
4183 def SetPaperId(*args, **kwargs):
4184 """SetPaperId(self, int id)"""
4185 return _windows_.PageSetupDialogData_SetPaperId(*args, **kwargs)
4186
4187 def SetPaperSize(*args, **kwargs):
4188 """SetPaperSize(self, Size size)"""
4189 return _windows_.PageSetupDialogData_SetPaperSize(*args, **kwargs)
4190
4191 def SetPrintData(*args, **kwargs):
4192 """SetPrintData(self, PrintData printData)"""
4193 return _windows_.PageSetupDialogData_SetPrintData(*args, **kwargs)
4194
4195 def CalculateIdFromPaperSize(*args, **kwargs):
4196 """CalculateIdFromPaperSize(self)"""
4197 return _windows_.PageSetupDialogData_CalculateIdFromPaperSize(*args, **kwargs)
4198
4199 def CalculatePaperSizeFromId(*args, **kwargs):
4200 """CalculatePaperSizeFromId(self)"""
4201 return _windows_.PageSetupDialogData_CalculatePaperSizeFromId(*args, **kwargs)
4202
4203 def __nonzero__(self): return self.Ok()
4204
4205 class PageSetupDialogDataPtr(PageSetupDialogData):
4206 def __init__(self, this):
4207 self.this = this
4208 if not hasattr(self,"thisown"): self.thisown = 0
4209 self.__class__ = PageSetupDialogData
4210 _windows_.PageSetupDialogData_swigregister(PageSetupDialogDataPtr)
4211
4212 class PageSetupDialog(_core.Object):
4213 """Proxy of C++ PageSetupDialog class"""
4214 def __repr__(self):
4215 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4216 def __init__(self, *args, **kwargs):
4217 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
4218 newobj = _windows_.new_PageSetupDialog(*args, **kwargs)
4219 self.this = newobj.this
4220 self.thisown = 1
4221 del newobj.thisown
4222 def GetPageSetupData(*args, **kwargs):
4223 """GetPageSetupData(self) -> PageSetupDialogData"""
4224 return _windows_.PageSetupDialog_GetPageSetupData(*args, **kwargs)
4225
4226 def GetPageSetupDialogData(*args, **kwargs):
4227 """GetPageSetupDialogData(self) -> PageSetupDialogData"""
4228 return _windows_.PageSetupDialog_GetPageSetupDialogData(*args, **kwargs)
4229
4230 def ShowModal(*args, **kwargs):
4231 """ShowModal(self) -> int"""
4232 return _windows_.PageSetupDialog_ShowModal(*args, **kwargs)
4233
4234
4235 class PageSetupDialogPtr(PageSetupDialog):
4236 def __init__(self, this):
4237 self.this = this
4238 if not hasattr(self,"thisown"): self.thisown = 0
4239 self.__class__ = PageSetupDialog
4240 _windows_.PageSetupDialog_swigregister(PageSetupDialogPtr)
4241
4242 class PrintDialogData(_core.Object):
4243 """Proxy of C++ PrintDialogData class"""
4244 def __repr__(self):
4245 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4246 def __init__(self, *args):
4247 """
4248 __init__(self) -> PrintDialogData
4249 __init__(self, PrintData printData) -> PrintDialogData
4250 __init__(self, PrintDialogData printData) -> PrintDialogData
4251 """
4252 newobj = _windows_.new_PrintDialogData(*args)
4253 self.this = newobj.this
4254 self.thisown = 1
4255 del newobj.thisown
4256 def __del__(self, destroy=_windows_.delete_PrintDialogData):
4257 """__del__(self)"""
4258 try:
4259 if self.thisown: destroy(self)
4260 except: pass
4261
4262 def GetFromPage(*args, **kwargs):
4263 """GetFromPage(self) -> int"""
4264 return _windows_.PrintDialogData_GetFromPage(*args, **kwargs)
4265
4266 def GetToPage(*args, **kwargs):
4267 """GetToPage(self) -> int"""
4268 return _windows_.PrintDialogData_GetToPage(*args, **kwargs)
4269
4270 def GetMinPage(*args, **kwargs):
4271 """GetMinPage(self) -> int"""
4272 return _windows_.PrintDialogData_GetMinPage(*args, **kwargs)
4273
4274 def GetMaxPage(*args, **kwargs):
4275 """GetMaxPage(self) -> int"""
4276 return _windows_.PrintDialogData_GetMaxPage(*args, **kwargs)
4277
4278 def GetNoCopies(*args, **kwargs):
4279 """GetNoCopies(self) -> int"""
4280 return _windows_.PrintDialogData_GetNoCopies(*args, **kwargs)
4281
4282 def GetAllPages(*args, **kwargs):
4283 """GetAllPages(self) -> bool"""
4284 return _windows_.PrintDialogData_GetAllPages(*args, **kwargs)
4285
4286 def GetSelection(*args, **kwargs):
4287 """GetSelection(self) -> bool"""
4288 return _windows_.PrintDialogData_GetSelection(*args, **kwargs)
4289
4290 def GetCollate(*args, **kwargs):
4291 """GetCollate(self) -> bool"""
4292 return _windows_.PrintDialogData_GetCollate(*args, **kwargs)
4293
4294 def GetPrintToFile(*args, **kwargs):
4295 """GetPrintToFile(self) -> bool"""
4296 return _windows_.PrintDialogData_GetPrintToFile(*args, **kwargs)
4297
4298 def GetSetupDialog(*args, **kwargs):
4299 """GetSetupDialog(self) -> bool"""
4300 return _windows_.PrintDialogData_GetSetupDialog(*args, **kwargs)
4301
4302 def SetSetupDialog(*args, **kwargs):
4303 """SetSetupDialog(self, bool flag)"""
4304 return _windows_.PrintDialogData_SetSetupDialog(*args, **kwargs)
4305
4306 def SetFromPage(*args, **kwargs):
4307 """SetFromPage(self, int v)"""
4308 return _windows_.PrintDialogData_SetFromPage(*args, **kwargs)
4309
4310 def SetToPage(*args, **kwargs):
4311 """SetToPage(self, int v)"""
4312 return _windows_.PrintDialogData_SetToPage(*args, **kwargs)
4313
4314 def SetMinPage(*args, **kwargs):
4315 """SetMinPage(self, int v)"""
4316 return _windows_.PrintDialogData_SetMinPage(*args, **kwargs)
4317
4318 def SetMaxPage(*args, **kwargs):
4319 """SetMaxPage(self, int v)"""
4320 return _windows_.PrintDialogData_SetMaxPage(*args, **kwargs)
4321
4322 def SetNoCopies(*args, **kwargs):
4323 """SetNoCopies(self, int v)"""
4324 return _windows_.PrintDialogData_SetNoCopies(*args, **kwargs)
4325
4326 def SetAllPages(*args, **kwargs):
4327 """SetAllPages(self, bool flag)"""
4328 return _windows_.PrintDialogData_SetAllPages(*args, **kwargs)
4329
4330 def SetSelection(*args, **kwargs):
4331 """SetSelection(self, bool flag)"""
4332 return _windows_.PrintDialogData_SetSelection(*args, **kwargs)
4333
4334 def SetCollate(*args, **kwargs):
4335 """SetCollate(self, bool flag)"""
4336 return _windows_.PrintDialogData_SetCollate(*args, **kwargs)
4337
4338 def SetPrintToFile(*args, **kwargs):
4339 """SetPrintToFile(self, bool flag)"""
4340 return _windows_.PrintDialogData_SetPrintToFile(*args, **kwargs)
4341
4342 def EnablePrintToFile(*args, **kwargs):
4343 """EnablePrintToFile(self, bool flag)"""
4344 return _windows_.PrintDialogData_EnablePrintToFile(*args, **kwargs)
4345
4346 def EnableSelection(*args, **kwargs):
4347 """EnableSelection(self, bool flag)"""
4348 return _windows_.PrintDialogData_EnableSelection(*args, **kwargs)
4349
4350 def EnablePageNumbers(*args, **kwargs):
4351 """EnablePageNumbers(self, bool flag)"""
4352 return _windows_.PrintDialogData_EnablePageNumbers(*args, **kwargs)
4353
4354 def EnableHelp(*args, **kwargs):
4355 """EnableHelp(self, bool flag)"""
4356 return _windows_.PrintDialogData_EnableHelp(*args, **kwargs)
4357
4358 def GetEnablePrintToFile(*args, **kwargs):
4359 """GetEnablePrintToFile(self) -> bool"""
4360 return _windows_.PrintDialogData_GetEnablePrintToFile(*args, **kwargs)
4361
4362 def GetEnableSelection(*args, **kwargs):
4363 """GetEnableSelection(self) -> bool"""
4364 return _windows_.PrintDialogData_GetEnableSelection(*args, **kwargs)
4365
4366 def GetEnablePageNumbers(*args, **kwargs):
4367 """GetEnablePageNumbers(self) -> bool"""
4368 return _windows_.PrintDialogData_GetEnablePageNumbers(*args, **kwargs)
4369
4370 def GetEnableHelp(*args, **kwargs):
4371 """GetEnableHelp(self) -> bool"""
4372 return _windows_.PrintDialogData_GetEnableHelp(*args, **kwargs)
4373
4374 def Ok(*args, **kwargs):
4375 """Ok(self) -> bool"""
4376 return _windows_.PrintDialogData_Ok(*args, **kwargs)
4377
4378 def GetPrintData(*args, **kwargs):
4379 """GetPrintData(self) -> PrintData"""
4380 return _windows_.PrintDialogData_GetPrintData(*args, **kwargs)
4381
4382 def SetPrintData(*args, **kwargs):
4383 """SetPrintData(self, PrintData printData)"""
4384 return _windows_.PrintDialogData_SetPrintData(*args, **kwargs)
4385
4386 def __nonzero__(self): return self.Ok()
4387
4388 class PrintDialogDataPtr(PrintDialogData):
4389 def __init__(self, this):
4390 self.this = this
4391 if not hasattr(self,"thisown"): self.thisown = 0
4392 self.__class__ = PrintDialogData
4393 _windows_.PrintDialogData_swigregister(PrintDialogDataPtr)
4394
4395 class PrintDialog(_core.Object):
4396 """Proxy of C++ PrintDialog class"""
4397 def __repr__(self):
4398 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4399 def __init__(self, *args, **kwargs):
4400 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4401 newobj = _windows_.new_PrintDialog(*args, **kwargs)
4402 self.this = newobj.this
4403 self.thisown = 1
4404 del newobj.thisown
4405 def ShowModal(*args, **kwargs):
4406 """ShowModal(self) -> int"""
4407 return _windows_.PrintDialog_ShowModal(*args, **kwargs)
4408
4409 def GetPrintDialogData(*args, **kwargs):
4410 """GetPrintDialogData(self) -> PrintDialogData"""
4411 return _windows_.PrintDialog_GetPrintDialogData(*args, **kwargs)
4412
4413 def GetPrintData(*args, **kwargs):
4414 """GetPrintData(self) -> PrintData"""
4415 return _windows_.PrintDialog_GetPrintData(*args, **kwargs)
4416
4417 def GetPrintDC(*args, **kwargs):
4418 """GetPrintDC(self) -> DC"""
4419 return _windows_.PrintDialog_GetPrintDC(*args, **kwargs)
4420
4421
4422 class PrintDialogPtr(PrintDialog):
4423 def __init__(self, this):
4424 self.this = this
4425 if not hasattr(self,"thisown"): self.thisown = 0
4426 self.__class__ = PrintDialog
4427 _windows_.PrintDialog_swigregister(PrintDialogPtr)
4428
4429 PRINTER_NO_ERROR = _windows_.PRINTER_NO_ERROR
4430 PRINTER_CANCELLED = _windows_.PRINTER_CANCELLED
4431 PRINTER_ERROR = _windows_.PRINTER_ERROR
4432 class Printer(_core.Object):
4433 """Proxy of C++ Printer class"""
4434 def __repr__(self):
4435 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4436 def __init__(self, *args, **kwargs):
4437 """__init__(self, PrintDialogData data=None) -> Printer"""
4438 newobj = _windows_.new_Printer(*args, **kwargs)
4439 self.this = newobj.this
4440 self.thisown = 1
4441 del newobj.thisown
4442 def __del__(self, destroy=_windows_.delete_Printer):
4443 """__del__(self)"""
4444 try:
4445 if self.thisown: destroy(self)
4446 except: pass
4447
4448 def CreateAbortWindow(*args, **kwargs):
4449 """CreateAbortWindow(self, Window parent, Printout printout) -> Window"""
4450 return _windows_.Printer_CreateAbortWindow(*args, **kwargs)
4451
4452 def ReportError(*args, **kwargs):
4453 """ReportError(self, Window parent, Printout printout, String message)"""
4454 return _windows_.Printer_ReportError(*args, **kwargs)
4455
4456 def Setup(*args, **kwargs):
4457 """Setup(self, Window parent) -> bool"""
4458 return _windows_.Printer_Setup(*args, **kwargs)
4459
4460 def Print(*args, **kwargs):
4461 """Print(self, Window parent, Printout printout, bool prompt=True) -> bool"""
4462 return _windows_.Printer_Print(*args, **kwargs)
4463
4464 def PrintDialog(*args, **kwargs):
4465 """PrintDialog(self, Window parent) -> DC"""
4466 return _windows_.Printer_PrintDialog(*args, **kwargs)
4467
4468 def GetPrintDialogData(*args, **kwargs):
4469 """GetPrintDialogData(self) -> PrintDialogData"""
4470 return _windows_.Printer_GetPrintDialogData(*args, **kwargs)
4471
4472 def GetAbort(*args, **kwargs):
4473 """GetAbort(self) -> bool"""
4474 return _windows_.Printer_GetAbort(*args, **kwargs)
4475
4476 def GetLastError(*args, **kwargs):
4477 """GetLastError() -> int"""
4478 return _windows_.Printer_GetLastError(*args, **kwargs)
4479
4480 GetLastError = staticmethod(GetLastError)
4481
4482 class PrinterPtr(Printer):
4483 def __init__(self, this):
4484 self.this = this
4485 if not hasattr(self,"thisown"): self.thisown = 0
4486 self.__class__ = Printer
4487 _windows_.Printer_swigregister(PrinterPtr)
4488
4489 def Printer_GetLastError(*args, **kwargs):
4490 """Printer_GetLastError() -> int"""
4491 return _windows_.Printer_GetLastError(*args, **kwargs)
4492
4493 class Printout(_core.Object):
4494 """Proxy of C++ Printout class"""
4495 def __repr__(self):
4496 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4497 def __init__(self, *args, **kwargs):
4498 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4499 newobj = _windows_.new_Printout(*args, **kwargs)
4500 self.this = newobj.this
4501 self.thisown = 1
4502 del newobj.thisown
4503 self._setCallbackInfo(self, Printout)
4504
4505 def _setCallbackInfo(*args, **kwargs):
4506 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4507 return _windows_.Printout__setCallbackInfo(*args, **kwargs)
4508
4509 def GetTitle(*args, **kwargs):
4510 """GetTitle(self) -> String"""
4511 return _windows_.Printout_GetTitle(*args, **kwargs)
4512
4513 def GetDC(*args, **kwargs):
4514 """GetDC(self) -> DC"""
4515 return _windows_.Printout_GetDC(*args, **kwargs)
4516
4517 def SetDC(*args, **kwargs):
4518 """SetDC(self, DC dc)"""
4519 return _windows_.Printout_SetDC(*args, **kwargs)
4520
4521 def SetPageSizePixels(*args, **kwargs):
4522 """SetPageSizePixels(self, int w, int h)"""
4523 return _windows_.Printout_SetPageSizePixels(*args, **kwargs)
4524
4525 def GetPageSizePixels(*args, **kwargs):
4526 """GetPageSizePixels() -> (w, h)"""
4527 return _windows_.Printout_GetPageSizePixels(*args, **kwargs)
4528
4529 def SetPageSizeMM(*args, **kwargs):
4530 """SetPageSizeMM(self, int w, int h)"""
4531 return _windows_.Printout_SetPageSizeMM(*args, **kwargs)
4532
4533 def GetPageSizeMM(*args, **kwargs):
4534 """GetPageSizeMM() -> (w, h)"""
4535 return _windows_.Printout_GetPageSizeMM(*args, **kwargs)
4536
4537 def SetPPIScreen(*args, **kwargs):
4538 """SetPPIScreen(self, int x, int y)"""
4539 return _windows_.Printout_SetPPIScreen(*args, **kwargs)
4540
4541 def GetPPIScreen(*args, **kwargs):
4542 """GetPPIScreen() -> (x,y)"""
4543 return _windows_.Printout_GetPPIScreen(*args, **kwargs)
4544
4545 def SetPPIPrinter(*args, **kwargs):
4546 """SetPPIPrinter(self, int x, int y)"""
4547 return _windows_.Printout_SetPPIPrinter(*args, **kwargs)
4548
4549 def GetPPIPrinter(*args, **kwargs):
4550 """GetPPIPrinter() -> (x,y)"""
4551 return _windows_.Printout_GetPPIPrinter(*args, **kwargs)
4552
4553 def IsPreview(*args, **kwargs):
4554 """IsPreview(self) -> bool"""
4555 return _windows_.Printout_IsPreview(*args, **kwargs)
4556
4557 def SetIsPreview(*args, **kwargs):
4558 """SetIsPreview(self, bool p)"""
4559 return _windows_.Printout_SetIsPreview(*args, **kwargs)
4560
4561 def base_OnBeginDocument(*args, **kwargs):
4562 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4563 return _windows_.Printout_base_OnBeginDocument(*args, **kwargs)
4564
4565 def base_OnEndDocument(*args, **kwargs):
4566 """base_OnEndDocument(self)"""
4567 return _windows_.Printout_base_OnEndDocument(*args, **kwargs)
4568
4569 def base_OnBeginPrinting(*args, **kwargs):
4570 """base_OnBeginPrinting(self)"""
4571 return _windows_.Printout_base_OnBeginPrinting(*args, **kwargs)
4572
4573 def base_OnEndPrinting(*args, **kwargs):
4574 """base_OnEndPrinting(self)"""
4575 return _windows_.Printout_base_OnEndPrinting(*args, **kwargs)
4576
4577 def base_OnPreparePrinting(*args, **kwargs):
4578 """base_OnPreparePrinting(self)"""
4579 return _windows_.Printout_base_OnPreparePrinting(*args, **kwargs)
4580
4581 def base_HasPage(*args, **kwargs):
4582 """base_HasPage(self, int page) -> bool"""
4583 return _windows_.Printout_base_HasPage(*args, **kwargs)
4584
4585 def base_GetPageInfo(*args, **kwargs):
4586 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4587 return _windows_.Printout_base_GetPageInfo(*args, **kwargs)
4588
4589
4590 class PrintoutPtr(Printout):
4591 def __init__(self, this):
4592 self.this = this
4593 if not hasattr(self,"thisown"): self.thisown = 0
4594 self.__class__ = Printout
4595 _windows_.Printout_swigregister(PrintoutPtr)
4596
4597 class PreviewCanvas(ScrolledWindow):
4598 """Proxy of C++ PreviewCanvas class"""
4599 def __repr__(self):
4600 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4601 def __init__(self, *args, **kwargs):
4602 """
4603 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4604 Size size=DefaultSize, long style=0,
4605 String name=PreviewCanvasNameStr) -> PreviewCanvas
4606 """
4607 newobj = _windows_.new_PreviewCanvas(*args, **kwargs)
4608 self.this = newobj.this
4609 self.thisown = 1
4610 del newobj.thisown
4611 self._setOORInfo(self)
4612
4613
4614 class PreviewCanvasPtr(PreviewCanvas):
4615 def __init__(self, this):
4616 self.this = this
4617 if not hasattr(self,"thisown"): self.thisown = 0
4618 self.__class__ = PreviewCanvas
4619 _windows_.PreviewCanvas_swigregister(PreviewCanvasPtr)
4620
4621 class PreviewFrame(Frame):
4622 """Proxy of C++ PreviewFrame class"""
4623 def __repr__(self):
4624 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4625 def __init__(self, *args, **kwargs):
4626 """
4627 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4628 Size size=DefaultSize,
4629 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4630 """
4631 newobj = _windows_.new_PreviewFrame(*args, **kwargs)
4632 self.this = newobj.this
4633 self.thisown = 1
4634 del newobj.thisown
4635 self._setOORInfo(self)
4636
4637 def Initialize(*args, **kwargs):
4638 """Initialize(self)"""
4639 return _windows_.PreviewFrame_Initialize(*args, **kwargs)
4640
4641 def CreateControlBar(*args, **kwargs):
4642 """CreateControlBar(self)"""
4643 return _windows_.PreviewFrame_CreateControlBar(*args, **kwargs)
4644
4645 def CreateCanvas(*args, **kwargs):
4646 """CreateCanvas(self)"""
4647 return _windows_.PreviewFrame_CreateCanvas(*args, **kwargs)
4648
4649 def GetControlBar(*args, **kwargs):
4650 """GetControlBar(self) -> PreviewControlBar"""
4651 return _windows_.PreviewFrame_GetControlBar(*args, **kwargs)
4652
4653
4654 class PreviewFramePtr(PreviewFrame):
4655 def __init__(self, this):
4656 self.this = this
4657 if not hasattr(self,"thisown"): self.thisown = 0
4658 self.__class__ = PreviewFrame
4659 _windows_.PreviewFrame_swigregister(PreviewFramePtr)
4660
4661 PREVIEW_PRINT = _windows_.PREVIEW_PRINT
4662 PREVIEW_PREVIOUS = _windows_.PREVIEW_PREVIOUS
4663 PREVIEW_NEXT = _windows_.PREVIEW_NEXT
4664 PREVIEW_ZOOM = _windows_.PREVIEW_ZOOM
4665 PREVIEW_FIRST = _windows_.PREVIEW_FIRST
4666 PREVIEW_LAST = _windows_.PREVIEW_LAST
4667 PREVIEW_GOTO = _windows_.PREVIEW_GOTO
4668 PREVIEW_DEFAULT = _windows_.PREVIEW_DEFAULT
4669 ID_PREVIEW_CLOSE = _windows_.ID_PREVIEW_CLOSE
4670 ID_PREVIEW_NEXT = _windows_.ID_PREVIEW_NEXT
4671 ID_PREVIEW_PREVIOUS = _windows_.ID_PREVIEW_PREVIOUS
4672 ID_PREVIEW_PRINT = _windows_.ID_PREVIEW_PRINT
4673 ID_PREVIEW_ZOOM = _windows_.ID_PREVIEW_ZOOM
4674 ID_PREVIEW_FIRST = _windows_.ID_PREVIEW_FIRST
4675 ID_PREVIEW_LAST = _windows_.ID_PREVIEW_LAST
4676 ID_PREVIEW_GOTO = _windows_.ID_PREVIEW_GOTO
4677 class PreviewControlBar(Panel):
4678 """Proxy of C++ PreviewControlBar class"""
4679 def __repr__(self):
4680 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4681 def __init__(self, *args, **kwargs):
4682 """
4683 __init__(self, PrintPreview preview, long buttons, Window parent,
4684 Point pos=DefaultPosition, Size size=DefaultSize,
4685 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4686 """
4687 newobj = _windows_.new_PreviewControlBar(*args, **kwargs)
4688 self.this = newobj.this
4689 self.thisown = 1
4690 del newobj.thisown
4691 self._setOORInfo(self)
4692
4693 def GetZoomControl(*args, **kwargs):
4694 """GetZoomControl(self) -> int"""
4695 return _windows_.PreviewControlBar_GetZoomControl(*args, **kwargs)
4696
4697 def SetZoomControl(*args, **kwargs):
4698 """SetZoomControl(self, int zoom)"""
4699 return _windows_.PreviewControlBar_SetZoomControl(*args, **kwargs)
4700
4701 def GetPrintPreview(*args, **kwargs):
4702 """GetPrintPreview(self) -> PrintPreview"""
4703 return _windows_.PreviewControlBar_GetPrintPreview(*args, **kwargs)
4704
4705 def OnNext(*args, **kwargs):
4706 """OnNext(self)"""
4707 return _windows_.PreviewControlBar_OnNext(*args, **kwargs)
4708
4709 def OnPrevious(*args, **kwargs):
4710 """OnPrevious(self)"""
4711 return _windows_.PreviewControlBar_OnPrevious(*args, **kwargs)
4712
4713 def OnFirst(*args, **kwargs):
4714 """OnFirst(self)"""
4715 return _windows_.PreviewControlBar_OnFirst(*args, **kwargs)
4716
4717 def OnLast(*args, **kwargs):
4718 """OnLast(self)"""
4719 return _windows_.PreviewControlBar_OnLast(*args, **kwargs)
4720
4721 def OnGoto(*args, **kwargs):
4722 """OnGoto(self)"""
4723 return _windows_.PreviewControlBar_OnGoto(*args, **kwargs)
4724
4725
4726 class PreviewControlBarPtr(PreviewControlBar):
4727 def __init__(self, this):
4728 self.this = this
4729 if not hasattr(self,"thisown"): self.thisown = 0
4730 self.__class__ = PreviewControlBar
4731 _windows_.PreviewControlBar_swigregister(PreviewControlBarPtr)
4732
4733 class PrintPreview(_core.Object):
4734 """Proxy of C++ PrintPreview class"""
4735 def __repr__(self):
4736 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4737 def __init__(self, *args):
4738 """
4739 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4740 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4741 """
4742 newobj = _windows_.new_PrintPreview(*args)
4743 self.this = newobj.this
4744 self.thisown = 1
4745 del newobj.thisown
4746 def SetCurrentPage(*args, **kwargs):
4747 """SetCurrentPage(self, int pageNum) -> bool"""
4748 return _windows_.PrintPreview_SetCurrentPage(*args, **kwargs)
4749
4750 def GetCurrentPage(*args, **kwargs):
4751 """GetCurrentPage(self) -> int"""
4752 return _windows_.PrintPreview_GetCurrentPage(*args, **kwargs)
4753
4754 def SetPrintout(*args, **kwargs):
4755 """SetPrintout(self, Printout printout)"""
4756 return _windows_.PrintPreview_SetPrintout(*args, **kwargs)
4757
4758 def GetPrintout(*args, **kwargs):
4759 """GetPrintout(self) -> Printout"""
4760 return _windows_.PrintPreview_GetPrintout(*args, **kwargs)
4761
4762 def GetPrintoutForPrinting(*args, **kwargs):
4763 """GetPrintoutForPrinting(self) -> Printout"""
4764 return _windows_.PrintPreview_GetPrintoutForPrinting(*args, **kwargs)
4765
4766 def SetFrame(*args, **kwargs):
4767 """SetFrame(self, Frame frame)"""
4768 return _windows_.PrintPreview_SetFrame(*args, **kwargs)
4769
4770 def SetCanvas(*args, **kwargs):
4771 """SetCanvas(self, PreviewCanvas canvas)"""
4772 return _windows_.PrintPreview_SetCanvas(*args, **kwargs)
4773
4774 def GetFrame(*args, **kwargs):
4775 """GetFrame(self) -> Frame"""
4776 return _windows_.PrintPreview_GetFrame(*args, **kwargs)
4777
4778 def GetCanvas(*args, **kwargs):
4779 """GetCanvas(self) -> PreviewCanvas"""
4780 return _windows_.PrintPreview_GetCanvas(*args, **kwargs)
4781
4782 def PaintPage(*args, **kwargs):
4783 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4784 return _windows_.PrintPreview_PaintPage(*args, **kwargs)
4785
4786 def DrawBlankPage(*args, **kwargs):
4787 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4788 return _windows_.PrintPreview_DrawBlankPage(*args, **kwargs)
4789
4790 def RenderPage(*args, **kwargs):
4791 """RenderPage(self, int pageNum) -> bool"""
4792 return _windows_.PrintPreview_RenderPage(*args, **kwargs)
4793
4794 def AdjustScrollbars(*args, **kwargs):
4795 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4796 return _windows_.PrintPreview_AdjustScrollbars(*args, **kwargs)
4797
4798 def GetPrintDialogData(*args, **kwargs):
4799 """GetPrintDialogData(self) -> PrintDialogData"""
4800 return _windows_.PrintPreview_GetPrintDialogData(*args, **kwargs)
4801
4802 def SetZoom(*args, **kwargs):
4803 """SetZoom(self, int percent)"""
4804 return _windows_.PrintPreview_SetZoom(*args, **kwargs)
4805
4806 def GetZoom(*args, **kwargs):
4807 """GetZoom(self) -> int"""
4808 return _windows_.PrintPreview_GetZoom(*args, **kwargs)
4809
4810 def GetMaxPage(*args, **kwargs):
4811 """GetMaxPage(self) -> int"""
4812 return _windows_.PrintPreview_GetMaxPage(*args, **kwargs)
4813
4814 def GetMinPage(*args, **kwargs):
4815 """GetMinPage(self) -> int"""
4816 return _windows_.PrintPreview_GetMinPage(*args, **kwargs)
4817
4818 def Ok(*args, **kwargs):
4819 """Ok(self) -> bool"""
4820 return _windows_.PrintPreview_Ok(*args, **kwargs)
4821
4822 def SetOk(*args, **kwargs):
4823 """SetOk(self, bool ok)"""
4824 return _windows_.PrintPreview_SetOk(*args, **kwargs)
4825
4826 def Print(*args, **kwargs):
4827 """Print(self, bool interactive) -> bool"""
4828 return _windows_.PrintPreview_Print(*args, **kwargs)
4829
4830 def DetermineScaling(*args, **kwargs):
4831 """DetermineScaling(self)"""
4832 return _windows_.PrintPreview_DetermineScaling(*args, **kwargs)
4833
4834 def __nonzero__(self): return self.Ok()
4835
4836 class PrintPreviewPtr(PrintPreview):
4837 def __init__(self, this):
4838 self.this = this
4839 if not hasattr(self,"thisown"): self.thisown = 0
4840 self.__class__ = PrintPreview
4841 _windows_.PrintPreview_swigregister(PrintPreviewPtr)
4842
4843 class PyPrintPreview(PrintPreview):
4844 """Proxy of C++ PyPrintPreview class"""
4845 def __repr__(self):
4846 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4847 def __init__(self, *args):
4848 """
4849 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4850 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4851 """
4852 newobj = _windows_.new_PyPrintPreview(*args)
4853 self.this = newobj.this
4854 self.thisown = 1
4855 del newobj.thisown
4856 self._setCallbackInfo(self, PyPrintPreview)
4857
4858 def _setCallbackInfo(*args, **kwargs):
4859 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4860 return _windows_.PyPrintPreview__setCallbackInfo(*args, **kwargs)
4861
4862 def base_SetCurrentPage(*args, **kwargs):
4863 """base_SetCurrentPage(self, int pageNum) -> bool"""
4864 return _windows_.PyPrintPreview_base_SetCurrentPage(*args, **kwargs)
4865
4866 def base_PaintPage(*args, **kwargs):
4867 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4868 return _windows_.PyPrintPreview_base_PaintPage(*args, **kwargs)
4869
4870 def base_DrawBlankPage(*args, **kwargs):
4871 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4872 return _windows_.PyPrintPreview_base_DrawBlankPage(*args, **kwargs)
4873
4874 def base_RenderPage(*args, **kwargs):
4875 """base_RenderPage(self, int pageNum) -> bool"""
4876 return _windows_.PyPrintPreview_base_RenderPage(*args, **kwargs)
4877
4878 def base_SetZoom(*args, **kwargs):
4879 """base_SetZoom(self, int percent)"""
4880 return _windows_.PyPrintPreview_base_SetZoom(*args, **kwargs)
4881
4882 def base_Print(*args, **kwargs):
4883 """base_Print(self, bool interactive) -> bool"""
4884 return _windows_.PyPrintPreview_base_Print(*args, **kwargs)
4885
4886 def base_DetermineScaling(*args, **kwargs):
4887 """base_DetermineScaling(self)"""
4888 return _windows_.PyPrintPreview_base_DetermineScaling(*args, **kwargs)
4889
4890
4891 class PyPrintPreviewPtr(PyPrintPreview):
4892 def __init__(self, this):
4893 self.this = this
4894 if not hasattr(self,"thisown"): self.thisown = 0
4895 self.__class__ = PyPrintPreview
4896 _windows_.PyPrintPreview_swigregister(PyPrintPreviewPtr)
4897
4898 class PyPreviewFrame(PreviewFrame):
4899 """Proxy of C++ PyPreviewFrame class"""
4900 def __repr__(self):
4901 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4902 def __init__(self, *args, **kwargs):
4903 """
4904 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4905 Size size=DefaultSize,
4906 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4907 """
4908 newobj = _windows_.new_PyPreviewFrame(*args, **kwargs)
4909 self.this = newobj.this
4910 self.thisown = 1
4911 del newobj.thisown
4912 self._setCallbackInfo(self, PyPreviewFrame); self._setOORInfo(self)
4913
4914 def _setCallbackInfo(*args, **kwargs):
4915 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4916 return _windows_.PyPreviewFrame__setCallbackInfo(*args, **kwargs)
4917
4918 def SetPreviewCanvas(*args, **kwargs):
4919 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4920 return _windows_.PyPreviewFrame_SetPreviewCanvas(*args, **kwargs)
4921
4922 def SetControlBar(*args, **kwargs):
4923 """SetControlBar(self, PreviewControlBar bar)"""
4924 return _windows_.PyPreviewFrame_SetControlBar(*args, **kwargs)
4925
4926 def base_Initialize(*args, **kwargs):
4927 """base_Initialize(self)"""
4928 return _windows_.PyPreviewFrame_base_Initialize(*args, **kwargs)
4929
4930 def base_CreateCanvas(*args, **kwargs):
4931 """base_CreateCanvas(self)"""
4932 return _windows_.PyPreviewFrame_base_CreateCanvas(*args, **kwargs)
4933
4934 def base_CreateControlBar(*args, **kwargs):
4935 """base_CreateControlBar(self)"""
4936 return _windows_.PyPreviewFrame_base_CreateControlBar(*args, **kwargs)
4937
4938
4939 class PyPreviewFramePtr(PyPreviewFrame):
4940 def __init__(self, this):
4941 self.this = this
4942 if not hasattr(self,"thisown"): self.thisown = 0
4943 self.__class__ = PyPreviewFrame
4944 _windows_.PyPreviewFrame_swigregister(PyPreviewFramePtr)
4945
4946 class PyPreviewControlBar(PreviewControlBar):
4947 """Proxy of C++ PyPreviewControlBar class"""
4948 def __repr__(self):
4949 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4950 def __init__(self, *args, **kwargs):
4951 """
4952 __init__(self, PrintPreview preview, long buttons, Window parent,
4953 Point pos=DefaultPosition, Size size=DefaultSize,
4954 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4955 """
4956 newobj = _windows_.new_PyPreviewControlBar(*args, **kwargs)
4957 self.this = newobj.this
4958 self.thisown = 1
4959 del newobj.thisown
4960 self._setCallbackInfo(self, PyPreviewControlBar); self._setOORInfo(self)
4961
4962 def _setCallbackInfo(*args, **kwargs):
4963 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4964 return _windows_.PyPreviewControlBar__setCallbackInfo(*args, **kwargs)
4965
4966 def SetPrintPreview(*args, **kwargs):
4967 """SetPrintPreview(self, PrintPreview preview)"""
4968 return _windows_.PyPreviewControlBar_SetPrintPreview(*args, **kwargs)
4969
4970 def base_CreateButtons(*args, **kwargs):
4971 """base_CreateButtons(self)"""
4972 return _windows_.PyPreviewControlBar_base_CreateButtons(*args, **kwargs)
4973
4974 def base_SetZoomControl(*args, **kwargs):
4975 """base_SetZoomControl(self, int zoom)"""
4976 return _windows_.PyPreviewControlBar_base_SetZoomControl(*args, **kwargs)
4977
4978
4979 class PyPreviewControlBarPtr(PyPreviewControlBar):
4980 def __init__(self, this):
4981 self.this = this
4982 if not hasattr(self,"thisown"): self.thisown = 0
4983 self.__class__ = PyPreviewControlBar
4984 _windows_.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr)
4985
4986