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