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