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