]> git.saurik.com Git - wxWidgets.git/blob - wxPython/src/gtk/_windows.py
b3da44b90cebef8a65e68a766576a467f4d68433
[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
1837 class HtmlListBoxPtr(HtmlListBox):
1838 def __init__(self, this):
1839 self.this = this
1840 if not hasattr(self,"thisown"): self.thisown = 0
1841 self.__class__ = HtmlListBox
1842 _windows_.HtmlListBox_swigregister(HtmlListBoxPtr)
1843
1844 def PreHtmlListBox(*args, **kwargs):
1845 """PreHtmlListBox() -> HtmlListBox"""
1846 val = _windows_.new_PreHtmlListBox(*args, **kwargs)
1847 val.thisown = 1
1848 return val
1849
1850 #---------------------------------------------------------------------------
1851
1852 class TaskBarIcon(_core.EvtHandler):
1853 def __repr__(self):
1854 return "<%s.%s; proxy of C++ wxTaskBarIcon instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1855 def __init__(self, *args, **kwargs):
1856 """__init__(self) -> TaskBarIcon"""
1857 newobj = _windows_.new_TaskBarIcon(*args, **kwargs)
1858 self.this = newobj.this
1859 self.thisown = 1
1860 del newobj.thisown
1861 def __del__(self, destroy=_windows_.delete_TaskBarIcon):
1862 """__del__(self)"""
1863 try:
1864 if self.thisown: destroy(self)
1865 except: pass
1866
1867 def Destroy(*args, **kwargs):
1868 """
1869 Destroy(self)
1870
1871 Deletes the C++ object this Python object is a proxy for.
1872 """
1873 return _windows_.TaskBarIcon_Destroy(*args, **kwargs)
1874
1875 def IsOk(*args, **kwargs):
1876 """IsOk(self) -> bool"""
1877 return _windows_.TaskBarIcon_IsOk(*args, **kwargs)
1878
1879 def __nonzero__(self): return self.IsOk()
1880 def IsIconInstalled(*args, **kwargs):
1881 """IsIconInstalled(self) -> bool"""
1882 return _windows_.TaskBarIcon_IsIconInstalled(*args, **kwargs)
1883
1884 def SetIcon(*args, **kwargs):
1885 """SetIcon(self, Icon icon, String tooltip=EmptyString) -> bool"""
1886 return _windows_.TaskBarIcon_SetIcon(*args, **kwargs)
1887
1888 def RemoveIcon(*args, **kwargs):
1889 """RemoveIcon(self) -> bool"""
1890 return _windows_.TaskBarIcon_RemoveIcon(*args, **kwargs)
1891
1892 def PopupMenu(*args, **kwargs):
1893 """PopupMenu(self, Menu menu) -> bool"""
1894 return _windows_.TaskBarIcon_PopupMenu(*args, **kwargs)
1895
1896
1897 class TaskBarIconPtr(TaskBarIcon):
1898 def __init__(self, this):
1899 self.this = this
1900 if not hasattr(self,"thisown"): self.thisown = 0
1901 self.__class__ = TaskBarIcon
1902 _windows_.TaskBarIcon_swigregister(TaskBarIconPtr)
1903
1904 class TaskBarIconEvent(_core.Event):
1905 def __repr__(self):
1906 return "<%s.%s; proxy of C++ wxTaskBarIconEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1907 def __init__(self, *args, **kwargs):
1908 """__init__(self, wxEventType evtType, TaskBarIcon tbIcon) -> TaskBarIconEvent"""
1909 newobj = _windows_.new_TaskBarIconEvent(*args, **kwargs)
1910 self.this = newobj.this
1911 self.thisown = 1
1912 del newobj.thisown
1913
1914 class TaskBarIconEventPtr(TaskBarIconEvent):
1915 def __init__(self, this):
1916 self.this = this
1917 if not hasattr(self,"thisown"): self.thisown = 0
1918 self.__class__ = TaskBarIconEvent
1919 _windows_.TaskBarIconEvent_swigregister(TaskBarIconEventPtr)
1920
1921 wxEVT_TASKBAR_MOVE = _windows_.wxEVT_TASKBAR_MOVE
1922 wxEVT_TASKBAR_LEFT_DOWN = _windows_.wxEVT_TASKBAR_LEFT_DOWN
1923 wxEVT_TASKBAR_LEFT_UP = _windows_.wxEVT_TASKBAR_LEFT_UP
1924 wxEVT_TASKBAR_RIGHT_DOWN = _windows_.wxEVT_TASKBAR_RIGHT_DOWN
1925 wxEVT_TASKBAR_RIGHT_UP = _windows_.wxEVT_TASKBAR_RIGHT_UP
1926 wxEVT_TASKBAR_LEFT_DCLICK = _windows_.wxEVT_TASKBAR_LEFT_DCLICK
1927 wxEVT_TASKBAR_RIGHT_DCLICK = _windows_.wxEVT_TASKBAR_RIGHT_DCLICK
1928 EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
1929 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
1930 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
1931 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
1932 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
1933 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
1934 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
1935
1936 #---------------------------------------------------------------------------
1937
1938 class ColourData(_core.Object):
1939 """
1940 This class holds a variety of information related to the colour
1941 chooser dialog. This class is used to transfer settings and results
1942 to and from the `wx.ColourDialog`.
1943 """
1944 def __repr__(self):
1945 return "<%s.%s; proxy of C++ wxColourData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
1946 def __init__(self, *args, **kwargs):
1947 """
1948 __init__(self) -> ColourData
1949
1950 Constructor, sets default values.
1951 """
1952 newobj = _windows_.new_ColourData(*args, **kwargs)
1953 self.this = newobj.this
1954 self.thisown = 1
1955 del newobj.thisown
1956 def __del__(self, destroy=_windows_.delete_ColourData):
1957 """__del__(self)"""
1958 try:
1959 if self.thisown: destroy(self)
1960 except: pass
1961
1962 def GetChooseFull(*args, **kwargs):
1963 """
1964 GetChooseFull(self) -> bool
1965
1966 Under Windows, determines whether the Windows colour dialog will
1967 display the full dialog with custom colour selection controls. Has no
1968 meaning under other platforms. The default value is true.
1969 """
1970 return _windows_.ColourData_GetChooseFull(*args, **kwargs)
1971
1972 def GetColour(*args, **kwargs):
1973 """
1974 GetColour(self) -> Colour
1975
1976 Gets the colour (pre)selected by the dialog.
1977 """
1978 return _windows_.ColourData_GetColour(*args, **kwargs)
1979
1980 def GetCustomColour(*args, **kwargs):
1981 """
1982 GetCustomColour(self, int i) -> Colour
1983
1984 Gets the i'th custom colour associated with the colour dialog. i
1985 should be an integer between 0 and 15. The default custom colours are
1986 all white.
1987 """
1988 return _windows_.ColourData_GetCustomColour(*args, **kwargs)
1989
1990 def SetChooseFull(*args, **kwargs):
1991 """
1992 SetChooseFull(self, int flag)
1993
1994 Under Windows, tells the Windows colour dialog to display the full
1995 dialog with custom colour selection controls. Under other platforms,
1996 has no effect. The default value is true.
1997 """
1998 return _windows_.ColourData_SetChooseFull(*args, **kwargs)
1999
2000 def SetColour(*args, **kwargs):
2001 """
2002 SetColour(self, Colour colour)
2003
2004 Sets the default colour for the colour dialog. The default colour is
2005 black.
2006 """
2007 return _windows_.ColourData_SetColour(*args, **kwargs)
2008
2009 def SetCustomColour(*args, **kwargs):
2010 """
2011 SetCustomColour(self, int i, Colour colour)
2012
2013 Sets the i'th custom colour for the colour dialog. i should be an
2014 integer between 0 and 15. The default custom colours are all white.
2015 """
2016 return _windows_.ColourData_SetCustomColour(*args, **kwargs)
2017
2018
2019 class ColourDataPtr(ColourData):
2020 def __init__(self, this):
2021 self.this = this
2022 if not hasattr(self,"thisown"): self.thisown = 0
2023 self.__class__ = ColourData
2024 _windows_.ColourData_swigregister(ColourDataPtr)
2025 FileSelectorPromptStr = cvar.FileSelectorPromptStr
2026 DirSelectorPromptStr = cvar.DirSelectorPromptStr
2027 DirDialogNameStr = cvar.DirDialogNameStr
2028 FileSelectorDefaultWildcardStr = cvar.FileSelectorDefaultWildcardStr
2029 GetTextFromUserPromptStr = cvar.GetTextFromUserPromptStr
2030 MessageBoxCaptionStr = cvar.MessageBoxCaptionStr
2031
2032 class ColourDialog(Dialog):
2033 """This class represents the colour chooser dialog."""
2034 def __repr__(self):
2035 return "<%s.%s; proxy of C++ wxColourDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2036 def __init__(self, *args, **kwargs):
2037 """
2038 __init__(self, Window parent, ColourData data=None) -> ColourDialog
2039
2040 Constructor. Pass a parent window, and optionally a `wx.ColourData`,
2041 which will be copied to the colour dialog's internal ColourData
2042 instance.
2043 """
2044 newobj = _windows_.new_ColourDialog(*args, **kwargs)
2045 self.this = newobj.this
2046 self.thisown = 1
2047 del newobj.thisown
2048 self._setOORInfo(self)
2049
2050 def GetColourData(*args, **kwargs):
2051 """
2052 GetColourData(self) -> ColourData
2053
2054 Returns a reference to the `wx.ColourData` used by the dialog.
2055 """
2056 return _windows_.ColourDialog_GetColourData(*args, **kwargs)
2057
2058
2059 class ColourDialogPtr(ColourDialog):
2060 def __init__(self, this):
2061 self.this = this
2062 if not hasattr(self,"thisown"): self.thisown = 0
2063 self.__class__ = ColourDialog
2064 _windows_.ColourDialog_swigregister(ColourDialogPtr)
2065
2066 class DirDialog(Dialog):
2067 """
2068 wx.DirDialog allows the user to select a directory by browising the
2069 file system.
2070
2071
2072 Window Styles
2073 --------------
2074 ==================== ==========================================
2075 wx.DD_NEW_DIR_BUTTON Add 'Create new directory' button and allow
2076 directory names to be editable. On Windows
2077 the new directory button is only available
2078 with recent versions of the common dialogs.
2079 ==================== ==========================================
2080
2081 """
2082 def __repr__(self):
2083 return "<%s.%s; proxy of C++ wxDirDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2084 def __init__(self, *args, **kwargs):
2085 """
2086 __init__(self, Window parent, String message=DirSelectorPromptStr,
2087 String defaultPath=EmptyString, long style=0,
2088 Point pos=DefaultPosition, Size size=DefaultSize,
2089 String name=DirDialogNameStr) -> DirDialog
2090
2091 Constructor. Use ShowModal method to show the dialog.
2092 """
2093 newobj = _windows_.new_DirDialog(*args, **kwargs)
2094 self.this = newobj.this
2095 self.thisown = 1
2096 del newobj.thisown
2097 self._setOORInfo(self)
2098
2099 def GetPath(*args, **kwargs):
2100 """
2101 GetPath(self) -> String
2102
2103 Returns the default or user-selected path.
2104 """
2105 return _windows_.DirDialog_GetPath(*args, **kwargs)
2106
2107 def GetMessage(*args, **kwargs):
2108 """
2109 GetMessage(self) -> String
2110
2111 Returns the message that will be displayed on the dialog.
2112 """
2113 return _windows_.DirDialog_GetMessage(*args, **kwargs)
2114
2115 def GetStyle(*args, **kwargs):
2116 """
2117 GetStyle(self) -> long
2118
2119 Returns the dialog style.
2120 """
2121 return _windows_.DirDialog_GetStyle(*args, **kwargs)
2122
2123 def SetMessage(*args, **kwargs):
2124 """
2125 SetMessage(self, String message)
2126
2127 Sets the message that will be displayed on the dialog.
2128 """
2129 return _windows_.DirDialog_SetMessage(*args, **kwargs)
2130
2131 def SetPath(*args, **kwargs):
2132 """
2133 SetPath(self, String path)
2134
2135 Sets the default path.
2136 """
2137 return _windows_.DirDialog_SetPath(*args, **kwargs)
2138
2139
2140 class DirDialogPtr(DirDialog):
2141 def __init__(self, this):
2142 self.this = this
2143 if not hasattr(self,"thisown"): self.thisown = 0
2144 self.__class__ = DirDialog
2145 _windows_.DirDialog_swigregister(DirDialogPtr)
2146
2147 class FileDialog(Dialog):
2148 """
2149 wx.FileDialog allows the user to select one or more files from the
2150 filesystem.
2151
2152 In Windows, this is the common file selector dialog. On X based
2153 platforms a generic alternative is used. The path and filename are
2154 distinct elements of a full file pathname. If path is "", the
2155 current directory will be used. If filename is "", no default
2156 filename will be supplied. The wildcard determines what files are
2157 displayed in the file selector, and file extension supplies a type
2158 extension for the required filename.
2159
2160 Both the X and Windows versions implement a wildcard filter. Typing a
2161 filename containing wildcards (*, ?) in the filename text item, and
2162 clicking on Ok, will result in only those files matching the pattern
2163 being displayed. The wildcard may be a specification for multiple
2164 types of file with a description for each, such as::
2165
2166 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2167
2168
2169 Window Styles
2170 --------------
2171 ================== ==========================================
2172 wx.OPEN This is an open dialog.
2173
2174 wx.SAVE This is a save dialog.
2175
2176 wx.HIDE_READONLY For open dialog only: hide the checkbox
2177 allowing to open the file in read-only mode.
2178
2179 wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation
2180 if a file will be overwritten.
2181
2182 wx.MULTIPLE For open dialog only: allows selecting multiple
2183 files.
2184
2185 wx.CHANGE_DIR Change the current working directory to the
2186 directory where the file(s) chosen by the user
2187 are.
2188 ================== ==========================================
2189
2190 """
2191 def __repr__(self):
2192 return "<%s.%s; proxy of C++ wxFileDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2193 def __init__(self, *args, **kwargs):
2194 """
2195 __init__(self, Window parent, String message=FileSelectorPromptStr,
2196 String defaultDir=EmptyString, String defaultFile=EmptyString,
2197 String wildcard=FileSelectorDefaultWildcardStr,
2198 long style=0, Point pos=DefaultPosition) -> FileDialog
2199
2200 Constructor. Use ShowModal method to show the dialog.
2201 """
2202 newobj = _windows_.new_FileDialog(*args, **kwargs)
2203 self.this = newobj.this
2204 self.thisown = 1
2205 del newobj.thisown
2206 self._setOORInfo(self)
2207
2208 def SetMessage(*args, **kwargs):
2209 """
2210 SetMessage(self, String message)
2211
2212 Sets the message that will be displayed on the dialog.
2213 """
2214 return _windows_.FileDialog_SetMessage(*args, **kwargs)
2215
2216 def SetPath(*args, **kwargs):
2217 """
2218 SetPath(self, String path)
2219
2220 Sets the path (the combined directory and filename that will be
2221 returned when the dialog is dismissed).
2222 """
2223 return _windows_.FileDialog_SetPath(*args, **kwargs)
2224
2225 def SetDirectory(*args, **kwargs):
2226 """
2227 SetDirectory(self, String dir)
2228
2229 Sets the default directory.
2230 """
2231 return _windows_.FileDialog_SetDirectory(*args, **kwargs)
2232
2233 def SetFilename(*args, **kwargs):
2234 """
2235 SetFilename(self, String name)
2236
2237 Sets the default filename.
2238 """
2239 return _windows_.FileDialog_SetFilename(*args, **kwargs)
2240
2241 def SetWildcard(*args, **kwargs):
2242 """
2243 SetWildcard(self, String wildCard)
2244
2245 Sets the wildcard, which can contain multiple file types, for
2246 example::
2247
2248 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
2249
2250 """
2251 return _windows_.FileDialog_SetWildcard(*args, **kwargs)
2252
2253 def SetStyle(*args, **kwargs):
2254 """
2255 SetStyle(self, long style)
2256
2257 Sets the dialog style.
2258 """
2259 return _windows_.FileDialog_SetStyle(*args, **kwargs)
2260
2261 def SetFilterIndex(*args, **kwargs):
2262 """
2263 SetFilterIndex(self, int filterIndex)
2264
2265 Sets the default filter index, starting from zero.
2266 """
2267 return _windows_.FileDialog_SetFilterIndex(*args, **kwargs)
2268
2269 def GetMessage(*args, **kwargs):
2270 """
2271 GetMessage(self) -> String
2272
2273 Returns the message that will be displayed on the dialog.
2274 """
2275 return _windows_.FileDialog_GetMessage(*args, **kwargs)
2276
2277 def GetPath(*args, **kwargs):
2278 """
2279 GetPath(self) -> String
2280
2281 Returns the full path (directory and filename) of the selected file.
2282 """
2283 return _windows_.FileDialog_GetPath(*args, **kwargs)
2284
2285 def GetDirectory(*args, **kwargs):
2286 """
2287 GetDirectory(self) -> String
2288
2289 Returns the default directory.
2290 """
2291 return _windows_.FileDialog_GetDirectory(*args, **kwargs)
2292
2293 def GetFilename(*args, **kwargs):
2294 """
2295 GetFilename(self) -> String
2296
2297 Returns the default filename.
2298 """
2299 return _windows_.FileDialog_GetFilename(*args, **kwargs)
2300
2301 def GetWildcard(*args, **kwargs):
2302 """
2303 GetWildcard(self) -> String
2304
2305 Returns the file dialog wildcard.
2306 """
2307 return _windows_.FileDialog_GetWildcard(*args, **kwargs)
2308
2309 def GetStyle(*args, **kwargs):
2310 """
2311 GetStyle(self) -> long
2312
2313 Returns the dialog style.
2314 """
2315 return _windows_.FileDialog_GetStyle(*args, **kwargs)
2316
2317 def GetFilterIndex(*args, **kwargs):
2318 """
2319 GetFilterIndex(self) -> int
2320
2321 Returns the index into the list of filters supplied, optionally, in
2322 the wildcard parameter. Before the dialog is shown, this is the index
2323 which will be used when the dialog is first displayed. After the
2324 dialog is shown, this is the index selected by the user.
2325 """
2326 return _windows_.FileDialog_GetFilterIndex(*args, **kwargs)
2327
2328 def GetFilenames(*args, **kwargs):
2329 """
2330 GetFilenames(self) -> PyObject
2331
2332 Returns a list of filenames chosen in the dialog. This function
2333 should only be used with the dialogs which have wx.MULTIPLE style, use
2334 GetFilename for the others.
2335 """
2336 return _windows_.FileDialog_GetFilenames(*args, **kwargs)
2337
2338 def GetPaths(*args, **kwargs):
2339 """
2340 GetPaths(self) -> PyObject
2341
2342 Fills the array paths with the full paths of the files chosen. This
2343 function should only be used with the dialogs which have wx.MULTIPLE
2344 style, use GetPath for the others.
2345 """
2346 return _windows_.FileDialog_GetPaths(*args, **kwargs)
2347
2348
2349 class FileDialogPtr(FileDialog):
2350 def __init__(self, this):
2351 self.this = this
2352 if not hasattr(self,"thisown"): self.thisown = 0
2353 self.__class__ = FileDialog
2354 _windows_.FileDialog_swigregister(FileDialogPtr)
2355
2356 CHOICEDLG_STYLE = _windows_.CHOICEDLG_STYLE
2357 class MultiChoiceDialog(Dialog):
2358 """A simple dialog with a multi selection listbox."""
2359 def __repr__(self):
2360 return "<%s.%s; proxy of C++ wxMultiChoiceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2361 def __init__(self, *args, **kwargs):
2362 """
2363 __init__(Window parent, String message, String caption,
2364 List choices=[], long style=CHOICEDLG_STYLE,
2365 Point pos=DefaultPosition) -> MultiChoiceDialog
2366
2367 Constructor. Use ShowModal method to show the dialog.
2368 """
2369 newobj = _windows_.new_MultiChoiceDialog(*args, **kwargs)
2370 self.this = newobj.this
2371 self.thisown = 1
2372 del newobj.thisown
2373 self._setOORInfo(self)
2374
2375 def SetSelections(*args, **kwargs):
2376 """
2377 SetSelections(List selections)
2378
2379 Specify the items in the list that should be selected, using a list of
2380 integers.
2381 """
2382 return _windows_.MultiChoiceDialog_SetSelections(*args, **kwargs)
2383
2384 def GetSelections(*args, **kwargs):
2385 """
2386 GetSelections() -> [selections]
2387
2388 Returns a list of integers representing the items that are selected.
2389 """
2390 return _windows_.MultiChoiceDialog_GetSelections(*args, **kwargs)
2391
2392
2393 class MultiChoiceDialogPtr(MultiChoiceDialog):
2394 def __init__(self, this):
2395 self.this = this
2396 if not hasattr(self,"thisown"): self.thisown = 0
2397 self.__class__ = MultiChoiceDialog
2398 _windows_.MultiChoiceDialog_swigregister(MultiChoiceDialogPtr)
2399
2400 class SingleChoiceDialog(Dialog):
2401 """A simple dialog with a single selection listbox."""
2402 def __repr__(self):
2403 return "<%s.%s; proxy of C++ wxSingleChoiceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2404 def __init__(self, *args, **kwargs):
2405 """
2406 __init__(Window parent, String message, String caption,
2407 List choices=[], long style=CHOICEDLG_STYLE,
2408 Point pos=DefaultPosition) -> SingleChoiceDialog
2409
2410 Constructor. Use ShowModal method to show the dialog.
2411 """
2412 newobj = _windows_.new_SingleChoiceDialog(*args, **kwargs)
2413 self.this = newobj.this
2414 self.thisown = 1
2415 del newobj.thisown
2416 self._setOORInfo(self)
2417
2418 def GetSelection(*args, **kwargs):
2419 """
2420 GetSelection(self) -> int
2421
2422 Get the index of teh currently selected item.
2423 """
2424 return _windows_.SingleChoiceDialog_GetSelection(*args, **kwargs)
2425
2426 def GetStringSelection(*args, **kwargs):
2427 """
2428 GetStringSelection(self) -> String
2429
2430 Returns the string value of the currently selected item
2431 """
2432 return _windows_.SingleChoiceDialog_GetStringSelection(*args, **kwargs)
2433
2434 def SetSelection(*args, **kwargs):
2435 """
2436 SetSelection(self, int sel)
2437
2438 Set the current selected item to sel
2439 """
2440 return _windows_.SingleChoiceDialog_SetSelection(*args, **kwargs)
2441
2442
2443 class SingleChoiceDialogPtr(SingleChoiceDialog):
2444 def __init__(self, this):
2445 self.this = this
2446 if not hasattr(self,"thisown"): self.thisown = 0
2447 self.__class__ = SingleChoiceDialog
2448 _windows_.SingleChoiceDialog_swigregister(SingleChoiceDialogPtr)
2449
2450 class TextEntryDialog(Dialog):
2451 """A dialog with text control, [ok] and [cancel] buttons"""
2452 def __repr__(self):
2453 return "<%s.%s; proxy of C++ wxTextEntryDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2454 def __init__(self, *args, **kwargs):
2455 """
2456 __init__(self, Window parent, String message, String caption=GetTextFromUserPromptStr,
2457 String defaultValue=EmptyString,
2458 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -> TextEntryDialog
2459
2460 Constructor. Use ShowModal method to show the dialog.
2461 """
2462 newobj = _windows_.new_TextEntryDialog(*args, **kwargs)
2463 self.this = newobj.this
2464 self.thisown = 1
2465 del newobj.thisown
2466 self._setOORInfo(self)
2467
2468 def GetValue(*args, **kwargs):
2469 """
2470 GetValue(self) -> String
2471
2472 Returns the text that the user has entered if the user has pressed OK,
2473 or the original value if the user has pressed Cancel.
2474 """
2475 return _windows_.TextEntryDialog_GetValue(*args, **kwargs)
2476
2477 def SetValue(*args, **kwargs):
2478 """
2479 SetValue(self, String value)
2480
2481 Sets the default text value.
2482 """
2483 return _windows_.TextEntryDialog_SetValue(*args, **kwargs)
2484
2485
2486 class TextEntryDialogPtr(TextEntryDialog):
2487 def __init__(self, this):
2488 self.this = this
2489 if not hasattr(self,"thisown"): self.thisown = 0
2490 self.__class__ = TextEntryDialog
2491 _windows_.TextEntryDialog_swigregister(TextEntryDialogPtr)
2492
2493 class FontData(_core.Object):
2494 """
2495 This class holds a variety of information related to font dialogs and
2496 is used to transfer settings to and results from a `wx.FontDialog`.
2497 """
2498 def __repr__(self):
2499 return "<%s.%s; proxy of C++ wxFontData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2500 def __init__(self, *args, **kwargs):
2501 """
2502 __init__(self) -> FontData
2503
2504 This class holds a variety of information related to font dialogs and
2505 is used to transfer settings to and results from a `wx.FontDialog`.
2506 """
2507 newobj = _windows_.new_FontData(*args, **kwargs)
2508 self.this = newobj.this
2509 self.thisown = 1
2510 del newobj.thisown
2511 def __del__(self, destroy=_windows_.delete_FontData):
2512 """__del__(self)"""
2513 try:
2514 if self.thisown: destroy(self)
2515 except: pass
2516
2517 def EnableEffects(*args, **kwargs):
2518 """
2519 EnableEffects(self, bool enable)
2520
2521 Enables or disables 'effects' under MS Windows only. This refers to
2522 the controls for manipulating colour, strikeout and underline
2523 properties. The default value is true.
2524 """
2525 return _windows_.FontData_EnableEffects(*args, **kwargs)
2526
2527 def GetAllowSymbols(*args, **kwargs):
2528 """
2529 GetAllowSymbols(self) -> bool
2530
2531 Under MS Windows, returns a flag determining whether symbol fonts can
2532 be selected. Has no effect on other platforms. The default value is
2533 true.
2534 """
2535 return _windows_.FontData_GetAllowSymbols(*args, **kwargs)
2536
2537 def GetColour(*args, **kwargs):
2538 """
2539 GetColour(self) -> Colour
2540
2541 Gets the colour associated with the font dialog. The default value is
2542 black.
2543 """
2544 return _windows_.FontData_GetColour(*args, **kwargs)
2545
2546 def GetChosenFont(*args, **kwargs):
2547 """
2548 GetChosenFont(self) -> Font
2549
2550 Gets the font chosen by the user.
2551 """
2552 return _windows_.FontData_GetChosenFont(*args, **kwargs)
2553
2554 def GetEnableEffects(*args, **kwargs):
2555 """
2556 GetEnableEffects(self) -> bool
2557
2558 Determines whether 'effects' are enabled under Windows.
2559 """
2560 return _windows_.FontData_GetEnableEffects(*args, **kwargs)
2561
2562 def GetInitialFont(*args, **kwargs):
2563 """
2564 GetInitialFont(self) -> Font
2565
2566 Gets the font that will be initially used by the font dialog. This
2567 should have previously been set by the application.
2568 """
2569 return _windows_.FontData_GetInitialFont(*args, **kwargs)
2570
2571 def GetShowHelp(*args, **kwargs):
2572 """
2573 GetShowHelp(self) -> bool
2574
2575 Returns true if the Help button will be shown (Windows only). The
2576 default value is false.
2577 """
2578 return _windows_.FontData_GetShowHelp(*args, **kwargs)
2579
2580 def SetAllowSymbols(*args, **kwargs):
2581 """
2582 SetAllowSymbols(self, bool allowSymbols)
2583
2584 Under MS Windows, determines whether symbol fonts can be selected. Has
2585 no effect on other platforms. The default value is true.
2586 """
2587 return _windows_.FontData_SetAllowSymbols(*args, **kwargs)
2588
2589 def SetChosenFont(*args, **kwargs):
2590 """
2591 SetChosenFont(self, Font font)
2592
2593 Sets the font that will be returned to the user (normally for internal
2594 use only).
2595 """
2596 return _windows_.FontData_SetChosenFont(*args, **kwargs)
2597
2598 def SetColour(*args, **kwargs):
2599 """
2600 SetColour(self, Colour colour)
2601
2602 Sets the colour that will be used for the font foreground colour. The
2603 default colour is black.
2604 """
2605 return _windows_.FontData_SetColour(*args, **kwargs)
2606
2607 def SetInitialFont(*args, **kwargs):
2608 """
2609 SetInitialFont(self, Font font)
2610
2611 Sets the font that will be initially used by the font dialog.
2612 """
2613 return _windows_.FontData_SetInitialFont(*args, **kwargs)
2614
2615 def SetRange(*args, **kwargs):
2616 """
2617 SetRange(self, int min, int max)
2618
2619 Sets the valid range for the font point size (Windows only). The
2620 default is 0, 0 (unrestricted range).
2621 """
2622 return _windows_.FontData_SetRange(*args, **kwargs)
2623
2624 def SetShowHelp(*args, **kwargs):
2625 """
2626 SetShowHelp(self, bool showHelp)
2627
2628 Determines whether the Help button will be displayed in the font
2629 dialog (Windows only). The default value is false.
2630 """
2631 return _windows_.FontData_SetShowHelp(*args, **kwargs)
2632
2633
2634 class FontDataPtr(FontData):
2635 def __init__(self, this):
2636 self.this = this
2637 if not hasattr(self,"thisown"): self.thisown = 0
2638 self.__class__ = FontData
2639 _windows_.FontData_swigregister(FontDataPtr)
2640
2641 class FontDialog(Dialog):
2642 """
2643 wx.FontDialog allows the user to select a system font and its attributes.
2644
2645 :see: `wx.FontData`
2646
2647 """
2648 def __repr__(self):
2649 return "<%s.%s; proxy of C++ wxFontDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2650 def __init__(self, *args, **kwargs):
2651 """
2652 __init__(self, Window parent, FontData data) -> FontDialog
2653
2654 Constructor. Pass a parent window and the `wx.FontData` object to be
2655 used to initialize the dialog controls. Call `ShowModal` to display
2656 the dialog. If ShowModal returns ``wx.ID_OK`` then you can fetch the
2657 results with via the `wx.FontData` returned by `GetFontData`.
2658 """
2659 newobj = _windows_.new_FontDialog(*args, **kwargs)
2660 self.this = newobj.this
2661 self.thisown = 1
2662 del newobj.thisown
2663 self._setOORInfo(self)
2664
2665 def GetFontData(*args, **kwargs):
2666 """
2667 GetFontData(self) -> FontData
2668
2669 Returns a reference to the internal `wx.FontData` used by the
2670 wx.FontDialog.
2671 """
2672 return _windows_.FontDialog_GetFontData(*args, **kwargs)
2673
2674
2675 class FontDialogPtr(FontDialog):
2676 def __init__(self, this):
2677 self.this = this
2678 if not hasattr(self,"thisown"): self.thisown = 0
2679 self.__class__ = FontDialog
2680 _windows_.FontDialog_swigregister(FontDialogPtr)
2681
2682 class MessageDialog(Dialog):
2683 """
2684 This class provides a simple dialog that shows a single or multi-line
2685 message, with a choice of OK, Yes, No and/or Cancel buttons.
2686
2687
2688 Window Styles
2689 --------------
2690 ================= =============================================
2691 wx.OK Show an OK button.
2692 wx.CANCEL Show a Cancel button.
2693 wx.YES_NO Show Yes and No buttons.
2694 wx.YES_DEFAULT Used with wxYES_NO, makes Yes button the
2695 default - which is the default behaviour.
2696 wx.NO_DEFAULT Used with wxYES_NO, makes No button the default.
2697 wx.ICON_EXCLAMATION Shows an exclamation mark icon.
2698 wx.ICON_HAND Shows an error icon.
2699 wx.ICON_ERROR Shows an error icon - the same as wxICON_HAND.
2700 wx.ICON_QUESTION Shows a question mark icon.
2701 wx.ICON_INFORMATION Shows an information (i) icon.
2702 wx.STAY_ON_TOP The message box stays on top of all other
2703 window, even those of the other applications
2704 (Windows only).
2705 ================= =============================================
2706
2707 """
2708 def __repr__(self):
2709 return "<%s.%s; proxy of C++ wxMessageDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2710 def __init__(self, *args, **kwargs):
2711 """
2712 __init__(self, Window parent, String message, String caption=MessageBoxCaptionStr,
2713 long style=wxOK|wxCANCEL|wxCENTRE,
2714 Point pos=DefaultPosition) -> MessageDialog
2715
2716 Constructor, use `ShowModal` to display the dialog.
2717 """
2718 newobj = _windows_.new_MessageDialog(*args, **kwargs)
2719 self.this = newobj.this
2720 self.thisown = 1
2721 del newobj.thisown
2722 self._setOORInfo(self)
2723
2724
2725 class MessageDialogPtr(MessageDialog):
2726 def __init__(self, this):
2727 self.this = this
2728 if not hasattr(self,"thisown"): self.thisown = 0
2729 self.__class__ = MessageDialog
2730 _windows_.MessageDialog_swigregister(MessageDialogPtr)
2731
2732 class ProgressDialog(Frame):
2733 """
2734 A dialog that shows a short message and a progress bar. Optionally, it
2735 can display an ABORT button.
2736
2737 Window Styles
2738 --------------
2739 ================= =============================================
2740 wx.PD_APP_MODAL Make the progress dialog modal. If this flag is
2741 not given, it is only "locally" modal -
2742 that is the input to the parent window is
2743 disabled, but not to the other ones.
2744
2745 wx.PD_AUTO_HIDE Causes the progress dialog to disappear from
2746 screen as soon as the maximum value of the
2747 progress meter has been reached.
2748
2749 wx.PD_CAN_ABORT This flag tells the dialog that it should have
2750 a "Cancel" button which the user may press. If
2751 this happens, the next call to Update() will
2752 return false.
2753
2754 wx.PD_ELAPSED_TIME This flag tells the dialog that it should show
2755 elapsed time (since creating the dialog).
2756
2757 wx.PD_ESTIMATED_TIME This flag tells the dialog that it should show
2758 estimated time.
2759
2760 wx.PD_REMAINING_TIME This flag tells the dialog that it should show
2761 remaining time.
2762 ================= =============================================
2763
2764 """
2765 def __repr__(self):
2766 return "<%s.%s; proxy of C++ wxProgressDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2767 def __init__(self, *args, **kwargs):
2768 """
2769 __init__(self, String title, String message, int maximum=100, Window parent=None,
2770 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -> ProgressDialog
2771
2772 Constructor. Creates the dialog, displays it and disables user input
2773 for other windows, or, if wx.PD_APP_MODAL flag is not given, for its
2774 parent window only.
2775 """
2776 newobj = _windows_.new_ProgressDialog(*args, **kwargs)
2777 self.this = newobj.this
2778 self.thisown = 1
2779 del newobj.thisown
2780 self._setOORInfo(self)
2781
2782 def Update(*args, **kwargs):
2783 """
2784 Update(self, int value, String newmsg=EmptyString) -> bool
2785
2786 Updates the dialog, setting the progress bar to the new value and, if
2787 given changes the message above it. Returns true unless the Cancel
2788 button has been pressed.
2789
2790 If false is returned, the application can either immediately destroy
2791 the dialog or ask the user for the confirmation and if the abort is
2792 not confirmed the dialog may be resumed with Resume function.
2793 """
2794 return _windows_.ProgressDialog_Update(*args, **kwargs)
2795
2796 def Resume(*args, **kwargs):
2797 """
2798 Resume(self)
2799
2800 Can be used to continue with the dialog, after the user had chosen to
2801 abort.
2802 """
2803 return _windows_.ProgressDialog_Resume(*args, **kwargs)
2804
2805
2806 class ProgressDialogPtr(ProgressDialog):
2807 def __init__(self, this):
2808 self.this = this
2809 if not hasattr(self,"thisown"): self.thisown = 0
2810 self.__class__ = ProgressDialog
2811 _windows_.ProgressDialog_swigregister(ProgressDialogPtr)
2812
2813 FR_DOWN = _windows_.FR_DOWN
2814 FR_WHOLEWORD = _windows_.FR_WHOLEWORD
2815 FR_MATCHCASE = _windows_.FR_MATCHCASE
2816 FR_REPLACEDIALOG = _windows_.FR_REPLACEDIALOG
2817 FR_NOUPDOWN = _windows_.FR_NOUPDOWN
2818 FR_NOMATCHCASE = _windows_.FR_NOMATCHCASE
2819 FR_NOWHOLEWORD = _windows_.FR_NOWHOLEWORD
2820 wxEVT_COMMAND_FIND = _windows_.wxEVT_COMMAND_FIND
2821 wxEVT_COMMAND_FIND_NEXT = _windows_.wxEVT_COMMAND_FIND_NEXT
2822 wxEVT_COMMAND_FIND_REPLACE = _windows_.wxEVT_COMMAND_FIND_REPLACE
2823 wxEVT_COMMAND_FIND_REPLACE_ALL = _windows_.wxEVT_COMMAND_FIND_REPLACE_ALL
2824 wxEVT_COMMAND_FIND_CLOSE = _windows_.wxEVT_COMMAND_FIND_CLOSE
2825 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND, 1 )
2826 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT, 1 )
2827 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE, 1 )
2828 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL, 1 )
2829 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE, 1 )
2830
2831 # For backwards compatibility. Should they be removed?
2832 EVT_COMMAND_FIND = EVT_FIND
2833 EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
2834 EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
2835 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
2836 EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
2837
2838 class FindDialogEvent(_core.CommandEvent):
2839 """Events for the FindReplaceDialog"""
2840 def __repr__(self):
2841 return "<%s.%s; proxy of C++ wxFindDialogEvent instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2842 def __init__(self, *args, **kwargs):
2843 """
2844 __init__(self, wxEventType commandType=wxEVT_NULL, int id=0) -> FindDialogEvent
2845
2846 Events for the FindReplaceDialog
2847 """
2848 newobj = _windows_.new_FindDialogEvent(*args, **kwargs)
2849 self.this = newobj.this
2850 self.thisown = 1
2851 del newobj.thisown
2852 def GetFlags(*args, **kwargs):
2853 """
2854 GetFlags(self) -> int
2855
2856 Get the currently selected flags: this is the combination of
2857 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
2858 """
2859 return _windows_.FindDialogEvent_GetFlags(*args, **kwargs)
2860
2861 def GetFindString(*args, **kwargs):
2862 """
2863 GetFindString(self) -> String
2864
2865 Return the string to find (never empty).
2866 """
2867 return _windows_.FindDialogEvent_GetFindString(*args, **kwargs)
2868
2869 def GetReplaceString(*args, **kwargs):
2870 """
2871 GetReplaceString(self) -> String
2872
2873 Return the string to replace the search string with (only for replace
2874 and replace all events).
2875 """
2876 return _windows_.FindDialogEvent_GetReplaceString(*args, **kwargs)
2877
2878 def GetDialog(*args, **kwargs):
2879 """
2880 GetDialog(self) -> FindReplaceDialog
2881
2882 Return the pointer to the dialog which generated this event.
2883 """
2884 return _windows_.FindDialogEvent_GetDialog(*args, **kwargs)
2885
2886 def SetFlags(*args, **kwargs):
2887 """SetFlags(self, int flags)"""
2888 return _windows_.FindDialogEvent_SetFlags(*args, **kwargs)
2889
2890 def SetFindString(*args, **kwargs):
2891 """SetFindString(self, String str)"""
2892 return _windows_.FindDialogEvent_SetFindString(*args, **kwargs)
2893
2894 def SetReplaceString(*args, **kwargs):
2895 """SetReplaceString(self, String str)"""
2896 return _windows_.FindDialogEvent_SetReplaceString(*args, **kwargs)
2897
2898
2899 class FindDialogEventPtr(FindDialogEvent):
2900 def __init__(self, this):
2901 self.this = this
2902 if not hasattr(self,"thisown"): self.thisown = 0
2903 self.__class__ = FindDialogEvent
2904 _windows_.FindDialogEvent_swigregister(FindDialogEventPtr)
2905
2906 class FindReplaceData(_core.Object):
2907 """
2908 wx.FindReplaceData holds the data for wx.FindReplaceDialog. It is used
2909 to initialize the dialog with the default values and will keep the
2910 last values from the dialog when it is closed. It is also updated each
2911 time a `wx.FindDialogEvent` is generated so instead of using the
2912 `wx.FindDialogEvent` methods you can also directly query this object.
2913
2914 Note that all SetXXX() methods may only be called before showing the
2915 dialog and calling them has no effect later.
2916
2917 Flags
2918 -----
2919 ================ ===============================================
2920 wx.FR_DOWN Downward search/replace selected (otherwise,
2921 upwards)
2922
2923 wx.FR_WHOLEWORD Whole word search/replace selected
2924
2925 wx.FR_MATCHCASE Case sensitive search/replace selected
2926 (otherwise, case insensitive)
2927 ================ ===============================================
2928
2929 """
2930 def __repr__(self):
2931 return "<%s.%s; proxy of C++ wxFindReplaceData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
2932 def __init__(self, *args, **kwargs):
2933 """
2934 __init__(self, int flags=0) -> FindReplaceData
2935
2936 Constuctor initializes the flags to default value (0).
2937 """
2938 newobj = _windows_.new_FindReplaceData(*args, **kwargs)
2939 self.this = newobj.this
2940 self.thisown = 1
2941 del newobj.thisown
2942 def __del__(self, destroy=_windows_.delete_FindReplaceData):
2943 """__del__(self)"""
2944 try:
2945 if self.thisown: destroy(self)
2946 except: pass
2947
2948 def GetFindString(*args, **kwargs):
2949 """
2950 GetFindString(self) -> String
2951
2952 Get the string to find.
2953 """
2954 return _windows_.FindReplaceData_GetFindString(*args, **kwargs)
2955
2956 def GetReplaceString(*args, **kwargs):
2957 """
2958 GetReplaceString(self) -> String
2959
2960 Get the replacement string.
2961 """
2962 return _windows_.FindReplaceData_GetReplaceString(*args, **kwargs)
2963
2964 def GetFlags(*args, **kwargs):
2965 """
2966 GetFlags(self) -> int
2967
2968 Get the combination of flag values.
2969 """
2970 return _windows_.FindReplaceData_GetFlags(*args, **kwargs)
2971
2972 def SetFlags(*args, **kwargs):
2973 """
2974 SetFlags(self, int flags)
2975
2976 Set the flags to use to initialize the controls of the dialog.
2977 """
2978 return _windows_.FindReplaceData_SetFlags(*args, **kwargs)
2979
2980 def SetFindString(*args, **kwargs):
2981 """
2982 SetFindString(self, String str)
2983
2984 Set the string to find (used as initial value by the dialog).
2985 """
2986 return _windows_.FindReplaceData_SetFindString(*args, **kwargs)
2987
2988 def SetReplaceString(*args, **kwargs):
2989 """
2990 SetReplaceString(self, String str)
2991
2992 Set the replacement string (used as initial value by the dialog).
2993 """
2994 return _windows_.FindReplaceData_SetReplaceString(*args, **kwargs)
2995
2996
2997 class FindReplaceDataPtr(FindReplaceData):
2998 def __init__(self, this):
2999 self.this = this
3000 if not hasattr(self,"thisown"): self.thisown = 0
3001 self.__class__ = FindReplaceData
3002 _windows_.FindReplaceData_swigregister(FindReplaceDataPtr)
3003
3004 class FindReplaceDialog(Dialog):
3005 """
3006 wx.FindReplaceDialog is a standard modeless dialog which is used to
3007 allow the user to search for some text (and possibly replace it with
3008 something else). The actual searching is supposed to be done in the
3009 owner window which is the parent of this dialog. Note that it means
3010 that unlike for the other standard dialogs this one must have a parent
3011 window. Also note that there is no way to use this dialog in a modal
3012 way; it is always, by design and implementation, modeless.
3013
3014
3015 Window Styles
3016 -------------
3017
3018 ===================== =========================================
3019 wx.FR_REPLACEDIALOG replace dialog (otherwise find dialog)
3020
3021 wx.FR_NOUPDOWN don't allow changing the search direction
3022
3023 wx.FR_NOMATCHCASE don't allow case sensitive searching
3024
3025 wx.FR_NOWHOLEWORD don't allow whole word searching
3026 ===================== =========================================
3027
3028 """
3029 def __repr__(self):
3030 return "<%s.%s; proxy of C++ wxFindReplaceDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3031 def __init__(self, *args, **kwargs):
3032 """
3033 __init__(self, Window parent, FindReplaceData data, String title,
3034 int style=0) -> FindReplaceDialog
3035
3036 Create a FindReplaceDialog. The parent and data parameters must be
3037 non-None. Use Show to display the dialog.
3038 """
3039 newobj = _windows_.new_FindReplaceDialog(*args, **kwargs)
3040 self.this = newobj.this
3041 self.thisown = 1
3042 del newobj.thisown
3043 self._setOORInfo(self)
3044
3045 def Create(*args, **kwargs):
3046 """
3047 Create(self, Window parent, FindReplaceData data, String title,
3048 int style=0) -> bool
3049
3050 Create the dialog, for 2-phase create.
3051 """
3052 return _windows_.FindReplaceDialog_Create(*args, **kwargs)
3053
3054 def GetData(*args, **kwargs):
3055 """
3056 GetData(self) -> FindReplaceData
3057
3058 Get the FindReplaceData object used by this dialog.
3059 """
3060 return _windows_.FindReplaceDialog_GetData(*args, **kwargs)
3061
3062 def SetData(*args, **kwargs):
3063 """
3064 SetData(self, FindReplaceData data)
3065
3066 Set the FindReplaceData object used by this dialog.
3067 """
3068 return _windows_.FindReplaceDialog_SetData(*args, **kwargs)
3069
3070
3071 class FindReplaceDialogPtr(FindReplaceDialog):
3072 def __init__(self, this):
3073 self.this = this
3074 if not hasattr(self,"thisown"): self.thisown = 0
3075 self.__class__ = FindReplaceDialog
3076 _windows_.FindReplaceDialog_swigregister(FindReplaceDialogPtr)
3077
3078 def PreFindReplaceDialog(*args, **kwargs):
3079 """
3080 PreFindReplaceDialog() -> FindReplaceDialog
3081
3082 Precreate a FindReplaceDialog for 2-phase creation
3083 """
3084 val = _windows_.new_PreFindReplaceDialog(*args, **kwargs)
3085 val.thisown = 1
3086 return val
3087
3088 #---------------------------------------------------------------------------
3089
3090 IDM_WINDOWTILE = _windows_.IDM_WINDOWTILE
3091 IDM_WINDOWTILEHOR = _windows_.IDM_WINDOWTILEHOR
3092 IDM_WINDOWCASCADE = _windows_.IDM_WINDOWCASCADE
3093 IDM_WINDOWICONS = _windows_.IDM_WINDOWICONS
3094 IDM_WINDOWNEXT = _windows_.IDM_WINDOWNEXT
3095 IDM_WINDOWTILEVERT = _windows_.IDM_WINDOWTILEVERT
3096 FIRST_MDI_CHILD = _windows_.FIRST_MDI_CHILD
3097 LAST_MDI_CHILD = _windows_.LAST_MDI_CHILD
3098 class MDIParentFrame(Frame):
3099 def __repr__(self):
3100 return "<%s.%s; proxy of C++ wxMDIParentFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3101 def __init__(self, *args, **kwargs):
3102 """
3103 __init__(self, Window parent, int id, String title, Point pos=DefaultPosition,
3104 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3105 String name=FrameNameStr) -> MDIParentFrame
3106 """
3107 newobj = _windows_.new_MDIParentFrame(*args, **kwargs)
3108 self.this = newobj.this
3109 self.thisown = 1
3110 del newobj.thisown
3111 self._setOORInfo(self)
3112
3113 def Create(*args, **kwargs):
3114 """
3115 Create(self, Window parent, int id, String title, Point pos=DefaultPosition,
3116 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
3117 String name=FrameNameStr) -> bool
3118 """
3119 return _windows_.MDIParentFrame_Create(*args, **kwargs)
3120
3121 def ActivateNext(*args, **kwargs):
3122 """ActivateNext(self)"""
3123 return _windows_.MDIParentFrame_ActivateNext(*args, **kwargs)
3124
3125 def ActivatePrevious(*args, **kwargs):
3126 """ActivatePrevious(self)"""
3127 return _windows_.MDIParentFrame_ActivatePrevious(*args, **kwargs)
3128
3129 def ArrangeIcons(*args, **kwargs):
3130 """ArrangeIcons(self)"""
3131 return _windows_.MDIParentFrame_ArrangeIcons(*args, **kwargs)
3132
3133 def Cascade(*args, **kwargs):
3134 """Cascade(self)"""
3135 return _windows_.MDIParentFrame_Cascade(*args, **kwargs)
3136
3137 def GetActiveChild(*args, **kwargs):
3138 """GetActiveChild(self) -> MDIChildFrame"""
3139 return _windows_.MDIParentFrame_GetActiveChild(*args, **kwargs)
3140
3141 def GetClientWindow(*args, **kwargs):
3142 """GetClientWindow(self) -> MDIClientWindow"""
3143 return _windows_.MDIParentFrame_GetClientWindow(*args, **kwargs)
3144
3145 def GetToolBar(*args, **kwargs):
3146 """GetToolBar(self) -> Window"""
3147 return _windows_.MDIParentFrame_GetToolBar(*args, **kwargs)
3148
3149 def Tile(*args, **kwargs):
3150 """Tile(self)"""
3151 return _windows_.MDIParentFrame_Tile(*args, **kwargs)
3152
3153
3154 class MDIParentFramePtr(MDIParentFrame):
3155 def __init__(self, this):
3156 self.this = this
3157 if not hasattr(self,"thisown"): self.thisown = 0
3158 self.__class__ = MDIParentFrame
3159 _windows_.MDIParentFrame_swigregister(MDIParentFramePtr)
3160
3161 def PreMDIParentFrame(*args, **kwargs):
3162 """PreMDIParentFrame() -> MDIParentFrame"""
3163 val = _windows_.new_PreMDIParentFrame(*args, **kwargs)
3164 val.thisown = 1
3165 return val
3166
3167 class MDIChildFrame(Frame):
3168 def __repr__(self):
3169 return "<%s.%s; proxy of C++ wxMDIChildFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3170 def __init__(self, *args, **kwargs):
3171 """
3172 __init__(self, MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
3173 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
3174 String name=FrameNameStr) -> MDIChildFrame
3175 """
3176 newobj = _windows_.new_MDIChildFrame(*args, **kwargs)
3177 self.this = newobj.this
3178 self.thisown = 1
3179 del newobj.thisown
3180 self._setOORInfo(self)
3181
3182 def Create(*args, **kwargs):
3183 """
3184 Create(self, MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
3185 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
3186 String name=FrameNameStr) -> bool
3187 """
3188 return _windows_.MDIChildFrame_Create(*args, **kwargs)
3189
3190 def Activate(*args, **kwargs):
3191 """Activate(self)"""
3192 return _windows_.MDIChildFrame_Activate(*args, **kwargs)
3193
3194 def Maximize(*args, **kwargs):
3195 """Maximize(self, bool maximize)"""
3196 return _windows_.MDIChildFrame_Maximize(*args, **kwargs)
3197
3198 def Restore(*args, **kwargs):
3199 """Restore(self)"""
3200 return _windows_.MDIChildFrame_Restore(*args, **kwargs)
3201
3202
3203 class MDIChildFramePtr(MDIChildFrame):
3204 def __init__(self, this):
3205 self.this = this
3206 if not hasattr(self,"thisown"): self.thisown = 0
3207 self.__class__ = MDIChildFrame
3208 _windows_.MDIChildFrame_swigregister(MDIChildFramePtr)
3209
3210 def PreMDIChildFrame(*args, **kwargs):
3211 """PreMDIChildFrame() -> MDIChildFrame"""
3212 val = _windows_.new_PreMDIChildFrame(*args, **kwargs)
3213 val.thisown = 1
3214 return val
3215
3216 class MDIClientWindow(_core.Window):
3217 def __repr__(self):
3218 return "<%s.%s; proxy of C++ wxMDIClientWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3219 def __init__(self, *args, **kwargs):
3220 """__init__(self, MDIParentFrame parent, long style=0) -> MDIClientWindow"""
3221 newobj = _windows_.new_MDIClientWindow(*args, **kwargs)
3222 self.this = newobj.this
3223 self.thisown = 1
3224 del newobj.thisown
3225 self._setOORInfo(self)
3226
3227 def Create(*args, **kwargs):
3228 """Create(self, MDIParentFrame parent, long style=0) -> bool"""
3229 return _windows_.MDIClientWindow_Create(*args, **kwargs)
3230
3231
3232 class MDIClientWindowPtr(MDIClientWindow):
3233 def __init__(self, this):
3234 self.this = this
3235 if not hasattr(self,"thisown"): self.thisown = 0
3236 self.__class__ = MDIClientWindow
3237 _windows_.MDIClientWindow_swigregister(MDIClientWindowPtr)
3238
3239 def PreMDIClientWindow(*args, **kwargs):
3240 """PreMDIClientWindow() -> MDIClientWindow"""
3241 val = _windows_.new_PreMDIClientWindow(*args, **kwargs)
3242 val.thisown = 1
3243 return val
3244
3245 #---------------------------------------------------------------------------
3246
3247 class PyWindow(_core.Window):
3248 def __repr__(self):
3249 return "<%s.%s; proxy of C++ wxPyWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3250 def __init__(self, *args, **kwargs):
3251 """
3252 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3253 long style=0, String name=PanelNameStr) -> PyWindow
3254 """
3255 newobj = _windows_.new_PyWindow(*args, **kwargs)
3256 self.this = newobj.this
3257 self.thisown = 1
3258 del newobj.thisown
3259 self._setOORInfo(self); self._setCallbackInfo(self, PyWindow)
3260
3261 def _setCallbackInfo(*args, **kwargs):
3262 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3263 return _windows_.PyWindow__setCallbackInfo(*args, **kwargs)
3264
3265 def base_DoMoveWindow(*args, **kwargs):
3266 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3267 return _windows_.PyWindow_base_DoMoveWindow(*args, **kwargs)
3268
3269 def base_DoSetSize(*args, **kwargs):
3270 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3271 return _windows_.PyWindow_base_DoSetSize(*args, **kwargs)
3272
3273 def base_DoSetClientSize(*args, **kwargs):
3274 """base_DoSetClientSize(self, int width, int height)"""
3275 return _windows_.PyWindow_base_DoSetClientSize(*args, **kwargs)
3276
3277 def base_DoSetVirtualSize(*args, **kwargs):
3278 """base_DoSetVirtualSize(self, int x, int y)"""
3279 return _windows_.PyWindow_base_DoSetVirtualSize(*args, **kwargs)
3280
3281 def base_DoGetSize(*args, **kwargs):
3282 """base_DoGetSize() -> (width, height)"""
3283 return _windows_.PyWindow_base_DoGetSize(*args, **kwargs)
3284
3285 def base_DoGetClientSize(*args, **kwargs):
3286 """base_DoGetClientSize() -> (width, height)"""
3287 return _windows_.PyWindow_base_DoGetClientSize(*args, **kwargs)
3288
3289 def base_DoGetPosition(*args, **kwargs):
3290 """base_DoGetPosition() -> (x,y)"""
3291 return _windows_.PyWindow_base_DoGetPosition(*args, **kwargs)
3292
3293 def base_DoGetVirtualSize(*args, **kwargs):
3294 """base_DoGetVirtualSize(self) -> Size"""
3295 return _windows_.PyWindow_base_DoGetVirtualSize(*args, **kwargs)
3296
3297 def base_DoGetBestSize(*args, **kwargs):
3298 """base_DoGetBestSize(self) -> Size"""
3299 return _windows_.PyWindow_base_DoGetBestSize(*args, **kwargs)
3300
3301 def base_InitDialog(*args, **kwargs):
3302 """base_InitDialog(self)"""
3303 return _windows_.PyWindow_base_InitDialog(*args, **kwargs)
3304
3305 def base_TransferDataToWindow(*args, **kwargs):
3306 """base_TransferDataToWindow(self) -> bool"""
3307 return _windows_.PyWindow_base_TransferDataToWindow(*args, **kwargs)
3308
3309 def base_TransferDataFromWindow(*args, **kwargs):
3310 """base_TransferDataFromWindow(self) -> bool"""
3311 return _windows_.PyWindow_base_TransferDataFromWindow(*args, **kwargs)
3312
3313 def base_Validate(*args, **kwargs):
3314 """base_Validate(self) -> bool"""
3315 return _windows_.PyWindow_base_Validate(*args, **kwargs)
3316
3317 def base_AcceptsFocus(*args, **kwargs):
3318 """base_AcceptsFocus(self) -> bool"""
3319 return _windows_.PyWindow_base_AcceptsFocus(*args, **kwargs)
3320
3321 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3322 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3323 return _windows_.PyWindow_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3324
3325 def base_GetMaxSize(*args, **kwargs):
3326 """base_GetMaxSize(self) -> Size"""
3327 return _windows_.PyWindow_base_GetMaxSize(*args, **kwargs)
3328
3329 def base_AddChild(*args, **kwargs):
3330 """base_AddChild(self, Window child)"""
3331 return _windows_.PyWindow_base_AddChild(*args, **kwargs)
3332
3333 def base_RemoveChild(*args, **kwargs):
3334 """base_RemoveChild(self, Window child)"""
3335 return _windows_.PyWindow_base_RemoveChild(*args, **kwargs)
3336
3337 def base_ShouldInheritColours(*args, **kwargs):
3338 """base_ShouldInheritColours(self) -> bool"""
3339 return _windows_.PyWindow_base_ShouldInheritColours(*args, **kwargs)
3340
3341 def base_ApplyParentThemeBackground(*args, **kwargs):
3342 """base_ApplyParentThemeBackground(self, Colour c)"""
3343 return _windows_.PyWindow_base_ApplyParentThemeBackground(*args, **kwargs)
3344
3345
3346 class PyWindowPtr(PyWindow):
3347 def __init__(self, this):
3348 self.this = this
3349 if not hasattr(self,"thisown"): self.thisown = 0
3350 self.__class__ = PyWindow
3351 _windows_.PyWindow_swigregister(PyWindowPtr)
3352
3353 def PrePyWindow(*args, **kwargs):
3354 """PrePyWindow() -> PyWindow"""
3355 val = _windows_.new_PrePyWindow(*args, **kwargs)
3356 val.thisown = 1
3357 return val
3358
3359 class PyPanel(Panel):
3360 def __repr__(self):
3361 return "<%s.%s; proxy of C++ wxPyPanel instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3362 def __init__(self, *args, **kwargs):
3363 """
3364 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3365 long style=0, String name=PanelNameStr) -> PyPanel
3366 """
3367 newobj = _windows_.new_PyPanel(*args, **kwargs)
3368 self.this = newobj.this
3369 self.thisown = 1
3370 del newobj.thisown
3371 self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)
3372
3373 def _setCallbackInfo(*args, **kwargs):
3374 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3375 return _windows_.PyPanel__setCallbackInfo(*args, **kwargs)
3376
3377 def base_DoMoveWindow(*args, **kwargs):
3378 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3379 return _windows_.PyPanel_base_DoMoveWindow(*args, **kwargs)
3380
3381 def base_DoSetSize(*args, **kwargs):
3382 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3383 return _windows_.PyPanel_base_DoSetSize(*args, **kwargs)
3384
3385 def base_DoSetClientSize(*args, **kwargs):
3386 """base_DoSetClientSize(self, int width, int height)"""
3387 return _windows_.PyPanel_base_DoSetClientSize(*args, **kwargs)
3388
3389 def base_DoSetVirtualSize(*args, **kwargs):
3390 """base_DoSetVirtualSize(self, int x, int y)"""
3391 return _windows_.PyPanel_base_DoSetVirtualSize(*args, **kwargs)
3392
3393 def base_DoGetSize(*args, **kwargs):
3394 """base_DoGetSize() -> (width, height)"""
3395 return _windows_.PyPanel_base_DoGetSize(*args, **kwargs)
3396
3397 def base_DoGetClientSize(*args, **kwargs):
3398 """base_DoGetClientSize() -> (width, height)"""
3399 return _windows_.PyPanel_base_DoGetClientSize(*args, **kwargs)
3400
3401 def base_DoGetPosition(*args, **kwargs):
3402 """base_DoGetPosition() -> (x,y)"""
3403 return _windows_.PyPanel_base_DoGetPosition(*args, **kwargs)
3404
3405 def base_DoGetVirtualSize(*args, **kwargs):
3406 """base_DoGetVirtualSize(self) -> Size"""
3407 return _windows_.PyPanel_base_DoGetVirtualSize(*args, **kwargs)
3408
3409 def base_DoGetBestSize(*args, **kwargs):
3410 """base_DoGetBestSize(self) -> Size"""
3411 return _windows_.PyPanel_base_DoGetBestSize(*args, **kwargs)
3412
3413 def base_InitDialog(*args, **kwargs):
3414 """base_InitDialog(self)"""
3415 return _windows_.PyPanel_base_InitDialog(*args, **kwargs)
3416
3417 def base_TransferDataToWindow(*args, **kwargs):
3418 """base_TransferDataToWindow(self) -> bool"""
3419 return _windows_.PyPanel_base_TransferDataToWindow(*args, **kwargs)
3420
3421 def base_TransferDataFromWindow(*args, **kwargs):
3422 """base_TransferDataFromWindow(self) -> bool"""
3423 return _windows_.PyPanel_base_TransferDataFromWindow(*args, **kwargs)
3424
3425 def base_Validate(*args, **kwargs):
3426 """base_Validate(self) -> bool"""
3427 return _windows_.PyPanel_base_Validate(*args, **kwargs)
3428
3429 def base_AcceptsFocus(*args, **kwargs):
3430 """base_AcceptsFocus(self) -> bool"""
3431 return _windows_.PyPanel_base_AcceptsFocus(*args, **kwargs)
3432
3433 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3434 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3435 return _windows_.PyPanel_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3436
3437 def base_GetMaxSize(*args, **kwargs):
3438 """base_GetMaxSize(self) -> Size"""
3439 return _windows_.PyPanel_base_GetMaxSize(*args, **kwargs)
3440
3441 def base_AddChild(*args, **kwargs):
3442 """base_AddChild(self, Window child)"""
3443 return _windows_.PyPanel_base_AddChild(*args, **kwargs)
3444
3445 def base_RemoveChild(*args, **kwargs):
3446 """base_RemoveChild(self, Window child)"""
3447 return _windows_.PyPanel_base_RemoveChild(*args, **kwargs)
3448
3449 def base_ShouldInheritColours(*args, **kwargs):
3450 """base_ShouldInheritColours(self) -> bool"""
3451 return _windows_.PyPanel_base_ShouldInheritColours(*args, **kwargs)
3452
3453 def base_ApplyParentThemeBackground(*args, **kwargs):
3454 """base_ApplyParentThemeBackground(self, Colour c)"""
3455 return _windows_.PyPanel_base_ApplyParentThemeBackground(*args, **kwargs)
3456
3457
3458 class PyPanelPtr(PyPanel):
3459 def __init__(self, this):
3460 self.this = this
3461 if not hasattr(self,"thisown"): self.thisown = 0
3462 self.__class__ = PyPanel
3463 _windows_.PyPanel_swigregister(PyPanelPtr)
3464
3465 def PrePyPanel(*args, **kwargs):
3466 """PrePyPanel() -> PyPanel"""
3467 val = _windows_.new_PrePyPanel(*args, **kwargs)
3468 val.thisown = 1
3469 return val
3470
3471 class PyScrolledWindow(ScrolledWindow):
3472 def __repr__(self):
3473 return "<%s.%s; proxy of C++ wxPyScrolledWindow instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3474 def __init__(self, *args, **kwargs):
3475 """
3476 __init__(self, Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3477 long style=0, String name=PanelNameStr) -> PyScrolledWindow
3478 """
3479 newobj = _windows_.new_PyScrolledWindow(*args, **kwargs)
3480 self.this = newobj.this
3481 self.thisown = 1
3482 del newobj.thisown
3483 self._setOORInfo(self); self._setCallbackInfo(self, PyPanel)
3484
3485 def _setCallbackInfo(*args, **kwargs):
3486 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
3487 return _windows_.PyScrolledWindow__setCallbackInfo(*args, **kwargs)
3488
3489 def base_DoMoveWindow(*args, **kwargs):
3490 """base_DoMoveWindow(self, int x, int y, int width, int height)"""
3491 return _windows_.PyScrolledWindow_base_DoMoveWindow(*args, **kwargs)
3492
3493 def base_DoSetSize(*args, **kwargs):
3494 """base_DoSetSize(self, int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)"""
3495 return _windows_.PyScrolledWindow_base_DoSetSize(*args, **kwargs)
3496
3497 def base_DoSetClientSize(*args, **kwargs):
3498 """base_DoSetClientSize(self, int width, int height)"""
3499 return _windows_.PyScrolledWindow_base_DoSetClientSize(*args, **kwargs)
3500
3501 def base_DoSetVirtualSize(*args, **kwargs):
3502 """base_DoSetVirtualSize(self, int x, int y)"""
3503 return _windows_.PyScrolledWindow_base_DoSetVirtualSize(*args, **kwargs)
3504
3505 def base_DoGetSize(*args, **kwargs):
3506 """base_DoGetSize() -> (width, height)"""
3507 return _windows_.PyScrolledWindow_base_DoGetSize(*args, **kwargs)
3508
3509 def base_DoGetClientSize(*args, **kwargs):
3510 """base_DoGetClientSize() -> (width, height)"""
3511 return _windows_.PyScrolledWindow_base_DoGetClientSize(*args, **kwargs)
3512
3513 def base_DoGetPosition(*args, **kwargs):
3514 """base_DoGetPosition() -> (x,y)"""
3515 return _windows_.PyScrolledWindow_base_DoGetPosition(*args, **kwargs)
3516
3517 def base_DoGetVirtualSize(*args, **kwargs):
3518 """base_DoGetVirtualSize(self) -> Size"""
3519 return _windows_.PyScrolledWindow_base_DoGetVirtualSize(*args, **kwargs)
3520
3521 def base_DoGetBestSize(*args, **kwargs):
3522 """base_DoGetBestSize(self) -> Size"""
3523 return _windows_.PyScrolledWindow_base_DoGetBestSize(*args, **kwargs)
3524
3525 def base_InitDialog(*args, **kwargs):
3526 """base_InitDialog(self)"""
3527 return _windows_.PyScrolledWindow_base_InitDialog(*args, **kwargs)
3528
3529 def base_TransferDataToWindow(*args, **kwargs):
3530 """base_TransferDataToWindow(self) -> bool"""
3531 return _windows_.PyScrolledWindow_base_TransferDataToWindow(*args, **kwargs)
3532
3533 def base_TransferDataFromWindow(*args, **kwargs):
3534 """base_TransferDataFromWindow(self) -> bool"""
3535 return _windows_.PyScrolledWindow_base_TransferDataFromWindow(*args, **kwargs)
3536
3537 def base_Validate(*args, **kwargs):
3538 """base_Validate(self) -> bool"""
3539 return _windows_.PyScrolledWindow_base_Validate(*args, **kwargs)
3540
3541 def base_AcceptsFocus(*args, **kwargs):
3542 """base_AcceptsFocus(self) -> bool"""
3543 return _windows_.PyScrolledWindow_base_AcceptsFocus(*args, **kwargs)
3544
3545 def base_AcceptsFocusFromKeyboard(*args, **kwargs):
3546 """base_AcceptsFocusFromKeyboard(self) -> bool"""
3547 return _windows_.PyScrolledWindow_base_AcceptsFocusFromKeyboard(*args, **kwargs)
3548
3549 def base_GetMaxSize(*args, **kwargs):
3550 """base_GetMaxSize(self) -> Size"""
3551 return _windows_.PyScrolledWindow_base_GetMaxSize(*args, **kwargs)
3552
3553 def base_AddChild(*args, **kwargs):
3554 """base_AddChild(self, Window child)"""
3555 return _windows_.PyScrolledWindow_base_AddChild(*args, **kwargs)
3556
3557 def base_RemoveChild(*args, **kwargs):
3558 """base_RemoveChild(self, Window child)"""
3559 return _windows_.PyScrolledWindow_base_RemoveChild(*args, **kwargs)
3560
3561 def base_ShouldInheritColours(*args, **kwargs):
3562 """base_ShouldInheritColours(self) -> bool"""
3563 return _windows_.PyScrolledWindow_base_ShouldInheritColours(*args, **kwargs)
3564
3565 def base_ApplyParentThemeBackground(*args, **kwargs):
3566 """base_ApplyParentThemeBackground(self, Colour c)"""
3567 return _windows_.PyScrolledWindow_base_ApplyParentThemeBackground(*args, **kwargs)
3568
3569
3570 class PyScrolledWindowPtr(PyScrolledWindow):
3571 def __init__(self, this):
3572 self.this = this
3573 if not hasattr(self,"thisown"): self.thisown = 0
3574 self.__class__ = PyScrolledWindow
3575 _windows_.PyScrolledWindow_swigregister(PyScrolledWindowPtr)
3576
3577 def PrePyScrolledWindow(*args, **kwargs):
3578 """PrePyScrolledWindow() -> PyScrolledWindow"""
3579 val = _windows_.new_PrePyScrolledWindow(*args, **kwargs)
3580 val.thisown = 1
3581 return val
3582
3583 #---------------------------------------------------------------------------
3584
3585 PRINT_MODE_NONE = _windows_.PRINT_MODE_NONE
3586 PRINT_MODE_PREVIEW = _windows_.PRINT_MODE_PREVIEW
3587 PRINT_MODE_FILE = _windows_.PRINT_MODE_FILE
3588 PRINT_MODE_PRINTER = _windows_.PRINT_MODE_PRINTER
3589 PRINT_MODE_STREAM = _windows_.PRINT_MODE_STREAM
3590 class PrintData(_core.Object):
3591 def __repr__(self):
3592 return "<%s.%s; proxy of C++ wxPrintData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3593 def __init__(self, *args, **kwargs):
3594 """__init__(self) -> PrintData"""
3595 newobj = _windows_.new_PrintData(*args, **kwargs)
3596 self.this = newobj.this
3597 self.thisown = 1
3598 del newobj.thisown
3599 def __del__(self, destroy=_windows_.delete_PrintData):
3600 """__del__(self)"""
3601 try:
3602 if self.thisown: destroy(self)
3603 except: pass
3604
3605 def GetNoCopies(*args, **kwargs):
3606 """GetNoCopies(self) -> int"""
3607 return _windows_.PrintData_GetNoCopies(*args, **kwargs)
3608
3609 def GetCollate(*args, **kwargs):
3610 """GetCollate(self) -> bool"""
3611 return _windows_.PrintData_GetCollate(*args, **kwargs)
3612
3613 def GetOrientation(*args, **kwargs):
3614 """GetOrientation(self) -> int"""
3615 return _windows_.PrintData_GetOrientation(*args, **kwargs)
3616
3617 def Ok(*args, **kwargs):
3618 """Ok(self) -> bool"""
3619 return _windows_.PrintData_Ok(*args, **kwargs)
3620
3621 def GetPrinterName(*args, **kwargs):
3622 """GetPrinterName(self) -> String"""
3623 return _windows_.PrintData_GetPrinterName(*args, **kwargs)
3624
3625 def GetColour(*args, **kwargs):
3626 """GetColour(self) -> bool"""
3627 return _windows_.PrintData_GetColour(*args, **kwargs)
3628
3629 def GetDuplex(*args, **kwargs):
3630 """GetDuplex(self) -> int"""
3631 return _windows_.PrintData_GetDuplex(*args, **kwargs)
3632
3633 def GetPaperId(*args, **kwargs):
3634 """GetPaperId(self) -> int"""
3635 return _windows_.PrintData_GetPaperId(*args, **kwargs)
3636
3637 def GetPaperSize(*args, **kwargs):
3638 """GetPaperSize(self) -> Size"""
3639 return _windows_.PrintData_GetPaperSize(*args, **kwargs)
3640
3641 def GetQuality(*args, **kwargs):
3642 """GetQuality(self) -> int"""
3643 return _windows_.PrintData_GetQuality(*args, **kwargs)
3644
3645 def SetNoCopies(*args, **kwargs):
3646 """SetNoCopies(self, int v)"""
3647 return _windows_.PrintData_SetNoCopies(*args, **kwargs)
3648
3649 def SetCollate(*args, **kwargs):
3650 """SetCollate(self, bool flag)"""
3651 return _windows_.PrintData_SetCollate(*args, **kwargs)
3652
3653 def SetOrientation(*args, **kwargs):
3654 """SetOrientation(self, int orient)"""
3655 return _windows_.PrintData_SetOrientation(*args, **kwargs)
3656
3657 def SetPrinterName(*args, **kwargs):
3658 """SetPrinterName(self, String name)"""
3659 return _windows_.PrintData_SetPrinterName(*args, **kwargs)
3660
3661 def SetColour(*args, **kwargs):
3662 """SetColour(self, bool colour)"""
3663 return _windows_.PrintData_SetColour(*args, **kwargs)
3664
3665 def SetDuplex(*args, **kwargs):
3666 """SetDuplex(self, int duplex)"""
3667 return _windows_.PrintData_SetDuplex(*args, **kwargs)
3668
3669 def SetPaperId(*args, **kwargs):
3670 """SetPaperId(self, int sizeId)"""
3671 return _windows_.PrintData_SetPaperId(*args, **kwargs)
3672
3673 def SetPaperSize(*args, **kwargs):
3674 """SetPaperSize(self, Size sz)"""
3675 return _windows_.PrintData_SetPaperSize(*args, **kwargs)
3676
3677 def SetQuality(*args, **kwargs):
3678 """SetQuality(self, int quality)"""
3679 return _windows_.PrintData_SetQuality(*args, **kwargs)
3680
3681 def GetPrinterCommand(*args, **kwargs):
3682 """GetPrinterCommand(self) -> String"""
3683 return _windows_.PrintData_GetPrinterCommand(*args, **kwargs)
3684
3685 def GetPrinterOptions(*args, **kwargs):
3686 """GetPrinterOptions(self) -> String"""
3687 return _windows_.PrintData_GetPrinterOptions(*args, **kwargs)
3688
3689 def GetPreviewCommand(*args, **kwargs):
3690 """GetPreviewCommand(self) -> String"""
3691 return _windows_.PrintData_GetPreviewCommand(*args, **kwargs)
3692
3693 def GetFilename(*args, **kwargs):
3694 """GetFilename(self) -> String"""
3695 return _windows_.PrintData_GetFilename(*args, **kwargs)
3696
3697 def GetFontMetricPath(*args, **kwargs):
3698 """GetFontMetricPath(self) -> String"""
3699 return _windows_.PrintData_GetFontMetricPath(*args, **kwargs)
3700
3701 def GetPrinterScaleX(*args, **kwargs):
3702 """GetPrinterScaleX(self) -> double"""
3703 return _windows_.PrintData_GetPrinterScaleX(*args, **kwargs)
3704
3705 def GetPrinterScaleY(*args, **kwargs):
3706 """GetPrinterScaleY(self) -> double"""
3707 return _windows_.PrintData_GetPrinterScaleY(*args, **kwargs)
3708
3709 def GetPrinterTranslateX(*args, **kwargs):
3710 """GetPrinterTranslateX(self) -> long"""
3711 return _windows_.PrintData_GetPrinterTranslateX(*args, **kwargs)
3712
3713 def GetPrinterTranslateY(*args, **kwargs):
3714 """GetPrinterTranslateY(self) -> long"""
3715 return _windows_.PrintData_GetPrinterTranslateY(*args, **kwargs)
3716
3717 def GetPrintMode(*args, **kwargs):
3718 """GetPrintMode(self) -> int"""
3719 return _windows_.PrintData_GetPrintMode(*args, **kwargs)
3720
3721 def SetPrinterCommand(*args, **kwargs):
3722 """SetPrinterCommand(self, String command)"""
3723 return _windows_.PrintData_SetPrinterCommand(*args, **kwargs)
3724
3725 def SetPrinterOptions(*args, **kwargs):
3726 """SetPrinterOptions(self, String options)"""
3727 return _windows_.PrintData_SetPrinterOptions(*args, **kwargs)
3728
3729 def SetPreviewCommand(*args, **kwargs):
3730 """SetPreviewCommand(self, String command)"""
3731 return _windows_.PrintData_SetPreviewCommand(*args, **kwargs)
3732
3733 def SetFilename(*args, **kwargs):
3734 """SetFilename(self, String filename)"""
3735 return _windows_.PrintData_SetFilename(*args, **kwargs)
3736
3737 def SetFontMetricPath(*args, **kwargs):
3738 """SetFontMetricPath(self, String path)"""
3739 return _windows_.PrintData_SetFontMetricPath(*args, **kwargs)
3740
3741 def SetPrinterScaleX(*args, **kwargs):
3742 """SetPrinterScaleX(self, double x)"""
3743 return _windows_.PrintData_SetPrinterScaleX(*args, **kwargs)
3744
3745 def SetPrinterScaleY(*args, **kwargs):
3746 """SetPrinterScaleY(self, double y)"""
3747 return _windows_.PrintData_SetPrinterScaleY(*args, **kwargs)
3748
3749 def SetPrinterScaling(*args, **kwargs):
3750 """SetPrinterScaling(self, double x, double y)"""
3751 return _windows_.PrintData_SetPrinterScaling(*args, **kwargs)
3752
3753 def SetPrinterTranslateX(*args, **kwargs):
3754 """SetPrinterTranslateX(self, long x)"""
3755 return _windows_.PrintData_SetPrinterTranslateX(*args, **kwargs)
3756
3757 def SetPrinterTranslateY(*args, **kwargs):
3758 """SetPrinterTranslateY(self, long y)"""
3759 return _windows_.PrintData_SetPrinterTranslateY(*args, **kwargs)
3760
3761 def SetPrinterTranslation(*args, **kwargs):
3762 """SetPrinterTranslation(self, long x, long y)"""
3763 return _windows_.PrintData_SetPrinterTranslation(*args, **kwargs)
3764
3765 def SetPrintMode(*args, **kwargs):
3766 """SetPrintMode(self, int printMode)"""
3767 return _windows_.PrintData_SetPrintMode(*args, **kwargs)
3768
3769 def GetOutputStream(*args, **kwargs):
3770 """GetOutputStream(self) -> OutputStream"""
3771 return _windows_.PrintData_GetOutputStream(*args, **kwargs)
3772
3773 def SetOutputStream(*args, **kwargs):
3774 """SetOutputStream(self, OutputStream outputstream)"""
3775 return _windows_.PrintData_SetOutputStream(*args, **kwargs)
3776
3777 def __nonzero__(self): return self.Ok()
3778
3779 class PrintDataPtr(PrintData):
3780 def __init__(self, this):
3781 self.this = this
3782 if not hasattr(self,"thisown"): self.thisown = 0
3783 self.__class__ = PrintData
3784 _windows_.PrintData_swigregister(PrintDataPtr)
3785 PrintoutTitleStr = cvar.PrintoutTitleStr
3786 PreviewCanvasNameStr = cvar.PreviewCanvasNameStr
3787
3788 class PageSetupDialogData(_core.Object):
3789 def __repr__(self):
3790 return "<%s.%s; proxy of C++ wxPageSetupDialogData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3791 def __init__(self, *args, **kwargs):
3792 """__init__(self) -> PageSetupDialogData"""
3793 newobj = _windows_.new_PageSetupDialogData(*args, **kwargs)
3794 self.this = newobj.this
3795 self.thisown = 1
3796 del newobj.thisown
3797 def __del__(self, destroy=_windows_.delete_PageSetupDialogData):
3798 """__del__(self)"""
3799 try:
3800 if self.thisown: destroy(self)
3801 except: pass
3802
3803 def EnableHelp(*args, **kwargs):
3804 """EnableHelp(self, bool flag)"""
3805 return _windows_.PageSetupDialogData_EnableHelp(*args, **kwargs)
3806
3807 def EnableMargins(*args, **kwargs):
3808 """EnableMargins(self, bool flag)"""
3809 return _windows_.PageSetupDialogData_EnableMargins(*args, **kwargs)
3810
3811 def EnableOrientation(*args, **kwargs):
3812 """EnableOrientation(self, bool flag)"""
3813 return _windows_.PageSetupDialogData_EnableOrientation(*args, **kwargs)
3814
3815 def EnablePaper(*args, **kwargs):
3816 """EnablePaper(self, bool flag)"""
3817 return _windows_.PageSetupDialogData_EnablePaper(*args, **kwargs)
3818
3819 def EnablePrinter(*args, **kwargs):
3820 """EnablePrinter(self, bool flag)"""
3821 return _windows_.PageSetupDialogData_EnablePrinter(*args, **kwargs)
3822
3823 def GetDefaultMinMargins(*args, **kwargs):
3824 """GetDefaultMinMargins(self) -> bool"""
3825 return _windows_.PageSetupDialogData_GetDefaultMinMargins(*args, **kwargs)
3826
3827 def GetEnableMargins(*args, **kwargs):
3828 """GetEnableMargins(self) -> bool"""
3829 return _windows_.PageSetupDialogData_GetEnableMargins(*args, **kwargs)
3830
3831 def GetEnableOrientation(*args, **kwargs):
3832 """GetEnableOrientation(self) -> bool"""
3833 return _windows_.PageSetupDialogData_GetEnableOrientation(*args, **kwargs)
3834
3835 def GetEnablePaper(*args, **kwargs):
3836 """GetEnablePaper(self) -> bool"""
3837 return _windows_.PageSetupDialogData_GetEnablePaper(*args, **kwargs)
3838
3839 def GetEnablePrinter(*args, **kwargs):
3840 """GetEnablePrinter(self) -> bool"""
3841 return _windows_.PageSetupDialogData_GetEnablePrinter(*args, **kwargs)
3842
3843 def GetEnableHelp(*args, **kwargs):
3844 """GetEnableHelp(self) -> bool"""
3845 return _windows_.PageSetupDialogData_GetEnableHelp(*args, **kwargs)
3846
3847 def GetDefaultInfo(*args, **kwargs):
3848 """GetDefaultInfo(self) -> bool"""
3849 return _windows_.PageSetupDialogData_GetDefaultInfo(*args, **kwargs)
3850
3851 def GetMarginTopLeft(*args, **kwargs):
3852 """GetMarginTopLeft(self) -> Point"""
3853 return _windows_.PageSetupDialogData_GetMarginTopLeft(*args, **kwargs)
3854
3855 def GetMarginBottomRight(*args, **kwargs):
3856 """GetMarginBottomRight(self) -> Point"""
3857 return _windows_.PageSetupDialogData_GetMarginBottomRight(*args, **kwargs)
3858
3859 def GetMinMarginTopLeft(*args, **kwargs):
3860 """GetMinMarginTopLeft(self) -> Point"""
3861 return _windows_.PageSetupDialogData_GetMinMarginTopLeft(*args, **kwargs)
3862
3863 def GetMinMarginBottomRight(*args, **kwargs):
3864 """GetMinMarginBottomRight(self) -> Point"""
3865 return _windows_.PageSetupDialogData_GetMinMarginBottomRight(*args, **kwargs)
3866
3867 def GetPaperId(*args, **kwargs):
3868 """GetPaperId(self) -> int"""
3869 return _windows_.PageSetupDialogData_GetPaperId(*args, **kwargs)
3870
3871 def GetPaperSize(*args, **kwargs):
3872 """GetPaperSize(self) -> Size"""
3873 return _windows_.PageSetupDialogData_GetPaperSize(*args, **kwargs)
3874
3875 def GetPrintData(*args, **kwargs):
3876 """GetPrintData(self) -> PrintData"""
3877 return _windows_.PageSetupDialogData_GetPrintData(*args, **kwargs)
3878
3879 def Ok(*args, **kwargs):
3880 """Ok(self) -> bool"""
3881 return _windows_.PageSetupDialogData_Ok(*args, **kwargs)
3882
3883 def SetDefaultInfo(*args, **kwargs):
3884 """SetDefaultInfo(self, bool flag)"""
3885 return _windows_.PageSetupDialogData_SetDefaultInfo(*args, **kwargs)
3886
3887 def SetDefaultMinMargins(*args, **kwargs):
3888 """SetDefaultMinMargins(self, bool flag)"""
3889 return _windows_.PageSetupDialogData_SetDefaultMinMargins(*args, **kwargs)
3890
3891 def SetMarginTopLeft(*args, **kwargs):
3892 """SetMarginTopLeft(self, Point pt)"""
3893 return _windows_.PageSetupDialogData_SetMarginTopLeft(*args, **kwargs)
3894
3895 def SetMarginBottomRight(*args, **kwargs):
3896 """SetMarginBottomRight(self, Point pt)"""
3897 return _windows_.PageSetupDialogData_SetMarginBottomRight(*args, **kwargs)
3898
3899 def SetMinMarginTopLeft(*args, **kwargs):
3900 """SetMinMarginTopLeft(self, Point pt)"""
3901 return _windows_.PageSetupDialogData_SetMinMarginTopLeft(*args, **kwargs)
3902
3903 def SetMinMarginBottomRight(*args, **kwargs):
3904 """SetMinMarginBottomRight(self, Point pt)"""
3905 return _windows_.PageSetupDialogData_SetMinMarginBottomRight(*args, **kwargs)
3906
3907 def SetPaperId(*args, **kwargs):
3908 """SetPaperId(self, int id)"""
3909 return _windows_.PageSetupDialogData_SetPaperId(*args, **kwargs)
3910
3911 def SetPaperSize(*args, **kwargs):
3912 """SetPaperSize(self, Size size)"""
3913 return _windows_.PageSetupDialogData_SetPaperSize(*args, **kwargs)
3914
3915 def SetPrintData(*args, **kwargs):
3916 """SetPrintData(self, PrintData printData)"""
3917 return _windows_.PageSetupDialogData_SetPrintData(*args, **kwargs)
3918
3919 def __nonzero__(self): return self.Ok()
3920
3921 class PageSetupDialogDataPtr(PageSetupDialogData):
3922 def __init__(self, this):
3923 self.this = this
3924 if not hasattr(self,"thisown"): self.thisown = 0
3925 self.__class__ = PageSetupDialogData
3926 _windows_.PageSetupDialogData_swigregister(PageSetupDialogDataPtr)
3927
3928 class PageSetupDialog(Dialog):
3929 def __repr__(self):
3930 return "<%s.%s; proxy of C++ wxPageSetupDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3931 def __init__(self, *args, **kwargs):
3932 """__init__(self, Window parent, PageSetupDialogData data=None) -> PageSetupDialog"""
3933 newobj = _windows_.new_PageSetupDialog(*args, **kwargs)
3934 self.this = newobj.this
3935 self.thisown = 1
3936 del newobj.thisown
3937 self._setOORInfo(self)
3938
3939 def GetPageSetupData(*args, **kwargs):
3940 """GetPageSetupData(self) -> PageSetupDialogData"""
3941 return _windows_.PageSetupDialog_GetPageSetupData(*args, **kwargs)
3942
3943 def ShowModal(*args, **kwargs):
3944 """ShowModal(self) -> int"""
3945 return _windows_.PageSetupDialog_ShowModal(*args, **kwargs)
3946
3947
3948 class PageSetupDialogPtr(PageSetupDialog):
3949 def __init__(self, this):
3950 self.this = this
3951 if not hasattr(self,"thisown"): self.thisown = 0
3952 self.__class__ = PageSetupDialog
3953 _windows_.PageSetupDialog_swigregister(PageSetupDialogPtr)
3954
3955 class PrintDialogData(_core.Object):
3956 def __repr__(self):
3957 return "<%s.%s; proxy of C++ wxPrintDialogData instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
3958 def __init__(self, *args):
3959 """
3960 __init__(self) -> PrintDialogData
3961 __init__(self, PrintData printData) -> PrintDialogData
3962 """
3963 newobj = _windows_.new_PrintDialogData(*args)
3964 self.this = newobj.this
3965 self.thisown = 1
3966 del newobj.thisown
3967 def __del__(self, destroy=_windows_.delete_PrintDialogData):
3968 """__del__(self)"""
3969 try:
3970 if self.thisown: destroy(self)
3971 except: pass
3972
3973 def GetFromPage(*args, **kwargs):
3974 """GetFromPage(self) -> int"""
3975 return _windows_.PrintDialogData_GetFromPage(*args, **kwargs)
3976
3977 def GetToPage(*args, **kwargs):
3978 """GetToPage(self) -> int"""
3979 return _windows_.PrintDialogData_GetToPage(*args, **kwargs)
3980
3981 def GetMinPage(*args, **kwargs):
3982 """GetMinPage(self) -> int"""
3983 return _windows_.PrintDialogData_GetMinPage(*args, **kwargs)
3984
3985 def GetMaxPage(*args, **kwargs):
3986 """GetMaxPage(self) -> int"""
3987 return _windows_.PrintDialogData_GetMaxPage(*args, **kwargs)
3988
3989 def GetNoCopies(*args, **kwargs):
3990 """GetNoCopies(self) -> int"""
3991 return _windows_.PrintDialogData_GetNoCopies(*args, **kwargs)
3992
3993 def GetAllPages(*args, **kwargs):
3994 """GetAllPages(self) -> bool"""
3995 return _windows_.PrintDialogData_GetAllPages(*args, **kwargs)
3996
3997 def GetSelection(*args, **kwargs):
3998 """GetSelection(self) -> bool"""
3999 return _windows_.PrintDialogData_GetSelection(*args, **kwargs)
4000
4001 def GetCollate(*args, **kwargs):
4002 """GetCollate(self) -> bool"""
4003 return _windows_.PrintDialogData_GetCollate(*args, **kwargs)
4004
4005 def GetPrintToFile(*args, **kwargs):
4006 """GetPrintToFile(self) -> bool"""
4007 return _windows_.PrintDialogData_GetPrintToFile(*args, **kwargs)
4008
4009 def GetSetupDialog(*args, **kwargs):
4010 """GetSetupDialog(self) -> bool"""
4011 return _windows_.PrintDialogData_GetSetupDialog(*args, **kwargs)
4012
4013 def SetFromPage(*args, **kwargs):
4014 """SetFromPage(self, int v)"""
4015 return _windows_.PrintDialogData_SetFromPage(*args, **kwargs)
4016
4017 def SetToPage(*args, **kwargs):
4018 """SetToPage(self, int v)"""
4019 return _windows_.PrintDialogData_SetToPage(*args, **kwargs)
4020
4021 def SetMinPage(*args, **kwargs):
4022 """SetMinPage(self, int v)"""
4023 return _windows_.PrintDialogData_SetMinPage(*args, **kwargs)
4024
4025 def SetMaxPage(*args, **kwargs):
4026 """SetMaxPage(self, int v)"""
4027 return _windows_.PrintDialogData_SetMaxPage(*args, **kwargs)
4028
4029 def SetNoCopies(*args, **kwargs):
4030 """SetNoCopies(self, int v)"""
4031 return _windows_.PrintDialogData_SetNoCopies(*args, **kwargs)
4032
4033 def SetAllPages(*args, **kwargs):
4034 """SetAllPages(self, bool flag)"""
4035 return _windows_.PrintDialogData_SetAllPages(*args, **kwargs)
4036
4037 def SetSelection(*args, **kwargs):
4038 """SetSelection(self, bool flag)"""
4039 return _windows_.PrintDialogData_SetSelection(*args, **kwargs)
4040
4041 def SetCollate(*args, **kwargs):
4042 """SetCollate(self, bool flag)"""
4043 return _windows_.PrintDialogData_SetCollate(*args, **kwargs)
4044
4045 def SetPrintToFile(*args, **kwargs):
4046 """SetPrintToFile(self, bool flag)"""
4047 return _windows_.PrintDialogData_SetPrintToFile(*args, **kwargs)
4048
4049 def SetSetupDialog(*args, **kwargs):
4050 """SetSetupDialog(self, bool flag)"""
4051 return _windows_.PrintDialogData_SetSetupDialog(*args, **kwargs)
4052
4053 def EnablePrintToFile(*args, **kwargs):
4054 """EnablePrintToFile(self, bool flag)"""
4055 return _windows_.PrintDialogData_EnablePrintToFile(*args, **kwargs)
4056
4057 def EnableSelection(*args, **kwargs):
4058 """EnableSelection(self, bool flag)"""
4059 return _windows_.PrintDialogData_EnableSelection(*args, **kwargs)
4060
4061 def EnablePageNumbers(*args, **kwargs):
4062 """EnablePageNumbers(self, bool flag)"""
4063 return _windows_.PrintDialogData_EnablePageNumbers(*args, **kwargs)
4064
4065 def EnableHelp(*args, **kwargs):
4066 """EnableHelp(self, bool flag)"""
4067 return _windows_.PrintDialogData_EnableHelp(*args, **kwargs)
4068
4069 def GetEnablePrintToFile(*args, **kwargs):
4070 """GetEnablePrintToFile(self) -> bool"""
4071 return _windows_.PrintDialogData_GetEnablePrintToFile(*args, **kwargs)
4072
4073 def GetEnableSelection(*args, **kwargs):
4074 """GetEnableSelection(self) -> bool"""
4075 return _windows_.PrintDialogData_GetEnableSelection(*args, **kwargs)
4076
4077 def GetEnablePageNumbers(*args, **kwargs):
4078 """GetEnablePageNumbers(self) -> bool"""
4079 return _windows_.PrintDialogData_GetEnablePageNumbers(*args, **kwargs)
4080
4081 def GetEnableHelp(*args, **kwargs):
4082 """GetEnableHelp(self) -> bool"""
4083 return _windows_.PrintDialogData_GetEnableHelp(*args, **kwargs)
4084
4085 def Ok(*args, **kwargs):
4086 """Ok(self) -> bool"""
4087 return _windows_.PrintDialogData_Ok(*args, **kwargs)
4088
4089 def GetPrintData(*args, **kwargs):
4090 """GetPrintData(self) -> PrintData"""
4091 return _windows_.PrintDialogData_GetPrintData(*args, **kwargs)
4092
4093 def SetPrintData(*args, **kwargs):
4094 """SetPrintData(self, PrintData printData)"""
4095 return _windows_.PrintDialogData_SetPrintData(*args, **kwargs)
4096
4097 def __nonzero__(self): return self.Ok()
4098
4099 class PrintDialogDataPtr(PrintDialogData):
4100 def __init__(self, this):
4101 self.this = this
4102 if not hasattr(self,"thisown"): self.thisown = 0
4103 self.__class__ = PrintDialogData
4104 _windows_.PrintDialogData_swigregister(PrintDialogDataPtr)
4105
4106 class PrintDialog(Dialog):
4107 def __repr__(self):
4108 return "<%s.%s; proxy of C++ wxPrintDialog instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4109 def __init__(self, *args, **kwargs):
4110 """__init__(self, Window parent, PrintDialogData data=None) -> PrintDialog"""
4111 newobj = _windows_.new_PrintDialog(*args, **kwargs)
4112 self.this = newobj.this
4113 self.thisown = 1
4114 del newobj.thisown
4115 self._setOORInfo(self)
4116
4117 def GetPrintDialogData(*args, **kwargs):
4118 """GetPrintDialogData(self) -> PrintDialogData"""
4119 return _windows_.PrintDialog_GetPrintDialogData(*args, **kwargs)
4120
4121 def GetPrintDC(*args, **kwargs):
4122 """GetPrintDC(self) -> DC"""
4123 return _windows_.PrintDialog_GetPrintDC(*args, **kwargs)
4124
4125 def ShowModal(*args, **kwargs):
4126 """ShowModal(self) -> int"""
4127 return _windows_.PrintDialog_ShowModal(*args, **kwargs)
4128
4129
4130 class PrintDialogPtr(PrintDialog):
4131 def __init__(self, this):
4132 self.this = this
4133 if not hasattr(self,"thisown"): self.thisown = 0
4134 self.__class__ = PrintDialog
4135 _windows_.PrintDialog_swigregister(PrintDialogPtr)
4136
4137 PRINTER_NO_ERROR = _windows_.PRINTER_NO_ERROR
4138 PRINTER_CANCELLED = _windows_.PRINTER_CANCELLED
4139 PRINTER_ERROR = _windows_.PRINTER_ERROR
4140 class Printer(_core.Object):
4141 def __repr__(self):
4142 return "<%s.%s; proxy of C++ wxPrinter instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4143 def __init__(self, *args, **kwargs):
4144 """__init__(self, PrintDialogData data=None) -> Printer"""
4145 newobj = _windows_.new_Printer(*args, **kwargs)
4146 self.this = newobj.this
4147 self.thisown = 1
4148 del newobj.thisown
4149 def __del__(self, destroy=_windows_.delete_Printer):
4150 """__del__(self)"""
4151 try:
4152 if self.thisown: destroy(self)
4153 except: pass
4154
4155 def CreateAbortWindow(*args, **kwargs):
4156 """CreateAbortWindow(self, Window parent, Printout printout)"""
4157 return _windows_.Printer_CreateAbortWindow(*args, **kwargs)
4158
4159 def GetPrintDialogData(*args, **kwargs):
4160 """GetPrintDialogData(self) -> PrintDialogData"""
4161 return _windows_.Printer_GetPrintDialogData(*args, **kwargs)
4162
4163 def Print(*args, **kwargs):
4164 """Print(self, Window parent, Printout printout, int prompt=True) -> bool"""
4165 return _windows_.Printer_Print(*args, **kwargs)
4166
4167 def PrintDialog(*args, **kwargs):
4168 """PrintDialog(self, Window parent) -> DC"""
4169 return _windows_.Printer_PrintDialog(*args, **kwargs)
4170
4171 def ReportError(*args, **kwargs):
4172 """ReportError(self, Window parent, Printout printout, String message)"""
4173 return _windows_.Printer_ReportError(*args, **kwargs)
4174
4175 def Setup(*args, **kwargs):
4176 """Setup(self, Window parent) -> bool"""
4177 return _windows_.Printer_Setup(*args, **kwargs)
4178
4179 def GetAbort(*args, **kwargs):
4180 """GetAbort(self) -> bool"""
4181 return _windows_.Printer_GetAbort(*args, **kwargs)
4182
4183 def GetLastError(*args, **kwargs):
4184 """GetLastError() -> int"""
4185 return _windows_.Printer_GetLastError(*args, **kwargs)
4186
4187 GetLastError = staticmethod(GetLastError)
4188
4189 class PrinterPtr(Printer):
4190 def __init__(self, this):
4191 self.this = this
4192 if not hasattr(self,"thisown"): self.thisown = 0
4193 self.__class__ = Printer
4194 _windows_.Printer_swigregister(PrinterPtr)
4195
4196 def Printer_GetLastError(*args, **kwargs):
4197 """Printer_GetLastError() -> int"""
4198 return _windows_.Printer_GetLastError(*args, **kwargs)
4199
4200 class Printout(_core.Object):
4201 def __repr__(self):
4202 return "<%s.%s; proxy of C++ wxPyPrintout instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4203 def __init__(self, *args, **kwargs):
4204 """__init__(self, String title=PrintoutTitleStr) -> Printout"""
4205 newobj = _windows_.new_Printout(*args, **kwargs)
4206 self.this = newobj.this
4207 self.thisown = 1
4208 del newobj.thisown
4209 self._setCallbackInfo(self, Printout)
4210
4211 def _setCallbackInfo(*args, **kwargs):
4212 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4213 return _windows_.Printout__setCallbackInfo(*args, **kwargs)
4214
4215 def GetTitle(*args, **kwargs):
4216 """GetTitle(self) -> String"""
4217 return _windows_.Printout_GetTitle(*args, **kwargs)
4218
4219 def GetDC(*args, **kwargs):
4220 """GetDC(self) -> DC"""
4221 return _windows_.Printout_GetDC(*args, **kwargs)
4222
4223 def SetDC(*args, **kwargs):
4224 """SetDC(self, DC dc)"""
4225 return _windows_.Printout_SetDC(*args, **kwargs)
4226
4227 def SetPageSizePixels(*args, **kwargs):
4228 """SetPageSizePixels(self, int w, int h)"""
4229 return _windows_.Printout_SetPageSizePixels(*args, **kwargs)
4230
4231 def GetPageSizePixels(*args, **kwargs):
4232 """GetPageSizePixels() -> (w, h)"""
4233 return _windows_.Printout_GetPageSizePixels(*args, **kwargs)
4234
4235 def SetPageSizeMM(*args, **kwargs):
4236 """SetPageSizeMM(self, int w, int h)"""
4237 return _windows_.Printout_SetPageSizeMM(*args, **kwargs)
4238
4239 def GetPageSizeMM(*args, **kwargs):
4240 """GetPageSizeMM() -> (w, h)"""
4241 return _windows_.Printout_GetPageSizeMM(*args, **kwargs)
4242
4243 def SetPPIScreen(*args, **kwargs):
4244 """SetPPIScreen(self, int x, int y)"""
4245 return _windows_.Printout_SetPPIScreen(*args, **kwargs)
4246
4247 def GetPPIScreen(*args, **kwargs):
4248 """GetPPIScreen() -> (x,y)"""
4249 return _windows_.Printout_GetPPIScreen(*args, **kwargs)
4250
4251 def SetPPIPrinter(*args, **kwargs):
4252 """SetPPIPrinter(self, int x, int y)"""
4253 return _windows_.Printout_SetPPIPrinter(*args, **kwargs)
4254
4255 def GetPPIPrinter(*args, **kwargs):
4256 """GetPPIPrinter() -> (x,y)"""
4257 return _windows_.Printout_GetPPIPrinter(*args, **kwargs)
4258
4259 def IsPreview(*args, **kwargs):
4260 """IsPreview(self) -> bool"""
4261 return _windows_.Printout_IsPreview(*args, **kwargs)
4262
4263 def SetIsPreview(*args, **kwargs):
4264 """SetIsPreview(self, bool p)"""
4265 return _windows_.Printout_SetIsPreview(*args, **kwargs)
4266
4267 def base_OnBeginDocument(*args, **kwargs):
4268 """base_OnBeginDocument(self, int startPage, int endPage) -> bool"""
4269 return _windows_.Printout_base_OnBeginDocument(*args, **kwargs)
4270
4271 def base_OnEndDocument(*args, **kwargs):
4272 """base_OnEndDocument(self)"""
4273 return _windows_.Printout_base_OnEndDocument(*args, **kwargs)
4274
4275 def base_OnBeginPrinting(*args, **kwargs):
4276 """base_OnBeginPrinting(self)"""
4277 return _windows_.Printout_base_OnBeginPrinting(*args, **kwargs)
4278
4279 def base_OnEndPrinting(*args, **kwargs):
4280 """base_OnEndPrinting(self)"""
4281 return _windows_.Printout_base_OnEndPrinting(*args, **kwargs)
4282
4283 def base_OnPreparePrinting(*args, **kwargs):
4284 """base_OnPreparePrinting(self)"""
4285 return _windows_.Printout_base_OnPreparePrinting(*args, **kwargs)
4286
4287 def base_HasPage(*args, **kwargs):
4288 """base_HasPage(self, int page) -> bool"""
4289 return _windows_.Printout_base_HasPage(*args, **kwargs)
4290
4291 def base_GetPageInfo(*args, **kwargs):
4292 """base_GetPageInfo() -> (minPage, maxPage, pageFrom, pageTo)"""
4293 return _windows_.Printout_base_GetPageInfo(*args, **kwargs)
4294
4295
4296 class PrintoutPtr(Printout):
4297 def __init__(self, this):
4298 self.this = this
4299 if not hasattr(self,"thisown"): self.thisown = 0
4300 self.__class__ = Printout
4301 _windows_.Printout_swigregister(PrintoutPtr)
4302
4303 class PreviewCanvas(ScrolledWindow):
4304 def __repr__(self):
4305 return "<%s.%s; proxy of C++ wxPreviewCanvas instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4306 def __init__(self, *args, **kwargs):
4307 """
4308 __init__(self, PrintPreview preview, Window parent, Point pos=DefaultPosition,
4309 Size size=DefaultSize, long style=0,
4310 String name=PreviewCanvasNameStr) -> PreviewCanvas
4311 """
4312 newobj = _windows_.new_PreviewCanvas(*args, **kwargs)
4313 self.this = newobj.this
4314 self.thisown = 1
4315 del newobj.thisown
4316 self._setOORInfo(self)
4317
4318
4319 class PreviewCanvasPtr(PreviewCanvas):
4320 def __init__(self, this):
4321 self.this = this
4322 if not hasattr(self,"thisown"): self.thisown = 0
4323 self.__class__ = PreviewCanvas
4324 _windows_.PreviewCanvas_swigregister(PreviewCanvasPtr)
4325
4326 class PreviewFrame(Frame):
4327 def __repr__(self):
4328 return "<%s.%s; proxy of C++ wxPreviewFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4329 def __init__(self, *args, **kwargs):
4330 """
4331 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4332 Size size=DefaultSize,
4333 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PreviewFrame
4334 """
4335 newobj = _windows_.new_PreviewFrame(*args, **kwargs)
4336 self.this = newobj.this
4337 self.thisown = 1
4338 del newobj.thisown
4339 self._setOORInfo(self)
4340
4341 def Initialize(*args, **kwargs):
4342 """Initialize(self)"""
4343 return _windows_.PreviewFrame_Initialize(*args, **kwargs)
4344
4345 def CreateControlBar(*args, **kwargs):
4346 """CreateControlBar(self)"""
4347 return _windows_.PreviewFrame_CreateControlBar(*args, **kwargs)
4348
4349 def CreateCanvas(*args, **kwargs):
4350 """CreateCanvas(self)"""
4351 return _windows_.PreviewFrame_CreateCanvas(*args, **kwargs)
4352
4353 def GetControlBar(*args, **kwargs):
4354 """GetControlBar(self) -> PreviewControlBar"""
4355 return _windows_.PreviewFrame_GetControlBar(*args, **kwargs)
4356
4357
4358 class PreviewFramePtr(PreviewFrame):
4359 def __init__(self, this):
4360 self.this = this
4361 if not hasattr(self,"thisown"): self.thisown = 0
4362 self.__class__ = PreviewFrame
4363 _windows_.PreviewFrame_swigregister(PreviewFramePtr)
4364
4365 PREVIEW_PRINT = _windows_.PREVIEW_PRINT
4366 PREVIEW_PREVIOUS = _windows_.PREVIEW_PREVIOUS
4367 PREVIEW_NEXT = _windows_.PREVIEW_NEXT
4368 PREVIEW_ZOOM = _windows_.PREVIEW_ZOOM
4369 PREVIEW_FIRST = _windows_.PREVIEW_FIRST
4370 PREVIEW_LAST = _windows_.PREVIEW_LAST
4371 PREVIEW_GOTO = _windows_.PREVIEW_GOTO
4372 PREVIEW_DEFAULT = _windows_.PREVIEW_DEFAULT
4373 ID_PREVIEW_CLOSE = _windows_.ID_PREVIEW_CLOSE
4374 ID_PREVIEW_NEXT = _windows_.ID_PREVIEW_NEXT
4375 ID_PREVIEW_PREVIOUS = _windows_.ID_PREVIEW_PREVIOUS
4376 ID_PREVIEW_PRINT = _windows_.ID_PREVIEW_PRINT
4377 ID_PREVIEW_ZOOM = _windows_.ID_PREVIEW_ZOOM
4378 ID_PREVIEW_FIRST = _windows_.ID_PREVIEW_FIRST
4379 ID_PREVIEW_LAST = _windows_.ID_PREVIEW_LAST
4380 ID_PREVIEW_GOTO = _windows_.ID_PREVIEW_GOTO
4381 class PreviewControlBar(Panel):
4382 def __repr__(self):
4383 return "<%s.%s; proxy of C++ wxPreviewControlBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4384 def __init__(self, *args, **kwargs):
4385 """
4386 __init__(self, PrintPreview preview, long buttons, Window parent,
4387 Point pos=DefaultPosition, Size size=DefaultSize,
4388 long style=TAB_TRAVERSAL, String name=PanelNameStr) -> PreviewControlBar
4389 """
4390 newobj = _windows_.new_PreviewControlBar(*args, **kwargs)
4391 self.this = newobj.this
4392 self.thisown = 1
4393 del newobj.thisown
4394 self._setOORInfo(self)
4395
4396 def GetZoomControl(*args, **kwargs):
4397 """GetZoomControl(self) -> int"""
4398 return _windows_.PreviewControlBar_GetZoomControl(*args, **kwargs)
4399
4400 def SetZoomControl(*args, **kwargs):
4401 """SetZoomControl(self, int zoom)"""
4402 return _windows_.PreviewControlBar_SetZoomControl(*args, **kwargs)
4403
4404 def GetPrintPreview(*args, **kwargs):
4405 """GetPrintPreview(self) -> PrintPreview"""
4406 return _windows_.PreviewControlBar_GetPrintPreview(*args, **kwargs)
4407
4408 def OnNext(*args, **kwargs):
4409 """OnNext(self)"""
4410 return _windows_.PreviewControlBar_OnNext(*args, **kwargs)
4411
4412 def OnPrevious(*args, **kwargs):
4413 """OnPrevious(self)"""
4414 return _windows_.PreviewControlBar_OnPrevious(*args, **kwargs)
4415
4416 def OnFirst(*args, **kwargs):
4417 """OnFirst(self)"""
4418 return _windows_.PreviewControlBar_OnFirst(*args, **kwargs)
4419
4420 def OnLast(*args, **kwargs):
4421 """OnLast(self)"""
4422 return _windows_.PreviewControlBar_OnLast(*args, **kwargs)
4423
4424 def OnGoto(*args, **kwargs):
4425 """OnGoto(self)"""
4426 return _windows_.PreviewControlBar_OnGoto(*args, **kwargs)
4427
4428
4429 class PreviewControlBarPtr(PreviewControlBar):
4430 def __init__(self, this):
4431 self.this = this
4432 if not hasattr(self,"thisown"): self.thisown = 0
4433 self.__class__ = PreviewControlBar
4434 _windows_.PreviewControlBar_swigregister(PreviewControlBarPtr)
4435
4436 class PrintPreview(_core.Object):
4437 def __repr__(self):
4438 return "<%s.%s; proxy of C++ wxPrintPreview instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4439 def __init__(self, *args):
4440 """
4441 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PrintPreview
4442 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PrintPreview
4443 """
4444 newobj = _windows_.new_PrintPreview(*args)
4445 self.this = newobj.this
4446 self.thisown = 1
4447 del newobj.thisown
4448 def SetCurrentPage(*args, **kwargs):
4449 """SetCurrentPage(self, int pageNum) -> bool"""
4450 return _windows_.PrintPreview_SetCurrentPage(*args, **kwargs)
4451
4452 def GetCurrentPage(*args, **kwargs):
4453 """GetCurrentPage(self) -> int"""
4454 return _windows_.PrintPreview_GetCurrentPage(*args, **kwargs)
4455
4456 def SetPrintout(*args, **kwargs):
4457 """SetPrintout(self, Printout printout)"""
4458 return _windows_.PrintPreview_SetPrintout(*args, **kwargs)
4459
4460 def GetPrintout(*args, **kwargs):
4461 """GetPrintout(self) -> Printout"""
4462 return _windows_.PrintPreview_GetPrintout(*args, **kwargs)
4463
4464 def GetPrintoutForPrinting(*args, **kwargs):
4465 """GetPrintoutForPrinting(self) -> Printout"""
4466 return _windows_.PrintPreview_GetPrintoutForPrinting(*args, **kwargs)
4467
4468 def SetFrame(*args, **kwargs):
4469 """SetFrame(self, Frame frame)"""
4470 return _windows_.PrintPreview_SetFrame(*args, **kwargs)
4471
4472 def SetCanvas(*args, **kwargs):
4473 """SetCanvas(self, PreviewCanvas canvas)"""
4474 return _windows_.PrintPreview_SetCanvas(*args, **kwargs)
4475
4476 def GetFrame(*args, **kwargs):
4477 """GetFrame(self) -> Frame"""
4478 return _windows_.PrintPreview_GetFrame(*args, **kwargs)
4479
4480 def GetCanvas(*args, **kwargs):
4481 """GetCanvas(self) -> PreviewCanvas"""
4482 return _windows_.PrintPreview_GetCanvas(*args, **kwargs)
4483
4484 def PaintPage(*args, **kwargs):
4485 """PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4486 return _windows_.PrintPreview_PaintPage(*args, **kwargs)
4487
4488 def DrawBlankPage(*args, **kwargs):
4489 """DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4490 return _windows_.PrintPreview_DrawBlankPage(*args, **kwargs)
4491
4492 def RenderPage(*args, **kwargs):
4493 """RenderPage(self, int pageNum) -> bool"""
4494 return _windows_.PrintPreview_RenderPage(*args, **kwargs)
4495
4496 def AdjustScrollbars(*args, **kwargs):
4497 """AdjustScrollbars(self, PreviewCanvas canvas)"""
4498 return _windows_.PrintPreview_AdjustScrollbars(*args, **kwargs)
4499
4500 def GetPrintDialogData(*args, **kwargs):
4501 """GetPrintDialogData(self) -> PrintDialogData"""
4502 return _windows_.PrintPreview_GetPrintDialogData(*args, **kwargs)
4503
4504 def SetZoom(*args, **kwargs):
4505 """SetZoom(self, int percent)"""
4506 return _windows_.PrintPreview_SetZoom(*args, **kwargs)
4507
4508 def GetZoom(*args, **kwargs):
4509 """GetZoom(self) -> int"""
4510 return _windows_.PrintPreview_GetZoom(*args, **kwargs)
4511
4512 def GetMaxPage(*args, **kwargs):
4513 """GetMaxPage(self) -> int"""
4514 return _windows_.PrintPreview_GetMaxPage(*args, **kwargs)
4515
4516 def GetMinPage(*args, **kwargs):
4517 """GetMinPage(self) -> int"""
4518 return _windows_.PrintPreview_GetMinPage(*args, **kwargs)
4519
4520 def Ok(*args, **kwargs):
4521 """Ok(self) -> bool"""
4522 return _windows_.PrintPreview_Ok(*args, **kwargs)
4523
4524 def SetOk(*args, **kwargs):
4525 """SetOk(self, bool ok)"""
4526 return _windows_.PrintPreview_SetOk(*args, **kwargs)
4527
4528 def Print(*args, **kwargs):
4529 """Print(self, bool interactive) -> bool"""
4530 return _windows_.PrintPreview_Print(*args, **kwargs)
4531
4532 def DetermineScaling(*args, **kwargs):
4533 """DetermineScaling(self)"""
4534 return _windows_.PrintPreview_DetermineScaling(*args, **kwargs)
4535
4536 def __nonzero__(self): return self.Ok()
4537
4538 class PrintPreviewPtr(PrintPreview):
4539 def __init__(self, this):
4540 self.this = this
4541 if not hasattr(self,"thisown"): self.thisown = 0
4542 self.__class__ = PrintPreview
4543 _windows_.PrintPreview_swigregister(PrintPreviewPtr)
4544
4545 class PyPrintPreview(PrintPreview):
4546 def __repr__(self):
4547 return "<%s.%s; proxy of C++ wxPyPrintPreview instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4548 def __init__(self, *args):
4549 """
4550 __init__(self, Printout printout, Printout printoutForPrinting, PrintDialogData data=None) -> PyPrintPreview
4551 __init__(self, Printout printout, Printout printoutForPrinting, PrintData data) -> PyPrintPreview
4552 """
4553 newobj = _windows_.new_PyPrintPreview(*args)
4554 self.this = newobj.this
4555 self.thisown = 1
4556 del newobj.thisown
4557 self._setCallbackInfo(self, PyPrintPreview)
4558
4559 def _setCallbackInfo(*args, **kwargs):
4560 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4561 return _windows_.PyPrintPreview__setCallbackInfo(*args, **kwargs)
4562
4563 def base_SetCurrentPage(*args, **kwargs):
4564 """base_SetCurrentPage(self, int pageNum) -> bool"""
4565 return _windows_.PyPrintPreview_base_SetCurrentPage(*args, **kwargs)
4566
4567 def base_PaintPage(*args, **kwargs):
4568 """base_PaintPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4569 return _windows_.PyPrintPreview_base_PaintPage(*args, **kwargs)
4570
4571 def base_DrawBlankPage(*args, **kwargs):
4572 """base_DrawBlankPage(self, PreviewCanvas canvas, DC dc) -> bool"""
4573 return _windows_.PyPrintPreview_base_DrawBlankPage(*args, **kwargs)
4574
4575 def base_RenderPage(*args, **kwargs):
4576 """base_RenderPage(self, int pageNum) -> bool"""
4577 return _windows_.PyPrintPreview_base_RenderPage(*args, **kwargs)
4578
4579 def base_SetZoom(*args, **kwargs):
4580 """base_SetZoom(self, int percent)"""
4581 return _windows_.PyPrintPreview_base_SetZoom(*args, **kwargs)
4582
4583 def base_Print(*args, **kwargs):
4584 """base_Print(self, bool interactive) -> bool"""
4585 return _windows_.PyPrintPreview_base_Print(*args, **kwargs)
4586
4587 def base_DetermineScaling(*args, **kwargs):
4588 """base_DetermineScaling(self)"""
4589 return _windows_.PyPrintPreview_base_DetermineScaling(*args, **kwargs)
4590
4591
4592 class PyPrintPreviewPtr(PyPrintPreview):
4593 def __init__(self, this):
4594 self.this = this
4595 if not hasattr(self,"thisown"): self.thisown = 0
4596 self.__class__ = PyPrintPreview
4597 _windows_.PyPrintPreview_swigregister(PyPrintPreviewPtr)
4598
4599 class PyPreviewFrame(PreviewFrame):
4600 def __repr__(self):
4601 return "<%s.%s; proxy of C++ wxPyPreviewFrame instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4602 def __init__(self, *args, **kwargs):
4603 """
4604 __init__(self, PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
4605 Size size=DefaultSize,
4606 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -> PyPreviewFrame
4607 """
4608 newobj = _windows_.new_PyPreviewFrame(*args, **kwargs)
4609 self.this = newobj.this
4610 self.thisown = 1
4611 del newobj.thisown
4612 self._setCallbackInfo(self, PyPreviewFrame); self._setOORInfo(self)
4613
4614 def _setCallbackInfo(*args, **kwargs):
4615 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4616 return _windows_.PyPreviewFrame__setCallbackInfo(*args, **kwargs)
4617
4618 def SetPreviewCanvas(*args, **kwargs):
4619 """SetPreviewCanvas(self, PreviewCanvas canvas)"""
4620 return _windows_.PyPreviewFrame_SetPreviewCanvas(*args, **kwargs)
4621
4622 def SetControlBar(*args, **kwargs):
4623 """SetControlBar(self, PreviewControlBar bar)"""
4624 return _windows_.PyPreviewFrame_SetControlBar(*args, **kwargs)
4625
4626 def base_Initialize(*args, **kwargs):
4627 """base_Initialize(self)"""
4628 return _windows_.PyPreviewFrame_base_Initialize(*args, **kwargs)
4629
4630 def base_CreateCanvas(*args, **kwargs):
4631 """base_CreateCanvas(self)"""
4632 return _windows_.PyPreviewFrame_base_CreateCanvas(*args, **kwargs)
4633
4634 def base_CreateControlBar(*args, **kwargs):
4635 """base_CreateControlBar(self)"""
4636 return _windows_.PyPreviewFrame_base_CreateControlBar(*args, **kwargs)
4637
4638
4639 class PyPreviewFramePtr(PyPreviewFrame):
4640 def __init__(self, this):
4641 self.this = this
4642 if not hasattr(self,"thisown"): self.thisown = 0
4643 self.__class__ = PyPreviewFrame
4644 _windows_.PyPreviewFrame_swigregister(PyPreviewFramePtr)
4645
4646 class PyPreviewControlBar(PreviewControlBar):
4647 def __repr__(self):
4648 return "<%s.%s; proxy of C++ wxPyPreviewControlBar instance at %s>" % (self.__class__.__module__, self.__class__.__name__, self.this,)
4649 def __init__(self, *args, **kwargs):
4650 """
4651 __init__(self, PrintPreview preview, long buttons, Window parent,
4652 Point pos=DefaultPosition, Size size=DefaultSize,
4653 long style=0, String name=PanelNameStr) -> PyPreviewControlBar
4654 """
4655 newobj = _windows_.new_PyPreviewControlBar(*args, **kwargs)
4656 self.this = newobj.this
4657 self.thisown = 1
4658 del newobj.thisown
4659 self._setCallbackInfo(self, PyPreviewControlBar); self._setOORInfo(self)
4660
4661 def _setCallbackInfo(*args, **kwargs):
4662 """_setCallbackInfo(self, PyObject self, PyObject _class)"""
4663 return _windows_.PyPreviewControlBar__setCallbackInfo(*args, **kwargs)
4664
4665 def SetPrintPreview(*args, **kwargs):
4666 """SetPrintPreview(self, PrintPreview preview)"""
4667 return _windows_.PyPreviewControlBar_SetPrintPreview(*args, **kwargs)
4668
4669 def base_CreateButtons(*args, **kwargs):
4670 """base_CreateButtons(self)"""
4671 return _windows_.PyPreviewControlBar_base_CreateButtons(*args, **kwargs)
4672
4673 def base_SetZoomControl(*args, **kwargs):
4674 """base_SetZoomControl(self, int zoom)"""
4675 return _windows_.PyPreviewControlBar_base_SetZoomControl(*args, **kwargs)
4676
4677
4678 class PyPreviewControlBarPtr(PyPreviewControlBar):
4679 def __init__(self, this):
4680 self.this = this
4681 if not hasattr(self,"thisown"): self.thisown = 0
4682 self.__class__ = PyPreviewControlBar
4683 _windows_.PyPreviewControlBar_swigregister(PyPreviewControlBarPtr)
4684
4685