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