5 #// Give a reference to the dictionary of this module to the C++ extension
7 _core._wxPySetDictionary(vars())
9 #// A little trick to make 'wx' be a reference to this module so wx.Names can
12 wx = _sys.modules[__name__]
15 #---------------------------------------------------------------------------
17 <class name=
"Object" oldname=
"wxObject" module=
"core">
18 <docstring>The base class for most wx objects, although in wxPython not
19 much functionality is needed nor exposed.
</docstring>
20 <method name=
"GetClassName" overloaded=
"no">
21 <autodoc>GetClassName() -
> String
</autodoc>
22 <docstring>Returns the class name of the C++ object using wxRTTI.
</docstring>
24 <method name=
"Destroy" overloaded=
"no">
25 <autodoc>Destroy()
</autodoc>
26 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
30 #---------------------------------------------------------------------------
33 #---------------------------------------------------------------------------
35 <class name=
"Size" oldname=
"wxSize" module=
"core">
36 <docstring>wx.Size is a useful data structure used to represent the size of something.
37 It simply contians integer width and height proprtites. In most places in
38 wxPython where a wx.Size is expected a (width,height) tuple can be used
40 <property name=
"width" type=
"int" readonly=
"no"/>
41 <property name=
"height" type=
"int" readonly=
"no"/>
42 <pythoncode> x = width; y = height
</pythoncode>
43 <constructor name=
"Size" overloaded=
"no">
44 <autodoc>__init__(int w=
0, int h=
0) -
> Size
</autodoc>
45 <docstring>Creates a size object.
</docstring>
47 <param name=
"w" type=
"int" default=
"0"/>
48 <param name=
"h" type=
"int" default=
"0"/>
51 <destructor name=
"~wxSize">
52 <autodoc>__del__()
</autodoc>
54 <method name=
"__eq__" overloaded=
"no">
55 <autodoc>__eq__(Size sz) -
> bool
</autodoc>
56 <docstring>Test for equality of wx.Size objects.
</docstring>
58 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
61 <method name=
"__ne__" overloaded=
"no">
62 <autodoc>__ne__(Size sz) -
> bool
</autodoc>
63 <docstring>Test for inequality.
</docstring>
65 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
68 <method name=
"__add__" overloaded=
"no">
69 <autodoc>__add__(Size sz) -
> Size
</autodoc>
70 <docstring>Add sz's proprties to this and return the result.
</docstring>
72 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
75 <method name=
"__sub__" overloaded=
"no">
76 <autodoc>__sub__(Size sz) -
> Size
</autodoc>
77 <docstring>Subtract sz's properties from this and return the result.
</docstring>
79 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
82 <method name=
"IncTo" overloaded=
"no">
83 <autodoc>IncTo(Size sz)
</autodoc>
84 <docstring>Increments this object so that both of its dimensions are not less
85 than the corresponding dimensions of the size.
</docstring>
87 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
90 <method name=
"DecTo" overloaded=
"no">
91 <autodoc>DecTo(Size sz)
</autodoc>
92 <docstring>Decrements this object so that both of its dimensions are not greater
93 than the corresponding dimensions of the size.
</docstring>
95 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
98 <method name=
"Set" overloaded=
"no">
99 <autodoc>Set(int w, int h)
</autodoc>
100 <docstring>Set both width and height.
</docstring>
102 <param name=
"w" type=
"int" default=
""/>
103 <param name=
"h" type=
"int" default=
""/>
106 <method name=
"SetWidth" overloaded=
"no">
107 <autodoc>SetWidth(int w)
</autodoc>
109 <param name=
"w" type=
"int" default=
""/>
112 <method name=
"SetHeight" overloaded=
"no">
113 <autodoc>SetHeight(int h)
</autodoc>
115 <param name=
"h" type=
"int" default=
""/>
118 <method name=
"GetWidth" overloaded=
"no">
119 <autodoc>GetWidth() -
> int
</autodoc>
121 <method name=
"GetHeight" overloaded=
"no">
122 <autodoc>GetHeight() -
> int
</autodoc>
124 <method name=
"Get" overloaded=
"no">
125 <autodoc>Get() -
> (width,height)
</autodoc>
126 <docstring>Returns the width and height properties as a tuple.
</docstring>
130 def __str__(self): return str(self.Get())
131 def __repr__(self): return 'wx.Size'+str(self.Get())
132 def __len__(self): return len(self.Get())
133 def __getitem__(self, index): return self.Get()[index]
134 def __setitem__(self, index, val):
135 if index ==
0: self.width = val
136 elif index ==
1: self.height = val
137 else: raise IndexError
138 def __nonzero__(self): return self.Get() != (
0,
0)
139 __safe_for_unpickling__ = True
140 def __reduce__(self): return (wx.Size, self.Get())
144 #---------------------------------------------------------------------------
146 <class name=
"RealPoint" oldname=
"wxRealPoint" module=
"core">
147 <docstring>A data structure for representing a point or position with floating point x
148 and y properties. In wxPython most places that expect a wx.RealPoint can also
149 accept a (x,y) tuple.
</docstring>
150 <property name=
"x" type=
"double" readonly=
"no"/>
151 <property name=
"y" type=
"double" readonly=
"no"/>
152 <constructor name=
"RealPoint" overloaded=
"no">
153 <autodoc>__init__(double x=
0.0, double y=
0.0) -
> RealPoint
</autodoc>
154 <docstring>Create a wx.RealPoint object
</docstring>
156 <param name=
"x" type=
"double" default=
"0.0"/>
157 <param name=
"y" type=
"double" default=
"0.0"/>
160 <destructor name=
"~wxRealPoint">
161 <autodoc>__del__()
</autodoc>
163 <method name=
"__eq__" overloaded=
"no">
164 <autodoc>__eq__(RealPoint pt) -
> bool
</autodoc>
165 <docstring>Test for equality of wx.RealPoint objects.
</docstring>
167 <param name=
"pt" type=
"r.q(const).wxRealPoint" default=
""/>
170 <method name=
"__ne__" overloaded=
"no">
171 <autodoc>__ne__(RealPoint pt) -
> bool
</autodoc>
172 <docstring>Test for inequality of wx.RealPoint objects.
</docstring>
174 <param name=
"pt" type=
"r.q(const).wxRealPoint" default=
""/>
177 <method name=
"__add__" overloaded=
"no">
178 <autodoc>__add__(RealPoint pt) -
> RealPoint
</autodoc>
179 <docstring>Add pt's proprties to this and return the result.
</docstring>
181 <param name=
"pt" type=
"r.q(const).wxRealPoint" default=
""/>
184 <method name=
"__sub__" overloaded=
"no">
185 <autodoc>__sub__(RealPoint pt) -
> RealPoint
</autodoc>
186 <docstring>Subtract pt's proprties from this and return the result
</docstring>
188 <param name=
"pt" type=
"r.q(const).wxRealPoint" default=
""/>
191 <method name=
"Set" overloaded=
"no">
192 <autodoc>Set(double x, double y)
</autodoc>
193 <docstring>Set both the x and y properties
</docstring>
195 <param name=
"x" type=
"double" default=
""/>
196 <param name=
"y" type=
"double" default=
""/>
199 <method name=
"Get" overloaded=
"no">
200 <autodoc>Get() -
> (x,y)
</autodoc>
201 <docstring>Return the x and y properties as a tuple.
</docstring>
205 def __str__(self): return str(self.Get())
206 def __repr__(self): return 'wx.RealPoint'+str(self.Get())
207 def __len__(self): return len(self.Get())
208 def __getitem__(self, index): return self.Get()[index]
209 def __setitem__(self, index, val):
210 if index ==
0: self.x = val
211 elif index ==
1: self.y = val
212 else: raise IndexError
213 def __nonzero__(self): return self.Get() != (
0.0,
0.0)
214 __safe_for_unpickling__ = True
215 def __reduce__(self): return (wx.RealPoint, self.Get())
219 #---------------------------------------------------------------------------
221 <class name=
"Point" oldname=
"wxPoint" module=
"core">
222 <docstring>A data structure for representing a point or position with integer x and y
223 properties. Most places in wxPython that expect a wx.Point can also accept a
224 (x,y) tuple.
</docstring>
225 <property name=
"x" type=
"int" readonly=
"no"/>
226 <property name=
"y" type=
"int" readonly=
"no"/>
227 <constructor name=
"Point" overloaded=
"no">
228 <autodoc>__init__(int x=
0, int y=
0) -
> Point
</autodoc>
229 <docstring>Create a wx.Point object
</docstring>
231 <param name=
"x" type=
"int" default=
"0"/>
232 <param name=
"y" type=
"int" default=
"0"/>
235 <destructor name=
"~wxPoint">
236 <autodoc>__del__()
</autodoc>
238 <method name=
"__eq__" overloaded=
"no">
239 <autodoc>__eq__(Point pt) -
> bool
</autodoc>
240 <docstring>Test for equality of wx.Point objects.
</docstring>
242 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
245 <method name=
"__ne__" overloaded=
"no">
246 <autodoc>__ne__(Point pt) -
> bool
</autodoc>
247 <docstring>Test for inequality of wx.Point objects.
</docstring>
249 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
252 <method name=
"__add__" overloaded=
"no">
253 <autodoc>__add__(Point pt) -
> Point
</autodoc>
254 <docstring>Add pt's proprties to this and return the result.
</docstring>
256 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
259 <method name=
"__sub__" overloaded=
"no">
260 <autodoc>__sub__(Point pt) -
> Point
</autodoc>
261 <docstring>Subtract pt's proprties from this and return the result
</docstring>
263 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
266 <method name=
"__iadd__" overloaded=
"no">
267 <autodoc>__iadd__(Point pt) -
> Point
</autodoc>
268 <docstring>Add pt to this object.
</docstring>
270 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
273 <method name=
"__isub__" overloaded=
"no">
274 <autodoc>__isub__(Point pt) -
> Point
</autodoc>
275 <docstring>Subtract pt from this object.
</docstring>
277 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
280 <method name=
"Set" overloaded=
"no">
281 <autodoc>Set(long x, long y)
</autodoc>
282 <docstring>Set both the x and y properties
</docstring>
284 <param name=
"x" type=
"long" default=
""/>
285 <param name=
"y" type=
"long" default=
""/>
288 <method name=
"Get" overloaded=
"no">
289 <autodoc>Get() -
> (x,y)
</autodoc>
290 <docstring>Return the x and y properties as a tuple.
</docstring>
294 def __str__(self): return str(self.Get())
295 def __repr__(self): return 'wx.Point'+str(self.Get())
296 def __len__(self): return len(self.Get())
297 def __getitem__(self, index): return self.Get()[index]
298 def __setitem__(self, index, val):
299 if index ==
0: self.x = val
300 elif index ==
1: self.y = val
301 else: raise IndexError
302 def __nonzero__(self): return self.Get() != (
0,
0)
303 __safe_for_unpickling__ = True
304 def __reduce__(self): return (wx.Point, self.Get())
308 #---------------------------------------------------------------------------
310 <class name=
"Rect" oldname=
"wxRect" module=
"core">
311 <docstring>A class for representing and manipulating rectangles. It has x, y, width and
312 height properties. In wxPython most palces that expect a wx.Rect can also
313 accept a (x,y,width,height) tuple.
</docstring>
314 <constructor name=
"Rect" overloaded=
"no">
315 <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Rect
</autodoc>
316 <docstring>Create a new Rect object.
</docstring>
318 <param name=
"x" type=
"int" default=
"0"/>
319 <param name=
"y" type=
"int" default=
"0"/>
320 <param name=
"width" type=
"int" default=
"0"/>
321 <param name=
"height" type=
"int" default=
"0"/>
324 <constructor name=
"RectPP" overloaded=
"no">
325 <autodoc>RectPP(Point topLeft, Point bottomRight) -
> Rect
</autodoc>
326 <docstring>Create a new Rect object from Points representing two corners.
</docstring>
328 <param name=
"topLeft" type=
"r.q(const).wxPoint" default=
""/>
329 <param name=
"bottomRight" type=
"r.q(const).wxPoint" default=
""/>
332 <constructor name=
"RectPS" overloaded=
"no">
333 <autodoc>RectPS(Point pos, Size size) -
> Rect
</autodoc>
334 <docstring>Create a new Rect from a position and size.
</docstring>
336 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
337 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
340 <destructor name=
"~wxRect">
341 <autodoc>__del__()
</autodoc>
343 <method name=
"GetX" overloaded=
"no">
344 <autodoc>GetX() -
> int
</autodoc>
346 <method name=
"SetX" overloaded=
"no">
347 <autodoc>SetX(int x)
</autodoc>
349 <param name=
"x" type=
"int" default=
""/>
352 <method name=
"GetY" overloaded=
"no">
353 <autodoc>GetY() -
> int
</autodoc>
355 <method name=
"SetY" overloaded=
"no">
356 <autodoc>SetY(int y)
</autodoc>
358 <param name=
"y" type=
"int" default=
""/>
361 <method name=
"GetWidth" overloaded=
"no">
362 <autodoc>GetWidth() -
> int
</autodoc>
364 <method name=
"SetWidth" overloaded=
"no">
365 <autodoc>SetWidth(int w)
</autodoc>
367 <param name=
"w" type=
"int" default=
""/>
370 <method name=
"GetHeight" overloaded=
"no">
371 <autodoc>GetHeight() -
> int
</autodoc>
373 <method name=
"SetHeight" overloaded=
"no">
374 <autodoc>SetHeight(int h)
</autodoc>
376 <param name=
"h" type=
"int" default=
""/>
379 <method name=
"GetPosition" overloaded=
"no">
380 <autodoc>GetPosition() -
> Point
</autodoc>
382 <method name=
"SetPosition" overloaded=
"no">
383 <autodoc>SetPosition(Point p)
</autodoc>
385 <param name=
"p" type=
"r.q(const).wxPoint" default=
""/>
388 <method name=
"GetSize" overloaded=
"no">
389 <autodoc>GetSize() -
> Size
</autodoc>
391 <method name=
"SetSize" overloaded=
"no">
392 <autodoc>SetSize(Size s)
</autodoc>
394 <param name=
"s" type=
"r.q(const).wxSize" default=
""/>
397 <method name=
"GetTopLeft" overloaded=
"no">
398 <autodoc>GetTopLeft() -
> Point
</autodoc>
400 <method name=
"SetTopLeft" overloaded=
"no">
401 <autodoc>SetTopLeft(Point p)
</autodoc>
403 <param name=
"p" type=
"r.q(const).wxPoint" default=
""/>
406 <method name=
"GetBottomRight" overloaded=
"no">
407 <autodoc>GetBottomRight() -
> Point
</autodoc>
409 <method name=
"SetBottomRight" overloaded=
"no">
410 <autodoc>SetBottomRight(Point p)
</autodoc>
412 <param name=
"p" type=
"r.q(const).wxPoint" default=
""/>
415 <method name=
"GetLeft" overloaded=
"no">
416 <autodoc>GetLeft() -
> int
</autodoc>
418 <method name=
"GetTop" overloaded=
"no">
419 <autodoc>GetTop() -
> int
</autodoc>
421 <method name=
"GetBottom" overloaded=
"no">
422 <autodoc>GetBottom() -
> int
</autodoc>
424 <method name=
"GetRight" overloaded=
"no">
425 <autodoc>GetRight() -
> int
</autodoc>
427 <method name=
"SetLeft" overloaded=
"no">
428 <autodoc>SetLeft(int left)
</autodoc>
430 <param name=
"left" type=
"int" default=
""/>
433 <method name=
"SetRight" overloaded=
"no">
434 <autodoc>SetRight(int right)
</autodoc>
436 <param name=
"right" type=
"int" default=
""/>
439 <method name=
"SetTop" overloaded=
"no">
440 <autodoc>SetTop(int top)
</autodoc>
442 <param name=
"top" type=
"int" default=
""/>
445 <method name=
"SetBottom" overloaded=
"no">
446 <autodoc>SetBottom(int bottom)
</autodoc>
448 <param name=
"bottom" type=
"int" default=
""/>
452 position = property(GetPosition, SetPosition)
453 size = property(GetSize, SetSize)
454 left = property(GetLeft, SetLeft)
455 right = property(GetRight, SetRight)
456 top = property(GetTop, SetTop)
457 bottom = property(GetBottom, SetBottom)
459 <method name=
"Inflate" overloaded=
"no">
460 <autodoc>Inflate(int dx, int dy) -
> Rect
</autodoc>
461 <docstring>Increase the rectangle size by dx in x direction and dy in y direction. Both
462 (or one of) parameters may be negative to decrease the rectangle size.
</docstring>
464 <param name=
"dx" type=
"int" default=
""/>
465 <param name=
"dy" type=
"int" default=
""/>
468 <method name=
"Deflate" overloaded=
"no">
469 <autodoc>Deflate(int dx, int dy) -
> Rect
</autodoc>
470 <docstring>Decrease the rectangle size by dx in x direction and dy in y direction. Both
471 (or one of) parameters may be negative to increase the rectngle size. This
472 method is the opposite of Inflate.
</docstring>
474 <param name=
"dx" type=
"int" default=
""/>
475 <param name=
"dy" type=
"int" default=
""/>
478 <method name=
"OffsetXY" overloaded=
"no">
479 <autodoc>OffsetXY(int dx, int dy)
</autodoc>
480 <docstring>Moves the rectangle by the specified offset. If dx is positive, the rectangle
481 is moved to the right, if dy is positive, it is moved to the bottom, otherwise
482 it is moved to the left or top respectively.
</docstring>
484 <param name=
"dx" type=
"int" default=
""/>
485 <param name=
"dy" type=
"int" default=
""/>
488 <method name=
"Offset" overloaded=
"no">
489 <autodoc>Offset(Point pt)
</autodoc>
490 <docstring>Same as OffsetXY but uses dx,dy from Point
</docstring>
492 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
495 <method name=
"Intersect" overloaded=
"no">
496 <autodoc>Intersect(Rect rect) -
> Rect
</autodoc>
497 <docstring>Return the intersectsion of this rectangle and rect.
</docstring>
499 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
502 <method name=
"__add__" overloaded=
"no">
503 <autodoc>__add__(Rect rect) -
> Rect
</autodoc>
504 <docstring>Add the properties of rect to this rectangle and return the result.
</docstring>
506 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
509 <method name=
"__iadd__" overloaded=
"no">
510 <autodoc>__iadd__(Rect rect) -
> Rect
</autodoc>
511 <docstring>Add the properties of rect to this rectangle, updating this rectangle.
</docstring>
513 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
516 <method name=
"__eq__" overloaded=
"no">
517 <autodoc>__eq__(Rect rect) -
> bool
</autodoc>
518 <docstring>Test for equality.
</docstring>
520 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
523 <method name=
"__ne__" overloaded=
"no">
524 <autodoc>__ne__(Rect rect) -
> bool
</autodoc>
525 <docstring>Test for inequality.
</docstring>
527 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
530 <method name=
"InsideXY" overloaded=
"no">
531 <autodoc>InsideXY(int x, int y) -
> bool
</autodoc>
532 <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring>
534 <param name=
"x" type=
"int" default=
""/>
535 <param name=
"y" type=
"int" default=
""/>
538 <method name=
"Inside" overloaded=
"no">
539 <autodoc>Inside(Point pt) -
> bool
</autodoc>
540 <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring>
542 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
545 <method name=
"Intersects" overloaded=
"no">
546 <autodoc>Intersects(Rect rect) -
> bool
</autodoc>
547 <docstring>Returns True if the rectangles have a non empty intersection.
</docstring>
549 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
552 <property name=
"x" type=
"int" readonly=
"no"/>
553 <property name=
"y" type=
"int" readonly=
"no"/>
554 <property name=
"width" type=
"int" readonly=
"no"/>
555 <property name=
"height" type=
"int" readonly=
"no"/>
556 <method name=
"Set" overloaded=
"no">
557 <autodoc>Set(int x=
0, int y=
0, int width=
0, int height=
0)
</autodoc>
558 <docstring>Set all rectangle properties.
</docstring>
560 <param name=
"x" type=
"int" default=
"0"/>
561 <param name=
"y" type=
"int" default=
"0"/>
562 <param name=
"width" type=
"int" default=
"0"/>
563 <param name=
"height" type=
"int" default=
"0"/>
566 <method name=
"Get" overloaded=
"no">
567 <autodoc>Get() -
> (x,y,width,height)
</autodoc>
568 <docstring>Return the rectangle properties as a tuple.
</docstring>
572 def __str__(self): return str(self.Get())
573 def __repr__(self): return 'wx.Rect'+str(self.Get())
574 def __len__(self): return len(self.Get())
575 def __getitem__(self, index): return self.Get()[index]
576 def __setitem__(self, index, val):
577 if index ==
0: self.x = val
578 elif index ==
1: self.y = val
579 elif index ==
2: self.width = val
580 elif index ==
3: self.height = val
581 else: raise IndexError
582 def __nonzero__(self): return self.Get() != (
0,
0,
0,
0)
583 __safe_for_unpickling__ = True
584 def __reduce__(self): return (wx.Rect, self.Get())
587 <function oldname=
"wxIntersectRect" name=
"IntersectRect" overloaded=
"no">
588 <autodoc>IntersectRect(Rect r1, Rect r2) -
> Rect
</autodoc>
589 <docstring>Calculate and return the intersection of r1 and r2.
</docstring>
591 <param name=
"r1" type=
"p.wxRect" default=
""/>
592 <param name=
"r2" type=
"p.wxRect" default=
""/>
596 #---------------------------------------------------------------------------
598 <class name=
"Point2D" oldname=
"wxPoint2D" module=
"core">
599 <docstring>wx.Point2Ds represent a point or a vector in a
2d coordinate system with floating point values.
</docstring>
600 <constructor name=
"Point2D" overloaded=
"no">
601 <autodoc>__init__(double x=
0.0, double y=
0.0) -
> Point2D
</autodoc>
602 <docstring>Create a w.Point2D object.
</docstring>
604 <param name=
"x" type=
"double" default=
"0.0"/>
605 <param name=
"y" type=
"double" default=
"0.0"/>
608 <constructor name=
"Point2DCopy" overloaded=
"no">
609 <autodoc>Point2DCopy(Point2D pt) -
> Point2D
</autodoc>
610 <docstring>Create a w.Point2D object.
</docstring>
612 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
615 <constructor name=
"Point2DFromPoint" overloaded=
"no">
616 <autodoc>Point2DFromPoint(Point pt) -
> Point2D
</autodoc>
617 <docstring>Create a w.Point2D object.
</docstring>
619 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
622 <method name=
"GetFloor" overloaded=
"no">
623 <autodoc>GetFloor() -
> (x,y)
</autodoc>
624 <docstring>Convert to integer
</docstring>
626 <param name=
"OUTPUT" type=
"p.int" default=
""/>
627 <param name=
"OUTPUT" type=
"p.int" default=
""/>
630 <method name=
"GetRounded" overloaded=
"no">
631 <autodoc>GetRounded() -
> (x,y)
</autodoc>
632 <docstring>Convert to integer
</docstring>
634 <param name=
"OUTPUT" type=
"p.int" default=
""/>
635 <param name=
"OUTPUT" type=
"p.int" default=
""/>
638 <method name=
"GetVectorLength" overloaded=
"no">
639 <autodoc>GetVectorLength() -
> double
</autodoc>
641 <method name=
"GetVectorAngle" overloaded=
"no">
642 <autodoc>GetVectorAngle() -
> double
</autodoc>
644 <method name=
"SetVectorLength" overloaded=
"no">
645 <autodoc>SetVectorLength(double length)
</autodoc>
647 <param name=
"length" type=
"double" default=
""/>
650 <method name=
"SetVectorAngle" overloaded=
"no">
651 <autodoc>SetVectorAngle(double degrees)
</autodoc>
653 <param name=
"degrees" type=
"double" default=
""/>
657 def SetPolarCoordinates(self, angle, length):
658 self.SetVectorLength(length)
659 self.SetVectorAngle(angle)
661 self.SetVectorLength(
1.0)
663 <method name=
"GetDistance" overloaded=
"no">
664 <autodoc>GetDistance(Point2D pt) -
> double
</autodoc>
666 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
669 <method name=
"GetDistanceSquare" overloaded=
"no">
670 <autodoc>GetDistanceSquare(Point2D pt) -
> double
</autodoc>
672 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
675 <method name=
"GetDotProduct" overloaded=
"no">
676 <autodoc>GetDotProduct(Point2D vec) -
> double
</autodoc>
678 <param name=
"vec" type=
"r.q(const).wxPoint2D" default=
""/>
681 <method name=
"GetCrossProduct" overloaded=
"no">
682 <autodoc>GetCrossProduct(Point2D vec) -
> double
</autodoc>
684 <param name=
"vec" type=
"r.q(const).wxPoint2D" default=
""/>
687 <method name=
"__neg__" overloaded=
"no">
688 <autodoc>__neg__() -
> Point2D
</autodoc>
689 <docstring>the reflection of this point
</docstring>
691 <method name=
"__iadd__" overloaded=
"no">
692 <autodoc>__iadd__(Point2D pt) -
> Point2D
</autodoc>
694 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
697 <method name=
"__isub__" overloaded=
"no">
698 <autodoc>__isub__(Point2D pt) -
> Point2D
</autodoc>
700 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
703 <method name=
"__imul__" overloaded=
"no">
704 <autodoc>__imul__(Point2D pt) -
> Point2D
</autodoc>
706 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
709 <method name=
"__idiv__" overloaded=
"no">
710 <autodoc>__idiv__(Point2D pt) -
> Point2D
</autodoc>
712 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
715 <method name=
"__eq__" overloaded=
"no">
716 <autodoc>__eq__(Point2D pt) -
> bool
</autodoc>
717 <docstring>Test for equality
</docstring>
719 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
722 <method name=
"__ne__" overloaded=
"no">
723 <autodoc>__ne__(Point2D pt) -
> bool
</autodoc>
724 <docstring>Test for inequality
</docstring>
726 <param name=
"pt" type=
"r.q(const).wxPoint2D" default=
""/>
729 <property name=
"x" type=
"double" readonly=
"no"/>
730 <property name=
"y" type=
"double" readonly=
"no"/>
731 <method name=
"Set" overloaded=
"no">
732 <autodoc>Set(double x=
0, double y=
0)
</autodoc>
734 <param name=
"x" type=
"double" default=
"0"/>
735 <param name=
"y" type=
"double" default=
"0"/>
738 <method name=
"Get" overloaded=
"no">
739 <autodoc>Get() -
> (x,y)
</autodoc>
740 <docstring>Return x and y properties as a tuple.
</docstring>
744 def __str__(self): return str(self.Get())
745 def __repr__(self): return 'wx.Point2D'+str(self.Get())
746 def __len__(self): return len(self.Get())
747 def __getitem__(self, index): return self.Get()[index]
748 def __setitem__(self, index, val):
749 if index ==
0: self.x = val
750 elif index ==
1: self.y = val
751 else: raise IndexError
752 def __nonzero__(self): return self.Get() != (
0.0,
0.0)
753 __safe_for_unpickling__ = True
754 def __reduce__(self): return (wx.Point2D, self.Get())
758 #---------------------------------------------------------------------------
760 <class name=
"InputStream" oldname=
"wxPyInputStream" module=
"core">
761 <constructor name=
"wxPyInputStream" overloaded=
"no">
762 <autodoc>__init__(PyObject p) -
> InputStream
</autodoc>
764 <param name=
"p" type=
"p.PyObject" default=
""/>
767 <method name=
"close" overloaded=
"no">
768 <autodoc>close()
</autodoc>
770 <method name=
"flush" overloaded=
"no">
771 <autodoc>flush()
</autodoc>
773 <method name=
"eof" overloaded=
"no">
774 <autodoc>eof() -
> bool
</autodoc>
776 <method name=
"read" overloaded=
"no">
777 <autodoc>read(int size=-
1) -
> PyObject
</autodoc>
779 <param name=
"size" type=
"int" default=
"-1"/>
782 <method name=
"readline" overloaded=
"no">
783 <autodoc>readline(int size=-
1) -
> PyObject
</autodoc>
785 <param name=
"size" type=
"int" default=
"-1"/>
788 <method name=
"readlines" overloaded=
"no">
789 <autodoc>readlines(int sizehint=-
1) -
> PyObject
</autodoc>
791 <param name=
"sizehint" type=
"int" default=
"-1"/>
794 <method name=
"seek" overloaded=
"no">
795 <autodoc>seek(int offset, int whence=
0)
</autodoc>
797 <param name=
"offset" type=
"int" default=
""/>
798 <param name=
"whence" type=
"int" default=
"0"/>
801 <method name=
"tell" overloaded=
"no">
802 <autodoc>tell() -
> int
</autodoc>
804 <method name=
"Peek" overloaded=
"no">
805 <autodoc>Peek() -
> char
</autodoc>
807 <method name=
"GetC" overloaded=
"no">
808 <autodoc>GetC() -
> char
</autodoc>
810 <method name=
"LastRead" overloaded=
"no">
811 <autodoc>LastRead() -
> size_t
</autodoc>
813 <method name=
"CanRead" overloaded=
"no">
814 <autodoc>CanRead() -
> bool
</autodoc>
816 <method name=
"Eof" overloaded=
"no">
817 <autodoc>Eof() -
> bool
</autodoc>
819 <method name=
"Ungetch" overloaded=
"no">
820 <autodoc>Ungetch(char c) -
> bool
</autodoc>
822 <param name=
"c" type=
"char" default=
""/>
825 <method name=
"SeekI" overloaded=
"no">
826 <autodoc>SeekI(long pos, int mode=FromStart) -
> long
</autodoc>
828 <param name=
"pos" type=
"long" default=
""/>
829 <param name=
"mode" type=
"wxSeekMode" default=
"wxFromStart"/>
832 <method name=
"TellI" overloaded=
"no">
833 <autodoc>TellI() -
> long
</autodoc>
836 <class name=
"OutputStream" oldname=
"wxOutputStream" module=
"core">
837 <method name=
"write" overloaded=
"no">
838 <autodoc>write(PyObject obj)
</autodoc>
840 <param name=
"obj" type=
"p.PyObject" default=
""/>
845 #---------------------------------------------------------------------------
847 <class name=
"FSFile" oldname=
"wxFSFile" module=
"core">
848 <baseclass name=
"wxObject"/>
849 <constructor name=
"FSFile" overloaded=
"no">
850 <autodoc>__init__(InputStream stream, String loc, String mimetype, String anchor,
851 DateTime modif) -
> FSFile
</autodoc>
853 <param name=
"stream" type=
"p.wxInputStream" default=
""/>
854 <param name=
"loc" type=
"r.q(const).wxString" default=
""/>
855 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
856 <param name=
"anchor" type=
"r.q(const).wxString" default=
""/>
857 <param name=
"modif" type=
"wxDateTime" default=
""/>
860 <destructor name=
"~wxFSFile">
861 <autodoc>__del__()
</autodoc>
863 <method name=
"GetStream" overloaded=
"no">
864 <autodoc>GetStream() -
> InputStream
</autodoc>
866 <method name=
"GetMimeType" overloaded=
"no">
867 <autodoc>GetMimeType() -
> String
</autodoc>
869 <method name=
"GetLocation" overloaded=
"no">
870 <autodoc>GetLocation() -
> String
</autodoc>
872 <method name=
"GetAnchor" overloaded=
"no">
873 <autodoc>GetAnchor() -
> String
</autodoc>
875 <method name=
"GetModificationTime" overloaded=
"no">
876 <autodoc>GetModificationTime() -
> DateTime
</autodoc>
879 <class name=
"CPPFileSystemHandler" oldname=
"wxFileSystemHandler" module=
"core"/>
880 <class name=
"FileSystemHandler" oldname=
"wxPyFileSystemHandler" module=
"core">
881 <baseclass name=
"wxFileSystemHandler"/>
882 <constructor name=
"wxPyFileSystemHandler" overloaded=
"no">
883 <autodoc>__init__() -
> FileSystemHandler
</autodoc>
885 <method name=
"_setCallbackInfo" overloaded=
"no">
886 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
888 <param name=
"self" type=
"p.PyObject" default=
""/>
889 <param name=
"_class" type=
"p.PyObject" default=
""/>
892 <method name=
"CanOpen" overloaded=
"no">
893 <autodoc>CanOpen(String location) -
> bool
</autodoc>
895 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
898 <method name=
"OpenFile" overloaded=
"no">
899 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
901 <param name=
"fs" type=
"r.wxFileSystem" default=
""/>
902 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
905 <method name=
"FindFirst" overloaded=
"no">
906 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
908 <param name=
"spec" type=
"r.q(const).wxString" default=
""/>
909 <param name=
"flags" type=
"int" default=
"0"/>
912 <method name=
"FindNext" overloaded=
"no">
913 <autodoc>FindNext() -
> String
</autodoc>
915 <method name=
"GetProtocol" overloaded=
"no">
916 <autodoc>GetProtocol(String location) -
> String
</autodoc>
918 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
921 <method name=
"GetLeftLocation" overloaded=
"no">
922 <autodoc>GetLeftLocation(String location) -
> String
</autodoc>
924 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
927 <method name=
"GetAnchor" overloaded=
"no">
928 <autodoc>GetAnchor(String location) -
> String
</autodoc>
930 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
933 <method name=
"GetRightLocation" overloaded=
"no">
934 <autodoc>GetRightLocation(String location) -
> String
</autodoc>
936 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
939 <method name=
"GetMimeTypeFromExt" overloaded=
"no">
940 <autodoc>GetMimeTypeFromExt(String location) -
> String
</autodoc>
942 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
946 <class name=
"FileSystem" oldname=
"wxFileSystem" module=
"core">
947 <baseclass name=
"wxObject"/>
948 <constructor name=
"FileSystem" overloaded=
"no">
949 <autodoc>__init__() -
> FileSystem
</autodoc>
951 <destructor name=
"~wxFileSystem">
952 <autodoc>__del__()
</autodoc>
954 <method name=
"ChangePathTo" overloaded=
"no">
955 <autodoc>ChangePathTo(String location, bool is_dir=False)
</autodoc>
957 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
958 <param name=
"is_dir" type=
"bool" default=
"False"/>
961 <method name=
"GetPath" overloaded=
"no">
962 <autodoc>GetPath() -
> String
</autodoc>
964 <method name=
"OpenFile" overloaded=
"no">
965 <autodoc>OpenFile(String location) -
> FSFile
</autodoc>
967 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
970 <method name=
"FindFirst" overloaded=
"no">
971 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
973 <param name=
"spec" type=
"r.q(const).wxString" default=
""/>
974 <param name=
"flags" type=
"int" default=
"0"/>
977 <method name=
"FindNext" overloaded=
"no">
978 <autodoc>FindNext() -
> String
</autodoc>
980 <staticmethod name=
"AddHandler" overloaded=
"no">
981 <autodoc>AddHandler(CPPFileSystemHandler handler)
</autodoc>
983 <param name=
"handler" type=
"p.wxFileSystemHandler" default=
""/>
986 <staticmethod name=
"CleanUpHandlers" overloaded=
"no">
987 <autodoc>CleanUpHandlers()
</autodoc>
989 <staticmethod name=
"FileNameToURL" overloaded=
"no">
990 <autodoc>FileNameToURL(String filename) -
> String
</autodoc>
992 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
996 <function oldname=
"wxFileSystem_URLToFileName" name=
"FileSystem_URLToFileName" overloaded=
"no">
997 <autodoc>FileSystem_URLToFileName(String url) -
> String
</autodoc>
999 <param name=
"url" type=
"r.q(const).wxString" default=
""/>
1002 <class name=
"InternetFSHandler" oldname=
"wxInternetFSHandler" module=
"core">
1003 <baseclass name=
"wxFileSystemHandler"/>
1004 <constructor name=
"InternetFSHandler" overloaded=
"no">
1005 <autodoc>__init__() -
> InternetFSHandler
</autodoc>
1007 <method name=
"CanOpen" overloaded=
"no">
1008 <autodoc>CanOpen(String location) -
> bool
</autodoc>
1010 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1013 <method name=
"OpenFile" overloaded=
"no">
1014 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
1016 <param name=
"fs" type=
"r.wxFileSystem" default=
""/>
1017 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1021 <class name=
"ZipFSHandler" oldname=
"wxZipFSHandler" module=
"core">
1022 <baseclass name=
"wxFileSystemHandler"/>
1023 <constructor name=
"ZipFSHandler" overloaded=
"no">
1024 <autodoc>__init__() -
> ZipFSHandler
</autodoc>
1026 <method name=
"CanOpen" overloaded=
"no">
1027 <autodoc>CanOpen(String location) -
> bool
</autodoc>
1029 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1032 <method name=
"OpenFile" overloaded=
"no">
1033 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
1035 <param name=
"fs" type=
"r.wxFileSystem" default=
""/>
1036 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1039 <method name=
"FindFirst" overloaded=
"no">
1040 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
1042 <param name=
"spec" type=
"r.q(const).wxString" default=
""/>
1043 <param name=
"flags" type=
"int" default=
"0"/>
1046 <method name=
"FindNext" overloaded=
"no">
1047 <autodoc>FindNext() -
> String
</autodoc>
1050 <function oldname=
"__wxMemoryFSHandler_AddFile_wxImage" name=
"__wxMemoryFSHandler_AddFile_wxImage" overloaded=
"no">
1051 <autodoc>__wxMemoryFSHandler_AddFile_wxImage(String filename, Image image, long type)
</autodoc>
1053 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
1054 <param name=
"image" type=
"r.wxImage" default=
""/>
1055 <param name=
"type" type=
"long" default=
""/>
1058 <function oldname=
"__wxMemoryFSHandler_AddFile_wxBitmap" name=
"__wxMemoryFSHandler_AddFile_wxBitmap" overloaded=
"no">
1059 <autodoc>__wxMemoryFSHandler_AddFile_wxBitmap(String filename, Bitmap bitmap, long type)
</autodoc>
1061 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
1062 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
1063 <param name=
"type" type=
"long" default=
""/>
1066 <function oldname=
"__wxMemoryFSHandler_AddFile_Data" name=
"__wxMemoryFSHandler_AddFile_Data" overloaded=
"no">
1067 <autodoc>__wxMemoryFSHandler_AddFile_Data(String filename, PyObject data)
</autodoc>
1069 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
1070 <param name=
"data" type=
"p.PyObject" default=
""/>
1074 def MemoryFSHandler_AddFile(filename, a, b=''):
1075 if isinstance(a, wx.Image):
1076 __wxMemoryFSHandler_AddFile_wxImage(filename, a, b)
1077 elif isinstance(a, wx.Bitmap):
1078 __wxMemoryFSHandler_AddFile_wxBitmap(filename, a, b)
1079 elif type(a) == str:
1080 __wxMemoryFSHandler_AddFile_Data(filename, a)
1081 else: raise TypeError, 'wx.Image, wx.Bitmap or string expected'
1083 <class name=
"MemoryFSHandler" oldname=
"wxMemoryFSHandler" module=
"core">
1084 <baseclass name=
"wxFileSystemHandler"/>
1085 <constructor name=
"MemoryFSHandler" overloaded=
"no">
1086 <autodoc>__init__() -
> MemoryFSHandler
</autodoc>
1088 <staticmethod name=
"RemoveFile" overloaded=
"no">
1089 <autodoc>RemoveFile(String filename)
</autodoc>
1091 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
1094 <pythoncode> AddFile = staticmethod(MemoryFSHandler_AddFile)
</pythoncode>
1095 <method name=
"CanOpen" overloaded=
"no">
1096 <autodoc>CanOpen(String location) -
> bool
</autodoc>
1098 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1101 <method name=
"OpenFile" overloaded=
"no">
1102 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
1104 <param name=
"fs" type=
"r.wxFileSystem" default=
""/>
1105 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
1108 <method name=
"FindFirst" overloaded=
"no">
1109 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
1111 <param name=
"spec" type=
"r.q(const).wxString" default=
""/>
1112 <param name=
"flags" type=
"int" default=
"0"/>
1115 <method name=
"FindNext" overloaded=
"no">
1116 <autodoc>FindNext() -
> String
</autodoc>
1120 #---------------------------------------------------------------------------
1122 <class name=
"ImageHandler" oldname=
"wxImageHandler" module=
"core">
1123 <baseclass name=
"wxObject"/>
1124 <method name=
"GetName" overloaded=
"no">
1125 <autodoc>GetName() -
> String
</autodoc>
1127 <method name=
"GetExtension" overloaded=
"no">
1128 <autodoc>GetExtension() -
> String
</autodoc>
1130 <method name=
"GetType" overloaded=
"no">
1131 <autodoc>GetType() -
> long
</autodoc>
1133 <method name=
"GetMimeType" overloaded=
"no">
1134 <autodoc>GetMimeType() -
> String
</autodoc>
1136 <method name=
"CanRead" overloaded=
"no">
1137 <autodoc>CanRead(String name) -
> bool
</autodoc>
1139 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1142 <method name=
"SetName" overloaded=
"no">
1143 <autodoc>SetName(String name)
</autodoc>
1145 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1148 <method name=
"SetExtension" overloaded=
"no">
1149 <autodoc>SetExtension(String extension)
</autodoc>
1151 <param name=
"extension" type=
"r.q(const).wxString" default=
""/>
1154 <method name=
"SetType" overloaded=
"no">
1155 <autodoc>SetType(long type)
</autodoc>
1157 <param name=
"type" type=
"long" default=
""/>
1160 <method name=
"SetMimeType" overloaded=
"no">
1161 <autodoc>SetMimeType(String mimetype)
</autodoc>
1163 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1167 <class name=
"ImageHistogram" oldname=
"wxImageHistogram" module=
"core">
1168 <constructor name=
"ImageHistogram" overloaded=
"no">
1169 <autodoc>__init__() -
> ImageHistogram
</autodoc>
1171 <staticmethod name=
"MakeKey" overloaded=
"no">
1172 <autodoc>MakeKey(unsigned char r, unsigned char g, unsigned char b) -
> unsigned long
</autodoc>
1173 <docstring>Get the key in the histogram for the given RGB values
</docstring>
1175 <param name=
"r" type=
"unsigned char" default=
""/>
1176 <param name=
"g" type=
"unsigned char" default=
""/>
1177 <param name=
"b" type=
"unsigned char" default=
""/>
1180 <method name=
"FindFirstUnusedColour" overloaded=
"no">
1181 <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc>
1182 <docstring>Find first colour that is not used in the image and has higher RGB values than
1183 startR, startG, startB. Returns a tuple consisting of a success flag and rgb
1186 <param name=
"OUTPUT" type=
"p.unsigned char" default=
""/>
1187 <param name=
"OUTPUT" type=
"p.unsigned char" default=
""/>
1188 <param name=
"OUTPUT" type=
"p.unsigned char" default=
""/>
1189 <param name=
"startR" type=
"unsigned char" default=
"1"/>
1190 <param name=
"startG" type=
"unsigned char" default=
"0"/>
1191 <param name=
"startB" type=
"unsigned char" default=
"0"/>
1195 <class name=
"Image" oldname=
"wxImage" module=
"core">
1196 <baseclass name=
"wxObject"/>
1197 <constructor name=
"Image" overloaded=
"no">
1198 <autodoc>__init__(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc>
1200 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1201 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1202 <param name=
"index" type=
"int" default=
"-1"/>
1205 <destructor name=
"~wxImage">
1206 <autodoc>__del__()
</autodoc>
1208 <constructor name=
"ImageFromMime" overloaded=
"no">
1209 <autodoc>ImageFromMime(String name, String mimetype, int index=-
1) -
> Image
</autodoc>
1211 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1212 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1213 <param name=
"index" type=
"int" default=
"-1"/>
1216 <constructor name=
"ImageFromStream" overloaded=
"no">
1217 <autodoc>ImageFromStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc>
1219 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
1220 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1221 <param name=
"index" type=
"int" default=
"-1"/>
1224 <constructor name=
"ImageFromStreamMime" overloaded=
"no">
1225 <autodoc>ImageFromStreamMime(InputStream stream, String mimetype, int index=-
1) -
> Image
</autodoc>
1227 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
1228 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1229 <param name=
"index" type=
"int" default=
"-1"/>
1232 <constructor name=
"EmptyImage" overloaded=
"no">
1233 <autodoc>EmptyImage(int width=
0, int height=
0, bool clear=True) -
> Image
</autodoc>
1235 <param name=
"width" type=
"int" default=
"0"/>
1236 <param name=
"height" type=
"int" default=
"0"/>
1237 <param name=
"clear" type=
"bool" default=
"True"/>
1240 <constructor name=
"ImageFromBitmap" overloaded=
"no">
1241 <autodoc>ImageFromBitmap(Bitmap bitmap) -
> Image
</autodoc>
1243 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
1246 <constructor name=
"ImageFromData" overloaded=
"no">
1247 <autodoc>ImageFromData(int width, int height, unsigned char data) -
> Image
</autodoc>
1249 <param name=
"width" type=
"int" default=
""/>
1250 <param name=
"height" type=
"int" default=
""/>
1251 <param name=
"data" type=
"p.unsigned char" default=
""/>
1254 <method name=
"Create" overloaded=
"no">
1255 <autodoc>Create(int width, int height)
</autodoc>
1257 <param name=
"width" type=
"int" default=
""/>
1258 <param name=
"height" type=
"int" default=
""/>
1261 <method name=
"Destroy" overloaded=
"no">
1262 <autodoc>Destroy()
</autodoc>
1263 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
1265 <method name=
"Scale" overloaded=
"no">
1266 <autodoc>Scale(int width, int height) -
> Image
</autodoc>
1268 <param name=
"width" type=
"int" default=
""/>
1269 <param name=
"height" type=
"int" default=
""/>
1272 <method name=
"ShrinkBy" overloaded=
"no">
1273 <autodoc>ShrinkBy(int xFactor, int yFactor) -
> Image
</autodoc>
1275 <param name=
"xFactor" type=
"int" default=
""/>
1276 <param name=
"yFactor" type=
"int" default=
""/>
1279 <method name=
"Rescale" overloaded=
"no">
1280 <autodoc>Rescale(int width, int height) -
> Image
</autodoc>
1282 <param name=
"width" type=
"int" default=
""/>
1283 <param name=
"height" type=
"int" default=
""/>
1286 <method name=
"SetRGB" overloaded=
"no">
1287 <autodoc>SetRGB(int x, int y, unsigned char r, unsigned char g, unsigned char b)
</autodoc>
1289 <param name=
"x" type=
"int" default=
""/>
1290 <param name=
"y" type=
"int" default=
""/>
1291 <param name=
"r" type=
"unsigned char" default=
""/>
1292 <param name=
"g" type=
"unsigned char" default=
""/>
1293 <param name=
"b" type=
"unsigned char" default=
""/>
1296 <method name=
"GetRed" overloaded=
"no">
1297 <autodoc>GetRed(int x, int y) -
> unsigned char
</autodoc>
1299 <param name=
"x" type=
"int" default=
""/>
1300 <param name=
"y" type=
"int" default=
""/>
1303 <method name=
"GetGreen" overloaded=
"no">
1304 <autodoc>GetGreen(int x, int y) -
> unsigned char
</autodoc>
1306 <param name=
"x" type=
"int" default=
""/>
1307 <param name=
"y" type=
"int" default=
""/>
1310 <method name=
"GetBlue" overloaded=
"no">
1311 <autodoc>GetBlue(int x, int y) -
> unsigned char
</autodoc>
1313 <param name=
"x" type=
"int" default=
""/>
1314 <param name=
"y" type=
"int" default=
""/>
1317 <method name=
"SetAlpha" overloaded=
"no">
1318 <autodoc>SetAlpha(int x, int y, unsigned char alpha)
</autodoc>
1320 <param name=
"x" type=
"int" default=
""/>
1321 <param name=
"y" type=
"int" default=
""/>
1322 <param name=
"alpha" type=
"unsigned char" default=
""/>
1325 <method name=
"GetAlpha" overloaded=
"no">
1326 <autodoc>GetAlpha(int x, int y) -
> unsigned char
</autodoc>
1328 <param name=
"x" type=
"int" default=
""/>
1329 <param name=
"y" type=
"int" default=
""/>
1332 <method name=
"HasAlpha" overloaded=
"no">
1333 <autodoc>HasAlpha() -
> bool
</autodoc>
1335 <method name=
"FindFirstUnusedColour" overloaded=
"no">
1336 <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc>
1337 <docstring>Find first colour that is not used in the image and has higher RGB values than
1338 startR, startG, startB. Returns a tuple consisting of a success flag and rgb
1341 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
1342 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
1343 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
1344 <param name=
"startR" type=
"byte" default=
"0"/>
1345 <param name=
"startG" type=
"byte" default=
"0"/>
1346 <param name=
"startB" type=
"byte" default=
"0"/>
1349 <method name=
"SetMaskFromImage" overloaded=
"no">
1350 <autodoc>SetMaskFromImage(Image mask, byte mr, byte mg, byte mb) -
> bool
</autodoc>
1352 <param name=
"mask" type=
"r.q(const).wxImage" default=
""/>
1353 <param name=
"mr" type=
"byte" default=
""/>
1354 <param name=
"mg" type=
"byte" default=
""/>
1355 <param name=
"mb" type=
"byte" default=
""/>
1358 <staticmethod name=
"CanRead" overloaded=
"no">
1359 <autodoc>CanRead(String name) -
> bool
</autodoc>
1361 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1364 <staticmethod name=
"GetImageCount" overloaded=
"no">
1365 <autodoc>GetImageCount(String name, long type=BITMAP_TYPE_ANY) -
> int
</autodoc>
1367 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1368 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1371 <method name=
"LoadFile" overloaded=
"no">
1372 <autodoc>LoadFile(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc>
1374 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1375 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1376 <param name=
"index" type=
"int" default=
"-1"/>
1379 <method name=
"LoadMimeFile" overloaded=
"no">
1380 <autodoc>LoadMimeFile(String name, String mimetype, int index=-
1) -
> bool
</autodoc>
1382 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1383 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1384 <param name=
"index" type=
"int" default=
"-1"/>
1387 <method name=
"SaveFile" overloaded=
"no">
1388 <autodoc>SaveFile(String name, int type) -
> bool
</autodoc>
1390 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1391 <param name=
"type" type=
"int" default=
""/>
1394 <method name=
"SaveMimeFile" overloaded=
"no">
1395 <autodoc>SaveMimeFile(String name, String mimetype) -
> bool
</autodoc>
1397 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1398 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1401 <staticmethod name=
"CanReadStream" overloaded=
"no">
1402 <autodoc>CanReadStream(InputStream stream) -
> bool
</autodoc>
1404 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
1407 <method name=
"LoadStream" overloaded=
"no">
1408 <autodoc>LoadStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc>
1410 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
1411 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1412 <param name=
"index" type=
"int" default=
"-1"/>
1415 <method name=
"LoadMimeStream" overloaded=
"no">
1416 <autodoc>LoadMimeStream(InputStream stream, String mimetype, int index=-
1) -
> bool
</autodoc>
1418 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
1419 <param name=
"mimetype" type=
"r.q(const).wxString" default=
""/>
1420 <param name=
"index" type=
"int" default=
"-1"/>
1423 <method name=
"Ok" overloaded=
"no">
1424 <autodoc>Ok() -
> bool
</autodoc>
1426 <method name=
"GetWidth" overloaded=
"no">
1427 <autodoc>GetWidth() -
> int
</autodoc>
1429 <method name=
"GetHeight" overloaded=
"no">
1430 <autodoc>GetHeight() -
> int
</autodoc>
1432 <method name=
"GetSubImage" overloaded=
"no">
1433 <autodoc>GetSubImage(Rect rect) -
> Image
</autodoc>
1435 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
1438 <method name=
"Copy" overloaded=
"no">
1439 <autodoc>Copy() -
> Image
</autodoc>
1441 <method name=
"Paste" overloaded=
"no">
1442 <autodoc>Paste(Image image, int x, int y)
</autodoc>
1444 <param name=
"image" type=
"r.q(const).wxImage" default=
""/>
1445 <param name=
"x" type=
"int" default=
""/>
1446 <param name=
"y" type=
"int" default=
""/>
1449 <method name=
"GetData" overloaded=
"no">
1450 <autodoc>GetData() -
> PyObject
</autodoc>
1452 <method name=
"SetData" overloaded=
"no">
1453 <autodoc>SetData(PyObject data)
</autodoc>
1455 <param name=
"data" type=
"p.PyObject" default=
""/>
1458 <method name=
"GetDataBuffer" overloaded=
"no">
1459 <autodoc>GetDataBuffer() -
> PyObject
</autodoc>
1461 <method name=
"SetDataBuffer" overloaded=
"no">
1462 <autodoc>SetDataBuffer(PyObject data)
</autodoc>
1464 <param name=
"data" type=
"p.PyObject" default=
""/>
1467 <method name=
"GetAlphaData" overloaded=
"no">
1468 <autodoc>GetAlphaData() -
> PyObject
</autodoc>
1470 <method name=
"SetAlphaData" overloaded=
"no">
1471 <autodoc>SetAlphaData(PyObject data)
</autodoc>
1473 <param name=
"data" type=
"p.PyObject" default=
""/>
1476 <method name=
"GetAlphaBuffer" overloaded=
"no">
1477 <autodoc>GetAlphaBuffer() -
> PyObject
</autodoc>
1479 <method name=
"SetAlphaBuffer" overloaded=
"no">
1480 <autodoc>SetAlphaBuffer(PyObject data)
</autodoc>
1482 <param name=
"data" type=
"p.PyObject" default=
""/>
1485 <method name=
"SetMaskColour" overloaded=
"no">
1486 <autodoc>SetMaskColour(unsigned char r, unsigned char g, unsigned char b)
</autodoc>
1488 <param name=
"r" type=
"unsigned char" default=
""/>
1489 <param name=
"g" type=
"unsigned char" default=
""/>
1490 <param name=
"b" type=
"unsigned char" default=
""/>
1493 <method name=
"GetMaskRed" overloaded=
"no">
1494 <autodoc>GetMaskRed() -
> unsigned char
</autodoc>
1496 <method name=
"GetMaskGreen" overloaded=
"no">
1497 <autodoc>GetMaskGreen() -
> unsigned char
</autodoc>
1499 <method name=
"GetMaskBlue" overloaded=
"no">
1500 <autodoc>GetMaskBlue() -
> unsigned char
</autodoc>
1502 <method name=
"SetMask" overloaded=
"no">
1503 <autodoc>SetMask(bool mask=True)
</autodoc>
1505 <param name=
"mask" type=
"bool" default=
"True"/>
1508 <method name=
"HasMask" overloaded=
"no">
1509 <autodoc>HasMask() -
> bool
</autodoc>
1511 <method name=
"Rotate" overloaded=
"no">
1512 <autodoc>Rotate(double angle, Point centre_of_rotation, bool interpolating=True,
1513 Point offset_after_rotation=None) -
> Image
</autodoc>
1515 <param name=
"angle" type=
"double" default=
""/>
1516 <param name=
"centre_of_rotation" type=
"r.q(const).wxPoint" default=
""/>
1517 <param name=
"interpolating" type=
"bool" default=
"True"/>
1518 <param name=
"offset_after_rotation" type=
"p.wxPoint" default=
"NULL"/>
1521 <method name=
"Rotate90" overloaded=
"no">
1522 <autodoc>Rotate90(bool clockwise=True) -
> Image
</autodoc>
1524 <param name=
"clockwise" type=
"bool" default=
"True"/>
1527 <method name=
"Mirror" overloaded=
"no">
1528 <autodoc>Mirror(bool horizontally=True) -
> Image
</autodoc>
1530 <param name=
"horizontally" type=
"bool" default=
"True"/>
1533 <method name=
"Replace" overloaded=
"no">
1534 <autodoc>Replace(unsigned char r1, unsigned char g1, unsigned char b1,
1535 unsigned char r2, unsigned char g2, unsigned char b2)
</autodoc>
1537 <param name=
"r1" type=
"unsigned char" default=
""/>
1538 <param name=
"g1" type=
"unsigned char" default=
""/>
1539 <param name=
"b1" type=
"unsigned char" default=
""/>
1540 <param name=
"r2" type=
"unsigned char" default=
""/>
1541 <param name=
"g2" type=
"unsigned char" default=
""/>
1542 <param name=
"b2" type=
"unsigned char" default=
""/>
1545 <method name=
"ConvertToMono" overloaded=
"no">
1546 <autodoc>ConvertToMono(unsigned char r, unsigned char g, unsigned char b) -
> Image
</autodoc>
1548 <param name=
"r" type=
"unsigned char" default=
""/>
1549 <param name=
"g" type=
"unsigned char" default=
""/>
1550 <param name=
"b" type=
"unsigned char" default=
""/>
1553 <method name=
"SetOption" overloaded=
"no">
1554 <autodoc>SetOption(String name, String value)
</autodoc>
1556 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1557 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
1560 <method name=
"SetOptionInt" overloaded=
"no">
1561 <autodoc>SetOptionInt(String name, int value)
</autodoc>
1563 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1564 <param name=
"value" type=
"int" default=
""/>
1567 <method name=
"GetOption" overloaded=
"no">
1568 <autodoc>GetOption(String name) -
> String
</autodoc>
1570 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1573 <method name=
"GetOptionInt" overloaded=
"no">
1574 <autodoc>GetOptionInt(String name) -
> int
</autodoc>
1576 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1579 <method name=
"HasOption" overloaded=
"no">
1580 <autodoc>HasOption(String name) -
> bool
</autodoc>
1582 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1585 <method name=
"CountColours" overloaded=
"no">
1586 <autodoc>CountColours(unsigned long stopafter=(unsigned long) -
1) -
> unsigned long
</autodoc>
1588 <param name=
"stopafter" type=
"unsigned long" default=
"(unsigned long) -1"/>
1591 <method name=
"ComputeHistogram" overloaded=
"no">
1592 <autodoc>ComputeHistogram(ImageHistogram h) -
> unsigned long
</autodoc>
1594 <param name=
"h" type=
"r.wxImageHistogram" default=
""/>
1597 <staticmethod name=
"AddHandler" overloaded=
"no">
1598 <autodoc>AddHandler(ImageHandler handler)
</autodoc>
1600 <param name=
"handler" type=
"p.wxImageHandler" default=
""/>
1603 <staticmethod name=
"InsertHandler" overloaded=
"no">
1604 <autodoc>InsertHandler(ImageHandler handler)
</autodoc>
1606 <param name=
"handler" type=
"p.wxImageHandler" default=
""/>
1609 <staticmethod name=
"RemoveHandler" overloaded=
"no">
1610 <autodoc>RemoveHandler(String name) -
> bool
</autodoc>
1612 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
1615 <staticmethod name=
"GetImageExtWildcard" overloaded=
"no">
1616 <autodoc>GetImageExtWildcard() -
> String
</autodoc>
1618 <method name=
"ConvertToBitmap" overloaded=
"no">
1619 <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc>
1621 <method name=
"ConvertToMonoBitmap" overloaded=
"no">
1622 <autodoc>ConvertToMonoBitmap(unsigned char red, unsigned char green, unsigned char blue) -
> Bitmap
</autodoc>
1624 <param name=
"red" type=
"unsigned char" default=
""/>
1625 <param name=
"green" type=
"unsigned char" default=
""/>
1626 <param name=
"blue" type=
"unsigned char" default=
""/>
1629 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
1631 <function oldname=
"wxInitAllImageHandlers" name=
"InitAllImageHandlers" overloaded=
"no">
1632 <autodoc>InitAllImageHandlers()
</autodoc>
1634 <class name=
"BMPHandler" oldname=
"wxBMPHandler" module=
"core">
1635 <baseclass name=
"wxImageHandler"/>
1636 <constructor name=
"BMPHandler" overloaded=
"no">
1637 <autodoc>__init__() -
> BMPHandler
</autodoc>
1640 <class name=
"ICOHandler" oldname=
"wxICOHandler" module=
"core">
1641 <baseclass name=
"wxBMPHandler"/>
1642 <constructor name=
"ICOHandler" overloaded=
"no">
1643 <autodoc>__init__() -
> ICOHandler
</autodoc>
1646 <class name=
"CURHandler" oldname=
"wxCURHandler" module=
"core">
1647 <baseclass name=
"wxICOHandler"/>
1648 <constructor name=
"CURHandler" overloaded=
"no">
1649 <autodoc>__init__() -
> CURHandler
</autodoc>
1652 <class name=
"ANIHandler" oldname=
"wxANIHandler" module=
"core">
1653 <baseclass name=
"wxCURHandler"/>
1654 <constructor name=
"ANIHandler" overloaded=
"no">
1655 <autodoc>__init__() -
> ANIHandler
</autodoc>
1658 <class name=
"PNGHandler" oldname=
"wxPNGHandler" module=
"core">
1659 <baseclass name=
"wxImageHandler"/>
1660 <constructor name=
"PNGHandler" overloaded=
"no">
1661 <autodoc>__init__() -
> PNGHandler
</autodoc>
1664 <class name=
"GIFHandler" oldname=
"wxGIFHandler" module=
"core">
1665 <baseclass name=
"wxImageHandler"/>
1666 <constructor name=
"GIFHandler" overloaded=
"no">
1667 <autodoc>__init__() -
> GIFHandler
</autodoc>
1670 <class name=
"PCXHandler" oldname=
"wxPCXHandler" module=
"core">
1671 <baseclass name=
"wxImageHandler"/>
1672 <constructor name=
"PCXHandler" overloaded=
"no">
1673 <autodoc>__init__() -
> PCXHandler
</autodoc>
1676 <class name=
"JPEGHandler" oldname=
"wxJPEGHandler" module=
"core">
1677 <baseclass name=
"wxImageHandler"/>
1678 <constructor name=
"JPEGHandler" overloaded=
"no">
1679 <autodoc>__init__() -
> JPEGHandler
</autodoc>
1682 <class name=
"PNMHandler" oldname=
"wxPNMHandler" module=
"core">
1683 <baseclass name=
"wxImageHandler"/>
1684 <constructor name=
"PNMHandler" overloaded=
"no">
1685 <autodoc>__init__() -
> PNMHandler
</autodoc>
1688 <class name=
"XPMHandler" oldname=
"wxXPMHandler" module=
"core">
1689 <baseclass name=
"wxImageHandler"/>
1690 <constructor name=
"XPMHandler" overloaded=
"no">
1691 <autodoc>__init__() -
> XPMHandler
</autodoc>
1694 <class name=
"TIFFHandler" oldname=
"wxTIFFHandler" module=
"core">
1695 <baseclass name=
"wxImageHandler"/>
1696 <constructor name=
"TIFFHandler" overloaded=
"no">
1697 <autodoc>__init__() -
> TIFFHandler
</autodoc>
1701 #---------------------------------------------------------------------------
1703 <class name=
"EvtHandler" oldname=
"wxEvtHandler" module=
"core">
1704 <baseclass name=
"wxObject"/>
1705 <constructor name=
"EvtHandler" overloaded=
"no">
1706 <autodoc>__init__() -
> EvtHandler
</autodoc>
1708 <method name=
"GetNextHandler" overloaded=
"no">
1709 <autodoc>GetNextHandler() -
> EvtHandler
</autodoc>
1711 <method name=
"GetPreviousHandler" overloaded=
"no">
1712 <autodoc>GetPreviousHandler() -
> EvtHandler
</autodoc>
1714 <method name=
"SetNextHandler" overloaded=
"no">
1715 <autodoc>SetNextHandler(EvtHandler handler)
</autodoc>
1717 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
1720 <method name=
"SetPreviousHandler" overloaded=
"no">
1721 <autodoc>SetPreviousHandler(EvtHandler handler)
</autodoc>
1723 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
1726 <method name=
"GetEvtHandlerEnabled" overloaded=
"no">
1727 <autodoc>GetEvtHandlerEnabled() -
> bool
</autodoc>
1729 <method name=
"SetEvtHandlerEnabled" overloaded=
"no">
1730 <autodoc>SetEvtHandlerEnabled(bool enabled)
</autodoc>
1732 <param name=
"enabled" type=
"bool" default=
""/>
1735 <method name=
"ProcessEvent" overloaded=
"no">
1736 <autodoc>ProcessEvent(Event event) -
> bool
</autodoc>
1738 <param name=
"event" type=
"r.wxEvent" default=
""/>
1741 <method name=
"AddPendingEvent" overloaded=
"no">
1742 <autodoc>AddPendingEvent(Event event)
</autodoc>
1744 <param name=
"event" type=
"r.wxEvent" default=
""/>
1747 <method name=
"ProcessPendingEvents" overloaded=
"no">
1748 <autodoc>ProcessPendingEvents()
</autodoc>
1750 <method name=
"Connect" overloaded=
"no">
1751 <autodoc>Connect(int id, int lastId, int eventType, PyObject func)
</autodoc>
1753 <param name=
"id" type=
"int" default=
""/>
1754 <param name=
"lastId" type=
"int" default=
""/>
1755 <param name=
"eventType" type=
"int" default=
""/>
1756 <param name=
"func" type=
"p.PyObject" default=
""/>
1759 <method name=
"Disconnect" overloaded=
"no">
1760 <autodoc>Disconnect(int id, int lastId=-
1, wxEventType eventType=wxEVT_NULL) -
> bool
</autodoc>
1762 <param name=
"id" type=
"int" default=
""/>
1763 <param name=
"lastId" type=
"int" default=
"-1"/>
1764 <param name=
"eventType" type=
"wxEventType" default=
"wxEVT_NULL"/>
1767 <method name=
"_setOORInfo" overloaded=
"no">
1768 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
1770 <param name=
"_self" type=
"p.PyObject" default=
""/>
1774 def Bind(self, event, handler, source=None, id=wx.ID_ANY, id2=wx.ID_ANY):
1776 Bind an event to an event handler.
1778 event One of the EVT_* objects that specifies the
1779 type of event to bind,
1781 handler A callable object to be invoked when the event
1782 is delivered to self. Pass None to disconnect an
1785 source Sometimes the event originates from a different window
1786 than self, but you still want to catch it in self. (For
1787 example, a button event delivered to a frame.) By
1788 passing the source of the event, the event handling
1789 system is able to differentiate between the same event
1790 type from different controls.
1792 id,id2 Used for menu IDs or for event types that require a
1795 if source is not None:
1797 event.Bind(self, id, id2, handler)
1803 #---------------------------------------------------------------------------
1805 class PyEventBinder(object):
1807 Instances of this class are used to bind specific events to event
1810 def __init__(self, evtType, expectedIDs=
0):
1811 if expectedIDs not in [
0,
1,
2]:
1812 raise ValueError, "Invalid number of expectedIDs"
1813 self.expectedIDs = expectedIDs
1815 if type(evtType) == list or type(evtType) == tuple:
1816 self.evtType = evtType
1818 self.evtType = [evtType]
1821 def Bind(self, target, id1, id2, function):
1822 """Bind this set of event types to target."""
1823 for et in self.evtType:
1824 target.Connect(id1, id2, et, function)
1827 def __call__(self, *args):
1829 For backwards compatibility with the old EVT_* functions.
1830 Should be called with either (window, func), (window, ID,
1831 func) or (window, ID1, ID2, func) parameters depending on the
1834 assert len(args) ==
2 + self.expectedIDs
1838 if self.expectedIDs ==
0:
1840 elif self.expectedIDs ==
1:
1843 elif self.expectedIDs ==
2:
1848 raise ValueError, "Unexpected number of IDs"
1850 self.Bind(target, id1, id2, func)
1853 # These two are square pegs that don't fit the PyEventBinder hole...
1854 def EVT_COMMAND(win, id, cmd, func):
1855 win.Connect(id, -
1, cmd, func)
1856 def EVT_COMMAND_RANGE(win, id1, id2, cmd, func):
1857 win.Connect(id1, id2, cmd, func)
1860 #---------------------------------------------------------------------------
1863 #---------------------------------------------------------------------------
1865 <function oldname=
"wxNewEventType" name=
"NewEventType" overloaded=
"no">
1866 <autodoc>NewEventType() -
> wxEventType
</autodoc>
1870 # Create some event binders
1871 EVT_SIZE = wx.PyEventBinder( wxEVT_SIZE )
1872 EVT_SIZING = wx.PyEventBinder( wxEVT_SIZING )
1873 EVT_MOVE = wx.PyEventBinder( wxEVT_MOVE )
1874 EVT_MOVING = wx.PyEventBinder( wxEVT_MOVING )
1875 EVT_CLOSE = wx.PyEventBinder( wxEVT_CLOSE_WINDOW )
1876 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
1877 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
1878 EVT_PAINT = wx.PyEventBinder( wxEVT_PAINT )
1879 EVT_NC_PAINT = wx.PyEventBinder( wxEVT_NC_PAINT )
1880 EVT_ERASE_BACKGROUND = wx.PyEventBinder( wxEVT_ERASE_BACKGROUND )
1881 EVT_CHAR = wx.PyEventBinder( wxEVT_CHAR )
1882 EVT_KEY_DOWN = wx.PyEventBinder( wxEVT_KEY_DOWN )
1883 EVT_KEY_UP = wx.PyEventBinder( wxEVT_KEY_UP )
1884 EVT_HOTKEY = wx.PyEventBinder( wxEVT_HOTKEY,
1)
1885 EVT_CHAR_HOOK = wx.PyEventBinder( wxEVT_CHAR_HOOK )
1886 EVT_MENU_OPEN = wx.PyEventBinder( wxEVT_MENU_OPEN )
1887 EVT_MENU_CLOSE = wx.PyEventBinder( wxEVT_MENU_CLOSE )
1888 EVT_MENU_HIGHLIGHT = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT,
1)
1889 EVT_MENU_HIGHLIGHT_ALL = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT )
1890 EVT_SET_FOCUS = wx.PyEventBinder( wxEVT_SET_FOCUS )
1891 EVT_KILL_FOCUS = wx.PyEventBinder( wxEVT_KILL_FOCUS )
1892 EVT_CHILD_FOCUS = wx.PyEventBinder( wxEVT_CHILD_FOCUS )
1893 EVT_ACTIVATE = wx.PyEventBinder( wxEVT_ACTIVATE )
1894 EVT_ACTIVATE_APP = wx.PyEventBinder( wxEVT_ACTIVATE_APP )
1895 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
1896 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
1897 EVT_DROP_FILES = wx.PyEventBinder( wxEVT_DROP_FILES )
1898 EVT_INIT_DIALOG = wx.PyEventBinder( wxEVT_INIT_DIALOG )
1899 EVT_SYS_COLOUR_CHANGED = wx.PyEventBinder( wxEVT_SYS_COLOUR_CHANGED )
1900 EVT_DISPLAY_CHANGED = wx.PyEventBinder( wxEVT_DISPLAY_CHANGED )
1901 EVT_SHOW = wx.PyEventBinder( wxEVT_SHOW )
1902 EVT_MAXIMIZE = wx.PyEventBinder( wxEVT_MAXIMIZE )
1903 EVT_ICONIZE = wx.PyEventBinder( wxEVT_ICONIZE )
1904 EVT_NAVIGATION_KEY = wx.PyEventBinder( wxEVT_NAVIGATION_KEY )
1905 EVT_PALETTE_CHANGED = wx.PyEventBinder( wxEVT_PALETTE_CHANGED )
1906 EVT_QUERY_NEW_PALETTE = wx.PyEventBinder( wxEVT_QUERY_NEW_PALETTE )
1907 EVT_WINDOW_CREATE = wx.PyEventBinder( wxEVT_CREATE )
1908 EVT_WINDOW_DESTROY = wx.PyEventBinder( wxEVT_DESTROY )
1909 EVT_SET_CURSOR = wx.PyEventBinder( wxEVT_SET_CURSOR )
1910 EVT_MOUSE_CAPTURE_CHANGED = wx.PyEventBinder( wxEVT_MOUSE_CAPTURE_CHANGED )
1912 EVT_LEFT_DOWN = wx.PyEventBinder( wxEVT_LEFT_DOWN )
1913 EVT_LEFT_UP = wx.PyEventBinder( wxEVT_LEFT_UP )
1914 EVT_MIDDLE_DOWN = wx.PyEventBinder( wxEVT_MIDDLE_DOWN )
1915 EVT_MIDDLE_UP = wx.PyEventBinder( wxEVT_MIDDLE_UP )
1916 EVT_RIGHT_DOWN = wx.PyEventBinder( wxEVT_RIGHT_DOWN )
1917 EVT_RIGHT_UP = wx.PyEventBinder( wxEVT_RIGHT_UP )
1918 EVT_MOTION = wx.PyEventBinder( wxEVT_MOTION )
1919 EVT_LEFT_DCLICK = wx.PyEventBinder( wxEVT_LEFT_DCLICK )
1920 EVT_MIDDLE_DCLICK = wx.PyEventBinder( wxEVT_MIDDLE_DCLICK )
1921 EVT_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_RIGHT_DCLICK )
1922 EVT_LEAVE_WINDOW = wx.PyEventBinder( wxEVT_LEAVE_WINDOW )
1923 EVT_ENTER_WINDOW = wx.PyEventBinder( wxEVT_ENTER_WINDOW )
1924 EVT_MOUSEWHEEL = wx.PyEventBinder( wxEVT_MOUSEWHEEL )
1926 EVT_MOUSE_EVENTS = wx.PyEventBinder([ wxEVT_LEFT_DOWN,
1934 wxEVT_MIDDLE_DCLICK,
1942 # Scrolling from wxWindow (sent to wxScrolledWindow)
1943 EVT_SCROLLWIN = wx.PyEventBinder([ wxEVT_SCROLLWIN_TOP,
1944 wxEVT_SCROLLWIN_BOTTOM,
1945 wxEVT_SCROLLWIN_LINEUP,
1946 wxEVT_SCROLLWIN_LINEDOWN,
1947 wxEVT_SCROLLWIN_PAGEUP,
1948 wxEVT_SCROLLWIN_PAGEDOWN,
1949 wxEVT_SCROLLWIN_THUMBTRACK,
1950 wxEVT_SCROLLWIN_THUMBRELEASE,
1953 EVT_SCROLLWIN_TOP = wx.PyEventBinder( wxEVT_SCROLLWIN_TOP )
1954 EVT_SCROLLWIN_BOTTOM = wx.PyEventBinder( wxEVT_SCROLLWIN_BOTTOM )
1955 EVT_SCROLLWIN_LINEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEUP )
1956 EVT_SCROLLWIN_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEDOWN )
1957 EVT_SCROLLWIN_PAGEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEUP )
1958 EVT_SCROLLWIN_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEDOWN )
1959 EVT_SCROLLWIN_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBTRACK )
1960 EVT_SCROLLWIN_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBRELEASE )
1962 # Scrolling from wxSlider and wxScrollBar
1963 EVT_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP,
1964 wxEVT_SCROLL_BOTTOM,
1965 wxEVT_SCROLL_LINEUP,
1966 wxEVT_SCROLL_LINEDOWN,
1967 wxEVT_SCROLL_PAGEUP,
1968 wxEVT_SCROLL_PAGEDOWN,
1969 wxEVT_SCROLL_THUMBTRACK,
1970 wxEVT_SCROLL_THUMBRELEASE,
1971 wxEVT_SCROLL_ENDSCROLL,
1974 EVT_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP )
1975 EVT_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM )
1976 EVT_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP )
1977 EVT_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN )
1978 EVT_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP )
1979 EVT_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN )
1980 EVT_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK )
1981 EVT_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE )
1982 EVT_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL )
1984 # Scrolling from wxSlider and wxScrollBar, with an id
1985 EVT_COMMAND_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP,
1986 wxEVT_SCROLL_BOTTOM,
1987 wxEVT_SCROLL_LINEUP,
1988 wxEVT_SCROLL_LINEDOWN,
1989 wxEVT_SCROLL_PAGEUP,
1990 wxEVT_SCROLL_PAGEDOWN,
1991 wxEVT_SCROLL_THUMBTRACK,
1992 wxEVT_SCROLL_THUMBRELEASE,
1993 wxEVT_SCROLL_ENDSCROLL,
1996 EVT_COMMAND_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP,
1)
1997 EVT_COMMAND_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM,
1)
1998 EVT_COMMAND_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP,
1)
1999 EVT_COMMAND_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN,
1)
2000 EVT_COMMAND_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP,
1)
2001 EVT_COMMAND_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN,
1)
2002 EVT_COMMAND_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK,
1)
2003 EVT_COMMAND_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE,
1)
2004 EVT_COMMAND_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL,
1)
2006 EVT_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_BUTTON_CLICKED,
1)
2007 EVT_CHECKBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKBOX_CLICKED,
1)
2008 EVT_CHOICE = wx.PyEventBinder( wxEVT_COMMAND_CHOICE_SELECTED,
1)
2009 EVT_LISTBOX = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_SELECTED,
1)
2010 EVT_LISTBOX_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED,
1)
2011 EVT_MENU = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED,
1)
2012 EVT_MENU_RANGE = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED,
2)
2013 EVT_SLIDER = wx.PyEventBinder( wxEVT_COMMAND_SLIDER_UPDATED,
1)
2014 EVT_RADIOBOX = wx.PyEventBinder( wxEVT_COMMAND_RADIOBOX_SELECTED,
1)
2015 EVT_RADIOBUTTON = wx.PyEventBinder( wxEVT_COMMAND_RADIOBUTTON_SELECTED,
1)
2017 EVT_SCROLLBAR = wx.PyEventBinder( wxEVT_COMMAND_SCROLLBAR_UPDATED,
1)
2018 EVT_VLBOX = wx.PyEventBinder( wxEVT_COMMAND_VLBOX_SELECTED,
1)
2019 EVT_COMBOBOX = wx.PyEventBinder( wxEVT_COMMAND_COMBOBOX_SELECTED,
1)
2020 EVT_TOOL = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED,
1)
2021 EVT_TOOL_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED,
2)
2022 EVT_TOOL_RCLICKED = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED,
1)
2023 EVT_TOOL_RCLICKED_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED,
2)
2024 EVT_TOOL_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TOOL_ENTER,
1)
2025 EVT_CHECKLISTBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED,
1)
2028 EVT_COMMAND_LEFT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_CLICK,
1)
2029 EVT_COMMAND_LEFT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_DCLICK,
1)
2030 EVT_COMMAND_RIGHT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_CLICK,
1)
2031 EVT_COMMAND_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_DCLICK,
1)
2032 EVT_COMMAND_SET_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_SET_FOCUS,
1)
2033 EVT_COMMAND_KILL_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_KILL_FOCUS,
1)
2034 EVT_COMMAND_ENTER = wx.PyEventBinder( wxEVT_COMMAND_ENTER,
1)
2036 EVT_IDLE = wx.PyEventBinder( wxEVT_IDLE )
2038 EVT_UPDATE_UI = wx.PyEventBinder( wxEVT_UPDATE_UI,
1)
2039 EVT_UPDATE_UI_RANGE = wx.PyEventBinder( wxEVT_UPDATE_UI,
2)
2041 EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
2046 #---------------------------------------------------------------------------
2048 <class name=
"Event" oldname=
"wxEvent" module=
"core">
2049 <baseclass name=
"wxObject"/>
2050 <destructor name=
"~wxEvent">
2051 <autodoc>__del__()
</autodoc>
2053 <method name=
"SetEventType" overloaded=
"no">
2054 <autodoc>SetEventType(wxEventType typ)
</autodoc>
2056 <param name=
"typ" type=
"wxEventType" default=
""/>
2059 <method name=
"GetEventType" overloaded=
"no">
2060 <autodoc>GetEventType() -
> wxEventType
</autodoc>
2062 <method name=
"GetEventObject" overloaded=
"no">
2063 <autodoc>GetEventObject() -
> Object
</autodoc>
2065 <method name=
"SetEventObject" overloaded=
"no">
2066 <autodoc>SetEventObject(Object obj)
</autodoc>
2068 <param name=
"obj" type=
"p.wxObject" default=
""/>
2071 <method name=
"GetTimestamp" overloaded=
"no">
2072 <autodoc>GetTimestamp() -
> long
</autodoc>
2074 <method name=
"SetTimestamp" overloaded=
"no">
2075 <autodoc>SetTimestamp(long ts=
0)
</autodoc>
2077 <param name=
"ts" type=
"long" default=
"0"/>
2080 <method name=
"GetId" overloaded=
"no">
2081 <autodoc>GetId() -
> int
</autodoc>
2083 <method name=
"SetId" overloaded=
"no">
2084 <autodoc>SetId(int Id)
</autodoc>
2086 <param name=
"Id" type=
"int" default=
""/>
2089 <method name=
"IsCommandEvent" overloaded=
"no">
2090 <autodoc>IsCommandEvent() -
> bool
</autodoc>
2092 <method name=
"Skip" overloaded=
"no">
2093 <autodoc>Skip(bool skip=True)
</autodoc>
2095 <param name=
"skip" type=
"bool" default=
"True"/>
2098 <method name=
"GetSkipped" overloaded=
"no">
2099 <autodoc>GetSkipped() -
> bool
</autodoc>
2101 <method name=
"ShouldPropagate" overloaded=
"no">
2102 <autodoc>ShouldPropagate() -
> bool
</autodoc>
2104 <method name=
"StopPropagation" overloaded=
"no">
2105 <autodoc>StopPropagation() -
> int
</autodoc>
2107 <method name=
"ResumePropagation" overloaded=
"no">
2108 <autodoc>ResumePropagation(int propagationLevel)
</autodoc>
2110 <param name=
"propagationLevel" type=
"int" default=
""/>
2113 <method name=
"Clone" overloaded=
"no">
2114 <autodoc>Clone() -
> Event
</autodoc>
2118 #---------------------------------------------------------------------------
2120 <class name=
"PropagationDisabler" oldname=
"wxPropagationDisabler" module=
"core">
2121 <constructor name=
"PropagationDisabler" overloaded=
"no">
2122 <autodoc>__init__(Event event) -
> PropagationDisabler
</autodoc>
2124 <param name=
"event" type=
"r.wxEvent" default=
""/>
2127 <destructor name=
"~wxPropagationDisabler">
2128 <autodoc>__del__()
</autodoc>
2131 <class name=
"PropagateOnce" oldname=
"wxPropagateOnce" module=
"core">
2132 <constructor name=
"PropagateOnce" overloaded=
"no">
2133 <autodoc>__init__(Event event) -
> PropagateOnce
</autodoc>
2135 <param name=
"event" type=
"r.wxEvent" default=
""/>
2138 <destructor name=
"~wxPropagateOnce">
2139 <autodoc>__del__()
</autodoc>
2143 #---------------------------------------------------------------------------
2145 <class name=
"CommandEvent" oldname=
"wxCommandEvent" module=
"core">
2146 <baseclass name=
"wxEvent"/>
2147 <constructor name=
"CommandEvent" overloaded=
"no">
2148 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> CommandEvent
</autodoc>
2150 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2151 <param name=
"winid" type=
"int" default=
"0"/>
2154 <method name=
"GetSelection" overloaded=
"no">
2155 <autodoc>GetSelection() -
> int
</autodoc>
2157 <method name=
"SetString" overloaded=
"no">
2158 <autodoc>SetString(String s)
</autodoc>
2160 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
2163 <method name=
"GetString" overloaded=
"no">
2164 <autodoc>GetString() -
> String
</autodoc>
2166 <method name=
"IsChecked" overloaded=
"no">
2167 <autodoc>IsChecked() -
> bool
</autodoc>
2169 <pythoncode> Checked = IsChecked
</pythoncode>
2170 <method name=
"IsSelection" overloaded=
"no">
2171 <autodoc>IsSelection() -
> bool
</autodoc>
2173 <method name=
"SetExtraLong" overloaded=
"no">
2174 <autodoc>SetExtraLong(long extraLong)
</autodoc>
2176 <param name=
"extraLong" type=
"long" default=
""/>
2179 <method name=
"GetExtraLong" overloaded=
"no">
2180 <autodoc>GetExtraLong() -
> long
</autodoc>
2182 <method name=
"SetInt" overloaded=
"no">
2183 <autodoc>SetInt(int i)
</autodoc>
2185 <param name=
"i" type=
"int" default=
""/>
2188 <method name=
"GetInt" overloaded=
"no">
2189 <autodoc>GetInt() -
> long
</autodoc>
2191 <method name=
"Clone" overloaded=
"no">
2192 <autodoc>Clone() -
> Event
</autodoc>
2196 #---------------------------------------------------------------------------
2198 <class name=
"NotifyEvent" oldname=
"wxNotifyEvent" module=
"core">
2199 <baseclass name=
"wxCommandEvent"/>
2200 <constructor name=
"NotifyEvent" overloaded=
"no">
2201 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> NotifyEvent
</autodoc>
2203 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2204 <param name=
"winid" type=
"int" default=
"0"/>
2207 <method name=
"Veto" overloaded=
"no">
2208 <autodoc>Veto()
</autodoc>
2210 <method name=
"Allow" overloaded=
"no">
2211 <autodoc>Allow()
</autodoc>
2213 <method name=
"IsAllowed" overloaded=
"no">
2214 <autodoc>IsAllowed() -
> bool
</autodoc>
2218 #---------------------------------------------------------------------------
2220 <class name=
"ScrollEvent" oldname=
"wxScrollEvent" module=
"core">
2221 <baseclass name=
"wxCommandEvent"/>
2222 <constructor name=
"ScrollEvent" overloaded=
"no">
2223 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0, int pos=
0,
2224 int orient=
0) -
> ScrollEvent
</autodoc>
2226 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2227 <param name=
"winid" type=
"int" default=
"0"/>
2228 <param name=
"pos" type=
"int" default=
"0"/>
2229 <param name=
"orient" type=
"int" default=
"0"/>
2232 <method name=
"GetOrientation" overloaded=
"no">
2233 <autodoc>GetOrientation() -
> int
</autodoc>
2235 <method name=
"GetPosition" overloaded=
"no">
2236 <autodoc>GetPosition() -
> int
</autodoc>
2238 <method name=
"SetOrientation" overloaded=
"no">
2239 <autodoc>SetOrientation(int orient)
</autodoc>
2241 <param name=
"orient" type=
"int" default=
""/>
2244 <method name=
"SetPosition" overloaded=
"no">
2245 <autodoc>SetPosition(int pos)
</autodoc>
2247 <param name=
"pos" type=
"int" default=
""/>
2252 #---------------------------------------------------------------------------
2254 <class name=
"ScrollWinEvent" oldname=
"wxScrollWinEvent" module=
"core">
2255 <baseclass name=
"wxEvent"/>
2256 <constructor name=
"ScrollWinEvent" overloaded=
"no">
2257 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int pos=
0, int orient=
0) -
> ScrollWinEvent
</autodoc>
2259 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2260 <param name=
"pos" type=
"int" default=
"0"/>
2261 <param name=
"orient" type=
"int" default=
"0"/>
2264 <method name=
"GetOrientation" overloaded=
"no">
2265 <autodoc>GetOrientation() -
> int
</autodoc>
2267 <method name=
"GetPosition" overloaded=
"no">
2268 <autodoc>GetPosition() -
> int
</autodoc>
2270 <method name=
"SetOrientation" overloaded=
"no">
2271 <autodoc>SetOrientation(int orient)
</autodoc>
2273 <param name=
"orient" type=
"int" default=
""/>
2276 <method name=
"SetPosition" overloaded=
"no">
2277 <autodoc>SetPosition(int pos)
</autodoc>
2279 <param name=
"pos" type=
"int" default=
""/>
2284 #---------------------------------------------------------------------------
2286 <class name=
"MouseEvent" oldname=
"wxMouseEvent" module=
"core">
2287 <baseclass name=
"wxEvent"/>
2288 <constructor name=
"MouseEvent" overloaded=
"no">
2289 <autodoc>__init__(wxEventType mouseType=wxEVT_NULL) -
> MouseEvent
</autodoc>
2291 <param name=
"mouseType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2294 <method name=
"IsButton" overloaded=
"no">
2295 <autodoc>IsButton() -
> bool
</autodoc>
2297 <method name=
"ButtonDown" overloaded=
"no">
2298 <autodoc>ButtonDown(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2300 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2303 <method name=
"ButtonDClick" overloaded=
"no">
2304 <autodoc>ButtonDClick(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2306 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2309 <method name=
"ButtonUp" overloaded=
"no">
2310 <autodoc>ButtonUp(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2312 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2315 <method name=
"Button" overloaded=
"no">
2316 <autodoc>Button(int but) -
> bool
</autodoc>
2318 <param name=
"but" type=
"int" default=
""/>
2321 <method name=
"ButtonIsDown" overloaded=
"no">
2322 <autodoc>ButtonIsDown(int but) -
> bool
</autodoc>
2324 <param name=
"but" type=
"int" default=
""/>
2327 <method name=
"GetButton" overloaded=
"no">
2328 <autodoc>GetButton() -
> int
</autodoc>
2330 <method name=
"ControlDown" overloaded=
"no">
2331 <autodoc>ControlDown() -
> bool
</autodoc>
2333 <method name=
"MetaDown" overloaded=
"no">
2334 <autodoc>MetaDown() -
> bool
</autodoc>
2336 <method name=
"AltDown" overloaded=
"no">
2337 <autodoc>AltDown() -
> bool
</autodoc>
2339 <method name=
"ShiftDown" overloaded=
"no">
2340 <autodoc>ShiftDown() -
> bool
</autodoc>
2342 <method name=
"LeftDown" overloaded=
"no">
2343 <autodoc>LeftDown() -
> bool
</autodoc>
2345 <method name=
"MiddleDown" overloaded=
"no">
2346 <autodoc>MiddleDown() -
> bool
</autodoc>
2348 <method name=
"RightDown" overloaded=
"no">
2349 <autodoc>RightDown() -
> bool
</autodoc>
2351 <method name=
"LeftUp" overloaded=
"no">
2352 <autodoc>LeftUp() -
> bool
</autodoc>
2354 <method name=
"MiddleUp" overloaded=
"no">
2355 <autodoc>MiddleUp() -
> bool
</autodoc>
2357 <method name=
"RightUp" overloaded=
"no">
2358 <autodoc>RightUp() -
> bool
</autodoc>
2360 <method name=
"LeftDClick" overloaded=
"no">
2361 <autodoc>LeftDClick() -
> bool
</autodoc>
2363 <method name=
"MiddleDClick" overloaded=
"no">
2364 <autodoc>MiddleDClick() -
> bool
</autodoc>
2366 <method name=
"RightDClick" overloaded=
"no">
2367 <autodoc>RightDClick() -
> bool
</autodoc>
2369 <method name=
"LeftIsDown" overloaded=
"no">
2370 <autodoc>LeftIsDown() -
> bool
</autodoc>
2372 <method name=
"MiddleIsDown" overloaded=
"no">
2373 <autodoc>MiddleIsDown() -
> bool
</autodoc>
2375 <method name=
"RightIsDown" overloaded=
"no">
2376 <autodoc>RightIsDown() -
> bool
</autodoc>
2378 <method name=
"Dragging" overloaded=
"no">
2379 <autodoc>Dragging() -
> bool
</autodoc>
2381 <method name=
"Moving" overloaded=
"no">
2382 <autodoc>Moving() -
> bool
</autodoc>
2384 <method name=
"Entering" overloaded=
"no">
2385 <autodoc>Entering() -
> bool
</autodoc>
2387 <method name=
"Leaving" overloaded=
"no">
2388 <autodoc>Leaving() -
> bool
</autodoc>
2390 <method name=
"GetPosition" overloaded=
"no">
2391 <autodoc>GetPosition() -
> Point
</autodoc>
2392 <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring>
2394 <method name=
"GetPositionTuple" overloaded=
"no">
2395 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
2396 <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring>
2398 <param name=
"OUTPUT" type=
"p.long" default=
""/>
2399 <param name=
"OUTPUT" type=
"p.long" default=
""/>
2402 <method name=
"GetLogicalPosition" overloaded=
"no">
2403 <autodoc>GetLogicalPosition(DC dc) -
> Point
</autodoc>
2405 <param name=
"dc" type=
"r.q(const).wxDC" default=
""/>
2408 <method name=
"GetX" overloaded=
"no">
2409 <autodoc>GetX() -
> int
</autodoc>
2411 <method name=
"GetY" overloaded=
"no">
2412 <autodoc>GetY() -
> int
</autodoc>
2414 <method name=
"GetWheelRotation" overloaded=
"no">
2415 <autodoc>GetWheelRotation() -
> int
</autodoc>
2417 <method name=
"GetWheelDelta" overloaded=
"no">
2418 <autodoc>GetWheelDelta() -
> int
</autodoc>
2420 <method name=
"GetLinesPerAction" overloaded=
"no">
2421 <autodoc>GetLinesPerAction() -
> int
</autodoc>
2423 <method name=
"IsPageScroll" overloaded=
"no">
2424 <autodoc>IsPageScroll() -
> bool
</autodoc>
2426 <property name=
"m_x" type=
"int" readonly=
"no"/>
2427 <property name=
"m_y" type=
"int" readonly=
"no"/>
2428 <property name=
"m_leftDown" type=
"bool" readonly=
"no"/>
2429 <property name=
"m_middleDown" type=
"bool" readonly=
"no"/>
2430 <property name=
"m_rightDown" type=
"bool" readonly=
"no"/>
2431 <property name=
"m_controlDown" type=
"bool" readonly=
"no"/>
2432 <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/>
2433 <property name=
"m_altDown" type=
"bool" readonly=
"no"/>
2434 <property name=
"m_metaDown" type=
"bool" readonly=
"no"/>
2435 <property name=
"m_wheelRotation" type=
"int" readonly=
"no"/>
2436 <property name=
"m_wheelDelta" type=
"int" readonly=
"no"/>
2437 <property name=
"m_linesPerAction" type=
"int" readonly=
"no"/>
2440 #---------------------------------------------------------------------------
2442 <class name=
"SetCursorEvent" oldname=
"wxSetCursorEvent" module=
"core">
2443 <baseclass name=
"wxEvent"/>
2444 <constructor name=
"SetCursorEvent" overloaded=
"no">
2445 <autodoc>__init__(int x=
0, int y=
0) -
> SetCursorEvent
</autodoc>
2447 <param name=
"x" type=
"int" default=
"0"/>
2448 <param name=
"y" type=
"int" default=
"0"/>
2451 <method name=
"GetX" overloaded=
"no">
2452 <autodoc>GetX() -
> int
</autodoc>
2454 <method name=
"GetY" overloaded=
"no">
2455 <autodoc>GetY() -
> int
</autodoc>
2457 <method name=
"SetCursor" overloaded=
"no">
2458 <autodoc>SetCursor(Cursor cursor)
</autodoc>
2460 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
""/>
2463 <method name=
"GetCursor" overloaded=
"no">
2464 <autodoc>GetCursor() -
> Cursor
</autodoc>
2466 <method name=
"HasCursor" overloaded=
"no">
2467 <autodoc>HasCursor() -
> bool
</autodoc>
2471 #---------------------------------------------------------------------------
2473 <class name=
"KeyEvent" oldname=
"wxKeyEvent" module=
"core">
2474 <baseclass name=
"wxEvent"/>
2475 <constructor name=
"KeyEvent" overloaded=
"no">
2476 <autodoc>__init__(wxEventType keyType=wxEVT_NULL) -
> KeyEvent
</autodoc>
2478 <param name=
"keyType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2481 <method name=
"ControlDown" overloaded=
"no">
2482 <autodoc>ControlDown() -
> bool
</autodoc>
2484 <method name=
"MetaDown" overloaded=
"no">
2485 <autodoc>MetaDown() -
> bool
</autodoc>
2487 <method name=
"AltDown" overloaded=
"no">
2488 <autodoc>AltDown() -
> bool
</autodoc>
2490 <method name=
"ShiftDown" overloaded=
"no">
2491 <autodoc>ShiftDown() -
> bool
</autodoc>
2493 <method name=
"HasModifiers" overloaded=
"no">
2494 <autodoc>HasModifiers() -
> bool
</autodoc>
2496 <method name=
"GetKeyCode" overloaded=
"no">
2497 <autodoc>GetKeyCode() -
> int
</autodoc>
2499 <pythoncode> KeyCode = GetKeyCode
</pythoncode>
2500 <method name=
"GetUniChar" overloaded=
"no">
2501 <autodoc>GetUniChar() -
> int
</autodoc>
2503 <method name=
"GetRawKeyCode" overloaded=
"no">
2504 <autodoc>GetRawKeyCode() -
> unsigned int
</autodoc>
2506 <method name=
"GetRawKeyFlags" overloaded=
"no">
2507 <autodoc>GetRawKeyFlags() -
> unsigned int
</autodoc>
2509 <method name=
"GetPosition" overloaded=
"no">
2510 <autodoc>GetPosition() -
> Point
</autodoc>
2511 <docstring>Find the position of the event.
</docstring>
2513 <method name=
"GetPositionTuple" overloaded=
"no">
2514 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
2515 <docstring>Find the position of the event.
</docstring>
2517 <param name=
"OUTPUT" type=
"p.long" default=
""/>
2518 <param name=
"OUTPUT" type=
"p.long" default=
""/>
2521 <method name=
"GetX" overloaded=
"no">
2522 <autodoc>GetX() -
> int
</autodoc>
2524 <method name=
"GetY" overloaded=
"no">
2525 <autodoc>GetY() -
> int
</autodoc>
2527 <property name=
"m_x" type=
"int" readonly=
"no"/>
2528 <property name=
"m_y" type=
"int" readonly=
"no"/>
2529 <property name=
"m_keyCode" type=
"long" readonly=
"no"/>
2530 <property name=
"m_controlDown" type=
"bool" readonly=
"no"/>
2531 <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/>
2532 <property name=
"m_altDown" type=
"bool" readonly=
"no"/>
2533 <property name=
"m_metaDown" type=
"bool" readonly=
"no"/>
2534 <property name=
"m_scanCode" type=
"bool" readonly=
"no"/>
2535 <property name=
"m_rawCode" type=
"unsigned int" readonly=
"no"/>
2536 <property name=
"m_rawFlags" type=
"unsigned int" readonly=
"no"/>
2539 #---------------------------------------------------------------------------
2541 <class name=
"SizeEvent" oldname=
"wxSizeEvent" module=
"core">
2542 <baseclass name=
"wxEvent"/>
2543 <constructor name=
"SizeEvent" overloaded=
"no">
2544 <autodoc>__init__(Size sz=DefaultSize, int winid=
0) -
> SizeEvent
</autodoc>
2546 <param name=
"sz" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
2547 <param name=
"winid" type=
"int" default=
"0"/>
2550 <method name=
"GetSize" overloaded=
"no">
2551 <autodoc>GetSize() -
> Size
</autodoc>
2553 <method name=
"GetRect" overloaded=
"no">
2554 <autodoc>GetRect() -
> Rect
</autodoc>
2556 <method name=
"SetRect" overloaded=
"no">
2557 <autodoc>SetRect(Rect rect)
</autodoc>
2559 <param name=
"rect" type=
"wxRect" default=
""/>
2562 <method name=
"SetSize" overloaded=
"no">
2563 <autodoc>SetSize(Size size)
</autodoc>
2565 <param name=
"size" type=
"wxSize" default=
""/>
2568 <property name=
"m_size" type=
"wxSize" readonly=
"no"/>
2569 <property name=
"m_rect" type=
"wxRect" readonly=
"no"/>
2572 #---------------------------------------------------------------------------
2574 <class name=
"MoveEvent" oldname=
"wxMoveEvent" module=
"core">
2575 <baseclass name=
"wxEvent"/>
2576 <constructor name=
"MoveEvent" overloaded=
"no">
2577 <autodoc>__init__(Point pos=DefaultPosition, int winid=
0) -
> MoveEvent
</autodoc>
2579 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
2580 <param name=
"winid" type=
"int" default=
"0"/>
2583 <method name=
"GetPosition" overloaded=
"no">
2584 <autodoc>GetPosition() -
> Point
</autodoc>
2586 <method name=
"GetRect" overloaded=
"no">
2587 <autodoc>GetRect() -
> Rect
</autodoc>
2589 <method name=
"SetRect" overloaded=
"no">
2590 <autodoc>SetRect(Rect rect)
</autodoc>
2592 <param name=
"rect" type=
"wxRect" default=
""/>
2595 <method name=
"SetPosition" overloaded=
"no">
2596 <autodoc>SetPosition(Point pos)
</autodoc>
2598 <param name=
"pos" type=
"wxPoint" default=
""/>
2601 <property name=
"m_pos" type=
"wxPoint" readonly=
"no"/>
2602 <property name=
"m_rect" type=
"wxRect" readonly=
"no"/>
2605 #---------------------------------------------------------------------------
2607 <class name=
"PaintEvent" oldname=
"wxPaintEvent" module=
"core">
2608 <baseclass name=
"wxEvent"/>
2609 <constructor name=
"PaintEvent" overloaded=
"no">
2610 <autodoc>__init__(int Id=
0) -
> PaintEvent
</autodoc>
2612 <param name=
"Id" type=
"int" default=
"0"/>
2616 <class name=
"NcPaintEvent" oldname=
"wxNcPaintEvent" module=
"core">
2617 <baseclass name=
"wxEvent"/>
2618 <constructor name=
"NcPaintEvent" overloaded=
"no">
2619 <autodoc>__init__(int winid=
0) -
> NcPaintEvent
</autodoc>
2621 <param name=
"winid" type=
"int" default=
"0"/>
2626 #---------------------------------------------------------------------------
2628 <class name=
"EraseEvent" oldname=
"wxEraseEvent" module=
"core">
2629 <baseclass name=
"wxEvent"/>
2630 <constructor name=
"EraseEvent" overloaded=
"no">
2631 <autodoc>__init__(int Id=
0, DC dc=(wxDC *) NULL) -
> EraseEvent
</autodoc>
2633 <param name=
"Id" type=
"int" default=
"0"/>
2634 <param name=
"dc" type=
"p.wxDC" default=
"(wxDC *) NULL"/>
2637 <method name=
"GetDC" overloaded=
"no">
2638 <autodoc>GetDC() -
> DC
</autodoc>
2642 #---------------------------------------------------------------------------
2644 <class name=
"FocusEvent" oldname=
"wxFocusEvent" module=
"core">
2645 <baseclass name=
"wxEvent"/>
2646 <constructor name=
"FocusEvent" overloaded=
"no">
2647 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> FocusEvent
</autodoc>
2649 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2650 <param name=
"winid" type=
"int" default=
"0"/>
2653 <method name=
"GetWindow" overloaded=
"no">
2654 <autodoc>GetWindow() -
> Window
</autodoc>
2656 <method name=
"SetWindow" overloaded=
"no">
2657 <autodoc>SetWindow(Window win)
</autodoc>
2659 <param name=
"win" type=
"p.wxWindow" default=
""/>
2664 #---------------------------------------------------------------------------
2666 <class name=
"ChildFocusEvent" oldname=
"wxChildFocusEvent" module=
"core">
2667 <baseclass name=
"wxCommandEvent"/>
2668 <constructor name=
"ChildFocusEvent" overloaded=
"no">
2669 <autodoc>__init__(Window win=None) -
> ChildFocusEvent
</autodoc>
2671 <param name=
"win" type=
"p.wxWindow" default=
"NULL"/>
2674 <method name=
"GetWindow" overloaded=
"no">
2675 <autodoc>GetWindow() -
> Window
</autodoc>
2679 #---------------------------------------------------------------------------
2681 <class name=
"ActivateEvent" oldname=
"wxActivateEvent" module=
"core">
2682 <baseclass name=
"wxEvent"/>
2683 <constructor name=
"ActivateEvent" overloaded=
"no">
2684 <autodoc>__init__(wxEventType type=wxEVT_NULL, bool active=True, int Id=
0) -
> ActivateEvent
</autodoc>
2686 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2687 <param name=
"active" type=
"bool" default=
"True"/>
2688 <param name=
"Id" type=
"int" default=
"0"/>
2691 <method name=
"GetActive" overloaded=
"no">
2692 <autodoc>GetActive() -
> bool
</autodoc>
2696 #---------------------------------------------------------------------------
2698 <class name=
"InitDialogEvent" oldname=
"wxInitDialogEvent" module=
"core">
2699 <baseclass name=
"wxEvent"/>
2700 <constructor name=
"InitDialogEvent" overloaded=
"no">
2701 <autodoc>__init__(int Id=
0) -
> InitDialogEvent
</autodoc>
2703 <param name=
"Id" type=
"int" default=
"0"/>
2708 #---------------------------------------------------------------------------
2710 <class name=
"MenuEvent" oldname=
"wxMenuEvent" module=
"core">
2711 <baseclass name=
"wxEvent"/>
2712 <constructor name=
"MenuEvent" overloaded=
"no">
2713 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Menu menu=None) -
> MenuEvent
</autodoc>
2715 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2716 <param name=
"winid" type=
"int" default=
"0"/>
2717 <param name=
"menu" type=
"p.wxMenu" default=
"NULL"/>
2720 <method name=
"GetMenuId" overloaded=
"no">
2721 <autodoc>GetMenuId() -
> int
</autodoc>
2723 <method name=
"IsPopup" overloaded=
"no">
2724 <autodoc>IsPopup() -
> bool
</autodoc>
2726 <method name=
"GetMenu" overloaded=
"no">
2727 <autodoc>GetMenu() -
> Menu
</autodoc>
2731 #---------------------------------------------------------------------------
2733 <class name=
"CloseEvent" oldname=
"wxCloseEvent" module=
"core">
2734 <baseclass name=
"wxEvent"/>
2735 <constructor name=
"CloseEvent" overloaded=
"no">
2736 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> CloseEvent
</autodoc>
2738 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2739 <param name=
"winid" type=
"int" default=
"0"/>
2742 <method name=
"SetLoggingOff" overloaded=
"no">
2743 <autodoc>SetLoggingOff(bool logOff)
</autodoc>
2745 <param name=
"logOff" type=
"bool" default=
""/>
2748 <method name=
"GetLoggingOff" overloaded=
"no">
2749 <autodoc>GetLoggingOff() -
> bool
</autodoc>
2751 <method name=
"Veto" overloaded=
"no">
2752 <autodoc>Veto(bool veto=True)
</autodoc>
2754 <param name=
"veto" type=
"bool" default=
"True"/>
2757 <method name=
"SetCanVeto" overloaded=
"no">
2758 <autodoc>SetCanVeto(bool canVeto)
</autodoc>
2760 <param name=
"canVeto" type=
"bool" default=
""/>
2763 <method name=
"CanVeto" overloaded=
"no">
2764 <autodoc>CanVeto() -
> bool
</autodoc>
2766 <method name=
"GetVeto" overloaded=
"no">
2767 <autodoc>GetVeto() -
> bool
</autodoc>
2771 #---------------------------------------------------------------------------
2773 <class name=
"ShowEvent" oldname=
"wxShowEvent" module=
"core">
2774 <baseclass name=
"wxEvent"/>
2775 <constructor name=
"ShowEvent" overloaded=
"no">
2776 <autodoc>__init__(int winid=
0, bool show=False) -
> ShowEvent
</autodoc>
2778 <param name=
"winid" type=
"int" default=
"0"/>
2779 <param name=
"show" type=
"bool" default=
"False"/>
2782 <method name=
"SetShow" overloaded=
"no">
2783 <autodoc>SetShow(bool show)
</autodoc>
2785 <param name=
"show" type=
"bool" default=
""/>
2788 <method name=
"GetShow" overloaded=
"no">
2789 <autodoc>GetShow() -
> bool
</autodoc>
2793 #---------------------------------------------------------------------------
2795 <class name=
"IconizeEvent" oldname=
"wxIconizeEvent" module=
"core">
2796 <baseclass name=
"wxEvent"/>
2797 <constructor name=
"IconizeEvent" overloaded=
"no">
2798 <autodoc>__init__(int id=
0, bool iconized=True) -
> IconizeEvent
</autodoc>
2800 <param name=
"id" type=
"int" default=
"0"/>
2801 <param name=
"iconized" type=
"bool" default=
"True"/>
2804 <method name=
"Iconized" overloaded=
"no">
2805 <autodoc>Iconized() -
> bool
</autodoc>
2809 #---------------------------------------------------------------------------
2811 <class name=
"MaximizeEvent" oldname=
"wxMaximizeEvent" module=
"core">
2812 <baseclass name=
"wxEvent"/>
2813 <constructor name=
"MaximizeEvent" overloaded=
"no">
2814 <autodoc>__init__(int id=
0) -
> MaximizeEvent
</autodoc>
2816 <param name=
"id" type=
"int" default=
"0"/>
2821 #---------------------------------------------------------------------------
2823 <class name=
"DropFilesEvent" oldname=
"wxDropFilesEvent" module=
"core">
2824 <baseclass name=
"wxEvent"/>
2825 <method name=
"GetPosition" overloaded=
"no">
2826 <autodoc>GetPosition() -
> Point
</autodoc>
2828 <method name=
"GetNumberOfFiles" overloaded=
"no">
2829 <autodoc>GetNumberOfFiles() -
> int
</autodoc>
2831 <method name=
"GetFiles" overloaded=
"no">
2832 <autodoc>GetFiles() -
> PyObject
</autodoc>
2836 #---------------------------------------------------------------------------
2838 <class name=
"UpdateUIEvent" oldname=
"wxUpdateUIEvent" module=
"core">
2839 <baseclass name=
"wxCommandEvent"/>
2840 <constructor name=
"UpdateUIEvent" overloaded=
"no">
2841 <autodoc>__init__(int commandId=
0) -
> UpdateUIEvent
</autodoc>
2843 <param name=
"commandId" type=
"int" default=
"0"/>
2846 <method name=
"GetChecked" overloaded=
"no">
2847 <autodoc>GetChecked() -
> bool
</autodoc>
2849 <method name=
"GetEnabled" overloaded=
"no">
2850 <autodoc>GetEnabled() -
> bool
</autodoc>
2852 <method name=
"GetText" overloaded=
"no">
2853 <autodoc>GetText() -
> String
</autodoc>
2855 <method name=
"GetSetText" overloaded=
"no">
2856 <autodoc>GetSetText() -
> bool
</autodoc>
2858 <method name=
"GetSetChecked" overloaded=
"no">
2859 <autodoc>GetSetChecked() -
> bool
</autodoc>
2861 <method name=
"GetSetEnabled" overloaded=
"no">
2862 <autodoc>GetSetEnabled() -
> bool
</autodoc>
2864 <method name=
"Check" overloaded=
"no">
2865 <autodoc>Check(bool check)
</autodoc>
2867 <param name=
"check" type=
"bool" default=
""/>
2870 <method name=
"Enable" overloaded=
"no">
2871 <autodoc>Enable(bool enable)
</autodoc>
2873 <param name=
"enable" type=
"bool" default=
""/>
2876 <method name=
"SetText" overloaded=
"no">
2877 <autodoc>SetText(String text)
</autodoc>
2879 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
2882 <staticmethod name=
"SetUpdateInterval" overloaded=
"no">
2883 <autodoc>SetUpdateInterval(long updateInterval)
</autodoc>
2885 <param name=
"updateInterval" type=
"long" default=
""/>
2888 <staticmethod name=
"GetUpdateInterval" overloaded=
"no">
2889 <autodoc>GetUpdateInterval() -
> long
</autodoc>
2891 <staticmethod name=
"CanUpdate" overloaded=
"no">
2892 <autodoc>CanUpdate(Window win) -
> bool
</autodoc>
2894 <param name=
"win" type=
"p.wxWindow" default=
""/>
2897 <staticmethod name=
"ResetUpdateTime" overloaded=
"no">
2898 <autodoc>ResetUpdateTime()
</autodoc>
2900 <staticmethod name=
"SetMode" overloaded=
"no">
2901 <autodoc>SetMode(int mode)
</autodoc>
2903 <param name=
"mode" type=
"wxUpdateUIMode" default=
""/>
2906 <staticmethod name=
"GetMode" overloaded=
"no">
2907 <autodoc>GetMode() -
> int
</autodoc>
2911 #---------------------------------------------------------------------------
2913 <class name=
"SysColourChangedEvent" oldname=
"wxSysColourChangedEvent" module=
"core">
2914 <baseclass name=
"wxEvent"/>
2915 <constructor name=
"SysColourChangedEvent" overloaded=
"no">
2916 <autodoc>__init__() -
> SysColourChangedEvent
</autodoc>
2920 #---------------------------------------------------------------------------
2922 <class name=
"MouseCaptureChangedEvent" oldname=
"wxMouseCaptureChangedEvent" module=
"core">
2923 <baseclass name=
"wxEvent"/>
2924 <constructor name=
"MouseCaptureChangedEvent" overloaded=
"no">
2925 <autodoc>__init__(int winid=
0, Window gainedCapture=None) -
> MouseCaptureChangedEvent
</autodoc>
2927 <param name=
"winid" type=
"int" default=
"0"/>
2928 <param name=
"gainedCapture" type=
"p.wxWindow" default=
"NULL"/>
2931 <method name=
"GetCapturedWindow" overloaded=
"no">
2932 <autodoc>GetCapturedWindow() -
> Window
</autodoc>
2936 #---------------------------------------------------------------------------
2938 <class name=
"DisplayChangedEvent" oldname=
"wxDisplayChangedEvent" module=
"core">
2939 <baseclass name=
"wxEvent"/>
2940 <constructor name=
"DisplayChangedEvent" overloaded=
"no">
2941 <autodoc>__init__() -
> DisplayChangedEvent
</autodoc>
2945 #---------------------------------------------------------------------------
2947 <class name=
"PaletteChangedEvent" oldname=
"wxPaletteChangedEvent" module=
"core">
2948 <baseclass name=
"wxEvent"/>
2949 <constructor name=
"PaletteChangedEvent" overloaded=
"no">
2950 <autodoc>__init__(int id=
0) -
> PaletteChangedEvent
</autodoc>
2952 <param name=
"id" type=
"int" default=
"0"/>
2955 <method name=
"SetChangedWindow" overloaded=
"no">
2956 <autodoc>SetChangedWindow(Window win)
</autodoc>
2958 <param name=
"win" type=
"p.wxWindow" default=
""/>
2961 <method name=
"GetChangedWindow" overloaded=
"no">
2962 <autodoc>GetChangedWindow() -
> Window
</autodoc>
2966 #---------------------------------------------------------------------------
2968 <class name=
"QueryNewPaletteEvent" oldname=
"wxQueryNewPaletteEvent" module=
"core">
2969 <baseclass name=
"wxEvent"/>
2970 <constructor name=
"QueryNewPaletteEvent" overloaded=
"no">
2971 <autodoc>__init__(int winid=
0) -
> QueryNewPaletteEvent
</autodoc>
2973 <param name=
"winid" type=
"int" default=
"0"/>
2976 <method name=
"SetPaletteRealized" overloaded=
"no">
2977 <autodoc>SetPaletteRealized(bool realized)
</autodoc>
2979 <param name=
"realized" type=
"bool" default=
""/>
2982 <method name=
"GetPaletteRealized" overloaded=
"no">
2983 <autodoc>GetPaletteRealized() -
> bool
</autodoc>
2987 #---------------------------------------------------------------------------
2989 <class name=
"NavigationKeyEvent" oldname=
"wxNavigationKeyEvent" module=
"core">
2990 <baseclass name=
"wxEvent"/>
2991 <constructor name=
"NavigationKeyEvent" overloaded=
"no">
2992 <autodoc>__init__() -
> NavigationKeyEvent
</autodoc>
2994 <method name=
"GetDirection" overloaded=
"no">
2995 <autodoc>GetDirection() -
> bool
</autodoc>
2997 <method name=
"SetDirection" overloaded=
"no">
2998 <autodoc>SetDirection(bool bForward)
</autodoc>
3000 <param name=
"bForward" type=
"bool" default=
""/>
3003 <method name=
"IsWindowChange" overloaded=
"no">
3004 <autodoc>IsWindowChange() -
> bool
</autodoc>
3006 <method name=
"SetWindowChange" overloaded=
"no">
3007 <autodoc>SetWindowChange(bool bIs)
</autodoc>
3009 <param name=
"bIs" type=
"bool" default=
""/>
3012 <method name=
"GetCurrentFocus" overloaded=
"no">
3013 <autodoc>GetCurrentFocus() -
> Window
</autodoc>
3015 <method name=
"SetCurrentFocus" overloaded=
"no">
3016 <autodoc>SetCurrentFocus(Window win)
</autodoc>
3018 <param name=
"win" type=
"p.wxWindow" default=
""/>
3023 #---------------------------------------------------------------------------
3025 <class name=
"WindowCreateEvent" oldname=
"wxWindowCreateEvent" module=
"core">
3026 <baseclass name=
"wxCommandEvent"/>
3027 <constructor name=
"WindowCreateEvent" overloaded=
"no">
3028 <autodoc>__init__(Window win=None) -
> WindowCreateEvent
</autodoc>
3030 <param name=
"win" type=
"p.wxWindow" default=
"NULL"/>
3033 <method name=
"GetWindow" overloaded=
"no">
3034 <autodoc>GetWindow() -
> Window
</autodoc>
3037 <class name=
"WindowDestroyEvent" oldname=
"wxWindowDestroyEvent" module=
"core">
3038 <baseclass name=
"wxCommandEvent"/>
3039 <constructor name=
"WindowDestroyEvent" overloaded=
"no">
3040 <autodoc>__init__(Window win=None) -
> WindowDestroyEvent
</autodoc>
3042 <param name=
"win" type=
"p.wxWindow" default=
"NULL"/>
3045 <method name=
"GetWindow" overloaded=
"no">
3046 <autodoc>GetWindow() -
> Window
</autodoc>
3050 #---------------------------------------------------------------------------
3052 <class name=
"ContextMenuEvent" oldname=
"wxContextMenuEvent" module=
"core">
3053 <baseclass name=
"wxCommandEvent"/>
3054 <constructor name=
"ContextMenuEvent" overloaded=
"no">
3055 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> ContextMenuEvent
</autodoc>
3057 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
3058 <param name=
"winid" type=
"int" default=
"0"/>
3059 <param name=
"pt" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
3062 <method name=
"GetPosition" overloaded=
"no">
3063 <autodoc>GetPosition() -
> Point
</autodoc>
3065 <method name=
"SetPosition" overloaded=
"no">
3066 <autodoc>SetPosition(Point pos)
</autodoc>
3068 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
3073 #---------------------------------------------------------------------------
3075 <class name=
"IdleEvent" oldname=
"wxIdleEvent" module=
"core">
3076 <baseclass name=
"wxEvent"/>
3077 <constructor name=
"IdleEvent" overloaded=
"no">
3078 <autodoc>__init__() -
> IdleEvent
</autodoc>
3080 <method name=
"RequestMore" overloaded=
"no">
3081 <autodoc>RequestMore(bool needMore=True)
</autodoc>
3083 <param name=
"needMore" type=
"bool" default=
"True"/>
3086 <method name=
"MoreRequested" overloaded=
"no">
3087 <autodoc>MoreRequested() -
> bool
</autodoc>
3089 <staticmethod name=
"SetMode" overloaded=
"no">
3090 <autodoc>SetMode(int mode)
</autodoc>
3092 <param name=
"mode" type=
"wxIdleMode" default=
""/>
3095 <staticmethod name=
"GetMode" overloaded=
"no">
3096 <autodoc>GetMode() -
> int
</autodoc>
3098 <staticmethod name=
"CanSend" overloaded=
"no">
3099 <autodoc>CanSend(Window win) -
> bool
</autodoc>
3101 <param name=
"win" type=
"p.wxWindow" default=
""/>
3106 #---------------------------------------------------------------------------
3108 <class name=
"PyEvent" oldname=
"wxPyEvent" module=
"core">
3109 <baseclass name=
"wxEvent"/>
3110 <constructor name=
"PyEvent" overloaded=
"no">
3111 <autodoc>__init__(int winid=
0, wxEventType commandType=wxEVT_NULL) -
> PyEvent
</autodoc>
3113 <param name=
"winid" type=
"int" default=
"0"/>
3114 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
3117 <destructor name=
"~wxPyEvent">
3118 <autodoc>__del__()
</autodoc>
3120 <method name=
"SetSelf" overloaded=
"no">
3121 <autodoc>SetSelf(PyObject self)
</autodoc>
3123 <param name=
"self" type=
"p.PyObject" default=
""/>
3126 <method name=
"GetSelf" overloaded=
"no">
3127 <autodoc>GetSelf() -
> PyObject
</autodoc>
3130 <class name=
"PyCommandEvent" oldname=
"wxPyCommandEvent" module=
"core">
3131 <baseclass name=
"wxCommandEvent"/>
3132 <constructor name=
"PyCommandEvent" overloaded=
"no">
3133 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> PyCommandEvent
</autodoc>
3135 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
3136 <param name=
"id" type=
"int" default=
"0"/>
3139 <destructor name=
"~wxPyCommandEvent">
3140 <autodoc>__del__()
</autodoc>
3142 <method name=
"SetSelf" overloaded=
"no">
3143 <autodoc>SetSelf(PyObject self)
</autodoc>
3145 <param name=
"self" type=
"p.PyObject" default=
""/>
3148 <method name=
"GetSelf" overloaded=
"no">
3149 <autodoc>GetSelf() -
> PyObject
</autodoc>
3153 #---------------------------------------------------------------------------
3155 <class name=
"PyApp" oldname=
"wxPyApp" module=
"core">
3156 <baseclass name=
"wxEvtHandler"/>
3157 <constructor name=
"PyApp" overloaded=
"no">
3158 <autodoc>__init__() -
> PyApp
</autodoc>
3159 <docstring>Create a new application object, starting the bootstrap process.
</docstring>
3161 <destructor name=
"~wxPyApp">
3162 <autodoc>__del__()
</autodoc>
3164 <method name=
"_setCallbackInfo" overloaded=
"no">
3165 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
3167 <param name=
"self" type=
"p.PyObject" default=
""/>
3168 <param name=
"_class" type=
"p.PyObject" default=
""/>
3171 <method name=
"GetAppName" overloaded=
"no">
3172 <autodoc>GetAppName() -
> String
</autodoc>
3173 <docstring>Get the application name.
</docstring>
3175 <method name=
"SetAppName" overloaded=
"no">
3176 <autodoc>SetAppName(String name)
</autodoc>
3177 <docstring>Set the application name. This value may be used automatically
3178 by wx.Config and such.
</docstring>
3180 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
3183 <method name=
"GetClassName" overloaded=
"no">
3184 <autodoc>GetClassName() -
> String
</autodoc>
3185 <docstring>Get the application's class name.
</docstring>
3187 <method name=
"SetClassName" overloaded=
"no">
3188 <autodoc>SetClassName(String name)
</autodoc>
3189 <docstring>Set the application's class name. This value may be used for X-resources if
3190 applicable for the platform
</docstring>
3192 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
3195 <method name=
"GetVendorName" overloaded=
"no">
3196 <autodoc>GetVendorName() -
> String
</autodoc>
3197 <docstring>Get the application's vendor name.
</docstring>
3199 <method name=
"SetVendorName" overloaded=
"no">
3200 <autodoc>SetVendorName(String name)
</autodoc>
3201 <docstring>Set the application's vendor name. This value may be used automatically
3202 by wx.Config and such.
</docstring>
3204 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
3207 <method name=
"GetTraits" overloaded=
"no">
3208 <autodoc>GetTraits() -
> wxAppTraits
</autodoc>
3209 <docstring>Create the app traits object to which we delegate for everything which either
3210 should be configurable by the user (then he can change the default behaviour
3211 simply by overriding CreateTraits() and returning his own traits object) or
3212 which is GUI/console dependent as then wx.AppTraits allows us to abstract the
3213 differences behind the common facade
</docstring>
3215 <method name=
"ProcessPendingEvents" overloaded=
"no">
3216 <autodoc>ProcessPendingEvents()
</autodoc>
3217 <docstring>Process all events in the Pending Events list -- it is necessary to call this
3218 function to process posted events. This happens during each event loop
3219 iteration.
</docstring>
3221 <method name=
"Yield" overloaded=
"no">
3222 <autodoc>Yield(bool onlyIfNeeded=False) -
> bool
</autodoc>
3223 <docstring>Process all currently pending events right now, instead of waiting until
3224 return to the event loop. It is an error to call Yield() recursively unless
3225 the value of onlyIfNeeded is True.
3227 WARNING: This function is dangerous as it can lead to unexpected
3228 reentrancies (i.e. when called from an event handler it
3229 may result in calling the same event handler again), use
3230 with _extreme_ care or, better, don't use at all!
3233 <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/>
3236 <method name=
"WakeUpIdle" overloaded=
"no">
3237 <autodoc>WakeUpIdle()
</autodoc>
3238 <docstring>Make sure that idle events are sent again
</docstring>
3240 <method name=
"MainLoop" overloaded=
"no">
3241 <autodoc>MainLoop() -
> int
</autodoc>
3242 <docstring>Execute the main GUI loop, the function returns when the loop ends.
</docstring>
3244 <method name=
"Exit" overloaded=
"no">
3245 <autodoc>Exit()
</autodoc>
3246 <docstring>Exit the main loop thus terminating the application.
</docstring>
3248 <method name=
"ExitMainLoop" overloaded=
"no">
3249 <autodoc>ExitMainLoop()
</autodoc>
3250 <docstring>Exit the main GUI loop during the next iteration (i.e. it does not
3251 stop the program immediately!)
</docstring>
3253 <method name=
"Pending" overloaded=
"no">
3254 <autodoc>Pending() -
> bool
</autodoc>
3255 <docstring>Returns True if there are unprocessed events in the event queue.
</docstring>
3257 <method name=
"Dispatch" overloaded=
"no">
3258 <autodoc>Dispatch() -
> bool
</autodoc>
3259 <docstring>Process the first event in the event queue (blocks until an event
3260 appears if there are none currently)
</docstring>
3262 <method name=
"ProcessIdle" overloaded=
"no">
3263 <autodoc>ProcessIdle() -
> bool
</autodoc>
3264 <docstring>Called from the MainLoop when the application becomes idle and sends an
3265 IdleEvent to all interested parties. Returns True is more idle events are
3266 needed, False if not.
</docstring>
3268 <method name=
"SendIdleEvents" overloaded=
"no">
3269 <autodoc>SendIdleEvents(Window win, IdleEvent event) -
> bool
</autodoc>
3270 <docstring>Send idle event to window and all subwindows. Returns True if more idle time
3271 is requested.
</docstring>
3273 <param name=
"win" type=
"p.wxWindow" default=
""/>
3274 <param name=
"event" type=
"r.wxIdleEvent" default=
""/>
3277 <method name=
"IsActive" overloaded=
"no">
3278 <autodoc>IsActive() -
> bool
</autodoc>
3279 <docstring>Return True if our app has focus.
</docstring>
3281 <method name=
"SetTopWindow" overloaded=
"no">
3282 <autodoc>SetTopWindow(Window win)
</autodoc>
3283 <docstring>Set the "main" top level window
</docstring>
3285 <param name=
"win" type=
"p.wxWindow" default=
""/>
3288 <method name=
"GetTopWindow" overloaded=
"no">
3289 <autodoc>GetTopWindow() -
> Window
</autodoc>
3290 <docstring>Return the "main" top level window (if it hadn't been set previously with
3291 SetTopWindow(), will return just some top level window and, if there not any,
3292 will return None)
</docstring>
3294 <method name=
"SetExitOnFrameDelete" overloaded=
"no">
3295 <autodoc>SetExitOnFrameDelete(bool flag)
</autodoc>
3296 <docstring>Control the exit behaviour: by default, the program will exit the main loop
3297 (and so, usually, terminate) when the last top-level program window is
3298 deleted. Beware that if you disable this behaviour (with
3299 SetExitOnFrameDelete(False)), you'll have to call ExitMainLoop() explicitly
3303 <param name=
"flag" type=
"bool" default=
""/>
3306 <method name=
"GetExitOnFrameDelete" overloaded=
"no">
3307 <autodoc>GetExitOnFrameDelete() -
> bool
</autodoc>
3308 <docstring>Get the current exit behaviour setting.
</docstring>
3310 <method name=
"SetUseBestVisual" overloaded=
"no">
3311 <autodoc>SetUseBestVisual(bool flag)
</autodoc>
3312 <docstring>Set whether the app should try to use the best available visual on systems
3313 where more than one is available, (Sun, SGI, XFree86
4, etc.)
</docstring>
3315 <param name=
"flag" type=
"bool" default=
""/>
3318 <method name=
"GetUseBestVisual" overloaded=
"no">
3319 <autodoc>GetUseBestVisual() -
> bool
</autodoc>
3320 <docstring>Get current UseBestVisual setting.
</docstring>
3322 <method name=
"SetPrintMode" overloaded=
"no">
3323 <autodoc>SetPrintMode(int mode)
</autodoc>
3325 <param name=
"mode" type=
"int" default=
""/>
3328 <method name=
"GetPrintMode" overloaded=
"no">
3329 <autodoc>GetPrintMode() -
> int
</autodoc>
3331 <method name=
"SetAssertMode" overloaded=
"no">
3332 <autodoc>SetAssertMode(int mode)
</autodoc>
3333 <docstring>Set the OnAssert behaviour for debug and hybrid builds. The following flags
3334 may be or'd together:
3336 wx.PYAPP_ASSERT_SUPPRESS Don't do anything
3337 wx.PYAPP_ASSERT_EXCEPTION Turn it into a Python exception if possible (default)
3338 wx.PYAPP_ASSERT_DIALOG Display a message dialog
3339 wx.PYAPP_ASSERT_LOG Write the assertion info to the wx.Log
3342 <param name=
"mode" type=
"int" default=
""/>
3345 <method name=
"GetAssertMode" overloaded=
"no">
3346 <autodoc>GetAssertMode() -
> int
</autodoc>
3347 <docstring>Get the current OnAssert behaviour setting.
</docstring>
3349 <staticmethod name=
"GetMacSupportPCMenuShortcuts" overloaded=
"no">
3350 <autodoc>GetMacSupportPCMenuShortcuts() -
> bool
</autodoc>
3352 <staticmethod name=
"GetMacAboutMenuItemId" overloaded=
"no">
3353 <autodoc>GetMacAboutMenuItemId() -
> long
</autodoc>
3355 <staticmethod name=
"GetMacPreferencesMenuItemId" overloaded=
"no">
3356 <autodoc>GetMacPreferencesMenuItemId() -
> long
</autodoc>
3358 <staticmethod name=
"GetMacExitMenuItemId" overloaded=
"no">
3359 <autodoc>GetMacExitMenuItemId() -
> long
</autodoc>
3361 <staticmethod name=
"GetMacHelpMenuTitleName" overloaded=
"no">
3362 <autodoc>GetMacHelpMenuTitleName() -
> String
</autodoc>
3364 <staticmethod name=
"SetMacSupportPCMenuShortcuts" overloaded=
"no">
3365 <autodoc>SetMacSupportPCMenuShortcuts(bool val)
</autodoc>
3367 <param name=
"val" type=
"bool" default=
""/>
3370 <staticmethod name=
"SetMacAboutMenuItemId" overloaded=
"no">
3371 <autodoc>SetMacAboutMenuItemId(long val)
</autodoc>
3373 <param name=
"val" type=
"long" default=
""/>
3376 <staticmethod name=
"SetMacPreferencesMenuItemId" overloaded=
"no">
3377 <autodoc>SetMacPreferencesMenuItemId(long val)
</autodoc>
3379 <param name=
"val" type=
"long" default=
""/>
3382 <staticmethod name=
"SetMacExitMenuItemId" overloaded=
"no">
3383 <autodoc>SetMacExitMenuItemId(long val)
</autodoc>
3385 <param name=
"val" type=
"long" default=
""/>
3388 <staticmethod name=
"SetMacHelpMenuTitleName" overloaded=
"no">
3389 <autodoc>SetMacHelpMenuTitleName(String val)
</autodoc>
3391 <param name=
"val" type=
"r.q(const).wxString" default=
""/>
3394 <method name=
"_BootstrapApp" overloaded=
"no">
3395 <autodoc>_BootstrapApp()
</autodoc>
3396 <docstring>For internal use only
</docstring>
3398 <staticmethod name=
"GetComCtl32Version" overloaded=
"no">
3399 <autodoc>GetComCtl32Version() -
> int
</autodoc>
3400 <docstring>Returns
400,
470,
471 for comctl32.dll
4.00,
4.70,
4.71 or
0 if it
3401 wasn't found at all. Raises an exception on non-Windows platforms.
</docstring>
3405 #---------------------------------------------------------------------------
3407 <function oldname=
"wxExit" name=
"Exit" overloaded=
"no">
3408 <autodoc>Exit()
</autodoc>
3409 <docstring>Force an exit of the application. Convenience for wx.GetApp().Exit()
</docstring>
3411 <function oldname=
"wxYield" name=
"Yield" overloaded=
"no">
3412 <autodoc>Yield() -
> bool
</autodoc>
3413 <docstring>Yield to other apps/messages. Convenience for wx.GetApp().Yield()
</docstring>
3415 <function oldname=
"wxYieldIfNeeded" name=
"YieldIfNeeded" overloaded=
"no">
3416 <autodoc>YieldIfNeeded() -
> bool
</autodoc>
3417 <docstring>Yield to other apps/messages. Convenience for wx.GetApp().Yield(True)
</docstring>
3419 <function oldname=
"wxSafeYield" name=
"SafeYield" overloaded=
"no">
3420 <autodoc>SafeYield(Window win=None, bool onlyIfNeeded=False) -
> bool
</autodoc>
3421 <docstring>This function is similar to wx.Yield, except that it disables the user input
3422 to all program windows before calling wx.Yield and re-enables it again
3423 afterwards. If win is not None, this window will remain enabled, allowing the
3424 implementation of some limited user interaction.
3426 Returns the result of the call to wx.Yield.
</docstring>
3428 <param name=
"win" type=
"p.wxWindow" default=
"NULL"/>
3429 <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/>
3432 <function oldname=
"wxWakeUpIdle" name=
"WakeUpIdle" overloaded=
"no">
3433 <autodoc>WakeUpIdle()
</autodoc>
3434 <docstring>Cause the message queue to become empty again, so idle events will be sent.
</docstring>
3436 <function oldname=
"wxPostEvent" name=
"PostEvent" overloaded=
"no">
3437 <autodoc>PostEvent(EvtHandler dest, Event event)
</autodoc>
3438 <docstring>Send an event to a window or other wx.EvtHandler to be processed later.
</docstring>
3440 <param name=
"dest" type=
"p.wxEvtHandler" default=
""/>
3441 <param name=
"event" type=
"r.wxEvent" default=
""/>
3444 <function oldname=
"wxApp_CleanUp" name=
"App_CleanUp" overloaded=
"no">
3445 <autodoc>App_CleanUp()
</autodoc>
3446 <docstring>For internal use only, it is used to cleanup after wxWindows when Python shuts down.
</docstring>
3448 <function oldname=
"wxGetApp" name=
"GetApp" overloaded=
"no">
3449 <autodoc>GetApp() -
> PyApp
</autodoc>
3450 <docstring>Return a reference to the current wx.App object.
</docstring>
3453 #----------------------------------------------------------------------
3455 class PyOnDemandOutputWindow:
3457 A class that can be used for redirecting Python's stdout and
3458 stderr streams. It will do nothing until something is wrriten to
3459 the stream at which point it will create a Frame with a text area
3460 and write the text there.
3462 def __init__(self, title = "wxPython: stdout/stderr"):
3467 def SetParent(self, parent):
3468 """Set the window to be used as the popup Frame's parent."""
3469 self.parent = parent
3472 def CreateOutputWindow(self, st):
3473 self.frame = wx.Frame(self.parent, -
1, self.title,
3474 style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
3475 self.text = wx.TextCtrl(self.frame, -
1, "",
3476 style = wx.TE_MULTILINE | wx.TE_READONLY)
3477 self.text.AppendText(st)
3478 self.frame.SetSize((
450,
300))
3479 self.frame.Show(True)
3480 EVT_CLOSE(self.frame, self.OnCloseWindow)
3483 # These methods provide the file-like output behaviour.
3484 def write(self, text):
3486 Create the output window if needed and write the string to it.
3487 If not called in the context of the gui thread then uses
3488 CallAfter to do the work there.
3490 if self.frame is None:
3491 if not wx.Thread_IsMain():
3492 wx.CallAfter(self.CreateOutputWindow, text)
3494 self.CreateOutputWindow(text)
3496 if not wx.Thread_IsMain():
3497 wx.CallAfter(self.text.AppendText, text)
3499 self.text.AppendText(text)
3503 if self.frame is not None:
3504 wx.CallAfter(self.frame.Close)
3507 def OnCloseWindow(self, event):
3508 if self.frame is not None:
3509 self.frame.Destroy()
3513 #----------------------------------------------------------------------
3515 _defRedirect = (wx.Platform == '__WXMSW__' or wx.Platform == '__WXMAC__')
3517 class App(wx.PyApp):
3519 The main application class. Derive from this and implement an OnInit
3520 method that creates a frame and then calls self.SetTopWindow(frame)
3522 outputWindowClass = PyOnDemandOutputWindow
3524 def __init__(self, redirect=_defRedirect, filename=None, useBestVisual=False):
3525 wx.PyApp.__init__(self)
3527 if wx.Platform == "__WXMAC__":
3530 if not MacOS.WMAvailable():
3532 This program needs access to the screen. Please run with 'pythonw',
3533 not 'python', and only when you are logged in on the main display of
3539 # This has to be done before OnInit
3540 self.SetUseBestVisual(useBestVisual)
3542 # Set the default handler for SIGINT. This fixes a problem
3543 # where if Ctrl-C is pressed in the console that started this
3544 # app then it will not appear to do anything, (not even send
3545 # KeyboardInterrupt???) but will later segfault on exit. By
3546 # setting the default handler then the app will exit, as
3547 # expected (depending on platform.)
3550 signal.signal(signal.SIGINT, signal.SIG_DFL)
3554 # Save and redirect the stdio to a window?
3555 self.stdioWin = None
3556 self.saveStdio = (_sys.stdout, _sys.stderr)
3558 self.RedirectStdio(filename)
3560 # This finishes the initialization of wxWindows and then calls
3561 # the OnInit that should be present in the derived class
3562 self._BootstrapApp()
3567 self.RestoreStdio() # Just in case the MainLoop was overridden
3572 def SetTopWindow(self, frame):
3573 """Set the \\"main\\" top level window"""
3575 self.stdioWin.SetParent(frame)
3576 wx.PyApp.SetTopWindow(self, frame)
3580 """Execute the main GUI event loop"""
3581 wx.PyApp.MainLoop(self)
3585 def RedirectStdio(self, filename):
3586 """Redirect sys.stdout and sys.stderr to a file or a popup window."""
3588 _sys.stdout = _sys.stderr = open(filename, 'a')
3590 self.stdioWin = self.outputWindowClass()
3591 _sys.stdout = _sys.stderr = self.stdioWin
3594 def RestoreStdio(self):
3595 _sys.stdout, _sys.stderr = self.saveStdio
3599 # change from wxPyApp_ to wxApp_
3600 App_GetMacSupportPCMenuShortcuts = _core.PyApp_GetMacSupportPCMenuShortcuts
3601 App_GetMacAboutMenuItemId = _core.PyApp_GetMacAboutMenuItemId
3602 App_GetMacPreferencesMenuItemId = _core.PyApp_GetMacPreferencesMenuItemId
3603 App_GetMacExitMenuItemId = _core.PyApp_GetMacExitMenuItemId
3604 App_GetMacHelpMenuTitleName = _core.PyApp_GetMacHelpMenuTitleName
3605 App_SetMacSupportPCMenuShortcuts = _core.PyApp_SetMacSupportPCMenuShortcuts
3606 App_SetMacAboutMenuItemId = _core.PyApp_SetMacAboutMenuItemId
3607 App_SetMacPreferencesMenuItemId = _core.PyApp_SetMacPreferencesMenuItemId
3608 App_SetMacExitMenuItemId = _core.PyApp_SetMacExitMenuItemId
3609 App_SetMacHelpMenuTitleName = _core.PyApp_SetMacHelpMenuTitleName
3610 App_GetComCtl32Version = _core.PyApp_GetComCtl32Version
3612 #----------------------------------------------------------------------------
3614 class PySimpleApp(wx.App):
3616 A simple application class. You can just create one of these and
3617 then then make your top level windows later, and not have to worry
3620 def __init__(self, redirect=False, filename=None, useBestVisual=False):
3621 wx.App.__init__(self, redirect, filename, useBestVisual)
3624 wx.InitAllImageHandlers()
3628 # Is anybody using this one?
3629 class PyWidgetTester(wx.App):
3630 def __init__(self, size = (
250,
100)):
3632 wx.App.__init__(self,
0)
3635 self.frame = wx.Frame(None, -
1, "Widget Tester", pos=(
0,
0), size=self.size)
3636 self.SetTopWindow(self.frame)
3639 def SetWidget(self, widgetClass, *args):
3640 w = widgetClass(self.frame, *args)
3641 self.frame.Show(True)
3643 #----------------------------------------------------------------------------
3644 # DO NOT hold any other references to this object. This is how we
3645 # know when to cleanup system resources that wxWin is holding. When
3646 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
3647 # goes to zero and it calls the wxApp_CleanUp function.
3649 class __wxPyCleanup:
3651 self.cleanup = _core.App_CleanUp
3655 _sys.__wxPythonCleanup = __wxPyCleanup()
3657 ## # another possible solution, but it gets called too early...
3658 ## if sys.version[
0] == '
2':
3660 ## atexit.register(_core.wxApp_CleanUp)
3662 ## sys.exitfunc = _core.wxApp_CleanUp
3665 #----------------------------------------------------------------------------
3668 #---------------------------------------------------------------------------
3670 <class name=
"AcceleratorEntry" oldname=
"wxAcceleratorEntry" module=
"core">
3671 <constructor name=
"AcceleratorEntry" overloaded=
"no">
3672 <autodoc>__init__(int flags=
0, int keyCode=
0, int cmd=
0, MenuItem item=None) -
> AcceleratorEntry
</autodoc>
3674 <param name=
"flags" type=
"int" default=
"0"/>
3675 <param name=
"keyCode" type=
"int" default=
"0"/>
3676 <param name=
"cmd" type=
"int" default=
"0"/>
3677 <param name=
"item" type=
"p.wxMenuItem" default=
"NULL"/>
3680 <destructor name=
"~wxAcceleratorEntry">
3681 <autodoc>__del__()
</autodoc>
3683 <method name=
"Set" overloaded=
"no">
3684 <autodoc>Set(int flags, int keyCode, int cmd, MenuItem item=None)
</autodoc>
3686 <param name=
"flags" type=
"int" default=
""/>
3687 <param name=
"keyCode" type=
"int" default=
""/>
3688 <param name=
"cmd" type=
"int" default=
""/>
3689 <param name=
"item" type=
"p.wxMenuItem" default=
"NULL"/>
3692 <method name=
"SetMenuItem" overloaded=
"no">
3693 <autodoc>SetMenuItem(MenuItem item)
</autodoc>
3695 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
3698 <method name=
"GetMenuItem" overloaded=
"no">
3699 <autodoc>GetMenuItem() -
> MenuItem
</autodoc>
3701 <method name=
"GetFlags" overloaded=
"no">
3702 <autodoc>GetFlags() -
> int
</autodoc>
3704 <method name=
"GetKeyCode" overloaded=
"no">
3705 <autodoc>GetKeyCode() -
> int
</autodoc>
3707 <method name=
"GetCommand" overloaded=
"no">
3708 <autodoc>GetCommand() -
> int
</autodoc>
3711 <class name=
"AcceleratorTable" oldname=
"wxAcceleratorTable" module=
"core">
3712 <baseclass name=
"wxObject"/>
3713 <constructor name=
"AcceleratorTable" overloaded=
"no">
3714 <autodoc>__init__(entries) -
> AcceleratorTable
</autodoc>
3715 <docstring>Construct an AcceleratorTable from a list of AcceleratorEntry items or
3716 3-tuples (flags, keyCode, cmdID)
</docstring>
3718 <param name=
"n" type=
"int" default=
""/>
3719 <param name=
"entries" type=
"p.q(const).wxAcceleratorEntry" default=
""/>
3722 <destructor name=
"~wxAcceleratorTable">
3723 <autodoc>__del__()
</autodoc>
3725 <method name=
"Ok" overloaded=
"no">
3726 <autodoc>Ok() -
> bool
</autodoc>
3729 <function oldname=
"wxGetAccelFromString" name=
"GetAccelFromString" overloaded=
"no">
3730 <autodoc>GetAccelFromString(String label) -
> AcceleratorEntry
</autodoc>
3732 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
3736 #---------------------------------------------------------------------------
3738 <class name=
"Window" oldname=
"wxWindow" module=
"core">
3739 <baseclass name=
"wxEvtHandler"/>
3740 <constructor name=
"Window" overloaded=
"no">
3741 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3742 long style=
0, String name=PanelNameStr) -
> Window
</autodoc>
3744 <param name=
"parent" type=
"p.wxWindow" default=
""/>
3745 <param name=
"id" type=
"q(const).int" default=
""/>
3746 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
3747 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
3748 <param name=
"style" type=
"long" default=
"0"/>
3749 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
3752 <constructor name=
"PreWindow" overloaded=
"no">
3753 <autodoc>PreWindow() -
> Window
</autodoc>
3755 <method name=
"Create" overloaded=
"no">
3756 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3757 long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
3759 <param name=
"parent" type=
"p.wxWindow" default=
""/>
3760 <param name=
"id" type=
"q(const).int" default=
""/>
3761 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
3762 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
3763 <param name=
"style" type=
"long" default=
"0"/>
3764 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
3767 <method name=
"Close" overloaded=
"no">
3768 <autodoc>Close(bool force=False) -
> bool
</autodoc>
3770 <param name=
"force" type=
"bool" default=
"False"/>
3773 <method name=
"Destroy" overloaded=
"no">
3774 <autodoc>Destroy() -
> bool
</autodoc>
3775 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
3777 <method name=
"DestroyChildren" overloaded=
"no">
3778 <autodoc>DestroyChildren() -
> bool
</autodoc>
3780 <method name=
"IsBeingDeleted" overloaded=
"no">
3781 <autodoc>IsBeingDeleted() -
> bool
</autodoc>
3783 <method name=
"SetTitle" overloaded=
"no">
3784 <autodoc>SetTitle(String title)
</autodoc>
3786 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
3789 <method name=
"GetTitle" overloaded=
"no">
3790 <autodoc>GetTitle() -
> String
</autodoc>
3792 <method name=
"SetLabel" overloaded=
"no">
3793 <autodoc>SetLabel(String label)
</autodoc>
3795 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
3798 <method name=
"GetLabel" overloaded=
"no">
3799 <autodoc>GetLabel() -
> String
</autodoc>
3801 <method name=
"SetName" overloaded=
"no">
3802 <autodoc>SetName(String name)
</autodoc>
3804 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
3807 <method name=
"GetName" overloaded=
"no">
3808 <autodoc>GetName() -
> String
</autodoc>
3810 <method name=
"SetId" overloaded=
"no">
3811 <autodoc>SetId(int winid)
</autodoc>
3813 <param name=
"winid" type=
"int" default=
""/>
3816 <method name=
"GetId" overloaded=
"no">
3817 <autodoc>GetId() -
> int
</autodoc>
3819 <staticmethod name=
"NewControlId" overloaded=
"no">
3820 <autodoc>NewControlId() -
> int
</autodoc>
3822 <staticmethod name=
"NextControlId" overloaded=
"no">
3823 <autodoc>NextControlId(int winid) -
> int
</autodoc>
3825 <param name=
"winid" type=
"int" default=
""/>
3828 <staticmethod name=
"PrevControlId" overloaded=
"no">
3829 <autodoc>PrevControlId(int winid) -
> int
</autodoc>
3831 <param name=
"winid" type=
"int" default=
""/>
3834 <method name=
"SetSize" overloaded=
"no">
3835 <autodoc>SetSize(Size size)
</autodoc>
3837 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
3840 <method name=
"SetDimensions" overloaded=
"no">
3841 <autodoc>SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
3843 <param name=
"x" type=
"int" default=
""/>
3844 <param name=
"y" type=
"int" default=
""/>
3845 <param name=
"width" type=
"int" default=
""/>
3846 <param name=
"height" type=
"int" default=
""/>
3847 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
3850 <method name=
"SetRect" overloaded=
"no">
3851 <autodoc>SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
</autodoc>
3853 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
3854 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
3857 <method name=
"SetSizeWH" overloaded=
"no">
3858 <autodoc>SetSizeWH(int width, int height)
</autodoc>
3860 <param name=
"width" type=
"int" default=
""/>
3861 <param name=
"height" type=
"int" default=
""/>
3864 <method name=
"Move" overloaded=
"no">
3865 <autodoc>Move(Point pt, int flags=SIZE_USE_EXISTING)
</autodoc>
3867 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
3868 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
3871 <pythoncode> SetPosition = Move
</pythoncode>
3872 <method name=
"MoveXY" overloaded=
"no">
3873 <autodoc>MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
</autodoc>
3875 <param name=
"x" type=
"int" default=
""/>
3876 <param name=
"y" type=
"int" default=
""/>
3877 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
3880 <method name=
"Raise" overloaded=
"no">
3881 <autodoc>Raise()
</autodoc>
3883 <method name=
"Lower" overloaded=
"no">
3884 <autodoc>Lower()
</autodoc>
3886 <method name=
"SetClientSize" overloaded=
"no">
3887 <autodoc>SetClientSize(Size size)
</autodoc>
3889 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
3892 <method name=
"SetClientSizeWH" overloaded=
"no">
3893 <autodoc>SetClientSizeWH(int width, int height)
</autodoc>
3895 <param name=
"width" type=
"int" default=
""/>
3896 <param name=
"height" type=
"int" default=
""/>
3899 <method name=
"SetClientRect" overloaded=
"no">
3900 <autodoc>SetClientRect(Rect rect)
</autodoc>
3902 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
3905 <method name=
"GetPosition" overloaded=
"no">
3906 <autodoc>GetPosition() -
> Point
</autodoc>
3907 <docstring>Get the window's position.
</docstring>
3909 <method name=
"GetPositionTuple" overloaded=
"no">
3910 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
3911 <docstring>Get the window's position.
</docstring>
3913 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3914 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3917 <method name=
"GetSize" overloaded=
"no">
3918 <autodoc>GetSize() -
> Size
</autodoc>
3919 <docstring>Get the window size.
</docstring>
3921 <method name=
"GetSizeTuple" overloaded=
"no">
3922 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
3923 <docstring>Get the window size.
</docstring>
3925 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3926 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3929 <method name=
"GetRect" overloaded=
"no">
3930 <autodoc>GetRect() -
> Rect
</autodoc>
3932 <method name=
"GetClientSize" overloaded=
"no">
3933 <autodoc>GetClientSize() -
> Size
</autodoc>
3934 <docstring>Get the window's client size.
</docstring>
3936 <method name=
"GetClientSizeTuple" overloaded=
"no">
3937 <autodoc>GetClientSizeTuple() -
> (width, height)
</autodoc>
3938 <docstring>Get the window's client size.
</docstring>
3940 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3941 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3944 <method name=
"GetClientAreaOrigin" overloaded=
"no">
3945 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
3947 <method name=
"GetClientRect" overloaded=
"no">
3948 <autodoc>GetClientRect() -
> Rect
</autodoc>
3950 <method name=
"GetBestSize" overloaded=
"no">
3951 <autodoc>GetBestSize() -
> Size
</autodoc>
3952 <docstring>Get the size best suited for the window (in fact, minimal acceptable size
3953 using which it will still look "nice")
</docstring>
3955 <method name=
"GetBestSizeTuple" overloaded=
"no">
3956 <autodoc>GetBestSizeTuple() -
> (width, height)
</autodoc>
3957 <docstring>Get the size best suited for the window (in fact, minimal acceptable size
3958 using which it will still look "nice")
</docstring>
3960 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3961 <param name=
"OUTPUT" type=
"p.int" default=
""/>
3964 <method name=
"GetAdjustedBestSize" overloaded=
"no">
3965 <autodoc>GetAdjustedBestSize() -
> Size
</autodoc>
3967 <method name=
"Center" overloaded=
"no">
3968 <autodoc>Center(int direction=BOTH)
</autodoc>
3970 <param name=
"direction" type=
"int" default=
"wxBOTH"/>
3973 <pythoncode> Centre = Center
</pythoncode>
3974 <method name=
"CenterOnScreen" overloaded=
"no">
3975 <autodoc>CenterOnScreen(int dir=BOTH)
</autodoc>
3977 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
3980 <pythoncode> CentreOnScreen = CenterOnScreen
</pythoncode>
3981 <method name=
"CenterOnParent" overloaded=
"no">
3982 <autodoc>CenterOnParent(int dir=BOTH)
</autodoc>
3984 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
3987 <pythoncode> CentreOnParent = CenterOnParent
</pythoncode>
3988 <method name=
"Fit" overloaded=
"no">
3989 <autodoc>Fit()
</autodoc>
3991 <method name=
"FitInside" overloaded=
"no">
3992 <autodoc>FitInside()
</autodoc>
3994 <method name=
"SetSizeHints" overloaded=
"no">
3995 <autodoc>SetSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1, int incW=-
1,
3996 int incH=-
1)
</autodoc>
3998 <param name=
"minW" type=
"int" default=
""/>
3999 <param name=
"minH" type=
"int" default=
""/>
4000 <param name=
"maxW" type=
"int" default=
"-1"/>
4001 <param name=
"maxH" type=
"int" default=
"-1"/>
4002 <param name=
"incW" type=
"int" default=
"-1"/>
4003 <param name=
"incH" type=
"int" default=
"-1"/>
4006 <method name=
"SetVirtualSizeHints" overloaded=
"no">
4007 <autodoc>SetVirtualSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1)
</autodoc>
4009 <param name=
"minW" type=
"int" default=
""/>
4010 <param name=
"minH" type=
"int" default=
""/>
4011 <param name=
"maxW" type=
"int" default=
"-1"/>
4012 <param name=
"maxH" type=
"int" default=
"-1"/>
4015 <method name=
"GetMinWidth" overloaded=
"no">
4016 <autodoc>GetMinWidth() -
> int
</autodoc>
4018 <method name=
"GetMinHeight" overloaded=
"no">
4019 <autodoc>GetMinHeight() -
> int
</autodoc>
4021 <method name=
"GetMaxWidth" overloaded=
"no">
4022 <autodoc>GetMaxWidth() -
> int
</autodoc>
4024 <method name=
"GetMaxHeight" overloaded=
"no">
4025 <autodoc>GetMaxHeight() -
> int
</autodoc>
4027 <method name=
"GetMaxSize" overloaded=
"no">
4028 <autodoc>GetMaxSize() -
> Size
</autodoc>
4030 <method name=
"SetVirtualSize" overloaded=
"no">
4031 <autodoc>SetVirtualSize(Size size)
</autodoc>
4032 <docstring>Set the the virtual size of a window. For most windows this is just the
4033 client area of the window, but for some like scrolled windows it is more or
4034 less independent of the screen window size.
</docstring>
4036 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
4039 <method name=
"SetVirtualSizeWH" overloaded=
"no">
4040 <autodoc>SetVirtualSizeWH(int w, int h)
</autodoc>
4041 <docstring>Set the the virtual size of a window. For most windows this is just the
4042 client area of the window, but for some like scrolled windows it is more or
4043 less independent of the screen window size.
</docstring>
4045 <param name=
"w" type=
"int" default=
""/>
4046 <param name=
"h" type=
"int" default=
""/>
4049 <method name=
"GetVirtualSize" overloaded=
"no">
4050 <autodoc>GetVirtualSize() -
> Size
</autodoc>
4051 <docstring>Get the the virtual size of the window. For most windows this is just
4052 the client area of the window, but for some like scrolled windows it is
4053 more or less independent of the screen window size.
</docstring>
4055 <method name=
"GetVirtualSizeTuple" overloaded=
"no">
4056 <autodoc>GetVirtualSizeTuple() -
> (width, height)
</autodoc>
4057 <docstring>Get the the virtual size of the window. For most windows this is just
4058 the client area of the window, but for some like scrolled windows it is
4059 more or less independent of the screen window size.
</docstring>
4061 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4062 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4065 <method name=
"GetBestVirtualSize" overloaded=
"no">
4066 <autodoc>GetBestVirtualSize() -
> Size
</autodoc>
4068 <method name=
"Show" overloaded=
"no">
4069 <autodoc>Show(bool show=True) -
> bool
</autodoc>
4071 <param name=
"show" type=
"bool" default=
"True"/>
4074 <method name=
"Hide" overloaded=
"no">
4075 <autodoc>Hide() -
> bool
</autodoc>
4077 <method name=
"Enable" overloaded=
"no">
4078 <autodoc>Enable(bool enable=True) -
> bool
</autodoc>
4080 <param name=
"enable" type=
"bool" default=
"True"/>
4083 <method name=
"Disable" overloaded=
"no">
4084 <autodoc>Disable() -
> bool
</autodoc>
4086 <method name=
"IsShown" overloaded=
"no">
4087 <autodoc>IsShown() -
> bool
</autodoc>
4089 <method name=
"IsEnabled" overloaded=
"no">
4090 <autodoc>IsEnabled() -
> bool
</autodoc>
4092 <method name=
"SetWindowStyleFlag" overloaded=
"no">
4093 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
4095 <param name=
"style" type=
"long" default=
""/>
4098 <method name=
"GetWindowStyleFlag" overloaded=
"no">
4099 <autodoc>GetWindowStyleFlag() -
> long
</autodoc>
4101 <method name=
"SetWindowStyle" overloaded=
"no">
4102 <autodoc>SetWindowStyle(long style)
</autodoc>
4104 <param name=
"style" type=
"long" default=
""/>
4107 <method name=
"GetWindowStyle" overloaded=
"no">
4108 <autodoc>GetWindowStyle() -
> long
</autodoc>
4110 <method name=
"HasFlag" overloaded=
"no">
4111 <autodoc>HasFlag(int flag) -
> bool
</autodoc>
4113 <param name=
"flag" type=
"int" default=
""/>
4116 <method name=
"IsRetained" overloaded=
"no">
4117 <autodoc>IsRetained() -
> bool
</autodoc>
4119 <method name=
"SetExtraStyle" overloaded=
"no">
4120 <autodoc>SetExtraStyle(long exStyle)
</autodoc>
4122 <param name=
"exStyle" type=
"long" default=
""/>
4125 <method name=
"GetExtraStyle" overloaded=
"no">
4126 <autodoc>GetExtraStyle() -
> long
</autodoc>
4128 <method name=
"MakeModal" overloaded=
"no">
4129 <autodoc>MakeModal(bool modal=True)
</autodoc>
4131 <param name=
"modal" type=
"bool" default=
"True"/>
4134 <method name=
"SetThemeEnabled" overloaded=
"no">
4135 <autodoc>SetThemeEnabled(bool enableTheme)
</autodoc>
4137 <param name=
"enableTheme" type=
"bool" default=
""/>
4140 <method name=
"GetThemeEnabled" overloaded=
"no">
4141 <autodoc>GetThemeEnabled() -
> bool
</autodoc>
4143 <method name=
"ShouldInheritColours" overloaded=
"no">
4144 <autodoc>ShouldInheritColours() -
> bool
</autodoc>
4146 <method name=
"SetFocus" overloaded=
"no">
4147 <autodoc>SetFocus()
</autodoc>
4149 <method name=
"SetFocusFromKbd" overloaded=
"no">
4150 <autodoc>SetFocusFromKbd()
</autodoc>
4152 <staticmethod name=
"FindFocus" overloaded=
"no">
4153 <autodoc>FindFocus() -
> Window
</autodoc>
4155 <method name=
"AcceptsFocus" overloaded=
"no">
4156 <autodoc>AcceptsFocus() -
> bool
</autodoc>
4158 <method name=
"AcceptsFocusFromKeyboard" overloaded=
"no">
4159 <autodoc>AcceptsFocusFromKeyboard() -
> bool
</autodoc>
4161 <method name=
"GetDefaultItem" overloaded=
"no">
4162 <autodoc>GetDefaultItem() -
> Window
</autodoc>
4164 <method name=
"SetDefaultItem" overloaded=
"no">
4165 <autodoc>SetDefaultItem(Window child) -
> Window
</autodoc>
4167 <param name=
"child" type=
"p.wxWindow" default=
""/>
4170 <method name=
"SetTmpDefaultItem" overloaded=
"no">
4171 <autodoc>SetTmpDefaultItem(Window win)
</autodoc>
4173 <param name=
"win" type=
"p.wxWindow" default=
""/>
4176 <method name=
"GetChildren" overloaded=
"no">
4177 <autodoc>GetChildren() -
> PyObject
</autodoc>
4179 <method name=
"GetParent" overloaded=
"no">
4180 <autodoc>GetParent() -
> Window
</autodoc>
4182 <method name=
"GetGrandParent" overloaded=
"no">
4183 <autodoc>GetGrandParent() -
> Window
</autodoc>
4185 <method name=
"IsTopLevel" overloaded=
"no">
4186 <autodoc>IsTopLevel() -
> bool
</autodoc>
4188 <method name=
"Reparent" overloaded=
"no">
4189 <autodoc>Reparent(Window newParent) -
> bool
</autodoc>
4191 <param name=
"newParent" type=
"p.wxWindow" default=
""/>
4194 <method name=
"AddChild" overloaded=
"no">
4195 <autodoc>AddChild(Window child)
</autodoc>
4197 <param name=
"child" type=
"p.wxWindow" default=
""/>
4200 <method name=
"RemoveChild" overloaded=
"no">
4201 <autodoc>RemoveChild(Window child)
</autodoc>
4203 <param name=
"child" type=
"p.wxWindow" default=
""/>
4206 <method name=
"FindWindowById" overloaded=
"no">
4207 <autodoc>FindWindowById(long winid) -
> Window
</autodoc>
4209 <param name=
"winid" type=
"long" default=
""/>
4212 <method name=
"FindWindowByName" overloaded=
"no">
4213 <autodoc>FindWindowByName(String name) -
> Window
</autodoc>
4215 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
4218 <method name=
"GetEventHandler" overloaded=
"no">
4219 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
4221 <method name=
"SetEventHandler" overloaded=
"no">
4222 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
4224 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
4227 <method name=
"PushEventHandler" overloaded=
"no">
4228 <autodoc>PushEventHandler(EvtHandler handler)
</autodoc>
4230 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
4233 <method name=
"PopEventHandler" overloaded=
"no">
4234 <autodoc>PopEventHandler(bool deleteHandler=False) -
> EvtHandler
</autodoc>
4236 <param name=
"deleteHandler" type=
"bool" default=
"False"/>
4239 <method name=
"RemoveEventHandler" overloaded=
"no">
4240 <autodoc>RemoveEventHandler(EvtHandler handler) -
> bool
</autodoc>
4242 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
4245 <method name=
"SetValidator" overloaded=
"no">
4246 <autodoc>SetValidator(Validator validator)
</autodoc>
4248 <param name=
"validator" type=
"r.q(const).wxValidator" default=
""/>
4251 <method name=
"GetValidator" overloaded=
"no">
4252 <autodoc>GetValidator() -
> Validator
</autodoc>
4254 <method name=
"SetAcceleratorTable" overloaded=
"no">
4255 <autodoc>SetAcceleratorTable(AcceleratorTable accel)
</autodoc>
4257 <param name=
"accel" type=
"r.q(const).wxAcceleratorTable" default=
""/>
4260 <method name=
"GetAcceleratorTable" overloaded=
"no">
4261 <autodoc>GetAcceleratorTable() -
> AcceleratorTable
</autodoc>
4263 <method name=
"RegisterHotKey" overloaded=
"no">
4264 <autodoc>RegisterHotKey(int hotkeyId, int modifiers, int keycode) -
> bool
</autodoc>
4266 <param name=
"hotkeyId" type=
"int" default=
""/>
4267 <param name=
"modifiers" type=
"int" default=
""/>
4268 <param name=
"keycode" type=
"int" default=
""/>
4271 <method name=
"UnregisterHotKey" overloaded=
"no">
4272 <autodoc>UnregisterHotKey(int hotkeyId) -
> bool
</autodoc>
4274 <param name=
"hotkeyId" type=
"int" default=
""/>
4277 <method name=
"ConvertDialogPointToPixels" overloaded=
"no">
4278 <autodoc>ConvertDialogPointToPixels(Point pt) -
> Point
</autodoc>
4280 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4283 <method name=
"ConvertDialogSizeToPixels" overloaded=
"no">
4284 <autodoc>ConvertDialogSizeToPixels(Size sz) -
> Size
</autodoc>
4286 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
4289 <method name=
"DLG_PNT" overloaded=
"no">
4290 <autodoc>DLG_PNT(Point pt) -
> Point
</autodoc>
4292 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4295 <method name=
"DLG_SZE" overloaded=
"no">
4296 <autodoc>DLG_SZE(Size sz) -
> Size
</autodoc>
4298 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
4301 <method name=
"ConvertPixelPointToDialog" overloaded=
"no">
4302 <autodoc>ConvertPixelPointToDialog(Point pt) -
> Point
</autodoc>
4304 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4307 <method name=
"ConvertPixelSizeToDialog" overloaded=
"no">
4308 <autodoc>ConvertPixelSizeToDialog(Size sz) -
> Size
</autodoc>
4310 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
4313 <method name=
"WarpPointer" overloaded=
"no">
4314 <autodoc>WarpPointer(int x, int y)
</autodoc>
4316 <param name=
"x" type=
"int" default=
""/>
4317 <param name=
"y" type=
"int" default=
""/>
4320 <method name=
"CaptureMouse" overloaded=
"no">
4321 <autodoc>CaptureMouse()
</autodoc>
4323 <method name=
"ReleaseMouse" overloaded=
"no">
4324 <autodoc>ReleaseMouse()
</autodoc>
4326 <staticmethod name=
"GetCapture" overloaded=
"no">
4327 <autodoc>GetCapture() -
> Window
</autodoc>
4329 <method name=
"HasCapture" overloaded=
"no">
4330 <autodoc>HasCapture() -
> bool
</autodoc>
4332 <method name=
"Refresh" overloaded=
"no">
4333 <autodoc>Refresh(bool eraseBackground=True, Rect rect=None)
</autodoc>
4335 <param name=
"eraseBackground" type=
"bool" default=
"True"/>
4336 <param name=
"rect" type=
"p.q(const).wxRect" default=
"NULL"/>
4339 <method name=
"RefreshRect" overloaded=
"no">
4340 <autodoc>RefreshRect(Rect rect)
</autodoc>
4342 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
4345 <method name=
"Update" overloaded=
"no">
4346 <autodoc>Update()
</autodoc>
4348 <method name=
"ClearBackground" overloaded=
"no">
4349 <autodoc>ClearBackground()
</autodoc>
4351 <method name=
"Freeze" overloaded=
"no">
4352 <autodoc>Freeze()
</autodoc>
4354 <method name=
"Thaw" overloaded=
"no">
4355 <autodoc>Thaw()
</autodoc>
4357 <method name=
"PrepareDC" overloaded=
"no">
4358 <autodoc>PrepareDC(DC dc)
</autodoc>
4360 <param name=
"dc" type=
"r.wxDC" default=
""/>
4363 <method name=
"GetUpdateRegion" overloaded=
"no">
4364 <autodoc>GetUpdateRegion() -
> Region
</autodoc>
4366 <method name=
"GetUpdateClientRect" overloaded=
"no">
4367 <autodoc>GetUpdateClientRect() -
> Rect
</autodoc>
4369 <method name=
"IsExposed" overloaded=
"no">
4370 <autodoc>IsExposed(int x, int y, int w=
1, int h=
1) -
> bool
</autodoc>
4372 <param name=
"x" type=
"int" default=
""/>
4373 <param name=
"y" type=
"int" default=
""/>
4374 <param name=
"w" type=
"int" default=
"1"/>
4375 <param name=
"h" type=
"int" default=
"1"/>
4378 <method name=
"IsExposedPoint" overloaded=
"no">
4379 <autodoc>IsExposedPoint(Point pt) -
> bool
</autodoc>
4381 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4384 <method name=
"isExposedRect" overloaded=
"no">
4385 <autodoc>isExposedRect(Rect rect) -
> bool
</autodoc>
4387 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
4390 <method name=
"SetBackgroundColour" overloaded=
"no">
4391 <autodoc>SetBackgroundColour(Colour colour) -
> bool
</autodoc>
4393 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
4396 <method name=
"SetForegroundColour" overloaded=
"no">
4397 <autodoc>SetForegroundColour(Colour colour) -
> bool
</autodoc>
4399 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
4402 <method name=
"GetBackgroundColour" overloaded=
"no">
4403 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
4405 <method name=
"GetForegroundColour" overloaded=
"no">
4406 <autodoc>GetForegroundColour() -
> Colour
</autodoc>
4408 <method name=
"SetCursor" overloaded=
"no">
4409 <autodoc>SetCursor(Cursor cursor) -
> bool
</autodoc>
4411 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
""/>
4414 <method name=
"GetCursor" overloaded=
"no">
4415 <autodoc>GetCursor() -
> Cursor
</autodoc>
4417 <method name=
"SetFont" overloaded=
"no">
4418 <autodoc>SetFont(Font font) -
> bool
</autodoc>
4420 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
4423 <method name=
"GetFont" overloaded=
"no">
4424 <autodoc>GetFont() -
> Font
</autodoc>
4426 <method name=
"SetCaret" overloaded=
"no">
4427 <autodoc>SetCaret(Caret caret)
</autodoc>
4429 <param name=
"caret" type=
"p.wxCaret" default=
""/>
4432 <method name=
"GetCaret" overloaded=
"no">
4433 <autodoc>GetCaret() -
> Caret
</autodoc>
4435 <method name=
"GetCharHeight" overloaded=
"no">
4436 <autodoc>GetCharHeight() -
> int
</autodoc>
4438 <method name=
"GetCharWidth" overloaded=
"no">
4439 <autodoc>GetCharWidth() -
> int
</autodoc>
4441 <method name=
"GetTextExtent" overloaded=
"no">
4442 <autodoc>GetTextExtent(String string) -
> (width, height)
</autodoc>
4443 <docstring>Get the width and height of the text using the current font.
</docstring>
4445 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
4446 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4447 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4450 <method name=
"GetFullTextExtent" overloaded=
"no">
4451 <autodoc>GetFullTextExtent(String string, Font font=None) -
>
4452 (width, height, descent, externalLeading)
</autodoc>
4453 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
</docstring>
4455 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
4456 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4457 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4458 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4459 <param name=
"OUTPUT" type=
"p.int" default=
""/>
4460 <param name=
"font" type=
"p.q(const).wxFont" default=
"NULL"/>
4463 <method name=
"ClientToScreenXY" overloaded=
"no">
4464 <autodoc>ClientToScreenXY(int x, int y)
</autodoc>
4466 <param name=
"x" type=
"p.int" default=
""/>
4467 <param name=
"y" type=
"p.int" default=
""/>
4470 <method name=
"ScreenToClientXY" overloaded=
"no">
4471 <autodoc>ScreenToClientXY(int x, int y)
</autodoc>
4473 <param name=
"x" type=
"p.int" default=
""/>
4474 <param name=
"y" type=
"p.int" default=
""/>
4477 <method name=
"ClientToScreen" overloaded=
"no">
4478 <autodoc>ClientToScreen(Point pt) -
> Point
</autodoc>
4480 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4483 <method name=
"ScreenToClient" overloaded=
"no">
4484 <autodoc>ScreenToClient(Point pt) -
> Point
</autodoc>
4486 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4489 <method name=
"HitTestXY" overloaded=
"no">
4490 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
4492 <param name=
"x" type=
"int" default=
""/>
4493 <param name=
"y" type=
"int" default=
""/>
4496 <method name=
"HitTest" overloaded=
"no">
4497 <autodoc>HitTest(Point pt) -
> int
</autodoc>
4499 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
4502 <method name=
"GetBorderFlags" overloaded=
"no">
4503 <autodoc>GetBorderFlags(long flags) -
> int
</autodoc>
4505 <param name=
"flags" type=
"long" default=
""/>
4508 <method name=
"GetBorder" overloaded=
"no">
4509 <autodoc>GetBorder() -
> int
</autodoc>
4511 <method name=
"UpdateWindowUI" overloaded=
"no">
4512 <autodoc>UpdateWindowUI(long flags=UPDATE_UI_NONE)
</autodoc>
4514 <param name=
"flags" type=
"long" default=
"wxUPDATE_UI_NONE"/>
4517 <method name=
"PopupMenuXY" overloaded=
"no">
4518 <autodoc>PopupMenuXY(Menu menu, int x, int y) -
> bool
</autodoc>
4520 <param name=
"menu" type=
"p.wxMenu" default=
""/>
4521 <param name=
"x" type=
"int" default=
""/>
4522 <param name=
"y" type=
"int" default=
""/>
4525 <method name=
"PopupMenu" overloaded=
"no">
4526 <autodoc>PopupMenu(Menu menu, Point pos) -
> bool
</autodoc>
4528 <param name=
"menu" type=
"p.wxMenu" default=
""/>
4529 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
4532 <method name=
"GetHandle" overloaded=
"no">
4533 <autodoc>GetHandle() -
> long
</autodoc>
4535 <method name=
"HasScrollbar" overloaded=
"no">
4536 <autodoc>HasScrollbar(int orient) -
> bool
</autodoc>
4538 <param name=
"orient" type=
"int" default=
""/>
4541 <method name=
"SetScrollbar" overloaded=
"no">
4542 <autodoc>SetScrollbar(int orient, int pos, int thumbvisible, int range, bool refresh=True)
</autodoc>
4544 <param name=
"orient" type=
"int" default=
""/>
4545 <param name=
"pos" type=
"int" default=
""/>
4546 <param name=
"thumbvisible" type=
"int" default=
""/>
4547 <param name=
"range" type=
"int" default=
""/>
4548 <param name=
"refresh" type=
"bool" default=
"True"/>
4551 <method name=
"SetScrollPos" overloaded=
"no">
4552 <autodoc>SetScrollPos(int orient, int pos, bool refresh=True)
</autodoc>
4554 <param name=
"orient" type=
"int" default=
""/>
4555 <param name=
"pos" type=
"int" default=
""/>
4556 <param name=
"refresh" type=
"bool" default=
"True"/>
4559 <method name=
"GetScrollPos" overloaded=
"no">
4560 <autodoc>GetScrollPos(int orient) -
> int
</autodoc>
4562 <param name=
"orient" type=
"int" default=
""/>
4565 <method name=
"GetScrollThumb" overloaded=
"no">
4566 <autodoc>GetScrollThumb(int orient) -
> int
</autodoc>
4568 <param name=
"orient" type=
"int" default=
""/>
4571 <method name=
"GetScrollRange" overloaded=
"no">
4572 <autodoc>GetScrollRange(int orient) -
> int
</autodoc>
4574 <param name=
"orient" type=
"int" default=
""/>
4577 <method name=
"ScrollWindow" overloaded=
"no">
4578 <autodoc>ScrollWindow(int dx, int dy, Rect rect=None)
</autodoc>
4580 <param name=
"dx" type=
"int" default=
""/>
4581 <param name=
"dy" type=
"int" default=
""/>
4582 <param name=
"rect" type=
"p.q(const).wxRect" default=
"NULL"/>
4585 <method name=
"ScrollLines" overloaded=
"no">
4586 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
4588 <param name=
"lines" type=
"int" default=
""/>
4591 <method name=
"ScrollPages" overloaded=
"no">
4592 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
4594 <param name=
"pages" type=
"int" default=
""/>
4597 <method name=
"LineUp" overloaded=
"no">
4598 <autodoc>LineUp() -
> bool
</autodoc>
4600 <method name=
"LineDown" overloaded=
"no">
4601 <autodoc>LineDown() -
> bool
</autodoc>
4603 <method name=
"PageUp" overloaded=
"no">
4604 <autodoc>PageUp() -
> bool
</autodoc>
4606 <method name=
"PageDown" overloaded=
"no">
4607 <autodoc>PageDown() -
> bool
</autodoc>
4609 <method name=
"SetHelpText" overloaded=
"no">
4610 <autodoc>SetHelpText(String text)
</autodoc>
4612 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4615 <method name=
"SetHelpTextForId" overloaded=
"no">
4616 <autodoc>SetHelpTextForId(String text)
</autodoc>
4618 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4621 <method name=
"GetHelpText" overloaded=
"no">
4622 <autodoc>GetHelpText() -
> String
</autodoc>
4624 <method name=
"SetToolTipString" overloaded=
"no">
4625 <autodoc>SetToolTipString(String tip)
</autodoc>
4627 <param name=
"tip" type=
"r.q(const).wxString" default=
""/>
4630 <method name=
"SetToolTip" overloaded=
"no">
4631 <autodoc>SetToolTip(ToolTip tip)
</autodoc>
4633 <param name=
"tip" type=
"p.wxToolTip" default=
""/>
4636 <method name=
"GetToolTip" overloaded=
"no">
4637 <autodoc>GetToolTip() -
> ToolTip
</autodoc>
4639 <method name=
"SetDropTarget" overloaded=
"no">
4640 <autodoc>SetDropTarget(PyDropTarget dropTarget)
</autodoc>
4642 <param name=
"dropTarget" type=
"p.wxPyDropTarget" default=
""/>
4645 <method name=
"GetDropTarget" overloaded=
"no">
4646 <autodoc>GetDropTarget() -
> PyDropTarget
</autodoc>
4648 <method name=
"SetConstraints" overloaded=
"no">
4649 <autodoc>SetConstraints(LayoutConstraints constraints)
</autodoc>
4651 <param name=
"constraints" type=
"p.wxLayoutConstraints" default=
""/>
4654 <method name=
"GetConstraints" overloaded=
"no">
4655 <autodoc>GetConstraints() -
> LayoutConstraints
</autodoc>
4657 <method name=
"SetAutoLayout" overloaded=
"no">
4658 <autodoc>SetAutoLayout(bool autoLayout)
</autodoc>
4660 <param name=
"autoLayout" type=
"bool" default=
""/>
4663 <method name=
"GetAutoLayout" overloaded=
"no">
4664 <autodoc>GetAutoLayout() -
> bool
</autodoc>
4666 <method name=
"Layout" overloaded=
"no">
4667 <autodoc>Layout() -
> bool
</autodoc>
4669 <method name=
"SetSizer" overloaded=
"no">
4670 <autodoc>SetSizer(Sizer sizer, bool deleteOld=True)
</autodoc>
4672 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
4673 <param name=
"deleteOld" type=
"bool" default=
"True"/>
4676 <method name=
"SetSizerAndFit" overloaded=
"no">
4677 <autodoc>SetSizerAndFit(Sizer sizer, bool deleteOld=True)
</autodoc>
4679 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
4680 <param name=
"deleteOld" type=
"bool" default=
"True"/>
4683 <method name=
"GetSizer" overloaded=
"no">
4684 <autodoc>GetSizer() -
> Sizer
</autodoc>
4686 <method name=
"SetContainingSizer" overloaded=
"no">
4687 <autodoc>SetContainingSizer(Sizer sizer)
</autodoc>
4689 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
4692 <method name=
"GetContainingSizer" overloaded=
"no">
4693 <autodoc>GetContainingSizer() -
> Sizer
</autodoc>
4696 def PostCreate(self, pre):
4697 """Phase
3 of the
2-phase create
<wink!
>
4698 Call this method after precreating the window with the
2-phase create method."""
4699 self.this = pre.this
4700 self.thisown = pre.thisown
4702 if hasattr(self, '_setOORInfo'):
4703 self._setOORInfo(self)
4704 if hasattr(self, '_setCallbackInfo'):
4705 self._setCallbackInfo(self, self.__class__)
4709 def DLG_PNT(win, point_or_x, y=None):
4711 return win.ConvertDialogPointToPixels(point_or_x)
4713 return win.ConvertDialogPointToPixels(wx.Point(point_or_x, y))
4715 def DLG_SZE(win, size_width, height=None):
4717 return win.ConvertDialogSizeToPixels(size_width)
4719 return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
4721 <function oldname=
"wxFindWindowById" name=
"FindWindowById" overloaded=
"no">
4722 <autodoc>FindWindowById(long id, Window parent=None) -
> Window
</autodoc>
4724 <param name=
"id" type=
"long" default=
""/>
4725 <param name=
"parent" type=
"p.q(const).wxWindow" default=
"NULL"/>
4728 <function oldname=
"wxFindWindowByName" name=
"FindWindowByName" overloaded=
"no">
4729 <autodoc>FindWindowByName(String name, Window parent=None) -
> Window
</autodoc>
4731 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
4732 <param name=
"parent" type=
"p.q(const).wxWindow" default=
"NULL"/>
4735 <function oldname=
"wxFindWindowByLabel" name=
"FindWindowByLabel" overloaded=
"no">
4736 <autodoc>FindWindowByLabel(String label, Window parent=None) -
> Window
</autodoc>
4738 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
4739 <param name=
"parent" type=
"p.q(const).wxWindow" default=
"NULL"/>
4742 <function oldname=
"wxWindow_FromHWND" name=
"Window_FromHWND" overloaded=
"no">
4743 <autodoc>Window_FromHWND(unsigned long hWnd) -
> Window
</autodoc>
4745 <param name=
"hWnd" type=
"unsigned long" default=
""/>
4749 #---------------------------------------------------------------------------
4751 <class name=
"Validator" oldname=
"wxValidator" module=
"core">
4752 <baseclass name=
"wxEvtHandler"/>
4753 <constructor name=
"Validator" overloaded=
"no">
4754 <autodoc>__init__() -
> Validator
</autodoc>
4756 <method name=
"Clone" overloaded=
"no">
4757 <autodoc>Clone() -
> Validator
</autodoc>
4759 <method name=
"Validate" overloaded=
"no">
4760 <autodoc>Validate(Window parent) -
> bool
</autodoc>
4762 <param name=
"parent" type=
"p.wxWindow" default=
""/>
4765 <method name=
"TransferToWindow" overloaded=
"no">
4766 <autodoc>TransferToWindow() -
> bool
</autodoc>
4768 <method name=
"TransferFromWindow" overloaded=
"no">
4769 <autodoc>TransferFromWindow() -
> bool
</autodoc>
4771 <method name=
"GetWindow" overloaded=
"no">
4772 <autodoc>GetWindow() -
> Window
</autodoc>
4774 <method name=
"SetWindow" overloaded=
"no">
4775 <autodoc>SetWindow(Window window)
</autodoc>
4777 <param name=
"window" type=
"p.wxWindow" default=
""/>
4780 <staticmethod name=
"IsSilent" overloaded=
"no">
4781 <autodoc>IsSilent() -
> bool
</autodoc>
4783 <staticmethod name=
"SetBellOnError" overloaded=
"no">
4784 <autodoc>SetBellOnError(int doIt=True)
</autodoc>
4786 <param name=
"doIt" type=
"int" default=
"True"/>
4790 <class name=
"PyValidator" oldname=
"wxPyValidator" module=
"core">
4791 <baseclass name=
"wxValidator"/>
4792 <constructor name=
"PyValidator" overloaded=
"no">
4793 <autodoc>__init__() -
> PyValidator
</autodoc>
4795 <method name=
"_setCallbackInfo" overloaded=
"no">
4796 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
</autodoc>
4798 <param name=
"self" type=
"p.PyObject" default=
""/>
4799 <param name=
"_class" type=
"p.PyObject" default=
""/>
4800 <param name=
"incref" type=
"int" default=
"True"/>
4805 #---------------------------------------------------------------------------
4807 <class name=
"Menu" oldname=
"wxMenu" module=
"core">
4808 <baseclass name=
"wxEvtHandler"/>
4809 <constructor name=
"Menu" overloaded=
"no">
4810 <autodoc>__init__(String title=EmptyString, long style=
0) -
> Menu
</autodoc>
4812 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4813 <param name=
"style" type=
"long" default=
"0"/>
4816 <method name=
"Append" overloaded=
"no">
4817 <autodoc>Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
4819 <param name=
"id" type=
"int" default=
""/>
4820 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4821 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4822 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
4825 <method name=
"AppendSeparator" overloaded=
"no">
4826 <autodoc>AppendSeparator() -
> MenuItem
</autodoc>
4828 <method name=
"AppendCheckItem" overloaded=
"no">
4829 <autodoc>AppendCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4831 <param name=
"id" type=
"int" default=
""/>
4832 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4833 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4836 <method name=
"AppendRadioItem" overloaded=
"no">
4837 <autodoc>AppendRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4839 <param name=
"id" type=
"int" default=
""/>
4840 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4841 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4844 <method name=
"AppendMenu" overloaded=
"no">
4845 <autodoc>AppendMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
4847 <param name=
"id" type=
"int" default=
""/>
4848 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4849 <param name=
"submenu" type=
"p.wxMenu" default=
""/>
4850 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4853 <method name=
"AppendItem" overloaded=
"no">
4854 <autodoc>AppendItem(MenuItem item) -
> MenuItem
</autodoc>
4856 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4859 <method name=
"Break" overloaded=
"no">
4860 <autodoc>Break()
</autodoc>
4862 <method name=
"InsertItem" overloaded=
"no">
4863 <autodoc>InsertItem(size_t pos, MenuItem item) -
> MenuItem
</autodoc>
4865 <param name=
"pos" type=
"size_t" default=
""/>
4866 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4869 <method name=
"Insert" overloaded=
"no">
4870 <autodoc>Insert(size_t pos, int id, String text, String help=EmptyString,
4871 int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
4873 <param name=
"pos" type=
"size_t" default=
""/>
4874 <param name=
"id" type=
"int" default=
""/>
4875 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4876 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4877 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
4880 <method name=
"InsertSeparator" overloaded=
"no">
4881 <autodoc>InsertSeparator(size_t pos) -
> MenuItem
</autodoc>
4883 <param name=
"pos" type=
"size_t" default=
""/>
4886 <method name=
"InsertCheckItem" overloaded=
"no">
4887 <autodoc>InsertCheckItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4889 <param name=
"pos" type=
"size_t" default=
""/>
4890 <param name=
"id" type=
"int" default=
""/>
4891 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4892 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4895 <method name=
"InsertRadioItem" overloaded=
"no">
4896 <autodoc>InsertRadioItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4898 <param name=
"pos" type=
"size_t" default=
""/>
4899 <param name=
"id" type=
"int" default=
""/>
4900 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4901 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4904 <method name=
"InsertMenu" overloaded=
"no">
4905 <autodoc>InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
4907 <param name=
"pos" type=
"size_t" default=
""/>
4908 <param name=
"id" type=
"int" default=
""/>
4909 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4910 <param name=
"submenu" type=
"p.wxMenu" default=
""/>
4911 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4914 <method name=
"PrependItem" overloaded=
"no">
4915 <autodoc>PrependItem(MenuItem item) -
> MenuItem
</autodoc>
4917 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4920 <method name=
"Prepend" overloaded=
"no">
4921 <autodoc>Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
4923 <param name=
"id" type=
"int" default=
""/>
4924 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4925 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4926 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
4929 <method name=
"PrependSeparator" overloaded=
"no">
4930 <autodoc>PrependSeparator() -
> MenuItem
</autodoc>
4932 <method name=
"PrependCheckItem" overloaded=
"no">
4933 <autodoc>PrependCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4935 <param name=
"id" type=
"int" default=
""/>
4936 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4937 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4940 <method name=
"PrependRadioItem" overloaded=
"no">
4941 <autodoc>PrependRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
4943 <param name=
"id" type=
"int" default=
""/>
4944 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4945 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4948 <method name=
"PrependMenu" overloaded=
"no">
4949 <autodoc>PrependMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
4951 <param name=
"id" type=
"int" default=
""/>
4952 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
4953 <param name=
"submenu" type=
"p.wxMenu" default=
""/>
4954 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
4957 <method name=
"Remove" overloaded=
"no">
4958 <autodoc>Remove(int id) -
> MenuItem
</autodoc>
4960 <param name=
"id" type=
"int" default=
""/>
4963 <method name=
"RemoveItem" overloaded=
"no">
4964 <autodoc>RemoveItem(MenuItem item) -
> MenuItem
</autodoc>
4966 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4969 <method name=
"Delete" overloaded=
"no">
4970 <autodoc>Delete(int id) -
> bool
</autodoc>
4972 <param name=
"id" type=
"int" default=
""/>
4975 <method name=
"DeleteItem" overloaded=
"no">
4976 <autodoc>DeleteItem(MenuItem item) -
> bool
</autodoc>
4978 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4981 <method name=
"Destroy" overloaded=
"no">
4982 <autodoc>Destroy()
</autodoc>
4983 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
4985 <method name=
"DestroyId" overloaded=
"no">
4986 <autodoc>DestroyId(int id) -
> bool
</autodoc>
4987 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
4989 <param name=
"id" type=
"int" default=
""/>
4992 <method name=
"DestroyItem" overloaded=
"no">
4993 <autodoc>DestroyItem(MenuItem item) -
> bool
</autodoc>
4994 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
4996 <param name=
"item" type=
"p.wxMenuItem" default=
""/>
4999 <method name=
"GetMenuItemCount" overloaded=
"no">
5000 <autodoc>GetMenuItemCount() -
> size_t
</autodoc>
5002 <method name=
"GetMenuItems" overloaded=
"no">
5003 <autodoc>GetMenuItems() -
> PyObject
</autodoc>
5005 <method name=
"FindItem" overloaded=
"no">
5006 <autodoc>FindItem(String item) -
> int
</autodoc>
5008 <param name=
"item" type=
"r.q(const).wxString" default=
""/>
5011 <method name=
"FindItemById" overloaded=
"no">
5012 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5014 <param name=
"id" type=
"int" default=
""/>
5017 <method name=
"FindItemByPosition" overloaded=
"no">
5018 <autodoc>FindItemByPosition(size_t position) -
> MenuItem
</autodoc>
5020 <param name=
"position" type=
"size_t" default=
""/>
5023 <method name=
"Enable" overloaded=
"no">
5024 <autodoc>Enable(int id, bool enable)
</autodoc>
5026 <param name=
"id" type=
"int" default=
""/>
5027 <param name=
"enable" type=
"bool" default=
""/>
5030 <method name=
"IsEnabled" overloaded=
"no">
5031 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
5033 <param name=
"id" type=
"int" default=
""/>
5036 <method name=
"Check" overloaded=
"no">
5037 <autodoc>Check(int id, bool check)
</autodoc>
5039 <param name=
"id" type=
"int" default=
""/>
5040 <param name=
"check" type=
"bool" default=
""/>
5043 <method name=
"IsChecked" overloaded=
"no">
5044 <autodoc>IsChecked(int id) -
> bool
</autodoc>
5046 <param name=
"id" type=
"int" default=
""/>
5049 <method name=
"SetLabel" overloaded=
"no">
5050 <autodoc>SetLabel(int id, String label)
</autodoc>
5052 <param name=
"id" type=
"int" default=
""/>
5053 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
5056 <method name=
"GetLabel" overloaded=
"no">
5057 <autodoc>GetLabel(int id) -
> String
</autodoc>
5059 <param name=
"id" type=
"int" default=
""/>
5062 <method name=
"SetHelpString" overloaded=
"no">
5063 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
5065 <param name=
"id" type=
"int" default=
""/>
5066 <param name=
"helpString" type=
"r.q(const).wxString" default=
""/>
5069 <method name=
"GetHelpString" overloaded=
"no">
5070 <autodoc>GetHelpString(int id) -
> String
</autodoc>
5072 <param name=
"id" type=
"int" default=
""/>
5075 <method name=
"SetTitle" overloaded=
"no">
5076 <autodoc>SetTitle(String title)
</autodoc>
5078 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
5081 <method name=
"GetTitle" overloaded=
"no">
5082 <autodoc>GetTitle() -
> String
</autodoc>
5084 <method name=
"SetEventHandler" overloaded=
"no">
5085 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
5087 <param name=
"handler" type=
"p.wxEvtHandler" default=
""/>
5090 <method name=
"GetEventHandler" overloaded=
"no">
5091 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
5093 <method name=
"SetInvokingWindow" overloaded=
"no">
5094 <autodoc>SetInvokingWindow(Window win)
</autodoc>
5096 <param name=
"win" type=
"p.wxWindow" default=
""/>
5099 <method name=
"GetInvokingWindow" overloaded=
"no">
5100 <autodoc>GetInvokingWindow() -
> Window
</autodoc>
5102 <method name=
"GetStyle" overloaded=
"no">
5103 <autodoc>GetStyle() -
> long
</autodoc>
5105 <method name=
"UpdateUI" overloaded=
"no">
5106 <autodoc>UpdateUI(EvtHandler source=None)
</autodoc>
5108 <param name=
"source" type=
"p.wxEvtHandler" default=
"NULL"/>
5111 <method name=
"GetMenuBar" overloaded=
"no">
5112 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
5114 <method name=
"Attach" overloaded=
"no">
5115 <autodoc>Attach(wxMenuBarBase menubar)
</autodoc>
5117 <param name=
"menubar" type=
"p.wxMenuBarBase" default=
""/>
5120 <method name=
"Detach" overloaded=
"no">
5121 <autodoc>Detach()
</autodoc>
5123 <method name=
"IsAttached" overloaded=
"no">
5124 <autodoc>IsAttached() -
> bool
</autodoc>
5126 <method name=
"SetParent" overloaded=
"no">
5127 <autodoc>SetParent(Menu parent)
</autodoc>
5129 <param name=
"parent" type=
"p.wxMenu" default=
""/>
5132 <method name=
"GetParent" overloaded=
"no">
5133 <autodoc>GetParent() -
> Menu
</autodoc>
5137 #---------------------------------------------------------------------------
5139 <class name=
"MenuBar" oldname=
"wxMenuBar" module=
"core">
5140 <baseclass name=
"wxWindow"/>
5141 <constructor name=
"MenuBar" overloaded=
"no">
5142 <autodoc>__init__(long style=
0) -
> MenuBar
</autodoc>
5144 <param name=
"style" type=
"long" default=
"0"/>
5147 <method name=
"Append" overloaded=
"no">
5148 <autodoc>Append(Menu menu, String title) -
> bool
</autodoc>
5150 <param name=
"menu" type=
"p.wxMenu" default=
""/>
5151 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
5154 <method name=
"Insert" overloaded=
"no">
5155 <autodoc>Insert(size_t pos, Menu menu, String title) -
> bool
</autodoc>
5157 <param name=
"pos" type=
"size_t" default=
""/>
5158 <param name=
"menu" type=
"p.wxMenu" default=
""/>
5159 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
5162 <method name=
"GetMenuCount" overloaded=
"no">
5163 <autodoc>GetMenuCount() -
> size_t
</autodoc>
5165 <method name=
"GetMenu" overloaded=
"no">
5166 <autodoc>GetMenu(size_t pos) -
> Menu
</autodoc>
5168 <param name=
"pos" type=
"size_t" default=
""/>
5171 <method name=
"Replace" overloaded=
"no">
5172 <autodoc>Replace(size_t pos, Menu menu, String title) -
> Menu
</autodoc>
5174 <param name=
"pos" type=
"size_t" default=
""/>
5175 <param name=
"menu" type=
"p.wxMenu" default=
""/>
5176 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
5179 <method name=
"Remove" overloaded=
"no">
5180 <autodoc>Remove(size_t pos) -
> Menu
</autodoc>
5182 <param name=
"pos" type=
"size_t" default=
""/>
5185 <method name=
"EnableTop" overloaded=
"no">
5186 <autodoc>EnableTop(size_t pos, bool enable)
</autodoc>
5188 <param name=
"pos" type=
"size_t" default=
""/>
5189 <param name=
"enable" type=
"bool" default=
""/>
5192 <method name=
"IsEnabledTop" overloaded=
"no">
5193 <autodoc>IsEnabledTop(size_t pos) -
> bool
</autodoc>
5195 <param name=
"pos" type=
"size_t" default=
""/>
5198 <method name=
"SetLabelTop" overloaded=
"no">
5199 <autodoc>SetLabelTop(size_t pos, String label)
</autodoc>
5201 <param name=
"pos" type=
"size_t" default=
""/>
5202 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
5205 <method name=
"GetLabelTop" overloaded=
"no">
5206 <autodoc>GetLabelTop(size_t pos) -
> String
</autodoc>
5208 <param name=
"pos" type=
"size_t" default=
""/>
5211 <method name=
"FindMenuItem" overloaded=
"no">
5212 <autodoc>FindMenuItem(String menu, String item) -
> int
</autodoc>
5214 <param name=
"menu" type=
"r.q(const).wxString" default=
""/>
5215 <param name=
"item" type=
"r.q(const).wxString" default=
""/>
5218 <method name=
"FindItemById" overloaded=
"no">
5219 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5221 <param name=
"id" type=
"int" default=
""/>
5224 <method name=
"FindMenu" overloaded=
"no">
5225 <autodoc>FindMenu(String title) -
> int
</autodoc>
5227 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
5230 <method name=
"Enable" overloaded=
"no">
5231 <autodoc>Enable(int id, bool enable)
</autodoc>
5233 <param name=
"id" type=
"int" default=
""/>
5234 <param name=
"enable" type=
"bool" default=
""/>
5237 <method name=
"Check" overloaded=
"no">
5238 <autodoc>Check(int id, bool check)
</autodoc>
5240 <param name=
"id" type=
"int" default=
""/>
5241 <param name=
"check" type=
"bool" default=
""/>
5244 <method name=
"IsChecked" overloaded=
"no">
5245 <autodoc>IsChecked(int id) -
> bool
</autodoc>
5247 <param name=
"id" type=
"int" default=
""/>
5250 <method name=
"IsEnabled" overloaded=
"no">
5251 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
5253 <param name=
"id" type=
"int" default=
""/>
5256 <method name=
"SetLabel" overloaded=
"no">
5257 <autodoc>SetLabel(int id, String label)
</autodoc>
5259 <param name=
"id" type=
"int" default=
""/>
5260 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
5263 <method name=
"GetLabel" overloaded=
"no">
5264 <autodoc>GetLabel(int id) -
> String
</autodoc>
5266 <param name=
"id" type=
"int" default=
""/>
5269 <method name=
"SetHelpString" overloaded=
"no">
5270 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
5272 <param name=
"id" type=
"int" default=
""/>
5273 <param name=
"helpString" type=
"r.q(const).wxString" default=
""/>
5276 <method name=
"GetHelpString" overloaded=
"no">
5277 <autodoc>GetHelpString(int id) -
> String
</autodoc>
5279 <param name=
"id" type=
"int" default=
""/>
5282 <method name=
"GetFrame" overloaded=
"no">
5283 <autodoc>GetFrame() -
> wxFrame
</autodoc>
5285 <method name=
"IsAttached" overloaded=
"no">
5286 <autodoc>IsAttached() -
> bool
</autodoc>
5288 <method name=
"Attach" overloaded=
"no">
5289 <autodoc>Attach(wxFrame frame)
</autodoc>
5291 <param name=
"frame" type=
"p.wxFrame" default=
""/>
5294 <method name=
"Detach" overloaded=
"no">
5295 <autodoc>Detach()
</autodoc>
5299 #---------------------------------------------------------------------------
5301 <class name=
"MenuItem" oldname=
"wxMenuItem" module=
"core">
5302 <baseclass name=
"wxObject"/>
5303 <constructor name=
"MenuItem" overloaded=
"no">
5304 <autodoc>__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString,
5305 String help=EmptyString, int kind=ITEM_NORMAL,
5306 Menu subMenu=None) -
> MenuItem
</autodoc>
5308 <param name=
"parentMenu" type=
"p.wxMenu" default=
"NULL"/>
5309 <param name=
"id" type=
"int" default=
"wxID_SEPARATOR"/>
5310 <param name=
"text" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
5311 <param name=
"help" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
5312 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5313 <param name=
"subMenu" type=
"p.wxMenu" default=
"NULL"/>
5316 <method name=
"GetMenu" overloaded=
"no">
5317 <autodoc>GetMenu() -
> Menu
</autodoc>
5319 <method name=
"SetMenu" overloaded=
"no">
5320 <autodoc>SetMenu(Menu menu)
</autodoc>
5322 <param name=
"menu" type=
"p.wxMenu" default=
""/>
5325 <method name=
"SetId" overloaded=
"no">
5326 <autodoc>SetId(int id)
</autodoc>
5328 <param name=
"id" type=
"int" default=
""/>
5331 <method name=
"GetId" overloaded=
"no">
5332 <autodoc>GetId() -
> int
</autodoc>
5334 <method name=
"IsSeparator" overloaded=
"no">
5335 <autodoc>IsSeparator() -
> bool
</autodoc>
5337 <method name=
"SetText" overloaded=
"no">
5338 <autodoc>SetText(String str)
</autodoc>
5340 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
5343 <method name=
"GetLabel" overloaded=
"no">
5344 <autodoc>GetLabel() -
> String
</autodoc>
5346 <method name=
"GetText" overloaded=
"no">
5347 <autodoc>GetText() -
> String
</autodoc>
5349 <staticmethod name=
"GetLabelFromText" overloaded=
"no">
5350 <autodoc>GetLabelFromText(String text) -
> String
</autodoc>
5352 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
5355 <method name=
"GetKind" overloaded=
"no">
5356 <autodoc>GetKind() -
> int
</autodoc>
5358 <method name=
"SetCheckable" overloaded=
"no">
5359 <autodoc>SetCheckable(bool checkable)
</autodoc>
5361 <param name=
"checkable" type=
"bool" default=
""/>
5364 <method name=
"IsCheckable" overloaded=
"no">
5365 <autodoc>IsCheckable() -
> bool
</autodoc>
5367 <method name=
"IsSubMenu" overloaded=
"no">
5368 <autodoc>IsSubMenu() -
> bool
</autodoc>
5370 <method name=
"SetSubMenu" overloaded=
"no">
5371 <autodoc>SetSubMenu(Menu menu)
</autodoc>
5373 <param name=
"menu" type=
"p.wxMenu" default=
""/>
5376 <method name=
"GetSubMenu" overloaded=
"no">
5377 <autodoc>GetSubMenu() -
> Menu
</autodoc>
5379 <method name=
"Enable" overloaded=
"no">
5380 <autodoc>Enable(bool enable=True)
</autodoc>
5382 <param name=
"enable" type=
"bool" default=
"True"/>
5385 <method name=
"IsEnabled" overloaded=
"no">
5386 <autodoc>IsEnabled() -
> bool
</autodoc>
5388 <method name=
"Check" overloaded=
"no">
5389 <autodoc>Check(bool check=True)
</autodoc>
5391 <param name=
"check" type=
"bool" default=
"True"/>
5394 <method name=
"IsChecked" overloaded=
"no">
5395 <autodoc>IsChecked() -
> bool
</autodoc>
5397 <method name=
"Toggle" overloaded=
"no">
5398 <autodoc>Toggle()
</autodoc>
5400 <method name=
"SetHelp" overloaded=
"no">
5401 <autodoc>SetHelp(String str)
</autodoc>
5403 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
5406 <method name=
"GetHelp" overloaded=
"no">
5407 <autodoc>GetHelp() -
> String
</autodoc>
5409 <method name=
"GetAccel" overloaded=
"no">
5410 <autodoc>GetAccel() -
> AcceleratorEntry
</autodoc>
5412 <method name=
"SetAccel" overloaded=
"no">
5413 <autodoc>SetAccel(AcceleratorEntry accel)
</autodoc>
5415 <param name=
"accel" type=
"p.wxAcceleratorEntry" default=
""/>
5418 <staticmethod name=
"GetDefaultMarginWidth" overloaded=
"no">
5419 <autodoc>GetDefaultMarginWidth() -
> int
</autodoc>
5421 <method name=
"SetBitmap" overloaded=
"no">
5422 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
5424 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
5427 <method name=
"GetBitmap" overloaded=
"no">
5428 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
5432 #---------------------------------------------------------------------------
5434 <class name=
"Control" oldname=
"wxControl" module=
"core">
5435 <baseclass name=
"wxWindow"/>
5436 <constructor name=
"Control" overloaded=
"no">
5437 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5438 long style=
0, Validator validator=DefaultValidator,
5439 String name=ControlNameStr) -
> Control
</autodoc>
5441 <param name=
"parent" type=
"p.wxWindow" default=
""/>
5442 <param name=
"id" type=
"int" default=
""/>
5443 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
5444 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
5445 <param name=
"style" type=
"long" default=
"0"/>
5446 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
5447 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyControlNameStr"/>
5450 <constructor name=
"PreControl" overloaded=
"no">
5451 <autodoc>PreControl() -
> Control
</autodoc>
5453 <method name=
"Create" overloaded=
"no">
5454 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
5455 long style=
0, Validator validator=DefaultValidator,
5456 String name=ControlNameStr) -
> bool
</autodoc>
5458 <param name=
"parent" type=
"p.wxWindow" default=
""/>
5459 <param name=
"id" type=
"int" default=
""/>
5460 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
5461 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
5462 <param name=
"style" type=
"long" default=
"0"/>
5463 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
5464 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyControlNameStr"/>
5467 <method name=
"Command" overloaded=
"no">
5468 <autodoc>Command(CommandEvent event)
</autodoc>
5470 <param name=
"event" type=
"r.wxCommandEvent" default=
""/>
5473 <method name=
"GetLabel" overloaded=
"no">
5474 <autodoc>GetLabel() -
> String
</autodoc>
5476 <method name=
"SetLabel" overloaded=
"no">
5477 <autodoc>SetLabel(String label)
</autodoc>
5479 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
5484 #---------------------------------------------------------------------------
5486 <class name=
"ItemContainer" oldname=
"wxItemContainer" module=
"core">
5487 <method name=
"Append" overloaded=
"no">
5488 <autodoc>Append(String item, PyObject clientData=None) -
> int
</autodoc>
5490 <param name=
"item" type=
"r.q(const).wxString" default=
""/>
5491 <param name=
"clientData" type=
"p.PyObject" default=
"NULL"/>
5494 <method name=
"AppendItems" overloaded=
"no">
5495 <autodoc>AppendItems(wxArrayString strings)
</autodoc>
5497 <param name=
"strings" type=
"r.q(const).wxArrayString" default=
""/>
5500 <method name=
"Insert" overloaded=
"no">
5501 <autodoc>Insert(String item, int pos, PyObject clientData=None) -
> int
</autodoc>
5503 <param name=
"item" type=
"r.q(const).wxString" default=
""/>
5504 <param name=
"pos" type=
"int" default=
""/>
5505 <param name=
"clientData" type=
"p.PyObject" default=
"NULL"/>
5508 <method name=
"Clear" overloaded=
"no">
5509 <autodoc>Clear()
</autodoc>
5511 <method name=
"Delete" overloaded=
"no">
5512 <autodoc>Delete(int n)
</autodoc>
5514 <param name=
"n" type=
"int" default=
""/>
5517 <method name=
"GetCount" overloaded=
"no">
5518 <autodoc>GetCount() -
> int
</autodoc>
5520 <method name=
"IsEmpty" overloaded=
"no">
5521 <autodoc>IsEmpty() -
> bool
</autodoc>
5523 <method name=
"GetString" overloaded=
"no">
5524 <autodoc>GetString(int n) -
> String
</autodoc>
5526 <param name=
"n" type=
"int" default=
""/>
5529 <method name=
"GetStrings" overloaded=
"no">
5530 <autodoc>GetStrings() -
> wxArrayString
</autodoc>
5532 <method name=
"SetString" overloaded=
"no">
5533 <autodoc>SetString(int n, String s)
</autodoc>
5535 <param name=
"n" type=
"int" default=
""/>
5536 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
5539 <method name=
"FindString" overloaded=
"no">
5540 <autodoc>FindString(String s) -
> int
</autodoc>
5542 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
5545 <method name=
"Select" overloaded=
"no">
5546 <autodoc>Select(int n)
</autodoc>
5548 <param name=
"n" type=
"int" default=
""/>
5551 <method name=
"GetSelection" overloaded=
"no">
5552 <autodoc>GetSelection() -
> int
</autodoc>
5554 <method name=
"GetStringSelection" overloaded=
"no">
5555 <autodoc>GetStringSelection() -
> String
</autodoc>
5557 <method name=
"GetClientData" overloaded=
"no">
5558 <autodoc>GetClientData(int n) -
> PyObject
</autodoc>
5560 <param name=
"n" type=
"int" default=
""/>
5563 <method name=
"SetClientData" overloaded=
"no">
5564 <autodoc>SetClientData(int n, PyObject clientData)
</autodoc>
5566 <param name=
"n" type=
"int" default=
""/>
5567 <param name=
"clientData" type=
"p.PyObject" default=
""/>
5572 #---------------------------------------------------------------------------
5574 <class name=
"ControlWithItems" oldname=
"wxControlWithItems" module=
"core">
5575 <baseclass name=
"wxControl"/>
5576 <baseclass name=
"wxItemContainer"/>
5579 #---------------------------------------------------------------------------
5581 <class name=
"SizerItem" oldname=
"wxSizerItem" module=
"core">
5582 <baseclass name=
"wxObject"/>
5583 <constructor name=
"SizerItem" overloaded=
"no">
5584 <autodoc>__init__() -
> SizerItem
</autodoc>
5586 <constructor name=
"SizerItemSpacer" overloaded=
"no">
5587 <autodoc>SizerItemSpacer(int width, int height, int proportion, int flag, int border,
5588 Object userData) -
> SizerItem
</autodoc>
5590 <param name=
"width" type=
"int" default=
""/>
5591 <param name=
"height" type=
"int" default=
""/>
5592 <param name=
"proportion" type=
"int" default=
""/>
5593 <param name=
"flag" type=
"int" default=
""/>
5594 <param name=
"border" type=
"int" default=
""/>
5595 <param name=
"userData" type=
"p.wxObject" default=
""/>
5598 <constructor name=
"SizerItemWindow" overloaded=
"no">
5599 <autodoc>SizerItemWindow(Window window, int proportion, int flag, int border,
5600 Object userData) -
> SizerItem
</autodoc>
5602 <param name=
"window" type=
"p.wxWindow" default=
""/>
5603 <param name=
"proportion" type=
"int" default=
""/>
5604 <param name=
"flag" type=
"int" default=
""/>
5605 <param name=
"border" type=
"int" default=
""/>
5606 <param name=
"userData" type=
"p.wxObject" default=
""/>
5609 <constructor name=
"SizerItemSizer" overloaded=
"no">
5610 <autodoc>SizerItemSizer(Sizer sizer, int proportion, int flag, int border,
5611 Object userData) -
> SizerItem
</autodoc>
5613 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
5614 <param name=
"proportion" type=
"int" default=
""/>
5615 <param name=
"flag" type=
"int" default=
""/>
5616 <param name=
"border" type=
"int" default=
""/>
5617 <param name=
"userData" type=
"p.wxObject" default=
""/>
5620 <method name=
"DeleteWindows" overloaded=
"no">
5621 <autodoc>DeleteWindows()
</autodoc>
5623 <method name=
"DetachSizer" overloaded=
"no">
5624 <autodoc>DetachSizer()
</autodoc>
5626 <method name=
"GetSize" overloaded=
"no">
5627 <autodoc>GetSize() -
> Size
</autodoc>
5629 <method name=
"CalcMin" overloaded=
"no">
5630 <autodoc>CalcMin() -
> Size
</autodoc>
5632 <method name=
"SetDimension" overloaded=
"no">
5633 <autodoc>SetDimension(Point pos, Size size)
</autodoc>
5635 <param name=
"pos" type=
"wxPoint" default=
""/>
5636 <param name=
"size" type=
"wxSize" default=
""/>
5639 <method name=
"GetMinSize" overloaded=
"no">
5640 <autodoc>GetMinSize() -
> Size
</autodoc>
5642 <method name=
"SetInitSize" overloaded=
"no">
5643 <autodoc>SetInitSize(int x, int y)
</autodoc>
5645 <param name=
"x" type=
"int" default=
""/>
5646 <param name=
"y" type=
"int" default=
""/>
5649 <method name=
"SetRatioWH" overloaded=
"no">
5650 <autodoc>SetRatioWH(int width, int height)
</autodoc>
5652 <param name=
"width" type=
"int" default=
""/>
5653 <param name=
"height" type=
"int" default=
""/>
5656 <method name=
"SetRatioSize" overloaded=
"no">
5657 <autodoc>SetRatioSize(Size size)
</autodoc>
5659 <param name=
"size" type=
"wxSize" default=
""/>
5662 <method name=
"SetRatio" overloaded=
"no">
5663 <autodoc>SetRatio(float ratio)
</autodoc>
5665 <param name=
"ratio" type=
"float" default=
""/>
5668 <method name=
"GetRatio" overloaded=
"no">
5669 <autodoc>GetRatio() -
> float
</autodoc>
5671 <method name=
"IsWindow" overloaded=
"no">
5672 <autodoc>IsWindow() -
> bool
</autodoc>
5674 <method name=
"IsSizer" overloaded=
"no">
5675 <autodoc>IsSizer() -
> bool
</autodoc>
5677 <method name=
"IsSpacer" overloaded=
"no">
5678 <autodoc>IsSpacer() -
> bool
</autodoc>
5680 <method name=
"SetProportion" overloaded=
"no">
5681 <autodoc>SetProportion(int proportion)
</autodoc>
5683 <param name=
"proportion" type=
"int" default=
""/>
5686 <method name=
"GetProportion" overloaded=
"no">
5687 <autodoc>GetProportion() -
> int
</autodoc>
5689 <method name=
"SetFlag" overloaded=
"no">
5690 <autodoc>SetFlag(int flag)
</autodoc>
5692 <param name=
"flag" type=
"int" default=
""/>
5695 <method name=
"GetFlag" overloaded=
"no">
5696 <autodoc>GetFlag() -
> int
</autodoc>
5698 <method name=
"SetBorder" overloaded=
"no">
5699 <autodoc>SetBorder(int border)
</autodoc>
5701 <param name=
"border" type=
"int" default=
""/>
5704 <method name=
"GetBorder" overloaded=
"no">
5705 <autodoc>GetBorder() -
> int
</autodoc>
5707 <method name=
"GetWindow" overloaded=
"no">
5708 <autodoc>GetWindow() -
> Window
</autodoc>
5710 <method name=
"SetWindow" overloaded=
"no">
5711 <autodoc>SetWindow(Window window)
</autodoc>
5713 <param name=
"window" type=
"p.wxWindow" default=
""/>
5716 <method name=
"GetSizer" overloaded=
"no">
5717 <autodoc>GetSizer() -
> Sizer
</autodoc>
5719 <method name=
"SetSizer" overloaded=
"no">
5720 <autodoc>SetSizer(Sizer sizer)
</autodoc>
5722 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
5725 <method name=
"GetSpacer" overloaded=
"no">
5726 <autodoc>GetSpacer() -
> Size
</autodoc>
5728 <method name=
"SetSpacer" overloaded=
"no">
5729 <autodoc>SetSpacer(Size size)
</autodoc>
5731 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
5734 <method name=
"Show" overloaded=
"no">
5735 <autodoc>Show(bool show)
</autodoc>
5737 <param name=
"show" type=
"bool" default=
""/>
5740 <method name=
"IsShown" overloaded=
"no">
5741 <autodoc>IsShown() -
> bool
</autodoc>
5743 <method name=
"GetPosition" overloaded=
"no">
5744 <autodoc>GetPosition() -
> Point
</autodoc>
5746 <method name=
"GetUserData" overloaded=
"no">
5747 <autodoc>GetUserData() -
> PyObject
</autodoc>
5750 <class name=
"Sizer" oldname=
"wxSizer" module=
"core">
5751 <baseclass name=
"wxObject"/>
5752 <method name=
"_setOORInfo" overloaded=
"no">
5753 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
5755 <param name=
"_self" type=
"p.PyObject" default=
""/>
5758 <method name=
"Add" overloaded=
"no">
5759 <autodoc>Add(PyObject item, int proportion=
0, int flag=
0, int border=
0,
5760 PyObject userData=None)
</autodoc>
5762 <param name=
"item" type=
"p.PyObject" default=
""/>
5763 <param name=
"proportion" type=
"int" default=
"0"/>
5764 <param name=
"flag" type=
"int" default=
"0"/>
5765 <param name=
"border" type=
"int" default=
"0"/>
5766 <param name=
"userData" type=
"p.PyObject" default=
"NULL"/>
5769 <method name=
"Insert" overloaded=
"no">
5770 <autodoc>Insert(int before, PyObject item, int proportion=
0, int flag=
0,
5771 int border=
0, PyObject userData=None)
</autodoc>
5773 <param name=
"before" type=
"int" default=
""/>
5774 <param name=
"item" type=
"p.PyObject" default=
""/>
5775 <param name=
"proportion" type=
"int" default=
"0"/>
5776 <param name=
"flag" type=
"int" default=
"0"/>
5777 <param name=
"border" type=
"int" default=
"0"/>
5778 <param name=
"userData" type=
"p.PyObject" default=
"NULL"/>
5781 <method name=
"Prepend" overloaded=
"no">
5782 <autodoc>Prepend(PyObject item, int proportion=
0, int flag=
0, int border=
0,
5783 PyObject userData=None)
</autodoc>
5785 <param name=
"item" type=
"p.PyObject" default=
""/>
5786 <param name=
"proportion" type=
"int" default=
"0"/>
5787 <param name=
"flag" type=
"int" default=
"0"/>
5788 <param name=
"border" type=
"int" default=
"0"/>
5789 <param name=
"userData" type=
"p.PyObject" default=
"NULL"/>
5792 <method name=
"Remove" overloaded=
"no">
5793 <autodoc>Remove(PyObject item) -
> bool
</autodoc>
5795 <param name=
"item" type=
"p.PyObject" default=
""/>
5798 <method name=
"_SetItemMinSize" overloaded=
"no">
5799 <autodoc>_SetItemMinSize(PyObject item, Size size)
</autodoc>
5801 <param name=
"item" type=
"p.PyObject" default=
""/>
5802 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
5805 <method name=
"AddItem" overloaded=
"no">
5806 <autodoc>AddItem(SizerItem item)
</autodoc>
5808 <param name=
"item" type=
"p.wxSizerItem" default=
""/>
5811 <method name=
"InsertItem" overloaded=
"no">
5812 <autodoc>InsertItem(size_t index, SizerItem item)
</autodoc>
5814 <param name=
"index" type=
"size_t" default=
""/>
5815 <param name=
"item" type=
"p.wxSizerItem" default=
""/>
5818 <method name=
"PrependItem" overloaded=
"no">
5819 <autodoc>PrependItem(SizerItem item)
</autodoc>
5821 <param name=
"item" type=
"p.wxSizerItem" default=
""/>
5825 def AddMany(self, widgets):
5826 for childinfo in widgets:
5827 if type(childinfo) != type(()) or (len(childinfo) ==
2 and type(childinfo[
0]) == type(
1)):
5828 childinfo = (childinfo, )
5829 self.Add(*childinfo)
5831 # for backwards compatibility only, please do not use in new code
5832 AddWindow = AddSizer = AddSpacer = Add
5833 PrependWindow = PrependSizer = PrependSpacer = Prepend
5834 InsertWindow = InsertSizer = InsertSpacer = Insert
5835 RemoveWindow = RemoveSizer = RemovePos = Remove
5838 def SetItemMinSize(self, item, *args):
5840 return self._SetItemMinSize(item, args)
5842 return self._SetItemMinSize(item, args[
0])
5844 <method name=
"SetDimension" overloaded=
"no">
5845 <autodoc>SetDimension(int x, int y, int width, int height)
</autodoc>
5847 <param name=
"x" type=
"int" default=
""/>
5848 <param name=
"y" type=
"int" default=
""/>
5849 <param name=
"width" type=
"int" default=
""/>
5850 <param name=
"height" type=
"int" default=
""/>
5853 <method name=
"SetMinSize" overloaded=
"no">
5854 <autodoc>SetMinSize(Size size)
</autodoc>
5856 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
5859 <method name=
"GetSize" overloaded=
"no">
5860 <autodoc>GetSize() -
> Size
</autodoc>
5862 <method name=
"GetPosition" overloaded=
"no">
5863 <autodoc>GetPosition() -
> Point
</autodoc>
5865 <method name=
"GetMinSize" overloaded=
"no">
5866 <autodoc>GetMinSize() -
> Size
</autodoc>
5869 def GetSizeTuple(self):
5870 return self.GetSize().asTuple()
5871 def GetPositionTuple(self):
5872 return self.GetPosition().asTuple()
5873 def GetMinSizeTuple(self):
5874 return self.GetMinSize().asTuple()
5876 <method name=
"RecalcSizes" overloaded=
"no">
5877 <autodoc>RecalcSizes()
</autodoc>
5879 <method name=
"CalcMin" overloaded=
"no">
5880 <autodoc>CalcMin() -
> Size
</autodoc>
5882 <method name=
"Layout" overloaded=
"no">
5883 <autodoc>Layout()
</autodoc>
5885 <method name=
"Fit" overloaded=
"no">
5886 <autodoc>Fit(Window window) -
> Size
</autodoc>
5888 <param name=
"window" type=
"p.wxWindow" default=
""/>
5891 <method name=
"FitInside" overloaded=
"no">
5892 <autodoc>FitInside(Window window)
</autodoc>
5894 <param name=
"window" type=
"p.wxWindow" default=
""/>
5897 <method name=
"SetSizeHints" overloaded=
"no">
5898 <autodoc>SetSizeHints(Window window)
</autodoc>
5900 <param name=
"window" type=
"p.wxWindow" default=
""/>
5903 <method name=
"SetVirtualSizeHints" overloaded=
"no">
5904 <autodoc>SetVirtualSizeHints(Window window)
</autodoc>
5906 <param name=
"window" type=
"p.wxWindow" default=
""/>
5909 <method name=
"Clear" overloaded=
"no">
5910 <autodoc>Clear(bool delete_windows=False)
</autodoc>
5912 <param name=
"delete_windows" type=
"bool" default=
"False"/>
5915 <method name=
"DeleteWindows" overloaded=
"no">
5916 <autodoc>DeleteWindows()
</autodoc>
5918 <method name=
"GetChildren" overloaded=
"no">
5919 <autodoc>GetChildren() -
> PyObject
</autodoc>
5921 <method name=
"Show" overloaded=
"no">
5922 <autodoc>Show(PyObject item, bool show=True)
</autodoc>
5924 <param name=
"item" type=
"p.PyObject" default=
""/>
5925 <param name=
"show" type=
"bool" default=
"True"/>
5928 <method name=
"Hide" overloaded=
"no">
5929 <autodoc>Hide(PyObject item)
</autodoc>
5931 <param name=
"item" type=
"p.PyObject" default=
""/>
5934 <method name=
"IsShown" overloaded=
"no">
5935 <autodoc>IsShown(PyObject item) -
> bool
</autodoc>
5937 <param name=
"item" type=
"p.PyObject" default=
""/>
5940 <method name=
"ShowItems" overloaded=
"no">
5941 <autodoc>ShowItems(bool show)
</autodoc>
5943 <param name=
"show" type=
"bool" default=
""/>
5947 <class name=
"PySizer" oldname=
"wxPySizer" module=
"core">
5948 <baseclass name=
"wxSizer"/>
5949 <constructor name=
"PySizer" overloaded=
"no">
5950 <autodoc>__init__() -
> PySizer
</autodoc>
5952 <method name=
"_setCallbackInfo" overloaded=
"no">
5953 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
5955 <param name=
"self" type=
"p.PyObject" default=
""/>
5956 <param name=
"_class" type=
"p.PyObject" default=
""/>
5961 #---------------------------------------------------------------------------
5963 <class name=
"BoxSizer" oldname=
"wxBoxSizer" module=
"core">
5964 <baseclass name=
"wxSizer"/>
5965 <constructor name=
"BoxSizer" overloaded=
"no">
5966 <autodoc>__init__(int orient=HORIZONTAL) -
> BoxSizer
</autodoc>
5968 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
5971 <method name=
"GetOrientation" overloaded=
"no">
5972 <autodoc>GetOrientation() -
> int
</autodoc>
5974 <method name=
"SetOrientation" overloaded=
"no">
5975 <autodoc>SetOrientation(int orient)
</autodoc>
5977 <param name=
"orient" type=
"int" default=
""/>
5980 <method name=
"RecalcSizes" overloaded=
"no">
5981 <autodoc>RecalcSizes()
</autodoc>
5983 <method name=
"CalcMin" overloaded=
"no">
5984 <autodoc>CalcMin() -
> Size
</autodoc>
5988 #---------------------------------------------------------------------------
5990 <class name=
"StaticBoxSizer" oldname=
"wxStaticBoxSizer" module=
"core">
5991 <baseclass name=
"wxBoxSizer"/>
5992 <constructor name=
"StaticBoxSizer" overloaded=
"no">
5993 <autodoc>__init__(wxStaticBox box, int orient=HORIZONTAL) -
> StaticBoxSizer
</autodoc>
5995 <param name=
"box" type=
"p.wxStaticBox" default=
""/>
5996 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
5999 <method name=
"GetStaticBox" overloaded=
"no">
6000 <autodoc>GetStaticBox() -
> wxStaticBox
</autodoc>
6002 <method name=
"RecalcSizes" overloaded=
"no">
6003 <autodoc>RecalcSizes()
</autodoc>
6005 <method name=
"CalcMin" overloaded=
"no">
6006 <autodoc>CalcMin() -
> Size
</autodoc>
6010 #---------------------------------------------------------------------------
6012 <class name=
"GridSizer" oldname=
"wxGridSizer" module=
"core">
6013 <baseclass name=
"wxSizer"/>
6014 <constructor name=
"GridSizer" overloaded=
"no">
6015 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> GridSizer
</autodoc>
6017 <param name=
"rows" type=
"int" default=
"1"/>
6018 <param name=
"cols" type=
"int" default=
"0"/>
6019 <param name=
"vgap" type=
"int" default=
"0"/>
6020 <param name=
"hgap" type=
"int" default=
"0"/>
6023 <method name=
"RecalcSizes" overloaded=
"no">
6024 <autodoc>RecalcSizes()
</autodoc>
6026 <method name=
"CalcMin" overloaded=
"no">
6027 <autodoc>CalcMin() -
> Size
</autodoc>
6029 <method name=
"SetCols" overloaded=
"no">
6030 <autodoc>SetCols(int cols)
</autodoc>
6032 <param name=
"cols" type=
"int" default=
""/>
6035 <method name=
"SetRows" overloaded=
"no">
6036 <autodoc>SetRows(int rows)
</autodoc>
6038 <param name=
"rows" type=
"int" default=
""/>
6041 <method name=
"SetVGap" overloaded=
"no">
6042 <autodoc>SetVGap(int gap)
</autodoc>
6044 <param name=
"gap" type=
"int" default=
""/>
6047 <method name=
"SetHGap" overloaded=
"no">
6048 <autodoc>SetHGap(int gap)
</autodoc>
6050 <param name=
"gap" type=
"int" default=
""/>
6053 <method name=
"GetCols" overloaded=
"no">
6054 <autodoc>GetCols() -
> int
</autodoc>
6056 <method name=
"GetRows" overloaded=
"no">
6057 <autodoc>GetRows() -
> int
</autodoc>
6059 <method name=
"GetVGap" overloaded=
"no">
6060 <autodoc>GetVGap() -
> int
</autodoc>
6062 <method name=
"GetHGap" overloaded=
"no">
6063 <autodoc>GetHGap() -
> int
</autodoc>
6067 #---------------------------------------------------------------------------
6069 <class name=
"FlexGridSizer" oldname=
"wxFlexGridSizer" module=
"core">
6070 <baseclass name=
"wxGridSizer"/>
6071 <constructor name=
"FlexGridSizer" overloaded=
"no">
6072 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> FlexGridSizer
</autodoc>
6074 <param name=
"rows" type=
"int" default=
"1"/>
6075 <param name=
"cols" type=
"int" default=
"0"/>
6076 <param name=
"vgap" type=
"int" default=
"0"/>
6077 <param name=
"hgap" type=
"int" default=
"0"/>
6080 <method name=
"RecalcSizes" overloaded=
"no">
6081 <autodoc>RecalcSizes()
</autodoc>
6083 <method name=
"CalcMin" overloaded=
"no">
6084 <autodoc>CalcMin() -
> Size
</autodoc>
6086 <method name=
"AddGrowableRow" overloaded=
"no">
6087 <autodoc>AddGrowableRow(size_t idx, int proportion=
0)
</autodoc>
6089 <param name=
"idx" type=
"size_t" default=
""/>
6090 <param name=
"proportion" type=
"int" default=
"0"/>
6093 <method name=
"RemoveGrowableRow" overloaded=
"no">
6094 <autodoc>RemoveGrowableRow(size_t idx)
</autodoc>
6096 <param name=
"idx" type=
"size_t" default=
""/>
6099 <method name=
"AddGrowableCol" overloaded=
"no">
6100 <autodoc>AddGrowableCol(size_t idx, int proportion=
0)
</autodoc>
6102 <param name=
"idx" type=
"size_t" default=
""/>
6103 <param name=
"proportion" type=
"int" default=
"0"/>
6106 <method name=
"RemoveGrowableCol" overloaded=
"no">
6107 <autodoc>RemoveGrowableCol(size_t idx)
</autodoc>
6109 <param name=
"idx" type=
"size_t" default=
""/>
6112 <method name=
"SetFlexibleDirection" overloaded=
"no">
6113 <autodoc>SetFlexibleDirection(int direction)
</autodoc>
6115 <param name=
"direction" type=
"int" default=
""/>
6118 <method name=
"GetFlexibleDirection" overloaded=
"no">
6119 <autodoc>GetFlexibleDirection() -
> int
</autodoc>
6121 <method name=
"SetNonFlexibleGrowMode" overloaded=
"no">
6122 <autodoc>SetNonFlexibleGrowMode(int mode)
</autodoc>
6124 <param name=
"mode" type=
"wxFlexSizerGrowMode" default=
""/>
6127 <method name=
"GetNonFlexibleGrowMode" overloaded=
"no">
6128 <autodoc>GetNonFlexibleGrowMode() -
> int
</autodoc>
6130 <method name=
"GetRowHeights" overloaded=
"no">
6131 <autodoc>GetRowHeights() -
> wxArrayInt
</autodoc>
6133 <method name=
"GetColWidths" overloaded=
"no">
6134 <autodoc>GetColWidths() -
> wxArrayInt
</autodoc>
6138 #---------------------------------------------------------------------------
6140 <class name=
"GBPosition" oldname=
"wxGBPosition" module=
"core">
6141 <constructor name=
"GBPosition" overloaded=
"no">
6142 <autodoc>__init__(int row=
0, int col=
0) -
> GBPosition
</autodoc>
6144 <param name=
"row" type=
"int" default=
"0"/>
6145 <param name=
"col" type=
"int" default=
"0"/>
6148 <method name=
"GetRow" overloaded=
"no">
6149 <autodoc>GetRow() -
> int
</autodoc>
6151 <method name=
"GetCol" overloaded=
"no">
6152 <autodoc>GetCol() -
> int
</autodoc>
6154 <method name=
"SetRow" overloaded=
"no">
6155 <autodoc>SetRow(int row)
</autodoc>
6157 <param name=
"row" type=
"int" default=
""/>
6160 <method name=
"SetCol" overloaded=
"no">
6161 <autodoc>SetCol(int col)
</autodoc>
6163 <param name=
"col" type=
"int" default=
""/>
6166 <method name=
"__eq__" overloaded=
"no">
6167 <autodoc>__eq__(GBPosition p) -
> bool
</autodoc>
6169 <param name=
"p" type=
"r.q(const).wxGBPosition" default=
""/>
6172 <method name=
"__ne__" overloaded=
"no">
6173 <autodoc>__ne__(GBPosition p) -
> bool
</autodoc>
6175 <param name=
"p" type=
"r.q(const).wxGBPosition" default=
""/>
6178 <method name=
"Set" overloaded=
"no">
6179 <autodoc>Set(int row=
0, int col=
0)
</autodoc>
6181 <param name=
"row" type=
"int" default=
"0"/>
6182 <param name=
"col" type=
"int" default=
"0"/>
6185 <method name=
"Get" overloaded=
"no">
6186 <autodoc>Get() -
> PyObject
</autodoc>
6190 def __str__(self): return str(self.Get())
6191 def __repr__(self): return 'wx.GBPosition'+str(self.Get())
6192 def __len__(self): return len(self.Get())
6193 def __getitem__(self, index): return self.Get()[index]
6194 def __setitem__(self, index, val):
6195 if index ==
0: self.SetRow(val)
6196 elif index ==
1: self.SetCol(val)
6197 else: raise IndexError
6198 def __nonzero__(self): return self.Get() != (
0,
0)
6199 __safe_for_unpickling__ = True
6200 def __reduce__(self): return (wx.GBPosition, self.Get())
6203 row = property(GetRow, SetRow)
6204 col = property(GetCol, SetCol)
6207 <class name=
"GBSpan" oldname=
"wxGBSpan" module=
"core">
6208 <constructor name=
"GBSpan" overloaded=
"no">
6209 <autodoc>__init__(int rowspan=
1, int colspan=
1) -
> GBSpan
</autodoc>
6211 <param name=
"rowspan" type=
"int" default=
"1"/>
6212 <param name=
"colspan" type=
"int" default=
"1"/>
6215 <method name=
"GetRowspan" overloaded=
"no">
6216 <autodoc>GetRowspan() -
> int
</autodoc>
6218 <method name=
"GetColspan" overloaded=
"no">
6219 <autodoc>GetColspan() -
> int
</autodoc>
6221 <method name=
"SetRowspan" overloaded=
"no">
6222 <autodoc>SetRowspan(int rowspan)
</autodoc>
6224 <param name=
"rowspan" type=
"int" default=
""/>
6227 <method name=
"SetColspan" overloaded=
"no">
6228 <autodoc>SetColspan(int colspan)
</autodoc>
6230 <param name=
"colspan" type=
"int" default=
""/>
6233 <method name=
"__eq__" overloaded=
"no">
6234 <autodoc>__eq__(GBSpan o) -
> bool
</autodoc>
6236 <param name=
"o" type=
"r.q(const).wxGBSpan" default=
""/>
6239 <method name=
"__ne__" overloaded=
"no">
6240 <autodoc>__ne__(GBSpan o) -
> bool
</autodoc>
6242 <param name=
"o" type=
"r.q(const).wxGBSpan" default=
""/>
6245 <method name=
"Set" overloaded=
"no">
6246 <autodoc>Set(int rowspan=
1, int colspan=
1)
</autodoc>
6248 <param name=
"rowspan" type=
"int" default=
"1"/>
6249 <param name=
"colspan" type=
"int" default=
"1"/>
6252 <method name=
"Get" overloaded=
"no">
6253 <autodoc>Get() -
> PyObject
</autodoc>
6257 def __str__(self): return str(self.Get())
6258 def __repr__(self): return 'wx.GBSpan'+str(self.Get())
6259 def __len__(self): return len(self.Get())
6260 def __getitem__(self, index): return self.Get()[index]
6261 def __setitem__(self, index, val):
6262 if index ==
0: self.SetRowspan(val)
6263 elif index ==
1: self.SetColspan(val)
6264 else: raise IndexError
6265 def __nonzero__(self): return self.Get() != (
0,
0)
6266 __safe_for_unpickling__ = True
6267 def __reduce__(self): return (wx.GBSpan, self.Get())
6270 rowspan = property(GetRowspan, SetRowspan)
6271 colspan = property(GetColspan, SetColspan)
6274 <class name=
"GBSizerItem" oldname=
"wxGBSizerItem" module=
"core">
6275 <baseclass name=
"wxSizerItem"/>
6276 <constructor name=
"GBSizerItem" overloaded=
"no">
6277 <autodoc>__init__() -
> GBSizerItem
</autodoc>
6279 <constructor name=
"GBSizerItemWindow" overloaded=
"no">
6280 <autodoc>GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag,
6281 int border, Object userData) -
> GBSizerItem
</autodoc>
6283 <param name=
"window" type=
"p.wxWindow" default=
""/>
6284 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6285 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6286 <param name=
"flag" type=
"int" default=
""/>
6287 <param name=
"border" type=
"int" default=
""/>
6288 <param name=
"userData" type=
"p.wxObject" default=
""/>
6291 <constructor name=
"GBSizerItemSizer" overloaded=
"no">
6292 <autodoc>GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag,
6293 int border, Object userData) -
> GBSizerItem
</autodoc>
6295 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6296 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6297 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6298 <param name=
"flag" type=
"int" default=
""/>
6299 <param name=
"border" type=
"int" default=
""/>
6300 <param name=
"userData" type=
"p.wxObject" default=
""/>
6303 <constructor name=
"GBSizerItemSpacer" overloaded=
"no">
6304 <autodoc>GBSizerItemSpacer(int width, int height, GBPosition pos, GBSpan span,
6305 int flag, int border, Object userData) -
> GBSizerItem
</autodoc>
6307 <param name=
"width" type=
"int" default=
""/>
6308 <param name=
"height" type=
"int" default=
""/>
6309 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6310 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6311 <param name=
"flag" type=
"int" default=
""/>
6312 <param name=
"border" type=
"int" default=
""/>
6313 <param name=
"userData" type=
"p.wxObject" default=
""/>
6316 <method name=
"GetPos" overloaded=
"no">
6317 <autodoc>GetPos() -
> GBPosition
</autodoc>
6319 <pythoncode> def GetPosTuple(self): return self.GetPos().Get()
</pythoncode>
6320 <method name=
"GetSpan" overloaded=
"no">
6321 <autodoc>GetSpan() -
> GBSpan
</autodoc>
6323 <pythoncode> def GetSpanTuple(self): return self.GetSpan().Get()
</pythoncode>
6324 <method name=
"SetPos" overloaded=
"no">
6325 <autodoc>SetPos(GBPosition pos) -
> bool
</autodoc>
6327 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6330 <method name=
"SetSpan" overloaded=
"no">
6331 <autodoc>SetSpan(GBSpan span) -
> bool
</autodoc>
6333 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6336 <method name=
"Intersects" overloaded=
"yes">
6338 <param name=
"other" type=
"r.q(const).wxGBSizerItem" default=
""/>
6341 <method name=
"Intersects" overloaded=
"yes">
6342 <autodoc>Intersects(GBSizerItem other) -
> bool
6343 Intersects(GBPosition pos, GBSpan span) -
> bool
</autodoc>
6345 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6346 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6349 <method name=
"GetEndPos" overloaded=
"no">
6350 <autodoc>GetEndPos(int row, int col)
</autodoc>
6352 <param name=
"row" type=
"r.int" default=
""/>
6353 <param name=
"col" type=
"r.int" default=
""/>
6356 <method name=
"GetGBSizer" overloaded=
"no">
6357 <autodoc>GetGBSizer() -
> GridBagSizer
</autodoc>
6359 <method name=
"SetGBSizer" overloaded=
"no">
6360 <autodoc>SetGBSizer(GridBagSizer sizer)
</autodoc>
6362 <param name=
"sizer" type=
"p.wxGridBagSizer" default=
""/>
6366 <class name=
"GridBagSizer" oldname=
"wxGridBagSizer" module=
"core">
6367 <baseclass name=
"wxFlexGridSizer"/>
6368 <constructor name=
"GridBagSizer" overloaded=
"no">
6369 <autodoc>__init__(int vgap=
0, int hgap=
0) -
> GridBagSizer
</autodoc>
6371 <param name=
"vgap" type=
"int" default=
"0"/>
6372 <param name=
"hgap" type=
"int" default=
"0"/>
6375 <method name=
"Add" overloaded=
"no">
6376 <autodoc>Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan,
6377 int flag=
0, int border=
0, PyObject userData=None) -
> bool
</autodoc>
6379 <param name=
"item" type=
"p.PyObject" default=
""/>
6380 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6381 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
"wxDefaultSpan"/>
6382 <param name=
"flag" type=
"int" default=
"0"/>
6383 <param name=
"border" type=
"int" default=
"0"/>
6384 <param name=
"userData" type=
"p.PyObject" default=
"NULL"/>
6387 <method name=
"AddItem" overloaded=
"no">
6388 <autodoc>AddItem(GBSizerItem item) -
> bool
</autodoc>
6390 <param name=
"item" type=
"p.wxGBSizerItem" default=
""/>
6393 <method name=
"GetEmptyCellSize" overloaded=
"no">
6394 <autodoc>GetEmptyCellSize() -
> Size
</autodoc>
6396 <method name=
"SetEmptyCellSize" overloaded=
"no">
6397 <autodoc>SetEmptyCellSize(Size sz)
</autodoc>
6399 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
6402 <method name=
"GetItemPosition" overloaded=
"yes">
6404 <param name=
"window" type=
"p.wxWindow" default=
""/>
6407 <method name=
"GetItemPosition" overloaded=
"yes">
6409 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6412 <method name=
"GetItemPosition" overloaded=
"yes">
6413 <autodoc>GetItemPosition(Window window) -
> GBPosition
6414 GetItemPosition(Sizer sizer) -
> GBPosition
6415 GetItemPosition(size_t index) -
> GBPosition
</autodoc>
6417 <param name=
"index" type=
"size_t" default=
""/>
6420 <method name=
"SetItemPosition" overloaded=
"yes">
6422 <param name=
"window" type=
"p.wxWindow" default=
""/>
6423 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6426 <method name=
"SetItemPosition" overloaded=
"yes">
6428 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6429 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6432 <method name=
"SetItemPosition" overloaded=
"yes">
6433 <autodoc>SetItemPosition(Window window, GBPosition pos) -
> bool
6434 SetItemPosition(Sizer sizer, GBPosition pos) -
> bool
6435 SetItemPosition(size_t index, GBPosition pos) -
> bool
</autodoc>
6437 <param name=
"index" type=
"size_t" default=
""/>
6438 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6441 <method name=
"GetItemSpan" overloaded=
"yes">
6443 <param name=
"window" type=
"p.wxWindow" default=
""/>
6446 <method name=
"GetItemSpan" overloaded=
"yes">
6448 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6451 <method name=
"GetItemSpan" overloaded=
"yes">
6452 <autodoc>GetItemSpan(Window window) -
> GBSpan
6453 GetItemSpan(Sizer sizer) -
> GBSpan
6454 GetItemSpan(size_t index) -
> GBSpan
</autodoc>
6456 <param name=
"index" type=
"size_t" default=
""/>
6459 <method name=
"SetItemSpan" overloaded=
"yes">
6461 <param name=
"window" type=
"p.wxWindow" default=
""/>
6462 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6465 <method name=
"SetItemSpan" overloaded=
"yes">
6467 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6468 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6471 <method name=
"SetItemSpan" overloaded=
"yes">
6472 <autodoc>SetItemSpan(Window window, GBSpan span) -
> bool
6473 SetItemSpan(Sizer sizer, GBSpan span) -
> bool
6474 SetItemSpan(size_t index, GBSpan span) -
> bool
</autodoc>
6476 <param name=
"index" type=
"size_t" default=
""/>
6477 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6480 <method name=
"FindItem" overloaded=
"yes">
6482 <param name=
"window" type=
"p.wxWindow" default=
""/>
6485 <method name=
"FindItem" overloaded=
"yes">
6486 <autodoc>FindItem(Window window) -
> GBSizerItem
6487 FindItem(Sizer sizer) -
> GBSizerItem
</autodoc>
6489 <param name=
"sizer" type=
"p.wxSizer" default=
""/>
6492 <method name=
"FindItemAtPosition" overloaded=
"no">
6493 <autodoc>FindItemAtPosition(GBPosition pos) -
> GBSizerItem
</autodoc>
6495 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6498 <method name=
"FindItemAtPoint" overloaded=
"no">
6499 <autodoc>FindItemAtPoint(Point pt) -
> GBSizerItem
</autodoc>
6501 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
6504 <method name=
"FindItemWithData" overloaded=
"no">
6505 <autodoc>FindItemWithData(Object userData) -
> GBSizerItem
</autodoc>
6507 <param name=
"userData" type=
"p.q(const).wxObject" default=
""/>
6510 <method name=
"RecalcSizes" overloaded=
"no">
6511 <autodoc>RecalcSizes()
</autodoc>
6513 <method name=
"CalcMin" overloaded=
"no">
6514 <autodoc>CalcMin() -
> Size
</autodoc>
6516 <method name=
"CheckForIntersection" overloaded=
"yes">
6518 <param name=
"item" type=
"p.wxGBSizerItem" default=
""/>
6519 <param name=
"excludeItem" type=
"p.wxGBSizerItem" default=
"NULL"/>
6522 <method name=
"CheckForIntersection" overloaded=
"yes">
6523 <autodoc>CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -
> bool
6524 CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -
> bool
</autodoc>
6526 <param name=
"pos" type=
"r.q(const).wxGBPosition" default=
""/>
6527 <param name=
"span" type=
"r.q(const).wxGBSpan" default=
""/>
6528 <param name=
"excludeItem" type=
"p.wxGBSizerItem" default=
"NULL"/>
6533 #---------------------------------------------------------------------------
6535 <class name=
"IndividualLayoutConstraint" oldname=
"wxIndividualLayoutConstraint" module=
"core">
6536 <baseclass name=
"wxObject"/>
6537 <method name=
"Set" overloaded=
"no">
6538 <autodoc>Set(int rel, Window otherW, int otherE, int val=
0, int marg=wxLAYOUT_DEFAULT_MARGIN)
</autodoc>
6540 <param name=
"rel" type=
"wxRelationship" default=
""/>
6541 <param name=
"otherW" type=
"p.wxWindow" default=
""/>
6542 <param name=
"otherE" type=
"wxEdge" default=
""/>
6543 <param name=
"val" type=
"int" default=
"0"/>
6544 <param name=
"marg" type=
"int" default=
"wxLAYOUT_DEFAULT_MARGIN"/>
6547 <method name=
"LeftOf" overloaded=
"no">
6548 <autodoc>LeftOf(Window sibling, int marg=
0)
</autodoc>
6550 <param name=
"sibling" type=
"p.wxWindow" default=
""/>
6551 <param name=
"marg" type=
"int" default=
"0"/>
6554 <method name=
"RightOf" overloaded=
"no">
6555 <autodoc>RightOf(Window sibling, int marg=
0)
</autodoc>
6557 <param name=
"sibling" type=
"p.wxWindow" default=
""/>
6558 <param name=
"marg" type=
"int" default=
"0"/>
6561 <method name=
"Above" overloaded=
"no">
6562 <autodoc>Above(Window sibling, int marg=
0)
</autodoc>
6564 <param name=
"sibling" type=
"p.wxWindow" default=
""/>
6565 <param name=
"marg" type=
"int" default=
"0"/>
6568 <method name=
"Below" overloaded=
"no">
6569 <autodoc>Below(Window sibling, int marg=
0)
</autodoc>
6571 <param name=
"sibling" type=
"p.wxWindow" default=
""/>
6572 <param name=
"marg" type=
"int" default=
"0"/>
6575 <method name=
"SameAs" overloaded=
"no">
6576 <autodoc>SameAs(Window otherW, int edge, int marg=
0)
</autodoc>
6578 <param name=
"otherW" type=
"p.wxWindow" default=
""/>
6579 <param name=
"edge" type=
"wxEdge" default=
""/>
6580 <param name=
"marg" type=
"int" default=
"0"/>
6583 <method name=
"PercentOf" overloaded=
"no">
6584 <autodoc>PercentOf(Window otherW, int wh, int per)
</autodoc>
6586 <param name=
"otherW" type=
"p.wxWindow" default=
""/>
6587 <param name=
"wh" type=
"wxEdge" default=
""/>
6588 <param name=
"per" type=
"int" default=
""/>
6591 <method name=
"Absolute" overloaded=
"no">
6592 <autodoc>Absolute(int val)
</autodoc>
6594 <param name=
"val" type=
"int" default=
""/>
6597 <method name=
"Unconstrained" overloaded=
"no">
6598 <autodoc>Unconstrained()
</autodoc>
6600 <method name=
"AsIs" overloaded=
"no">
6601 <autodoc>AsIs()
</autodoc>
6603 <method name=
"GetOtherWindow" overloaded=
"no">
6604 <autodoc>GetOtherWindow() -
> Window
</autodoc>
6606 <method name=
"GetMyEdge" overloaded=
"no">
6607 <autodoc>GetMyEdge() -
> int
</autodoc>
6609 <method name=
"SetEdge" overloaded=
"no">
6610 <autodoc>SetEdge(int which)
</autodoc>
6612 <param name=
"which" type=
"wxEdge" default=
""/>
6615 <method name=
"SetValue" overloaded=
"no">
6616 <autodoc>SetValue(int v)
</autodoc>
6618 <param name=
"v" type=
"int" default=
""/>
6621 <method name=
"GetMargin" overloaded=
"no">
6622 <autodoc>GetMargin() -
> int
</autodoc>
6624 <method name=
"SetMargin" overloaded=
"no">
6625 <autodoc>SetMargin(int m)
</autodoc>
6627 <param name=
"m" type=
"int" default=
""/>
6630 <method name=
"GetValue" overloaded=
"no">
6631 <autodoc>GetValue() -
> int
</autodoc>
6633 <method name=
"GetPercent" overloaded=
"no">
6634 <autodoc>GetPercent() -
> int
</autodoc>
6636 <method name=
"GetOtherEdge" overloaded=
"no">
6637 <autodoc>GetOtherEdge() -
> int
</autodoc>
6639 <method name=
"GetDone" overloaded=
"no">
6640 <autodoc>GetDone() -
> bool
</autodoc>
6642 <method name=
"SetDone" overloaded=
"no">
6643 <autodoc>SetDone(bool d)
</autodoc>
6645 <param name=
"d" type=
"bool" default=
""/>
6648 <method name=
"GetRelationship" overloaded=
"no">
6649 <autodoc>GetRelationship() -
> int
</autodoc>
6651 <method name=
"SetRelationship" overloaded=
"no">
6652 <autodoc>SetRelationship(int r)
</autodoc>
6654 <param name=
"r" type=
"wxRelationship" default=
""/>
6657 <method name=
"ResetIfWin" overloaded=
"no">
6658 <autodoc>ResetIfWin(Window otherW) -
> bool
</autodoc>
6660 <param name=
"otherW" type=
"p.wxWindow" default=
""/>
6663 <method name=
"SatisfyConstraint" overloaded=
"no">
6664 <autodoc>SatisfyConstraint(LayoutConstraints constraints, Window win) -
> bool
</autodoc>
6666 <param name=
"constraints" type=
"p.wxLayoutConstraints" default=
""/>
6667 <param name=
"win" type=
"p.wxWindow" default=
""/>
6670 <method name=
"GetEdge" overloaded=
"no">
6671 <autodoc>GetEdge(int which, Window thisWin, Window other) -
> int
</autodoc>
6673 <param name=
"which" type=
"wxEdge" default=
""/>
6674 <param name=
"thisWin" type=
"p.wxWindow" default=
""/>
6675 <param name=
"other" type=
"p.wxWindow" default=
""/>
6679 <class name=
"LayoutConstraints" oldname=
"wxLayoutConstraints" module=
"core">
6680 <baseclass name=
"wxObject"/>
6681 <property name=
"left" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6682 <property name=
"top" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6683 <property name=
"right" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6684 <property name=
"bottom" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6685 <property name=
"width" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6686 <property name=
"height" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6687 <property name=
"centreX" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6688 <property name=
"centreY" type=
"wxIndividualLayoutConstraint" readonly=
"yes"/>
6689 <constructor name=
"LayoutConstraints" overloaded=
"no">
6690 <autodoc>__init__() -
> LayoutConstraints
</autodoc>
6692 <method name=
"SatisfyConstraints" overloaded=
"no">
6693 <autodoc>SatisfyConstraints(Window win) -
> (areSatisfied, noChanges)
</autodoc>
6695 <param name=
"win" type=
"p.wxWindow" default=
""/>
6696 <param name=
"OUTPUT" type=
"p.int" default=
""/>
6699 <method name=
"AreSatisfied" overloaded=
"no">
6700 <autodoc>AreSatisfied() -
> bool
</autodoc>
6703 <pythoncode>#----------------------------------------------------------------------------
6705 # Use Python's bool constants if available, make some if not
6709 __builtins__.True =
1==
1
6710 __builtins__.False =
1==
0
6714 # workarounds for bad wxRTTI names
6715 __wxPyPtrTypeMap['wxGauge95'] = 'wxGauge'
6716 __wxPyPtrTypeMap['wxSlider95'] = 'wxSlider'
6717 __wxPyPtrTypeMap['wxStatusBar95'] = 'wxStatusBar'
6720 #----------------------------------------------------------------------------
6721 # Load version numbers from __version__... Ensure that major and minor
6722 # versions are the same for both wxPython and wxWindows.
6724 from __version__ import *
6725 __version__ = VERSION_STRING
6727 assert MAJOR_VERSION == _core.MAJOR_VERSION, "wxPython/wxWindows version mismatch"
6728 assert MINOR_VERSION == _core.MINOR_VERSION, "wxPython/wxWindows version mismatch"
6729 if RELEASE_VERSION != _core.RELEASE_VERSION:
6731 warnings.warn("wxPython/wxWindows release number mismatch")
6733 #----------------------------------------------------------------------------
6735 class PyDeadObjectError(AttributeError):
6738 class _wxPyDeadObject(object):
6740 Instances of wx objects that are OOR capable will have their __class__
6741 changed to this class when the C++ object is deleted. This should help
6742 prevent crashes due to referencing a bogus C++ pointer.
6744 reprStr = "wxPython wrapper for DELETED %s object! (The C++ object no longer exists.)"
6745 attrStr = "The C++ part of the %s object has been deleted, attribute access no longer allowed."
6748 if not hasattr(self, "_name"):
6749 self._name = "[unknown]"
6750 return self.reprStr % self._name
6752 def __getattr__(self, *args):
6753 if not hasattr(self, "_name"):
6754 self._name = "[unknown]"
6755 raise PyDeadObjectError(self.attrStr % self._name)
6757 def __nonzero__(self):
6762 class PyUnbornObjectError(AttributeError):
6765 class _wxPyUnbornObject(object):
6767 Some stock objects are created when the wx.core module is
6768 imported, but their C++ instance is not created until the wx.App
6769 object is created and initialized. These object instances will
6770 temporarily have their __class__ changed to this class so an
6771 exception will be raised if they are used before the C++ instance
6775 reprStr = "wxPython wrapper for UNBORN object! (The C++ object is not initialized yet.)"
6776 attrStr = "The C++ part of this object has not been initialized, attribute access not allowed."
6779 #if not hasattr(self, "_name"):
6780 # self._name = "[unknown]"
6781 return self.reprStr #% self._name
6783 def __getattr__(self, *args):
6784 #if not hasattr(self, "_name"):
6785 # self._name = "[unknown]"
6786 raise PyUnbornObjectError(self.attrStr) # % self._name )
6788 def __nonzero__(self):
6792 #----------------------------------------------------------------------------
6793 _wxPyCallAfterId = None
6795 def CallAfter(callable, *args, **kw):
6797 Call the specified function after the current and pending event
6798 handlers have been completed. This is also good for making GUI
6799 method calls from non-GUI threads.
6802 assert app, 'No wxApp created yet'
6804 global _wxPyCallAfterId
6805 if _wxPyCallAfterId is None:
6806 _wxPyCallAfterId = wx.NewEventType()
6807 app.Connect(-
1, -
1, _wxPyCallAfterId,
6808 lambda event: event.callable(*event.args, **event.kw) )
6810 evt.SetEventType(_wxPyCallAfterId)
6811 evt.callable = callable
6814 wx.PostEvent(app, evt)
6817 #----------------------------------------------------------------------------
6822 A convenience class for wxTimer, that calls the given callable
6823 object once after the given amount of milliseconds, passing any
6824 positional or keyword args. The return value of the callable is
6825 availbale after it has been run with the GetResult method.
6827 If you don't need to get the return value or restart the timer
6828 then there is no need to hold a reference to this object. It will
6829 hold a reference to itself while the timer is running (the timer
6830 has a reference to self.Notify) but the cycle will be broken when
6831 the timer completes, automatically cleaning up the wx.FutureCall
6834 def __init__(self, millis, callable, *args, **kwargs):
6835 self.millis = millis
6836 self.callable = callable
6837 self.SetArgs(*args, **kwargs)
6848 def Start(self, millis=None, *args, **kwargs):
6853 if millis is not None:
6854 self.millis = millis
6856 self.SetArgs(*args, **kwargs)
6858 self.timer = wx.PyTimer(self.Notify)
6859 self.timer.Start(self.millis, wx.TIMER_ONE_SHOT)
6865 Stop and destroy the timer.
6867 if self.timer is not None:
6872 def GetInterval(self):
6873 if self.timer is not None:
6874 return self.timer.GetInterval()
6879 def IsRunning(self):
6880 return self.timer is not None and self.timer.IsRunning()
6883 def SetArgs(self, *args, **kwargs):
6885 (Re)set the args passed to the callable object. This is
6886 useful in conjunction with Restart if you want to schedule a
6887 new call to the same callable object but with different
6891 self.kwargs = kwargs
6897 def GetResult(self):
6902 The timer has expired so call the callable.
6904 if self.callable and getattr(self.callable, 'im_self', True):
6906 self.result = self.callable(*self.args, **self.kwargs)
6908 wx.CallAfter(self.Stop)
6911 #----------------------------------------------------------------------------
6912 #----------------------------------------------------------------------------
6914 # Import other modules in this package that should show up in the
6915 # "core" wx namespace
6917 from windows import *
6918 from controls import *
6922 # Fixup the stock objects since they can't be used yet. (They will be
6923 # restored in wx.PyApp.OnInit.)
6924 _core._wxPyFixStockObjects()
6926 #----------------------------------------------------------------------------
6927 #----------------------------------------------------------------------------
6931 <pythoncode> wx = core
</pythoncode>
6933 #---------------------------------------------------------------------------
6935 <class name=
"GDIObject" oldname=
"wxGDIObject" module=
"gdi">
6936 <baseclass name=
"wxObject"/>
6937 <constructor name=
"GDIObject" overloaded=
"no">
6938 <autodoc>__init__() -
> GDIObject
</autodoc>
6940 <destructor name=
"~wxGDIObject">
6941 <autodoc>__del__()
</autodoc>
6943 <method name=
"GetVisible" overloaded=
"no">
6944 <autodoc>GetVisible() -
> bool
</autodoc>
6946 <method name=
"SetVisible" overloaded=
"no">
6947 <autodoc>SetVisible(bool visible)
</autodoc>
6949 <param name=
"visible" type=
"bool" default=
""/>
6952 <method name=
"IsNull" overloaded=
"no">
6953 <autodoc>IsNull() -
> bool
</autodoc>
6957 #---------------------------------------------------------------------------
6959 <class name=
"Colour" oldname=
"wxColour" module=
"gdi">
6960 <baseclass name=
"wxObject"/>
6961 <constructor name=
"Colour" overloaded=
"no">
6962 <autodoc>__init__(unsigned char red=
0, unsigned char green=
0, unsigned char blue=
0) -
> Colour
</autodoc>
6964 <param name=
"red" type=
"unsigned char" default=
"0"/>
6965 <param name=
"green" type=
"unsigned char" default=
"0"/>
6966 <param name=
"blue" type=
"unsigned char" default=
"0"/>
6969 <destructor name=
"~wxColour">
6970 <autodoc>__del__()
</autodoc>
6972 <constructor name=
"NamedColour" overloaded=
"no">
6973 <autodoc>NamedColour(String colorName) -
> Colour
</autodoc>
6975 <param name=
"colorName" type=
"r.q(const).wxString" default=
""/>
6978 <constructor name=
"ColourRGB" overloaded=
"no">
6979 <autodoc>ColourRGB(unsigned long colRGB) -
> Colour
</autodoc>
6981 <param name=
"colRGB" type=
"unsigned long" default=
""/>
6984 <method name=
"Red" overloaded=
"no">
6985 <autodoc>Red() -
> unsigned char
</autodoc>
6987 <method name=
"Green" overloaded=
"no">
6988 <autodoc>Green() -
> unsigned char
</autodoc>
6990 <method name=
"Blue" overloaded=
"no">
6991 <autodoc>Blue() -
> unsigned char
</autodoc>
6993 <method name=
"Ok" overloaded=
"no">
6994 <autodoc>Ok() -
> bool
</autodoc>
6996 <method name=
"Set" overloaded=
"no">
6997 <autodoc>Set(unsigned char red, unsigned char green, unsigned char blue)
</autodoc>
6999 <param name=
"red" type=
"unsigned char" default=
""/>
7000 <param name=
"green" type=
"unsigned char" default=
""/>
7001 <param name=
"blue" type=
"unsigned char" default=
""/>
7004 <method name=
"SetRGB" overloaded=
"no">
7005 <autodoc>SetRGB(unsigned long colRGB)
</autodoc>
7007 <param name=
"colRGB" type=
"unsigned long" default=
""/>
7010 <method name=
"__eq__" overloaded=
"no">
7011 <autodoc>__eq__(Colour colour) -
> bool
</autodoc>
7013 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
7016 <method name=
"__ne__" overloaded=
"no">
7017 <autodoc>__ne__(Colour colour) -
> bool
</autodoc>
7019 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
7022 <method name=
"InitFromName" overloaded=
"no">
7023 <autodoc>InitFromName(String colourName)
</autodoc>
7025 <param name=
"colourName" type=
"r.q(const).wxString" default=
""/>
7028 <method name=
"Get" overloaded=
"no">
7029 <autodoc>Get() -
> PyObject
</autodoc>
7033 def __str__(self): return str(self.asTuple())
7034 def __repr__(self): return 'wx.Colour' + str(self.asTuple())
7035 def __nonzero__(self): return self.Ok()
7036 __safe_for_unpickling__ = True
7037 def __reduce__(self): return (Colour, self.Get())
7042 NamedColor = NamedColour
7043 ColorRGB = ColourRGB
7045 <class name=
"Palette" oldname=
"wxPalette" module=
"gdi">
7046 <baseclass name=
"wxGDIObject"/>
7047 <constructor name=
"Palette" overloaded=
"no">
7048 <autodoc>__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -
> Palette
</autodoc>
7050 <param name=
"n" type=
"int" default=
""/>
7051 <param name=
"red" type=
"p.q(const).unsigned char" default=
""/>
7052 <param name=
"green" type=
"p.q(const).unsigned char" default=
""/>
7053 <param name=
"blue" type=
"p.q(const).unsigned char" default=
""/>
7056 <destructor name=
"~wxPalette">
7057 <autodoc>__del__()
</autodoc>
7059 <method name=
"GetPixel" overloaded=
"no">
7060 <autodoc>GetPixel(byte red, byte green, byte blue) -
> int
</autodoc>
7062 <param name=
"red" type=
"byte" default=
""/>
7063 <param name=
"green" type=
"byte" default=
""/>
7064 <param name=
"blue" type=
"byte" default=
""/>
7067 <method name=
"GetRGB" overloaded=
"no">
7068 <autodoc>GetRGB(int pixel) -
> (R,G,B)
</autodoc>
7070 <param name=
"pixel" type=
"int" default=
""/>
7071 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
7072 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
7073 <param name=
"OUTPUT" type=
"p.byte" default=
""/>
7076 <method name=
"Ok" overloaded=
"no">
7077 <autodoc>Ok() -
> bool
</autodoc>
7079 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7082 #---------------------------------------------------------------------------
7084 <class name=
"Pen" oldname=
"wxPen" module=
"gdi">
7085 <baseclass name=
"wxGDIObject"/>
7086 <constructor name=
"Pen" overloaded=
"no">
7087 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> Pen
</autodoc>
7089 <param name=
"colour" type=
"r.wxColour" default=
""/>
7090 <param name=
"width" type=
"int" default=
"1"/>
7091 <param name=
"style" type=
"int" default=
"wxSOLID"/>
7094 <destructor name=
"~wxPen">
7095 <autodoc>__del__()
</autodoc>
7097 <method name=
"GetCap" overloaded=
"no">
7098 <autodoc>GetCap() -
> int
</autodoc>
7100 <method name=
"GetColour" overloaded=
"no">
7101 <autodoc>GetColour() -
> Colour
</autodoc>
7103 <method name=
"GetJoin" overloaded=
"no">
7104 <autodoc>GetJoin() -
> int
</autodoc>
7106 <method name=
"GetStyle" overloaded=
"no">
7107 <autodoc>GetStyle() -
> int
</autodoc>
7109 <method name=
"GetWidth" overloaded=
"no">
7110 <autodoc>GetWidth() -
> int
</autodoc>
7112 <method name=
"Ok" overloaded=
"no">
7113 <autodoc>Ok() -
> bool
</autodoc>
7115 <method name=
"SetCap" overloaded=
"no">
7116 <autodoc>SetCap(int cap_style)
</autodoc>
7118 <param name=
"cap_style" type=
"int" default=
""/>
7121 <method name=
"SetColour" overloaded=
"no">
7122 <autodoc>SetColour(Colour colour)
</autodoc>
7124 <param name=
"colour" type=
"r.wxColour" default=
""/>
7127 <method name=
"SetJoin" overloaded=
"no">
7128 <autodoc>SetJoin(int join_style)
</autodoc>
7130 <param name=
"join_style" type=
"int" default=
""/>
7133 <method name=
"SetStyle" overloaded=
"no">
7134 <autodoc>SetStyle(int style)
</autodoc>
7136 <param name=
"style" type=
"int" default=
""/>
7139 <method name=
"SetWidth" overloaded=
"no">
7140 <autodoc>SetWidth(int width)
</autodoc>
7142 <param name=
"width" type=
"int" default=
""/>
7145 <method name=
"SetDashes" overloaded=
"no">
7146 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
7148 <param name=
"dashes" type=
"int" default=
""/>
7149 <param name=
"dashes_array" type=
"p.wxDash" default=
""/>
7152 <method name=
"GetDashes" overloaded=
"no">
7153 <autodoc>GetDashes() -
> PyObject
</autodoc>
7155 <method name=
"__eq__" overloaded=
"no">
7156 <autodoc>__eq__(Pen pen) -
> bool
</autodoc>
7158 <param name=
"pen" type=
"r.q(const).wxPen" default=
""/>
7161 <method name=
"GetDashCount" overloaded=
"no">
7162 <autodoc>GetDashCount() -
> int
</autodoc>
7164 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7166 <class name=
"PyPen" oldname=
"wxPyPen" module=
"gdi">
7167 <baseclass name=
"wxPen"/>
7168 <constructor name=
"PyPen" overloaded=
"no">
7169 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> PyPen
</autodoc>
7171 <param name=
"colour" type=
"r.wxColour" default=
""/>
7172 <param name=
"width" type=
"int" default=
"1"/>
7173 <param name=
"style" type=
"int" default=
"wxSOLID"/>
7176 <destructor name=
"~wxPyPen">
7177 <autodoc>__del__()
</autodoc>
7179 <method name=
"SetDashes" overloaded=
"no">
7180 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
7182 <param name=
"dashes" type=
"int" default=
""/>
7183 <param name=
"dashes_array" type=
"p.wxDash" default=
""/>
7187 <pythoncode> Pen = PyPen
</pythoncode>
7189 #---------------------------------------------------------------------------
7191 <class name=
"Brush" oldname=
"wxBrush" module=
"gdi">
7192 <docstring>A brush is a drawing tool for filling in areas. It is used for painting the
7193 background of rectangles, ellipses, etc. It has a colour and a style.
</docstring>
7194 <baseclass name=
"wxGDIObject"/>
7195 <constructor name=
"Brush" overloaded=
"no">
7196 <autodoc>__init__(Colour colour, int style=SOLID) -
> Brush
</autodoc>
7197 <docstring>Constructs a brush from a colour object and style.
</docstring>
7199 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
7200 <param name=
"style" type=
"int" default=
"wxSOLID"/>
7203 <destructor name=
"~wxBrush">
7204 <autodoc>__del__()
</autodoc>
7206 <method name=
"SetColour" overloaded=
"no">
7207 <autodoc>SetColour(Colour col)
</autodoc>
7209 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
7212 <method name=
"SetStyle" overloaded=
"no">
7213 <autodoc>SetStyle(int style)
</autodoc>
7215 <param name=
"style" type=
"int" default=
""/>
7218 <method name=
"SetStipple" overloaded=
"no">
7219 <autodoc>SetStipple(Bitmap stipple)
</autodoc>
7221 <param name=
"stipple" type=
"r.q(const).wxBitmap" default=
""/>
7224 <method name=
"GetColour" overloaded=
"no">
7225 <autodoc>GetColour() -
> Colour
</autodoc>
7227 <method name=
"GetStyle" overloaded=
"no">
7228 <autodoc>GetStyle() -
> int
</autodoc>
7230 <method name=
"GetStipple" overloaded=
"no">
7231 <autodoc>GetStipple() -
> Bitmap
</autodoc>
7233 <method name=
"Ok" overloaded=
"no">
7234 <autodoc>Ok() -
> bool
</autodoc>
7236 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7238 <class name=
"Bitmap" oldname=
"wxBitmap" module=
"gdi">
7239 <baseclass name=
"wxGDIObject"/>
7240 <constructor name=
"Bitmap" overloaded=
"no">
7241 <autodoc>__init__(String name, int type=BITMAP_TYPE_ANY) -
> Bitmap
</autodoc>
7242 <docstring>Loads a bitmap from a file.
</docstring>
7244 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
7245 <param name=
"type" type=
"wxBitmapType" default=
"wxBITMAP_TYPE_ANY"/>
7248 <destructor name=
"~wxBitmap">
7249 <autodoc>__del__()
</autodoc>
7251 <constructor name=
"EmptyBitmap" overloaded=
"no">
7252 <autodoc>EmptyBitmap(int width, int height, int depth=-
1) -
> Bitmap
</autodoc>
7253 <docstring>Creates a new bitmap of the given size. A depth of -
1 indicates the depth of
7254 the current screen or visual. Some platforms only support
1 for monochrome and
7255 -
1 for the current colour setting.
</docstring>
7257 <param name=
"width" type=
"int" default=
""/>
7258 <param name=
"height" type=
"int" default=
""/>
7259 <param name=
"depth" type=
"int" default=
"-1"/>
7262 <constructor name=
"BitmapFromIcon" overloaded=
"no">
7263 <autodoc>BitmapFromIcon(Icon icon) -
> Bitmap
</autodoc>
7264 <docstring>Create a new bitmap from an Icon object.
</docstring>
7266 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
7269 <constructor name=
"BitmapFromImage" overloaded=
"no">
7270 <autodoc>BitmapFromImage(Image image, int depth=-
1) -
> Bitmap
</autodoc>
7271 <docstring>Creates bitmap object from the image. This has to be done to actually display
7272 an image as you cannot draw an image directly on a window. The resulting
7273 bitmap will use the provided colour depth (or that of the current system if
7274 depth is -
1) which entails that a colour reduction has to take place.
</docstring>
7276 <param name=
"image" type=
"r.q(const).wxImage" default=
""/>
7277 <param name=
"depth" type=
"int" default=
"-1"/>
7280 <constructor name=
"BitmapFromXPMData" overloaded=
"no">
7281 <autodoc>BitmapFromXPMData(PyObject listOfStrings) -
> Bitmap
</autodoc>
7282 <docstring>Construct a Bitmap from a list of strings formatted as XPM data.
</docstring>
7284 <param name=
"listOfStrings" type=
"p.PyObject" default=
""/>
7287 <constructor name=
"BitmapFromBits" overloaded=
"no">
7288 <autodoc>BitmapFromBits(PyObject bits, int width, int height, int depth=
1) -
> Bitmap
</autodoc>
7289 <docstring>Creates a bitmap from an array of bits. You should only use this function for
7290 monochrome bitmaps (depth
1) in portable programs: in this case the bits
7291 parameter should contain an XBM image. For other bit depths, the behaviour is
7292 platform dependent.
</docstring>
7294 <param name=
"bits" type=
"p.PyObject" default=
""/>
7295 <param name=
"width" type=
"int" default=
""/>
7296 <param name=
"height" type=
"int" default=
""/>
7297 <param name=
"depth" type=
"int" default=
"1"/>
7300 <method name=
"Ok" overloaded=
"no">
7301 <autodoc>Ok() -
> bool
</autodoc>
7303 <method name=
"GetWidth" overloaded=
"no">
7304 <autodoc>GetWidth() -
> int
</autodoc>
7305 <docstring>Gets the width of the bitmap in pixels.
</docstring>
7307 <method name=
"GetHeight" overloaded=
"no">
7308 <autodoc>GetHeight() -
> int
</autodoc>
7309 <docstring>Gets the height of the bitmap in pixels.
</docstring>
7311 <method name=
"GetDepth" overloaded=
"no">
7312 <autodoc>GetDepth() -
> int
</autodoc>
7313 <docstring>Gets the colour depth of the bitmap. A value of
1 indicates a
7314 monochrome bitmap.
</docstring>
7316 <method name=
"ConvertToImage" overloaded=
"no">
7317 <autodoc>ConvertToImage() -
> Image
</autodoc>
7318 <docstring>Creates a platform-independent image from a platform-dependent bitmap. This
7319 preserves mask information so that bitmaps and images can be converted back
7320 and forth without loss in that respect.
</docstring>
7322 <method name=
"GetMask" overloaded=
"no">
7323 <autodoc>GetMask() -
> Mask
</autodoc>
7324 <docstring>Gets the associated mask (if any) which may have been loaded from a file
7325 or explpicitly set for the bitmap.
</docstring>
7327 <method name=
"SetMask" overloaded=
"no">
7328 <autodoc>SetMask(Mask mask)
</autodoc>
7329 <docstring>Sets the mask for this bitmap.
</docstring>
7331 <param name=
"mask" type=
"p.wxMask" default=
""/>
7334 <method name=
"SetMaskColour" overloaded=
"no">
7335 <autodoc>SetMaskColour(Colour colour)
</autodoc>
7336 <docstring>Create a Mask based on a specified colour in the Bitmap.
</docstring>
7338 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
7341 <method name=
"GetSubBitmap" overloaded=
"no">
7342 <autodoc>GetSubBitmap(Rect rect) -
> Bitmap
</autodoc>
7343 <docstring>Returns a sub bitmap of the current one as long as the rect belongs entirely
7344 to the bitmap. This function preserves bit depth and mask information.
</docstring>
7346 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7349 <method name=
"SaveFile" overloaded=
"no">
7350 <autodoc>SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -
> bool
</autodoc>
7351 <docstring>Saves a bitmap in the named file.
</docstring>
7353 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
7354 <param name=
"type" type=
"wxBitmapType" default=
""/>
7355 <param name=
"palette" type=
"p.wxPalette" default=
"(wxPalette *) NULL"/>
7358 <method name=
"LoadFile" overloaded=
"no">
7359 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
7360 <docstring>Loads a bitmap from a file
</docstring>
7362 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
7363 <param name=
"type" type=
"wxBitmapType" default=
""/>
7366 <method name=
"CopyFromIcon" overloaded=
"no">
7367 <autodoc>CopyFromIcon(Icon icon) -
> bool
</autodoc>
7369 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
7372 <method name=
"SetHeight" overloaded=
"no">
7373 <autodoc>SetHeight(int height)
</autodoc>
7374 <docstring>Set the height property (does not affect the bitmap data).
</docstring>
7376 <param name=
"height" type=
"int" default=
""/>
7379 <method name=
"SetWidth" overloaded=
"no">
7380 <autodoc>SetWidth(int width)
</autodoc>
7381 <docstring>Set the width property (does not affect the bitmap data).
</docstring>
7383 <param name=
"width" type=
"int" default=
""/>
7386 <method name=
"SetDepth" overloaded=
"no">
7387 <autodoc>SetDepth(int depth)
</autodoc>
7388 <docstring>Set the depth property (does not affect the bitmap data).
</docstring>
7390 <param name=
"depth" type=
"int" default=
""/>
7393 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7395 <class name=
"Mask" oldname=
"wxMask" module=
"gdi">
7396 <docstring>This class encapsulates a monochrome mask bitmap, where the masked area is
7397 black and the unmasked area is white. When associated with a bitmap and drawn
7398 in a device context, the unmasked area of the bitmap will be drawn, and the
7399 masked area will not be drawn.
</docstring>
7400 <baseclass name=
"wxObject"/>
7401 <constructor name=
"Mask" overloaded=
"no">
7402 <autodoc>__init__(Bitmap bitmap, Colour colour=NullColour) -
> Mask
</autodoc>
7403 <docstring>Constructs a mask from a bitmap and a colour in that bitmap that indicates
7404 the transparent portions of the mask, by default BLACK is used.
</docstring>
7406 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
7407 <param name=
"colour" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
7411 <pythoncode> MaskColour = Mask
</pythoncode>
7412 <class name=
"Icon" oldname=
"wxIcon" module=
"gdi">
7413 <baseclass name=
"wxGDIObject"/>
7414 <constructor name=
"Icon" overloaded=
"no">
7415 <autodoc>__init__(String name, int type, int desiredWidth=-
1, int desiredHeight=-
1) -
> Icon
</autodoc>
7417 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
7418 <param name=
"type" type=
"wxBitmapType" default=
""/>
7419 <param name=
"desiredWidth" type=
"int" default=
"-1"/>
7420 <param name=
"desiredHeight" type=
"int" default=
"-1"/>
7423 <destructor name=
"~wxIcon">
7424 <autodoc>__del__()
</autodoc>
7426 <constructor name=
"EmptyIcon" overloaded=
"no">
7427 <autodoc>EmptyIcon() -
> Icon
</autodoc>
7429 <constructor name=
"IconFromLocation" overloaded=
"no">
7430 <autodoc>IconFromLocation(IconLocation loc) -
> Icon
</autodoc>
7432 <param name=
"loc" type=
"r.q(const).wxIconLocation" default=
""/>
7435 <constructor name=
"IconFromBitmap" overloaded=
"no">
7436 <autodoc>IconFromBitmap(Bitmap bmp) -
> Icon
</autodoc>
7438 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
7441 <constructor name=
"IconFromXPMData" overloaded=
"no">
7442 <autodoc>IconFromXPMData(PyObject listOfStrings) -
> Icon
</autodoc>
7444 <param name=
"listOfStrings" type=
"p.PyObject" default=
""/>
7447 <method name=
"LoadFile" overloaded=
"no">
7448 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
7450 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
7451 <param name=
"type" type=
"wxBitmapType" default=
""/>
7454 <method name=
"Ok" overloaded=
"no">
7455 <autodoc>Ok() -
> bool
</autodoc>
7457 <method name=
"GetWidth" overloaded=
"no">
7458 <autodoc>GetWidth() -
> int
</autodoc>
7460 <method name=
"GetHeight" overloaded=
"no">
7461 <autodoc>GetHeight() -
> int
</autodoc>
7463 <method name=
"GetDepth" overloaded=
"no">
7464 <autodoc>GetDepth() -
> int
</autodoc>
7466 <method name=
"SetWidth" overloaded=
"no">
7467 <autodoc>SetWidth(int w)
</autodoc>
7469 <param name=
"w" type=
"int" default=
""/>
7472 <method name=
"SetHeight" overloaded=
"no">
7473 <autodoc>SetHeight(int h)
</autodoc>
7475 <param name=
"h" type=
"int" default=
""/>
7478 <method name=
"SetDepth" overloaded=
"no">
7479 <autodoc>SetDepth(int d)
</autodoc>
7481 <param name=
"d" type=
"int" default=
""/>
7484 <method name=
"CopyFromBitmap" overloaded=
"no">
7485 <autodoc>CopyFromBitmap(Bitmap bmp)
</autodoc>
7487 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
7490 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7492 <class name=
"IconLocation" oldname=
"wxIconLocation" module=
"gdi">
7493 <constructor name=
"IconLocation" overloaded=
"no">
7494 <autodoc>__init__(String filename=
&wxPyEmptyString, int num=
0) -
> IconLocation
</autodoc>
7496 <param name=
"filename" type=
"p.q(const).wxString" default=
"&wxPyEmptyString"/>
7497 <param name=
"num" type=
"int" default=
"0"/>
7500 <destructor name=
"~wxIconLocation">
7501 <autodoc>__del__()
</autodoc>
7503 <method name=
"IsOk" overloaded=
"no">
7504 <autodoc>IsOk() -
> bool
</autodoc>
7506 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7507 <method name=
"SetFileName" overloaded=
"no">
7508 <autodoc>SetFileName(String filename)
</autodoc>
7510 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
7513 <method name=
"GetFileName" overloaded=
"no">
7514 <autodoc>GetFileName() -
> String
</autodoc>
7516 <method name=
"SetIndex" overloaded=
"no">
7517 <autodoc>SetIndex(int num)
</autodoc>
7519 <param name=
"num" type=
"int" default=
""/>
7522 <method name=
"GetIndex" overloaded=
"no">
7523 <autodoc>GetIndex() -
> int
</autodoc>
7526 <class name=
"IconBundle" oldname=
"wxIconBundle" module=
"gdi">
7527 <constructor name=
"IconBundle" overloaded=
"no">
7528 <autodoc>__init__() -
> IconBundle
</autodoc>
7530 <constructor name=
"IconBundleFromFile" overloaded=
"no">
7531 <autodoc>IconBundleFromFile(String file, long type) -
> IconBundle
</autodoc>
7533 <param name=
"file" type=
"r.q(const).wxString" default=
""/>
7534 <param name=
"type" type=
"long" default=
""/>
7537 <constructor name=
"IconBundleFromIcon" overloaded=
"no">
7538 <autodoc>IconBundleFromIcon(Icon icon) -
> IconBundle
</autodoc>
7540 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
7543 <destructor name=
"~wxIconBundle">
7544 <autodoc>__del__()
</autodoc>
7546 <method name=
"AddIcon" overloaded=
"no">
7547 <autodoc>AddIcon(Icon icon)
</autodoc>
7549 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
7552 <method name=
"AddIconFromFile" overloaded=
"no">
7553 <autodoc>AddIconFromFile(String file, long type)
</autodoc>
7555 <param name=
"file" type=
"r.q(const).wxString" default=
""/>
7556 <param name=
"type" type=
"long" default=
""/>
7559 <method name=
"GetIcon" overloaded=
"no">
7560 <autodoc>GetIcon(Size size) -
> Icon
</autodoc>
7562 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
7566 <class name=
"Cursor" oldname=
"wxCursor" module=
"gdi">
7567 <baseclass name=
"wxGDIObject"/>
7568 <constructor name=
"Cursor" overloaded=
"no">
7569 <autodoc>__init__(String cursorName, long flags, int hotSpotX=
0, int hotSpotY=
0) -
> Cursor
</autodoc>
7571 <param name=
"cursorName" type=
"p.q(const).wxString" default=
""/>
7572 <param name=
"flags" type=
"long" default=
""/>
7573 <param name=
"hotSpotX" type=
"int" default=
"0"/>
7574 <param name=
"hotSpotY" type=
"int" default=
"0"/>
7577 <destructor name=
"~wxCursor">
7578 <autodoc>__del__()
</autodoc>
7580 <constructor name=
"StockCursor" overloaded=
"no">
7581 <autodoc>StockCursor(int id) -
> Cursor
</autodoc>
7583 <param name=
"id" type=
"int" default=
""/>
7586 <constructor name=
"CursorFromImage" overloaded=
"no">
7587 <autodoc>CursorFromImage(Image image) -
> Cursor
</autodoc>
7589 <param name=
"image" type=
"r.q(const).wxImage" default=
""/>
7592 <constructor name=
"CursorFromBits" overloaded=
"no">
7593 <autodoc>CursorFromBits(PyObject bits, int width, int height, int hotSpotX=-
1,
7594 int hotSpotY=-
1, PyObject maskBits=
0) -
> Cursor
</autodoc>
7596 <param name=
"bits" type=
"p.PyObject" default=
""/>
7597 <param name=
"width" type=
"int" default=
""/>
7598 <param name=
"height" type=
"int" default=
""/>
7599 <param name=
"hotSpotX" type=
"int" default=
"-1"/>
7600 <param name=
"hotSpotY" type=
"int" default=
"-1"/>
7601 <param name=
"maskBits" type=
"p.PyObject" default=
"0"/>
7604 <method name=
"Ok" overloaded=
"no">
7605 <autodoc>Ok() -
> bool
</autodoc>
7607 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
7610 #---------------------------------------------------------------------------
7612 <class name=
"Region" oldname=
"wxRegion" module=
"gdi">
7613 <baseclass name=
"wxGDIObject"/>
7614 <constructor name=
"Region" overloaded=
"no">
7615 <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Region
</autodoc>
7617 <param name=
"x" type=
"int" default=
"0"/>
7618 <param name=
"y" type=
"int" default=
"0"/>
7619 <param name=
"width" type=
"int" default=
"0"/>
7620 <param name=
"height" type=
"int" default=
"0"/>
7623 <constructor name=
"RegionFromBitmap" overloaded=
"no">
7624 <autodoc>RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> Region
</autodoc>
7626 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
7627 <param name=
"transColour" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
7628 <param name=
"tolerance" type=
"int" default=
"0"/>
7631 <constructor name=
"RegionFromPoints" overloaded=
"no">
7632 <autodoc>RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -
> Region
</autodoc>
7634 <param name=
"points" type=
"int" default=
""/>
7635 <param name=
"points_array" type=
"p.wxPoint" default=
""/>
7636 <param name=
"fillStyle" type=
"int" default=
"wxWINDING_RULE"/>
7639 <destructor name=
"~wxRegion">
7640 <autodoc>__del__()
</autodoc>
7642 <method name=
"Clear" overloaded=
"no">
7643 <autodoc>Clear()
</autodoc>
7645 <method name=
"Offset" overloaded=
"no">
7646 <autodoc>Offset(int x, int y) -
> bool
</autodoc>
7648 <param name=
"x" type=
"int" default=
""/>
7649 <param name=
"y" type=
"int" default=
""/>
7652 <method name=
"Contains" overloaded=
"no">
7653 <autodoc>Contains(int x, int y) -
> int
</autodoc>
7655 <param name=
"x" type=
"int" default=
""/>
7656 <param name=
"y" type=
"int" default=
""/>
7659 <method name=
"ContainsPoint" overloaded=
"no">
7660 <autodoc>ContainsPoint(Point pt) -
> int
</autodoc>
7662 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
7665 <method name=
"ContainsRect" overloaded=
"no">
7666 <autodoc>ContainsRect(Rect rect) -
> int
</autodoc>
7668 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7671 <method name=
"ContainsRectDim" overloaded=
"no">
7672 <autodoc>ContainsRectDim(int x, int y, int w, int h) -
> int
</autodoc>
7674 <param name=
"x" type=
"int" default=
""/>
7675 <param name=
"y" type=
"int" default=
""/>
7676 <param name=
"w" type=
"int" default=
""/>
7677 <param name=
"h" type=
"int" default=
""/>
7680 <method name=
"GetBox" overloaded=
"no">
7681 <autodoc>GetBox() -
> Rect
</autodoc>
7683 <method name=
"Intersect" overloaded=
"no">
7684 <autodoc>Intersect(int x, int y, int width, int height) -
> bool
</autodoc>
7686 <param name=
"x" type=
"int" default=
""/>
7687 <param name=
"y" type=
"int" default=
""/>
7688 <param name=
"width" type=
"int" default=
""/>
7689 <param name=
"height" type=
"int" default=
""/>
7692 <method name=
"IntersectRect" overloaded=
"no">
7693 <autodoc>IntersectRect(Rect rect) -
> bool
</autodoc>
7695 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7698 <method name=
"IntersectRegion" overloaded=
"no">
7699 <autodoc>IntersectRegion(Region region) -
> bool
</autodoc>
7701 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
7704 <method name=
"IsEmpty" overloaded=
"no">
7705 <autodoc>IsEmpty() -
> bool
</autodoc>
7707 <method name=
"Union" overloaded=
"no">
7708 <autodoc>Union(int x, int y, int width, int height) -
> bool
</autodoc>
7710 <param name=
"x" type=
"int" default=
""/>
7711 <param name=
"y" type=
"int" default=
""/>
7712 <param name=
"width" type=
"int" default=
""/>
7713 <param name=
"height" type=
"int" default=
""/>
7716 <method name=
"UnionRect" overloaded=
"no">
7717 <autodoc>UnionRect(Rect rect) -
> bool
</autodoc>
7719 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7722 <method name=
"UnionRegion" overloaded=
"no">
7723 <autodoc>UnionRegion(Region region) -
> bool
</autodoc>
7725 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
7728 <method name=
"Subtract" overloaded=
"no">
7729 <autodoc>Subtract(int x, int y, int width, int height) -
> bool
</autodoc>
7731 <param name=
"x" type=
"int" default=
""/>
7732 <param name=
"y" type=
"int" default=
""/>
7733 <param name=
"width" type=
"int" default=
""/>
7734 <param name=
"height" type=
"int" default=
""/>
7737 <method name=
"SubtractRect" overloaded=
"no">
7738 <autodoc>SubtractRect(Rect rect) -
> bool
</autodoc>
7740 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7743 <method name=
"SubtractRegion" overloaded=
"no">
7744 <autodoc>SubtractRegion(Region region) -
> bool
</autodoc>
7746 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
7749 <method name=
"Xor" overloaded=
"no">
7750 <autodoc>Xor(int x, int y, int width, int height) -
> bool
</autodoc>
7752 <param name=
"x" type=
"int" default=
""/>
7753 <param name=
"y" type=
"int" default=
""/>
7754 <param name=
"width" type=
"int" default=
""/>
7755 <param name=
"height" type=
"int" default=
""/>
7758 <method name=
"XorRect" overloaded=
"no">
7759 <autodoc>XorRect(Rect rect) -
> bool
</autodoc>
7761 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
7764 <method name=
"XorRegion" overloaded=
"no">
7765 <autodoc>XorRegion(Region region) -
> bool
</autodoc>
7767 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
7770 <method name=
"ConvertToBitmap" overloaded=
"no">
7771 <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc>
7773 <method name=
"UnionBitmap" overloaded=
"no">
7774 <autodoc>UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> bool
</autodoc>
7776 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
7777 <param name=
"transColour" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
7778 <param name=
"tolerance" type=
"int" default=
"0"/>
7782 <class name=
"RegionIterator" oldname=
"wxRegionIterator" module=
"gdi">
7783 <baseclass name=
"wxObject"/>
7784 <constructor name=
"RegionIterator" overloaded=
"no">
7785 <autodoc>__init__(Region region) -
> RegionIterator
</autodoc>
7787 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
7790 <destructor name=
"~wxRegionIterator">
7791 <autodoc>__del__()
</autodoc>
7793 <method name=
"GetX" overloaded=
"no">
7794 <autodoc>GetX() -
> int
</autodoc>
7796 <method name=
"GetY" overloaded=
"no">
7797 <autodoc>GetY() -
> int
</autodoc>
7799 <method name=
"GetW" overloaded=
"no">
7800 <autodoc>GetW() -
> int
</autodoc>
7802 <method name=
"GetWidth" overloaded=
"no">
7803 <autodoc>GetWidth() -
> int
</autodoc>
7805 <method name=
"GetH" overloaded=
"no">
7806 <autodoc>GetH() -
> int
</autodoc>
7808 <method name=
"GetHeight" overloaded=
"no">
7809 <autodoc>GetHeight() -
> int
</autodoc>
7811 <method name=
"GetRect" overloaded=
"no">
7812 <autodoc>GetRect() -
> Rect
</autodoc>
7814 <method name=
"HaveRects" overloaded=
"no">
7815 <autodoc>HaveRects() -
> bool
</autodoc>
7817 <method name=
"Reset" overloaded=
"no">
7818 <autodoc>Reset()
</autodoc>
7820 <method name=
"Next" overloaded=
"no">
7821 <autodoc>Next()
</autodoc>
7823 <method name=
"__nonzero__" overloaded=
"no">
7824 <autodoc>__nonzero__() -
> bool
</autodoc>
7828 #---------------------------------------------------------------------------
7831 #---------------------------------------------------------------------------
7833 <class name=
"NativeFontInfo" oldname=
"wxNativeFontInfo" module=
"gdi">
7834 <constructor name=
"NativeFontInfo" overloaded=
"no">
7835 <autodoc>__init__() -
> NativeFontInfo
</autodoc>
7837 <destructor name=
"~wxNativeFontInfo">
7838 <autodoc>__del__()
</autodoc>
7840 <method name=
"Init" overloaded=
"no">
7841 <autodoc>Init()
</autodoc>
7843 <method name=
"InitFromFont" overloaded=
"no">
7844 <autodoc>InitFromFont(Font font)
</autodoc>
7846 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
7849 <method name=
"GetPointSize" overloaded=
"no">
7850 <autodoc>GetPointSize() -
> int
</autodoc>
7852 <method name=
"GetStyle" overloaded=
"no">
7853 <autodoc>GetStyle() -
> int
</autodoc>
7855 <method name=
"GetWeight" overloaded=
"no">
7856 <autodoc>GetWeight() -
> int
</autodoc>
7858 <method name=
"GetUnderlined" overloaded=
"no">
7859 <autodoc>GetUnderlined() -
> bool
</autodoc>
7861 <method name=
"GetFaceName" overloaded=
"no">
7862 <autodoc>GetFaceName() -
> String
</autodoc>
7864 <method name=
"GetFamily" overloaded=
"no">
7865 <autodoc>GetFamily() -
> int
</autodoc>
7867 <method name=
"GetEncoding" overloaded=
"no">
7868 <autodoc>GetEncoding() -
> int
</autodoc>
7870 <method name=
"SetPointSize" overloaded=
"no">
7871 <autodoc>SetPointSize(int pointsize)
</autodoc>
7873 <param name=
"pointsize" type=
"int" default=
""/>
7876 <method name=
"SetStyle" overloaded=
"no">
7877 <autodoc>SetStyle(int style)
</autodoc>
7879 <param name=
"style" type=
"wxFontStyle" default=
""/>
7882 <method name=
"SetWeight" overloaded=
"no">
7883 <autodoc>SetWeight(int weight)
</autodoc>
7885 <param name=
"weight" type=
"wxFontWeight" default=
""/>
7888 <method name=
"SetUnderlined" overloaded=
"no">
7889 <autodoc>SetUnderlined(bool underlined)
</autodoc>
7891 <param name=
"underlined" type=
"bool" default=
""/>
7894 <method name=
"SetFaceName" overloaded=
"no">
7895 <autodoc>SetFaceName(String facename)
</autodoc>
7897 <param name=
"facename" type=
"wxString" default=
""/>
7900 <method name=
"SetFamily" overloaded=
"no">
7901 <autodoc>SetFamily(int family)
</autodoc>
7903 <param name=
"family" type=
"wxFontFamily" default=
""/>
7906 <method name=
"SetEncoding" overloaded=
"no">
7907 <autodoc>SetEncoding(int encoding)
</autodoc>
7909 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
7912 <method name=
"FromString" overloaded=
"no">
7913 <autodoc>FromString(String s) -
> bool
</autodoc>
7915 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
7918 <method name=
"ToString" overloaded=
"no">
7919 <autodoc>ToString() -
> String
</autodoc>
7921 <method name=
"__str__" overloaded=
"no">
7922 <autodoc>__str__() -
> String
</autodoc>
7924 <method name=
"FromUserString" overloaded=
"no">
7925 <autodoc>FromUserString(String s) -
> bool
</autodoc>
7927 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
7930 <method name=
"ToUserString" overloaded=
"no">
7931 <autodoc>ToUserString() -
> String
</autodoc>
7934 <class name=
"NativeEncodingInfo" oldname=
"wxNativeEncodingInfo" module=
"gdi">
7935 <property name=
"facename" type=
"wxString" readonly=
"no"/>
7936 <property name=
"encoding" type=
"wxFontEncoding" readonly=
"no"/>
7937 <constructor name=
"NativeEncodingInfo" overloaded=
"no">
7938 <autodoc>__init__() -
> NativeEncodingInfo
</autodoc>
7940 <destructor name=
"~wxNativeEncodingInfo">
7941 <autodoc>__del__()
</autodoc>
7943 <method name=
"FromString" overloaded=
"no">
7944 <autodoc>FromString(String s) -
> bool
</autodoc>
7946 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
7949 <method name=
"ToString" overloaded=
"no">
7950 <autodoc>ToString() -
> String
</autodoc>
7953 <function oldname=
"wxGetNativeFontEncoding" name=
"GetNativeFontEncoding" overloaded=
"no">
7954 <autodoc>GetNativeFontEncoding(int encoding) -
> NativeEncodingInfo
</autodoc>
7956 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
7959 <function oldname=
"wxTestFontEncoding" name=
"TestFontEncoding" overloaded=
"no">
7960 <autodoc>TestFontEncoding(NativeEncodingInfo info) -
> bool
</autodoc>
7962 <param name=
"info" type=
"r.q(const).wxNativeEncodingInfo" default=
""/>
7966 #---------------------------------------------------------------------------
7968 <class name=
"FontMapper" oldname=
"wxFontMapper" module=
"gdi">
7969 <constructor name=
"FontMapper" overloaded=
"no">
7970 <autodoc>__init__() -
> FontMapper
</autodoc>
7972 <destructor name=
"~wxFontMapper">
7973 <autodoc>__del__()
</autodoc>
7975 <staticmethod name=
"Get" overloaded=
"no">
7976 <autodoc>Get() -
> FontMapper
</autodoc>
7978 <staticmethod name=
"Set" overloaded=
"no">
7979 <autodoc>Set(FontMapper mapper) -
> FontMapper
</autodoc>
7981 <param name=
"mapper" type=
"p.wxFontMapper" default=
""/>
7984 <method name=
"CharsetToEncoding" overloaded=
"no">
7985 <autodoc>CharsetToEncoding(String charset, bool interactive=True) -
> int
</autodoc>
7987 <param name=
"charset" type=
"r.q(const).wxString" default=
""/>
7988 <param name=
"interactive" type=
"bool" default=
"True"/>
7991 <staticmethod name=
"GetSupportedEncodingsCount" overloaded=
"no">
7992 <autodoc>GetSupportedEncodingsCount() -
> size_t
</autodoc>
7994 <staticmethod name=
"GetEncoding" overloaded=
"no">
7995 <autodoc>GetEncoding(size_t n) -
> int
</autodoc>
7997 <param name=
"n" type=
"size_t" default=
""/>
8000 <staticmethod name=
"GetEncodingName" overloaded=
"no">
8001 <autodoc>GetEncodingName(int encoding) -
> String
</autodoc>
8003 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8006 <staticmethod name=
"GetEncodingDescription" overloaded=
"no">
8007 <autodoc>GetEncodingDescription(int encoding) -
> String
</autodoc>
8009 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8012 <method name=
"SetConfig" overloaded=
"no">
8013 <autodoc>SetConfig(ConfigBase config)
</autodoc>
8015 <param name=
"config" type=
"p.wxConfigBase" default=
""/>
8018 <method name=
"SetConfigPath" overloaded=
"no">
8019 <autodoc>SetConfigPath(String prefix)
</autodoc>
8021 <param name=
"prefix" type=
"r.q(const).wxString" default=
""/>
8024 <staticmethod name=
"GetDefaultConfigPath" overloaded=
"no">
8025 <autodoc>GetDefaultConfigPath() -
> String
</autodoc>
8027 <method name=
"GetAltForEncoding" overloaded=
"no">
8028 <autodoc>GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -
> PyObject
</autodoc>
8030 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8031 <param name=
"facename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8032 <param name=
"interactive" type=
"bool" default=
"True"/>
8035 <method name=
"IsEncodingAvailable" overloaded=
"no">
8036 <autodoc>IsEncodingAvailable(int encoding, String facename=EmptyString) -
> bool
</autodoc>
8038 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8039 <param name=
"facename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8042 <method name=
"SetDialogParent" overloaded=
"no">
8043 <autodoc>SetDialogParent(Window parent)
</autodoc>
8045 <param name=
"parent" type=
"p.wxWindow" default=
""/>
8048 <method name=
"SetDialogTitle" overloaded=
"no">
8049 <autodoc>SetDialogTitle(String title)
</autodoc>
8051 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
8056 #---------------------------------------------------------------------------
8058 <class name=
"Font" oldname=
"wxFont" module=
"gdi">
8059 <baseclass name=
"wxGDIObject"/>
8060 <constructor name=
"Font" overloaded=
"no">
8061 <autodoc>__init__(int pointSize, int family, int style, int weight, bool underline=False,
8062 String face=EmptyString,
8063 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
8065 <param name=
"pointSize" type=
"int" default=
""/>
8066 <param name=
"family" type=
"int" default=
""/>
8067 <param name=
"style" type=
"int" default=
""/>
8068 <param name=
"weight" type=
"int" default=
""/>
8069 <param name=
"underline" type=
"bool" default=
"False"/>
8070 <param name=
"face" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8071 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
8074 <destructor name=
"~wxFont">
8075 <autodoc>__del__()
</autodoc>
8077 <constructor name=
"FontFromNativeInfo" overloaded=
"no">
8078 <autodoc>FontFromNativeInfo(NativeFontInfo info) -
> Font
</autodoc>
8080 <param name=
"info" type=
"r.q(const).wxNativeFontInfo" default=
""/>
8083 <constructor name=
"FontFromNativeInfoString" overloaded=
"no">
8084 <autodoc>FontFromNativeInfoString(String info) -
> Font
</autodoc>
8086 <param name=
"info" type=
"r.q(const).wxString" default=
""/>
8089 <constructor name=
"Font2" overloaded=
"no">
8090 <autodoc>Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT,
8091 String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
8093 <param name=
"pointSize" type=
"int" default=
""/>
8094 <param name=
"family" type=
"wxFontFamily" default=
""/>
8095 <param name=
"flags" type=
"int" default=
"wxFONTFLAG_DEFAULT"/>
8096 <param name=
"face" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8097 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
8100 <method name=
"Ok" overloaded=
"no">
8101 <autodoc>Ok() -
> bool
</autodoc>
8103 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
8104 <method name=
"__eq__" overloaded=
"no">
8105 <autodoc>__eq__(Font font) -
> bool
</autodoc>
8107 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
8110 <method name=
"__ne__" overloaded=
"no">
8111 <autodoc>__ne__(Font font) -
> bool
</autodoc>
8113 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
8116 <method name=
"GetPointSize" overloaded=
"no">
8117 <autodoc>GetPointSize() -
> int
</autodoc>
8119 <method name=
"GetFamily" overloaded=
"no">
8120 <autodoc>GetFamily() -
> int
</autodoc>
8122 <method name=
"GetStyle" overloaded=
"no">
8123 <autodoc>GetStyle() -
> int
</autodoc>
8125 <method name=
"GetWeight" overloaded=
"no">
8126 <autodoc>GetWeight() -
> int
</autodoc>
8128 <method name=
"GetUnderlined" overloaded=
"no">
8129 <autodoc>GetUnderlined() -
> bool
</autodoc>
8131 <method name=
"GetFaceName" overloaded=
"no">
8132 <autodoc>GetFaceName() -
> String
</autodoc>
8134 <method name=
"GetEncoding" overloaded=
"no">
8135 <autodoc>GetEncoding() -
> int
</autodoc>
8137 <method name=
"GetNativeFontInfo" overloaded=
"no">
8138 <autodoc>GetNativeFontInfo() -
> NativeFontInfo
</autodoc>
8140 <method name=
"IsFixedWidth" overloaded=
"no">
8141 <autodoc>IsFixedWidth() -
> bool
</autodoc>
8143 <method name=
"GetNativeFontInfoDesc" overloaded=
"no">
8144 <autodoc>GetNativeFontInfoDesc() -
> String
</autodoc>
8146 <method name=
"GetNativeFontInfoUserDesc" overloaded=
"no">
8147 <autodoc>GetNativeFontInfoUserDesc() -
> String
</autodoc>
8149 <method name=
"SetPointSize" overloaded=
"no">
8150 <autodoc>SetPointSize(int pointSize)
</autodoc>
8152 <param name=
"pointSize" type=
"int" default=
""/>
8155 <method name=
"SetFamily" overloaded=
"no">
8156 <autodoc>SetFamily(int family)
</autodoc>
8158 <param name=
"family" type=
"int" default=
""/>
8161 <method name=
"SetStyle" overloaded=
"no">
8162 <autodoc>SetStyle(int style)
</autodoc>
8164 <param name=
"style" type=
"int" default=
""/>
8167 <method name=
"SetWeight" overloaded=
"no">
8168 <autodoc>SetWeight(int weight)
</autodoc>
8170 <param name=
"weight" type=
"int" default=
""/>
8173 <method name=
"SetFaceName" overloaded=
"no">
8174 <autodoc>SetFaceName(String faceName)
</autodoc>
8176 <param name=
"faceName" type=
"r.q(const).wxString" default=
""/>
8179 <method name=
"SetUnderlined" overloaded=
"no">
8180 <autodoc>SetUnderlined(bool underlined)
</autodoc>
8182 <param name=
"underlined" type=
"bool" default=
""/>
8185 <method name=
"SetEncoding" overloaded=
"no">
8186 <autodoc>SetEncoding(int encoding)
</autodoc>
8188 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8191 <method name=
"SetNativeFontInfo" overloaded=
"no">
8192 <autodoc>SetNativeFontInfo(NativeFontInfo info)
</autodoc>
8194 <param name=
"info" type=
"r.q(const).wxNativeFontInfo" default=
""/>
8197 <method name=
"SetNativeFontInfoFromString" overloaded=
"no">
8198 <autodoc>SetNativeFontInfoFromString(String info)
</autodoc>
8200 <param name=
"info" type=
"r.q(const).wxString" default=
""/>
8203 <method name=
"SetNativeFontInfoUserDesc" overloaded=
"no">
8204 <autodoc>SetNativeFontInfoUserDesc(String info)
</autodoc>
8206 <param name=
"info" type=
"r.q(const).wxString" default=
""/>
8209 <method name=
"GetFamilyString" overloaded=
"no">
8210 <autodoc>GetFamilyString() -
> String
</autodoc>
8212 <method name=
"GetStyleString" overloaded=
"no">
8213 <autodoc>GetStyleString() -
> String
</autodoc>
8215 <method name=
"GetWeightString" overloaded=
"no">
8216 <autodoc>GetWeightString() -
> String
</autodoc>
8218 <method name=
"SetNoAntiAliasing" overloaded=
"no">
8219 <autodoc>SetNoAntiAliasing(bool no=True)
</autodoc>
8221 <param name=
"no" type=
"bool" default=
"True"/>
8224 <method name=
"GetNoAntiAliasing" overloaded=
"no">
8225 <autodoc>GetNoAntiAliasing() -
> bool
</autodoc>
8227 <staticmethod name=
"GetDefaultEncoding" overloaded=
"no">
8228 <autodoc>GetDefaultEncoding() -
> int
</autodoc>
8230 <staticmethod name=
"SetDefaultEncoding" overloaded=
"no">
8231 <autodoc>SetDefaultEncoding(int encoding)
</autodoc>
8233 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8238 #---------------------------------------------------------------------------
8240 <class name=
"FontEnumerator" oldname=
"wxPyFontEnumerator" module=
"gdi">
8241 <constructor name=
"wxPyFontEnumerator" overloaded=
"no">
8242 <autodoc>__init__() -
> FontEnumerator
</autodoc>
8244 <destructor name=
"~wxPyFontEnumerator">
8245 <autodoc>__del__()
</autodoc>
8247 <method name=
"_setCallbackInfo" overloaded=
"no">
8248 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, bool incref)
</autodoc>
8250 <param name=
"self" type=
"p.PyObject" default=
""/>
8251 <param name=
"_class" type=
"p.PyObject" default=
""/>
8252 <param name=
"incref" type=
"bool" default=
""/>
8255 <method name=
"EnumerateFacenames" overloaded=
"no">
8256 <autodoc>EnumerateFacenames(int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -
> bool
</autodoc>
8258 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_SYSTEM"/>
8259 <param name=
"fixedWidthOnly" type=
"bool" default=
"False"/>
8262 <method name=
"EnumerateEncodings" overloaded=
"no">
8263 <autodoc>EnumerateEncodings(String facename=EmptyString) -
> bool
</autodoc>
8265 <param name=
"facename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8268 <method name=
"GetEncodings" overloaded=
"no">
8269 <autodoc>GetEncodings() -
> PyObject
</autodoc>
8271 <method name=
"GetFacenames" overloaded=
"no">
8272 <autodoc>GetFacenames() -
> PyObject
</autodoc>
8276 #---------------------------------------------------------------------------
8278 <class name=
"LanguageInfo" oldname=
"wxLanguageInfo" module=
"gdi">
8279 <property name=
"Language" type=
"int" readonly=
"no"/>
8280 <property name=
"CanonicalName" type=
"wxString" readonly=
"no"/>
8281 <property name=
"Description" type=
"wxString" readonly=
"no"/>
8283 <class name=
"Locale" oldname=
"wxLocale" module=
"gdi">
8284 <constructor name=
"Locale" overloaded=
"no">
8285 <autodoc>__init__(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> Locale
</autodoc>
8287 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
8288 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
8291 <destructor name=
"~wxLocale">
8292 <autodoc>__del__()
</autodoc>
8294 <method name=
"Init1" overloaded=
"no">
8295 <autodoc>Init1(String szName, String szShort=EmptyString, String szLocale=EmptyString,
8296 bool bLoadDefault=True,
8297 bool bConvertEncoding=False) -
> bool
</autodoc>
8299 <param name=
"szName" type=
"r.q(const).wxString" default=
""/>
8300 <param name=
"szShort" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8301 <param name=
"szLocale" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8302 <param name=
"bLoadDefault" type=
"bool" default=
"True"/>
8303 <param name=
"bConvertEncoding" type=
"bool" default=
"False"/>
8306 <method name=
"Init2" overloaded=
"no">
8307 <autodoc>Init2(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> bool
</autodoc>
8309 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
8310 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
8314 def Init(self, *_args, **_kwargs):
8315 if type(_args[
0]) in [type(''), type(u'')]:
8316 val = self.Init1(*_args, **_kwargs)
8318 val = self.Init2(*_args, **_kwargs)
8321 <staticmethod name=
"GetSystemLanguage" overloaded=
"no">
8322 <autodoc>GetSystemLanguage() -
> int
</autodoc>
8324 <staticmethod name=
"GetSystemEncoding" overloaded=
"no">
8325 <autodoc>GetSystemEncoding() -
> int
</autodoc>
8327 <staticmethod name=
"GetSystemEncodingName" overloaded=
"no">
8328 <autodoc>GetSystemEncodingName() -
> String
</autodoc>
8330 <method name=
"IsOk" overloaded=
"no">
8331 <autodoc>IsOk() -
> bool
</autodoc>
8333 <pythoncode> def __nonzero__(self): return self.IsOk()
</pythoncode>
8334 <method name=
"GetLocale" overloaded=
"no">
8335 <autodoc>GetLocale() -
> String
</autodoc>
8337 <method name=
"GetLanguage" overloaded=
"no">
8338 <autodoc>GetLanguage() -
> int
</autodoc>
8340 <method name=
"GetSysName" overloaded=
"no">
8341 <autodoc>GetSysName() -
> String
</autodoc>
8343 <method name=
"GetCanonicalName" overloaded=
"no">
8344 <autodoc>GetCanonicalName() -
> String
</autodoc>
8346 <staticmethod name=
"AddCatalogLookupPathPrefix" overloaded=
"no">
8347 <autodoc>AddCatalogLookupPathPrefix(String prefix)
</autodoc>
8349 <param name=
"prefix" type=
"r.q(const).wxString" default=
""/>
8352 <method name=
"AddCatalog" overloaded=
"no">
8353 <autodoc>AddCatalog(String szDomain) -
> bool
</autodoc>
8355 <param name=
"szDomain" type=
"r.q(const).wxString" default=
""/>
8358 <method name=
"IsLoaded" overloaded=
"no">
8359 <autodoc>IsLoaded(String szDomain) -
> bool
</autodoc>
8361 <param name=
"szDomain" type=
"r.q(const).wxString" default=
""/>
8364 <staticmethod name=
"GetLanguageInfo" overloaded=
"no">
8365 <autodoc>GetLanguageInfo(int lang) -
> LanguageInfo
</autodoc>
8367 <param name=
"lang" type=
"int" default=
""/>
8370 <staticmethod name=
"GetLanguageName" overloaded=
"no">
8371 <autodoc>GetLanguageName(int lang) -
> String
</autodoc>
8373 <param name=
"lang" type=
"int" default=
""/>
8376 <staticmethod name=
"FindLanguageInfo" overloaded=
"no">
8377 <autodoc>FindLanguageInfo(String locale) -
> LanguageInfo
</autodoc>
8379 <param name=
"locale" type=
"r.q(const).wxString" default=
""/>
8382 <staticmethod name=
"AddLanguage" overloaded=
"no">
8383 <autodoc>AddLanguage(LanguageInfo info)
</autodoc>
8385 <param name=
"info" type=
"r.q(const).wxLanguageInfo" default=
""/>
8388 <method name=
"GetString" overloaded=
"no">
8389 <autodoc>GetString(String szOrigString, String szDomain=EmptyString) -
> String
</autodoc>
8391 <param name=
"szOrigString" type=
"r.q(const).wxString" default=
""/>
8392 <param name=
"szDomain" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
8395 <method name=
"GetName" overloaded=
"no">
8396 <autodoc>GetName() -
> String
</autodoc>
8399 <function oldname=
"wxGetLocale" name=
"GetLocale" overloaded=
"no">
8400 <autodoc>GetLocale() -
> Locale
</autodoc>
8402 <function oldname=
"wxGetTranslation" name=
"GetTranslation" overloaded=
"yes">
8404 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
8407 <function oldname=
"wxGetTranslation" name=
"GetTranslation" overloaded=
"yes">
8408 <autodoc>GetTranslation(String str) -
> String
8409 GetTranslation(String str, String strPlural, size_t n) -
> String
</autodoc>
8411 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
8412 <param name=
"strPlural" type=
"r.q(const).wxString" default=
""/>
8413 <param name=
"n" type=
"size_t" default=
""/>
8417 #---------------------------------------------------------------------------
8419 <class name=
"EncodingConverter" oldname=
"wxEncodingConverter" module=
"gdi">
8420 <baseclass name=
"wxObject"/>
8421 <constructor name=
"EncodingConverter" overloaded=
"no">
8422 <autodoc>__init__() -
> EncodingConverter
</autodoc>
8424 <destructor name=
"~wxEncodingConverter">
8425 <autodoc>__del__()
</autodoc>
8427 <method name=
"Init" overloaded=
"no">
8428 <autodoc>Init(int input_enc, int output_enc, int method=CONVERT_STRICT) -
> bool
</autodoc>
8430 <param name=
"input_enc" type=
"wxFontEncoding" default=
""/>
8431 <param name=
"output_enc" type=
"wxFontEncoding" default=
""/>
8432 <param name=
"method" type=
"int" default=
"wxCONVERT_STRICT"/>
8435 <method name=
"Convert" overloaded=
"no">
8436 <autodoc>Convert(String input) -
> String
</autodoc>
8438 <param name=
"input" type=
"r.q(const).wxString" default=
""/>
8441 <staticmethod name=
"GetPlatformEquivalents" overloaded=
"no">
8442 <autodoc>GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -
> wxFontEncodingArray
</autodoc>
8444 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
8445 <param name=
"platform" type=
"int" default=
"wxPLATFORM_CURRENT"/>
8448 <staticmethod name=
"GetAllEquivalents" overloaded=
"no">
8449 <autodoc>GetAllEquivalents(int enc) -
> wxFontEncodingArray
</autodoc>
8451 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
8454 <staticmethod name=
"CanConvert" overloaded=
"no">
8455 <autodoc>CanConvert(int encIn, int encOut) -
> bool
</autodoc>
8457 <param name=
"encIn" type=
"wxFontEncoding" default=
""/>
8458 <param name=
"encOut" type=
"wxFontEncoding" default=
""/>
8461 <pythoncode> def __nonzero__(self): return self.IsOk()
</pythoncode>
8463 <pythoncode>#----------------------------------------------------------------------------
8464 # wxGTK sets the locale when initialized. Doing this at the Python
8465 # level should set it up to match what GTK is doing at the C level.
8466 if wx.Platform == "__WXGTK__":
8469 locale.setlocale(locale.LC_ALL, "")
8473 # On MSW add the directory where the wxWindows catalogs were installed
8474 # to the default catalog path.
8475 if wx.Platform == "__WXMSW__":
8477 localedir = os.path.join(os.path.split(__file__)[
0], "locale")
8478 Locale_AddCatalogLookupPathPrefix(localedir)
8481 #----------------------------------------------------------------------------
8484 #---------------------------------------------------------------------------
8486 <class name=
"DC" oldname=
"wxDC" module=
"gdi">
8487 <baseclass name=
"wxObject"/>
8488 <destructor name=
"~wxDC">
8489 <autodoc>__del__()
</autodoc>
8491 <method name=
"BeginDrawing" overloaded=
"no">
8492 <autodoc>BeginDrawing()
</autodoc>
8494 <method name=
"EndDrawing" overloaded=
"no">
8495 <autodoc>EndDrawing()
</autodoc>
8497 <method name=
"FloodFillXY" overloaded=
"no">
8498 <autodoc>FloodFillXY(int x, int y, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
8500 <param name=
"x" type=
"int" default=
""/>
8501 <param name=
"y" type=
"int" default=
""/>
8502 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
8503 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
8506 <method name=
"FloodFill" overloaded=
"no">
8507 <autodoc>FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
8509 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8510 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
8511 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
8514 <method name=
"GetPixelXY" overloaded=
"no">
8515 <autodoc>GetPixelXY(int x, int y) -
> Colour
</autodoc>
8517 <param name=
"x" type=
"int" default=
""/>
8518 <param name=
"y" type=
"int" default=
""/>
8521 <method name=
"GetPixel" overloaded=
"no">
8522 <autodoc>GetPixel(Point pt) -
> Colour
</autodoc>
8524 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8527 <method name=
"DrawLineXY" overloaded=
"no">
8528 <autodoc>DrawLineXY(int x1, int y1, int x2, int y2)
</autodoc>
8530 <param name=
"x1" type=
"int" default=
""/>
8531 <param name=
"y1" type=
"int" default=
""/>
8532 <param name=
"x2" type=
"int" default=
""/>
8533 <param name=
"y2" type=
"int" default=
""/>
8536 <method name=
"DrawLine" overloaded=
"no">
8537 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
8539 <param name=
"pt1" type=
"r.q(const).wxPoint" default=
""/>
8540 <param name=
"pt2" type=
"r.q(const).wxPoint" default=
""/>
8543 <method name=
"CrossHairXY" overloaded=
"no">
8544 <autodoc>CrossHairXY(int x, int y)
</autodoc>
8546 <param name=
"x" type=
"int" default=
""/>
8547 <param name=
"y" type=
"int" default=
""/>
8550 <method name=
"CrossHair" overloaded=
"no">
8551 <autodoc>CrossHair(Point pt)
</autodoc>
8553 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8556 <method name=
"DrawArcXY" overloaded=
"no">
8557 <autodoc>DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
</autodoc>
8559 <param name=
"x1" type=
"int" default=
""/>
8560 <param name=
"y1" type=
"int" default=
""/>
8561 <param name=
"x2" type=
"int" default=
""/>
8562 <param name=
"y2" type=
"int" default=
""/>
8563 <param name=
"xc" type=
"int" default=
""/>
8564 <param name=
"yc" type=
"int" default=
""/>
8567 <method name=
"DrawArc" overloaded=
"no">
8568 <autodoc>DrawArc(Point pt1, Point pt2, Point centre)
</autodoc>
8570 <param name=
"pt1" type=
"r.q(const).wxPoint" default=
""/>
8571 <param name=
"pt2" type=
"r.q(const).wxPoint" default=
""/>
8572 <param name=
"centre" type=
"r.q(const).wxPoint" default=
""/>
8575 <method name=
"DrawCheckMarkXY" overloaded=
"no">
8576 <autodoc>DrawCheckMarkXY(int x, int y, int width, int height)
</autodoc>
8578 <param name=
"x" type=
"int" default=
""/>
8579 <param name=
"y" type=
"int" default=
""/>
8580 <param name=
"width" type=
"int" default=
""/>
8581 <param name=
"height" type=
"int" default=
""/>
8584 <method name=
"DrawCheckMark" overloaded=
"no">
8585 <autodoc>DrawCheckMark(Rect rect)
</autodoc>
8587 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8590 <method name=
"DrawEllipticArcXY" overloaded=
"no">
8591 <autodoc>DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
</autodoc>
8593 <param name=
"x" type=
"int" default=
""/>
8594 <param name=
"y" type=
"int" default=
""/>
8595 <param name=
"w" type=
"int" default=
""/>
8596 <param name=
"h" type=
"int" default=
""/>
8597 <param name=
"sa" type=
"double" default=
""/>
8598 <param name=
"ea" type=
"double" default=
""/>
8601 <method name=
"DrawEllipticArc" overloaded=
"no">
8602 <autodoc>DrawEllipticArc(Point pt, Size sz, double sa, double ea)
</autodoc>
8604 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8605 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8606 <param name=
"sa" type=
"double" default=
""/>
8607 <param name=
"ea" type=
"double" default=
""/>
8610 <method name=
"DrawPointXY" overloaded=
"no">
8611 <autodoc>DrawPointXY(int x, int y)
</autodoc>
8613 <param name=
"x" type=
"int" default=
""/>
8614 <param name=
"y" type=
"int" default=
""/>
8617 <method name=
"DrawPoint" overloaded=
"no">
8618 <autodoc>DrawPoint(Point pt)
</autodoc>
8620 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8623 <method name=
"DrawRectangleXY" overloaded=
"no">
8624 <autodoc>DrawRectangleXY(int x, int y, int width, int height)
</autodoc>
8626 <param name=
"x" type=
"int" default=
""/>
8627 <param name=
"y" type=
"int" default=
""/>
8628 <param name=
"width" type=
"int" default=
""/>
8629 <param name=
"height" type=
"int" default=
""/>
8632 <method name=
"DrawRectangle" overloaded=
"no">
8633 <autodoc>DrawRectangle(Point pt, Size sz)
</autodoc>
8635 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8636 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8639 <method name=
"DrawRectangleRect" overloaded=
"no">
8640 <autodoc>DrawRectangleRect(Rect rect)
</autodoc>
8642 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8645 <method name=
"DrawRoundedRectangleXY" overloaded=
"no">
8646 <autodoc>DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
</autodoc>
8648 <param name=
"x" type=
"int" default=
""/>
8649 <param name=
"y" type=
"int" default=
""/>
8650 <param name=
"width" type=
"int" default=
""/>
8651 <param name=
"height" type=
"int" default=
""/>
8652 <param name=
"radius" type=
"double" default=
""/>
8655 <method name=
"DrawRoundedRectangle" overloaded=
"no">
8656 <autodoc>DrawRoundedRectangle(Point pt, Size sz, double radius)
</autodoc>
8658 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8659 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8660 <param name=
"radius" type=
"double" default=
""/>
8663 <method name=
"DrawRoundedRectangleRect" overloaded=
"no">
8664 <autodoc>DrawRoundedRectangleRect(Rect r, double radius)
</autodoc>
8666 <param name=
"r" type=
"r.q(const).wxRect" default=
""/>
8667 <param name=
"radius" type=
"double" default=
""/>
8670 <method name=
"DrawCircleXY" overloaded=
"no">
8671 <autodoc>DrawCircleXY(int x, int y, int radius)
</autodoc>
8673 <param name=
"x" type=
"int" default=
""/>
8674 <param name=
"y" type=
"int" default=
""/>
8675 <param name=
"radius" type=
"int" default=
""/>
8678 <method name=
"DrawCircle" overloaded=
"no">
8679 <autodoc>DrawCircle(Point pt, int radius)
</autodoc>
8681 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8682 <param name=
"radius" type=
"int" default=
""/>
8685 <method name=
"DrawEllipseXY" overloaded=
"no">
8686 <autodoc>DrawEllipseXY(int x, int y, int width, int height)
</autodoc>
8688 <param name=
"x" type=
"int" default=
""/>
8689 <param name=
"y" type=
"int" default=
""/>
8690 <param name=
"width" type=
"int" default=
""/>
8691 <param name=
"height" type=
"int" default=
""/>
8694 <method name=
"DrawEllipse" overloaded=
"no">
8695 <autodoc>DrawEllipse(Point pt, Size sz)
</autodoc>
8697 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8698 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8701 <method name=
"DrawEllipseRect" overloaded=
"no">
8702 <autodoc>DrawEllipseRect(Rect rect)
</autodoc>
8704 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8707 <method name=
"DrawIconXY" overloaded=
"no">
8708 <autodoc>DrawIconXY(Icon icon, int x, int y)
</autodoc>
8710 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
8711 <param name=
"x" type=
"int" default=
""/>
8712 <param name=
"y" type=
"int" default=
""/>
8715 <method name=
"DrawIcon" overloaded=
"no">
8716 <autodoc>DrawIcon(Icon icon, Point pt)
</autodoc>
8718 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
8719 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8722 <method name=
"DrawBitmapXY" overloaded=
"no">
8723 <autodoc>DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
</autodoc>
8725 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
8726 <param name=
"x" type=
"int" default=
""/>
8727 <param name=
"y" type=
"int" default=
""/>
8728 <param name=
"useMask" type=
"bool" default=
"False"/>
8731 <method name=
"DrawBitmap" overloaded=
"no">
8732 <autodoc>DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
</autodoc>
8734 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
8735 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8736 <param name=
"useMask" type=
"bool" default=
"False"/>
8739 <method name=
"DrawTextXY" overloaded=
"no">
8740 <autodoc>DrawTextXY(String text, int x, int y)
</autodoc>
8742 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8743 <param name=
"x" type=
"int" default=
""/>
8744 <param name=
"y" type=
"int" default=
""/>
8747 <method name=
"DrawText" overloaded=
"no">
8748 <autodoc>DrawText(String text, Point pt)
</autodoc>
8750 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8751 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8754 <method name=
"DrawRotatedTextXY" overloaded=
"no">
8755 <autodoc>DrawRotatedTextXY(String text, int x, int y, double angle)
</autodoc>
8757 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8758 <param name=
"x" type=
"int" default=
""/>
8759 <param name=
"y" type=
"int" default=
""/>
8760 <param name=
"angle" type=
"double" default=
""/>
8763 <method name=
"DrawRotatedText" overloaded=
"no">
8764 <autodoc>DrawRotatedText(String text, Point pt, double angle)
</autodoc>
8766 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8767 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8768 <param name=
"angle" type=
"double" default=
""/>
8771 <method name=
"BlitXY" overloaded=
"no">
8772 <autodoc>BlitXY(int xdest, int ydest, int width, int height, DC source,
8773 int xsrc, int ysrc, int rop=COPY, bool useMask=False,
8774 int xsrcMask=-
1, int ysrcMask=-
1) -
> bool
</autodoc>
8776 <param name=
"xdest" type=
"int" default=
""/>
8777 <param name=
"ydest" type=
"int" default=
""/>
8778 <param name=
"width" type=
"int" default=
""/>
8779 <param name=
"height" type=
"int" default=
""/>
8780 <param name=
"source" type=
"p.wxDC" default=
""/>
8781 <param name=
"xsrc" type=
"int" default=
""/>
8782 <param name=
"ysrc" type=
"int" default=
""/>
8783 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
8784 <param name=
"useMask" type=
"bool" default=
"False"/>
8785 <param name=
"xsrcMask" type=
"int" default=
"-1"/>
8786 <param name=
"ysrcMask" type=
"int" default=
"-1"/>
8789 <method name=
"Blit" overloaded=
"no">
8790 <autodoc>Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY,
8791 bool useMask=False, Point srcPtMask=DefaultPosition) -
> bool
</autodoc>
8793 <param name=
"destPt" type=
"r.q(const).wxPoint" default=
""/>
8794 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8795 <param name=
"source" type=
"p.wxDC" default=
""/>
8796 <param name=
"srcPt" type=
"r.q(const).wxPoint" default=
""/>
8797 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
8798 <param name=
"useMask" type=
"bool" default=
"False"/>
8799 <param name=
"srcPtMask" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
8802 <method name=
"DrawLines" overloaded=
"no">
8803 <autodoc>DrawLines(int points, Point points_array, int xoffset=
0, int yoffset=
0)
</autodoc>
8805 <param name=
"points" type=
"int" default=
""/>
8806 <param name=
"points_array" type=
"p.wxPoint" default=
""/>
8807 <param name=
"xoffset" type=
"int" default=
"0"/>
8808 <param name=
"yoffset" type=
"int" default=
"0"/>
8811 <method name=
"DrawPolygon" overloaded=
"no">
8812 <autodoc>DrawPolygon(int points, Point points_array, int xoffset=
0, int yoffset=
0,
8813 int fillStyle=ODDEVEN_RULE)
</autodoc>
8815 <param name=
"points" type=
"int" default=
""/>
8816 <param name=
"points_array" type=
"p.wxPoint" default=
""/>
8817 <param name=
"xoffset" type=
"int" default=
"0"/>
8818 <param name=
"yoffset" type=
"int" default=
"0"/>
8819 <param name=
"fillStyle" type=
"int" default=
"wxODDEVEN_RULE"/>
8822 <method name=
"DrawLabel" overloaded=
"no">
8823 <autodoc>DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
8824 int indexAccel=-
1)
</autodoc>
8826 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8827 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8828 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
8829 <param name=
"indexAccel" type=
"int" default=
"-1"/>
8832 <method name=
"DrawImageLabel" overloaded=
"no">
8833 <autodoc>DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
8834 int indexAccel=-
1) -
> Rect
</autodoc>
8836 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8837 <param name=
"image" type=
"r.q(const).wxBitmap" default=
""/>
8838 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8839 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
8840 <param name=
"indexAccel" type=
"int" default=
"-1"/>
8843 <method name=
"DrawSpline" overloaded=
"no">
8844 <autodoc>DrawSpline(int points, Point points_array)
</autodoc>
8846 <param name=
"points" type=
"int" default=
""/>
8847 <param name=
"points_array" type=
"p.wxPoint" default=
""/>
8850 <method name=
"Clear" overloaded=
"no">
8851 <autodoc>Clear()
</autodoc>
8853 <method name=
"StartDoc" overloaded=
"no">
8854 <autodoc>StartDoc(String message) -
> bool
</autodoc>
8856 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
8859 <method name=
"EndDoc" overloaded=
"no">
8860 <autodoc>EndDoc()
</autodoc>
8862 <method name=
"StartPage" overloaded=
"no">
8863 <autodoc>StartPage()
</autodoc>
8865 <method name=
"EndPage" overloaded=
"no">
8866 <autodoc>EndPage()
</autodoc>
8868 <method name=
"SetFont" overloaded=
"no">
8869 <autodoc>SetFont(Font font)
</autodoc>
8871 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
8874 <method name=
"SetPen" overloaded=
"no">
8875 <autodoc>SetPen(Pen pen)
</autodoc>
8877 <param name=
"pen" type=
"r.q(const).wxPen" default=
""/>
8880 <method name=
"SetBrush" overloaded=
"no">
8881 <autodoc>SetBrush(Brush brush)
</autodoc>
8883 <param name=
"brush" type=
"r.q(const).wxBrush" default=
""/>
8886 <method name=
"SetBackground" overloaded=
"no">
8887 <autodoc>SetBackground(Brush brush)
</autodoc>
8889 <param name=
"brush" type=
"r.q(const).wxBrush" default=
""/>
8892 <method name=
"SetBackgroundMode" overloaded=
"no">
8893 <autodoc>SetBackgroundMode(int mode)
</autodoc>
8895 <param name=
"mode" type=
"int" default=
""/>
8898 <method name=
"SetPalette" overloaded=
"no">
8899 <autodoc>SetPalette(Palette palette)
</autodoc>
8901 <param name=
"palette" type=
"r.q(const).wxPalette" default=
""/>
8904 <method name=
"SetClippingRegionXY" overloaded=
"no">
8905 <autodoc>SetClippingRegionXY(int x, int y, int width, int height)
</autodoc>
8907 <param name=
"x" type=
"int" default=
""/>
8908 <param name=
"y" type=
"int" default=
""/>
8909 <param name=
"width" type=
"int" default=
""/>
8910 <param name=
"height" type=
"int" default=
""/>
8913 <method name=
"SetClippingRegion" overloaded=
"no">
8914 <autodoc>SetClippingRegion(Point pt, Size sz)
</autodoc>
8916 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
8917 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
8920 <method name=
"SetClippingRect" overloaded=
"no">
8921 <autodoc>SetClippingRect(Rect rect)
</autodoc>
8923 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
8926 <method name=
"SetClippingRegionAsRegion" overloaded=
"no">
8927 <autodoc>SetClippingRegionAsRegion(Region region)
</autodoc>
8929 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
8932 <method name=
"DestroyClippingRegion" overloaded=
"no">
8933 <autodoc>DestroyClippingRegion()
</autodoc>
8935 <method name=
"GetClippingBox" overloaded=
"no">
8936 <autodoc>GetClippingBox() -
> (x, y, width, height)
</autodoc>
8938 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8939 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8940 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8941 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8944 <method name=
"GetClippingRect" overloaded=
"no">
8945 <autodoc>GetClippingRect() -
> Rect
</autodoc>
8947 <method name=
"GetCharHeight" overloaded=
"no">
8948 <autodoc>GetCharHeight() -
> int
</autodoc>
8950 <method name=
"GetCharWidth" overloaded=
"no">
8951 <autodoc>GetCharWidth() -
> int
</autodoc>
8953 <method name=
"GetTextExtent" overloaded=
"no">
8954 <autodoc>GetTextExtent(wxString string) -
> (width, height)
</autodoc>
8955 <docstring>Get the width and height of the text using the current font.
8956 Only works for single line strings.
</docstring>
8958 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
8959 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8960 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8963 <method name=
"GetFullTextExtent" overloaded=
"no">
8964 <autodoc>GetFullTextExtent(wxString string, Font font=None) -
>
8965 (width, height, descent, externalLeading)
</autodoc>
8966 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
8967 Only works for single line strings.
</docstring>
8969 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
8970 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8971 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8972 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8973 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8974 <param name=
"font" type=
"p.wxFont" default=
"NULL"/>
8977 <method name=
"GetMultiLineTextExtent" overloaded=
"no">
8978 <autodoc>GetMultiLineTextExtent(wxString string, Font font=None) -
>
8979 (width, height, descent, externalLeading)
</autodoc>
8980 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
8981 Works for single as well as multi-line strings.
</docstring>
8983 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8984 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8985 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8986 <param name=
"OUTPUT" type=
"p.int" default=
""/>
8987 <param name=
"font" type=
"p.wxFont" default=
"NULL"/>
8990 <method name=
"GetPartialTextExtents" overloaded=
"no">
8991 <autodoc>GetPartialTextExtents(String text) -
> wxArrayInt
</autodoc>
8993 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
8996 <method name=
"GetSize" overloaded=
"no">
8997 <autodoc>GetSize() -
> Size
</autodoc>
8998 <docstring>Get the DC size in device units.
</docstring>
9000 <method name=
"GetSizeTuple" overloaded=
"no">
9001 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
9002 <docstring>Get the DC size in device units.
</docstring>
9004 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9005 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9008 <method name=
"GetSizeMM" overloaded=
"no">
9009 <autodoc>GetSizeMM() -
> Size
</autodoc>
9010 <docstring>Get the DC size in milimeters.
</docstring>
9012 <method name=
"GetSizeMMTuple" overloaded=
"no">
9013 <autodoc>GetSizeMMTuple() -
> (width, height)
</autodoc>
9014 <docstring>Get the DC size in milimeters.
</docstring>
9016 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9017 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9020 <method name=
"DeviceToLogicalX" overloaded=
"no">
9021 <autodoc>DeviceToLogicalX(int x) -
> int
</autodoc>
9023 <param name=
"x" type=
"int" default=
""/>
9026 <method name=
"DeviceToLogicalY" overloaded=
"no">
9027 <autodoc>DeviceToLogicalY(int y) -
> int
</autodoc>
9029 <param name=
"y" type=
"int" default=
""/>
9032 <method name=
"DeviceToLogicalXRel" overloaded=
"no">
9033 <autodoc>DeviceToLogicalXRel(int x) -
> int
</autodoc>
9035 <param name=
"x" type=
"int" default=
""/>
9038 <method name=
"DeviceToLogicalYRel" overloaded=
"no">
9039 <autodoc>DeviceToLogicalYRel(int y) -
> int
</autodoc>
9041 <param name=
"y" type=
"int" default=
""/>
9044 <method name=
"LogicalToDeviceX" overloaded=
"no">
9045 <autodoc>LogicalToDeviceX(int x) -
> int
</autodoc>
9047 <param name=
"x" type=
"int" default=
""/>
9050 <method name=
"LogicalToDeviceY" overloaded=
"no">
9051 <autodoc>LogicalToDeviceY(int y) -
> int
</autodoc>
9053 <param name=
"y" type=
"int" default=
""/>
9056 <method name=
"LogicalToDeviceXRel" overloaded=
"no">
9057 <autodoc>LogicalToDeviceXRel(int x) -
> int
</autodoc>
9059 <param name=
"x" type=
"int" default=
""/>
9062 <method name=
"LogicalToDeviceYRel" overloaded=
"no">
9063 <autodoc>LogicalToDeviceYRel(int y) -
> int
</autodoc>
9065 <param name=
"y" type=
"int" default=
""/>
9068 <method name=
"CanDrawBitmap" overloaded=
"no">
9069 <autodoc>CanDrawBitmap() -
> bool
</autodoc>
9071 <method name=
"CanGetTextExtent" overloaded=
"no">
9072 <autodoc>CanGetTextExtent() -
> bool
</autodoc>
9074 <method name=
"GetDepth" overloaded=
"no">
9075 <autodoc>GetDepth() -
> int
</autodoc>
9077 <method name=
"GetPPI" overloaded=
"no">
9078 <autodoc>GetPPI() -
> Size
</autodoc>
9080 <method name=
"Ok" overloaded=
"no">
9081 <autodoc>Ok() -
> bool
</autodoc>
9083 <method name=
"GetBackgroundMode" overloaded=
"no">
9084 <autodoc>GetBackgroundMode() -
> int
</autodoc>
9086 <method name=
"GetBackground" overloaded=
"no">
9087 <autodoc>GetBackground() -
> Brush
</autodoc>
9089 <method name=
"GetBrush" overloaded=
"no">
9090 <autodoc>GetBrush() -
> Brush
</autodoc>
9092 <method name=
"GetFont" overloaded=
"no">
9093 <autodoc>GetFont() -
> Font
</autodoc>
9095 <method name=
"GetPen" overloaded=
"no">
9096 <autodoc>GetPen() -
> Pen
</autodoc>
9098 <method name=
"GetTextBackground" overloaded=
"no">
9099 <autodoc>GetTextBackground() -
> Colour
</autodoc>
9101 <method name=
"GetTextForeground" overloaded=
"no">
9102 <autodoc>GetTextForeground() -
> Colour
</autodoc>
9104 <method name=
"SetTextForeground" overloaded=
"no">
9105 <autodoc>SetTextForeground(Colour colour)
</autodoc>
9107 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
9110 <method name=
"SetTextBackground" overloaded=
"no">
9111 <autodoc>SetTextBackground(Colour colour)
</autodoc>
9113 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
9116 <method name=
"GetMapMode" overloaded=
"no">
9117 <autodoc>GetMapMode() -
> int
</autodoc>
9119 <method name=
"SetMapMode" overloaded=
"no">
9120 <autodoc>SetMapMode(int mode)
</autodoc>
9122 <param name=
"mode" type=
"int" default=
""/>
9125 <method name=
"GetUserScale" overloaded=
"no">
9126 <autodoc>GetUserScale() -
> (xScale, yScale)
</autodoc>
9128 <param name=
"OUTPUT" type=
"p.double" default=
""/>
9129 <param name=
"OUTPUT" type=
"p.double" default=
""/>
9132 <method name=
"SetUserScale" overloaded=
"no">
9133 <autodoc>SetUserScale(double x, double y)
</autodoc>
9135 <param name=
"x" type=
"double" default=
""/>
9136 <param name=
"y" type=
"double" default=
""/>
9139 <method name=
"GetLogicalScale" overloaded=
"no">
9140 <autodoc>GetLogicalScale() -
> (xScale, yScale)
</autodoc>
9142 <param name=
"OUTPUT" type=
"p.double" default=
""/>
9143 <param name=
"OUTPUT" type=
"p.double" default=
""/>
9146 <method name=
"SetLogicalScale" overloaded=
"no">
9147 <autodoc>SetLogicalScale(double x, double y)
</autodoc>
9149 <param name=
"x" type=
"double" default=
""/>
9150 <param name=
"y" type=
"double" default=
""/>
9153 <method name=
"GetLogicalOrigin" overloaded=
"no">
9154 <autodoc>GetLogicalOrigin() -
> Point
</autodoc>
9156 <method name=
"GetLogicalOriginTuple" overloaded=
"no">
9157 <autodoc>GetLogicalOriginTuple() -
> (x,y)
</autodoc>
9159 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9160 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9163 <method name=
"SetLogicalOrigin" overloaded=
"no">
9164 <autodoc>SetLogicalOrigin(int x, int y)
</autodoc>
9166 <param name=
"x" type=
"int" default=
""/>
9167 <param name=
"y" type=
"int" default=
""/>
9170 <method name=
"GetDeviceOrigin" overloaded=
"no">
9171 <autodoc>GetDeviceOrigin() -
> Point
</autodoc>
9173 <method name=
"GetDeviceOriginTuple" overloaded=
"no">
9174 <autodoc>GetDeviceOriginTuple() -
> (x,y)
</autodoc>
9176 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9177 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9180 <method name=
"SetDeviceOrigin" overloaded=
"no">
9181 <autodoc>SetDeviceOrigin(int x, int y)
</autodoc>
9183 <param name=
"x" type=
"int" default=
""/>
9184 <param name=
"y" type=
"int" default=
""/>
9187 <method name=
"SetAxisOrientation" overloaded=
"no">
9188 <autodoc>SetAxisOrientation(bool xLeftRight, bool yBottomUp)
</autodoc>
9190 <param name=
"xLeftRight" type=
"bool" default=
""/>
9191 <param name=
"yBottomUp" type=
"bool" default=
""/>
9194 <method name=
"GetLogicalFunction" overloaded=
"no">
9195 <autodoc>GetLogicalFunction() -
> int
</autodoc>
9197 <method name=
"SetLogicalFunction" overloaded=
"no">
9198 <autodoc>SetLogicalFunction(int function)
</autodoc>
9200 <param name=
"function" type=
"int" default=
""/>
9203 <method name=
"SetOptimization" overloaded=
"no">
9204 <autodoc>SetOptimization(bool opt)
</autodoc>
9206 <param name=
"opt" type=
"bool" default=
""/>
9209 <method name=
"GetOptimization" overloaded=
"no">
9210 <autodoc>GetOptimization() -
> bool
</autodoc>
9212 <method name=
"CalcBoundingBox" overloaded=
"no">
9213 <autodoc>CalcBoundingBox(int x, int y)
</autodoc>
9215 <param name=
"x" type=
"int" default=
""/>
9216 <param name=
"y" type=
"int" default=
""/>
9219 <method name=
"ResetBoundingBox" overloaded=
"no">
9220 <autodoc>ResetBoundingBox()
</autodoc>
9222 <method name=
"MinX" overloaded=
"no">
9223 <autodoc>MinX() -
> int
</autodoc>
9225 <method name=
"MaxX" overloaded=
"no">
9226 <autodoc>MaxX() -
> int
</autodoc>
9228 <method name=
"MinY" overloaded=
"no">
9229 <autodoc>MinY() -
> int
</autodoc>
9231 <method name=
"MaxY" overloaded=
"no">
9232 <autodoc>MaxY() -
> int
</autodoc>
9234 <method name=
"GetBoundingBox" overloaded=
"no">
9235 <autodoc>GetBoundingBox() -
> (x1,y1, x2,y2)
</autodoc>
9237 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9238 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9239 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9240 <param name=
"OUTPUT" type=
"p.int" default=
""/>
9243 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
9244 <method name=
"_DrawPointList" overloaded=
"no">
9245 <autodoc>_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
9247 <param name=
"pyCoords" type=
"p.PyObject" default=
""/>
9248 <param name=
"pyPens" type=
"p.PyObject" default=
""/>
9249 <param name=
"pyBrushes" type=
"p.PyObject" default=
""/>
9252 <method name=
"_DrawLineList" overloaded=
"no">
9253 <autodoc>_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
9255 <param name=
"pyCoords" type=
"p.PyObject" default=
""/>
9256 <param name=
"pyPens" type=
"p.PyObject" default=
""/>
9257 <param name=
"pyBrushes" type=
"p.PyObject" default=
""/>
9260 <method name=
"_DrawRectangleList" overloaded=
"no">
9261 <autodoc>_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
9263 <param name=
"pyCoords" type=
"p.PyObject" default=
""/>
9264 <param name=
"pyPens" type=
"p.PyObject" default=
""/>
9265 <param name=
"pyBrushes" type=
"p.PyObject" default=
""/>
9268 <method name=
"_DrawEllipseList" overloaded=
"no">
9269 <autodoc>_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
9271 <param name=
"pyCoords" type=
"p.PyObject" default=
""/>
9272 <param name=
"pyPens" type=
"p.PyObject" default=
""/>
9273 <param name=
"pyBrushes" type=
"p.PyObject" default=
""/>
9276 <method name=
"_DrawPolygonList" overloaded=
"no">
9277 <autodoc>_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
9279 <param name=
"pyCoords" type=
"p.PyObject" default=
""/>
9280 <param name=
"pyPens" type=
"p.PyObject" default=
""/>
9281 <param name=
"pyBrushes" type=
"p.PyObject" default=
""/>
9284 <method name=
"_DrawTextList" overloaded=
"no">
9285 <autodoc>_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList,
9286 PyObject backgroundList) -
> PyObject
</autodoc>
9288 <param name=
"textList" type=
"p.PyObject" default=
""/>
9289 <param name=
"pyPoints" type=
"p.PyObject" default=
""/>
9290 <param name=
"foregroundList" type=
"p.PyObject" default=
""/>
9291 <param name=
"backgroundList" type=
"p.PyObject" default=
""/>
9295 def DrawPointList(self, points, pens=None):
9298 elif isinstance(pens, wx.Pen):
9300 elif len(pens) != len(points):
9301 raise ValueError('points and pens must have same length')
9302 return self._DrawPointList(points, pens, [])
9305 def DrawLineList(self, lines, pens=None):
9308 elif isinstance(pens, wx.Pen):
9310 elif len(pens) != len(lines):
9311 raise ValueError('lines and pens must have same length')
9312 return self._DrawLineList(lines, pens, [])
9315 def DrawRectangleList(self, rectangles, pens=None, brushes=None):
9318 elif isinstance(pens, wx.Pen):
9320 elif len(pens) != len(rectangles):
9321 raise ValueError('rectangles and pens must have same length')
9324 elif isinstance(brushes, wx.Brush):
9326 elif len(brushes) != len(rectangles):
9327 raise ValueError('rectangles and brushes must have same length')
9328 return self._DrawRectangleList(rectangles, pens, brushes)
9331 def DrawEllipseList(self, ellipses, pens=None, brushes=None):
9334 elif isinstance(pens, wx.Pen):
9336 elif len(pens) != len(ellipses):
9337 raise ValueError('ellipses and pens must have same length')
9340 elif isinstance(brushes, wx.Brush):
9342 elif len(brushes) != len(ellipses):
9343 raise ValueError('ellipses and brushes must have same length')
9344 return self._DrawEllipseList(ellipses, pens, brushes)
9347 def DrawPolygonList(self, polygons, pens=None, brushes=None):
9348 ## Note: This does not currently support fill style or offset
9349 ## you can always use the non-List version if need be.
9352 elif isinstance(pens, wx.Pen):
9354 elif len(pens) != len(polygons):
9355 raise ValueError('polygons and pens must have same length')
9358 elif isinstance(brushes, wx.Brush):
9360 elif len(brushes) != len(polygons):
9361 raise ValueError('polygons and brushes must have same length')
9362 return self._DrawPolygonList(polygons, pens, brushes)
9365 def DrawTextList(self, textList, coords, foregrounds = None, backgrounds = None, fonts = None):
9366 ## NOTE: this does not currently support changing the font
9367 ## Make sure you set Background mode to wxSolid (DC.SetBackgroundMode)
9368 ## If you want backgounds to do anything.
9369 if type(textList) == type(''):
9370 textList = [textList]
9371 elif len(textList) != len(coords):
9372 raise ValueError('textlist and coords must have same length')
9373 if foregrounds is None:
9375 elif isinstance(foregrounds, wx.Colour):
9376 foregrounds = [foregrounds]
9377 elif len(foregrounds) != len(coords):
9378 raise ValueError('foregrounds and coords must have same length')
9379 if backgrounds is None:
9381 elif isinstance(backgrounds, wx.Colour):
9382 backgrounds = [backgrounds]
9383 elif len(backgrounds) != len(coords):
9384 raise ValueError('backgrounds and coords must have same length')
9385 return self._DrawTextList(textList, coords, foregrounds, backgrounds)
9389 #---------------------------------------------------------------------------
9391 <class name=
"MemoryDC" oldname=
"wxMemoryDC" module=
"gdi">
9392 <baseclass name=
"wxDC"/>
9393 <constructor name=
"MemoryDC" overloaded=
"no">
9394 <autodoc>__init__() -
> MemoryDC
</autodoc>
9396 <constructor name=
"MemoryDCFromDC" overloaded=
"no">
9397 <autodoc>MemoryDCFromDC(DC oldDC) -
> MemoryDC
</autodoc>
9399 <param name=
"oldDC" type=
"p.wxDC" default=
""/>
9402 <method name=
"SelectObject" overloaded=
"no">
9403 <autodoc>SelectObject(Bitmap bitmap)
</autodoc>
9405 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
9410 #---------------------------------------------------------------------------
9412 <class name=
"BufferedDC" oldname=
"wxBufferedDC" module=
"gdi">
9413 <baseclass name=
"wxMemoryDC"/>
9414 <constructor name=
"BufferedDC" overloaded=
"yes">
9416 <param name=
"dc" type=
"p.wxDC" default=
""/>
9417 <param name=
"buffer" type=
"r.q(const).wxBitmap" default=
""/>
9420 <constructor name=
"BufferedDC" overloaded=
"yes">
9421 <autodoc>__init__(DC dc, Bitmap buffer) -
> BufferedDC
9422 __init__(DC dc, Size area, int flags=BUFFER_DC_DEFAULT) -
> BufferedDC
</autodoc>
9424 <param name=
"dc" type=
"p.wxDC" default=
""/>
9425 <param name=
"area" type=
"r.q(const).wxSize" default=
""/>
9426 <param name=
"flags" type=
"int" default=
"wxBUFFER_DC_DEFAULT"/>
9429 <constructor name=
"BufferedDCInternalBuffer" overloaded=
"no">
9430 <autodoc>BufferedDCInternalBuffer(DC dc, Size area, int flags=BUFFER_DC_DEFAULT) -
> BufferedDC
</autodoc>
9432 <param name=
"dc" type=
"p.wxDC" default=
""/>
9433 <param name=
"area" type=
"r.q(const).wxSize" default=
""/>
9434 <param name=
"flags" type=
"int" default=
"wxBUFFER_DC_DEFAULT"/>
9437 <method name=
"UnMask" overloaded=
"no">
9438 <autodoc>UnMask()
</autodoc>
9441 <class name=
"BufferedPaintDC" oldname=
"wxBufferedPaintDC" module=
"gdi">
9442 <baseclass name=
"wxBufferedDC"/>
9443 <constructor name=
"BufferedPaintDC" overloaded=
"yes">
9445 <param name=
"window" type=
"p.wxWindow" default=
""/>
9446 <param name=
"buffer" type=
"r.q(const).wxBitmap" default=
""/>
9449 <constructor name=
"BufferedPaintDC" overloaded=
"yes">
9450 <autodoc>__init__(Window window, Bitmap buffer) -
> BufferedPaintDC
9451 __init__(Window window, int flags=BUFFER_DC_DEFAULT) -
> BufferedPaintDC
</autodoc>
9453 <param name=
"window" type=
"p.wxWindow" default=
""/>
9454 <param name=
"flags" type=
"int" default=
"wxBUFFER_DC_DEFAULT"/>
9459 #---------------------------------------------------------------------------
9461 <class name=
"ScreenDC" oldname=
"wxScreenDC" module=
"gdi">
9462 <baseclass name=
"wxDC"/>
9463 <constructor name=
"ScreenDC" overloaded=
"no">
9464 <autodoc>__init__() -
> ScreenDC
</autodoc>
9466 <method name=
"StartDrawingOnTopWin" overloaded=
"no">
9467 <autodoc>StartDrawingOnTopWin(Window window) -
> bool
</autodoc>
9469 <param name=
"window" type=
"p.wxWindow" default=
""/>
9472 <method name=
"StartDrawingOnTop" overloaded=
"no">
9473 <autodoc>StartDrawingOnTop(Rect rect=None) -
> bool
</autodoc>
9475 <param name=
"rect" type=
"p.wxRect" default=
"NULL"/>
9478 <method name=
"EndDrawingOnTop" overloaded=
"no">
9479 <autodoc>EndDrawingOnTop() -
> bool
</autodoc>
9483 #---------------------------------------------------------------------------
9485 <class name=
"ClientDC" oldname=
"wxClientDC" module=
"gdi">
9486 <baseclass name=
"wxDC"/>
9487 <constructor name=
"ClientDC" overloaded=
"no">
9488 <autodoc>__init__(Window win) -
> ClientDC
</autodoc>
9490 <param name=
"win" type=
"p.wxWindow" default=
""/>
9495 #---------------------------------------------------------------------------
9497 <class name=
"PaintDC" oldname=
"wxPaintDC" module=
"gdi">
9498 <baseclass name=
"wxDC"/>
9499 <constructor name=
"PaintDC" overloaded=
"no">
9500 <autodoc>__init__(Window win) -
> PaintDC
</autodoc>
9502 <param name=
"win" type=
"p.wxWindow" default=
""/>
9507 #---------------------------------------------------------------------------
9509 <class name=
"WindowDC" oldname=
"wxWindowDC" module=
"gdi">
9510 <baseclass name=
"wxDC"/>
9511 <constructor name=
"WindowDC" overloaded=
"no">
9512 <autodoc>__init__(Window win) -
> WindowDC
</autodoc>
9514 <param name=
"win" type=
"p.wxWindow" default=
""/>
9519 #---------------------------------------------------------------------------
9521 <class name=
"MirrorDC" oldname=
"wxMirrorDC" module=
"gdi">
9522 <baseclass name=
"wxDC"/>
9523 <constructor name=
"MirrorDC" overloaded=
"no">
9524 <autodoc>__init__(DC dc, bool mirror) -
> MirrorDC
</autodoc>
9526 <param name=
"dc" type=
"r.wxDC" default=
""/>
9527 <param name=
"mirror" type=
"bool" default=
""/>
9532 #---------------------------------------------------------------------------
9534 <class name=
"PostScriptDC" oldname=
"wxPostScriptDC" module=
"gdi">
9535 <baseclass name=
"wxDC"/>
9536 <constructor name=
"PostScriptDC" overloaded=
"no">
9537 <autodoc>__init__(wxPrintData printData) -
> PostScriptDC
</autodoc>
9539 <param name=
"printData" type=
"r.q(const).wxPrintData" default=
""/>
9542 <method name=
"GetPrintData" overloaded=
"no">
9543 <autodoc>GetPrintData() -
> wxPrintData
</autodoc>
9545 <method name=
"SetPrintData" overloaded=
"no">
9546 <autodoc>SetPrintData(wxPrintData data)
</autodoc>
9548 <param name=
"data" type=
"r.q(const).wxPrintData" default=
""/>
9551 <staticmethod name=
"SetResolution" overloaded=
"no">
9552 <autodoc>SetResolution(int ppi)
</autodoc>
9554 <param name=
"ppi" type=
"int" default=
""/>
9557 <staticmethod name=
"GetResolution" overloaded=
"no">
9558 <autodoc>GetResolution() -
> int
</autodoc>
9562 #---------------------------------------------------------------------------
9564 <class name=
"MetaFile" oldname=
"wxMetaFile" module=
"gdi">
9565 <baseclass name=
"wxObject"/>
9566 <constructor name=
"MetaFile" overloaded=
"no">
9567 <autodoc>__init__(String filename=EmptyString) -
> MetaFile
</autodoc>
9569 <param name=
"filename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
9573 <class name=
"MetaFileDC" oldname=
"wxMetaFileDC" module=
"gdi">
9574 <baseclass name=
"wxDC"/>
9575 <constructor name=
"MetaFileDC" overloaded=
"no">
9576 <autodoc>__init__(String filename=EmptyString, int width=
0, int height=
0,
9577 String description=EmptyString) -
> MetaFileDC
</autodoc>
9579 <param name=
"filename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
9580 <param name=
"width" type=
"int" default=
"0"/>
9581 <param name=
"height" type=
"int" default=
"0"/>
9582 <param name=
"description" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
9586 <class name=
"PrinterDC" oldname=
"wxPrinterDC" module=
"gdi">
9587 <baseclass name=
"wxDC"/>
9588 <constructor name=
"PrinterDC" overloaded=
"no">
9589 <autodoc>__init__(wxPrintData printData) -
> PrinterDC
</autodoc>
9591 <param name=
"printData" type=
"r.q(const).wxPrintData" default=
""/>
9597 """DC class that has methods with
2.4 compatible parameters."""
9598 FloodFill = DC.FloodFillXY
9599 GetPixel = DC.GetPixelXY
9600 DrawLine = DC.DrawLineXY
9601 CrossHair = DC.CrossHairXY
9602 DrawArc = DC.DrawArcXY
9603 DrawCheckMark = DC.DrawCheckMarkXY
9604 DrawEllipticArc = DC.DrawEllipticArcXY
9605 DrawPoint = DC.DrawPointXY
9606 DrawRectangle = DC.DrawRectangleXY
9607 DrawRoundedRectangle = DC.DrawRoundedRectangleXY
9608 DrawCircle = DC.DrawCircleXY
9609 DrawEllipse = DC.DrawEllipseXY
9610 DrawIcon = DC.DrawIconXY
9611 DrawBitmap = DC.DrawBitmapXY
9612 DrawText = DC.DrawTextXY
9613 DrawRotatedText = DC.DrawRotatedTextXY
9617 class MemoryDC_old(MemoryDC):
9618 """DC class that has methods with
2.4 compatible parameters."""
9619 FloodFill = MemoryDC.FloodFillXY
9620 GetPixel = MemoryDC.GetPixelXY
9621 DrawLine = MemoryDC.DrawLineXY
9622 CrossHair = MemoryDC.CrossHairXY
9623 DrawArc = MemoryDC.DrawArcXY
9624 DrawCheckMark = MemoryDC.DrawCheckMarkXY
9625 DrawEllipticArc = MemoryDC.DrawEllipticArcXY
9626 DrawPoint = MemoryDC.DrawPointXY
9627 DrawRectangle = MemoryDC.DrawRectangleXY
9628 DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
9629 DrawCircle = MemoryDC.DrawCircleXY
9630 DrawEllipse = MemoryDC.DrawEllipseXY
9631 DrawIcon = MemoryDC.DrawIconXY
9632 DrawBitmap = MemoryDC.DrawBitmapXY
9633 DrawText = MemoryDC.DrawTextXY
9634 DrawRotatedText = MemoryDC.DrawRotatedTextXY
9635 Blit = MemoryDC.BlitXY
9638 class BufferedDC_old(BufferedDC):
9639 """DC class that has methods with
2.4 compatible parameters."""
9640 FloodFill = BufferedDC.FloodFillXY
9641 GetPixel = BufferedDC.GetPixelXY
9642 DrawLine = BufferedDC.DrawLineXY
9643 CrossHair = BufferedDC.CrossHairXY
9644 DrawArc = BufferedDC.DrawArcXY
9645 DrawCheckMark = BufferedDC.DrawCheckMarkXY
9646 DrawEllipticArc = BufferedDC.DrawEllipticArcXY
9647 DrawPoint = BufferedDC.DrawPointXY
9648 DrawRectangle = BufferedDC.DrawRectangleXY
9649 DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
9650 DrawCircle = BufferedDC.DrawCircleXY
9651 DrawEllipse = BufferedDC.DrawEllipseXY
9652 DrawIcon = BufferedDC.DrawIconXY
9653 DrawBitmap = BufferedDC.DrawBitmapXY
9654 DrawText = BufferedDC.DrawTextXY
9655 DrawRotatedText = BufferedDC.DrawRotatedTextXY
9656 Blit = BufferedDC.BlitXY
9659 class BufferedPaintDC_old(BufferedPaintDC):
9660 """DC class that has methods with
2.4 compatible parameters."""
9661 FloodFill = BufferedPaintDC.FloodFillXY
9662 GetPixel = BufferedPaintDC.GetPixelXY
9663 DrawLine = BufferedPaintDC.DrawLineXY
9664 CrossHair = BufferedPaintDC.CrossHairXY
9665 DrawArc = BufferedPaintDC.DrawArcXY
9666 DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
9667 DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
9668 DrawPoint = BufferedPaintDC.DrawPointXY
9669 DrawRectangle = BufferedPaintDC.DrawRectangleXY
9670 DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
9671 DrawCircle = BufferedPaintDC.DrawCircleXY
9672 DrawEllipse = BufferedPaintDC.DrawEllipseXY
9673 DrawIcon = BufferedPaintDC.DrawIconXY
9674 DrawBitmap = BufferedPaintDC.DrawBitmapXY
9675 DrawText = BufferedPaintDC.DrawTextXY
9676 DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
9677 Blit = BufferedPaintDC.BlitXY
9680 class ScreenDC_old(ScreenDC):
9681 """DC class that has methods with
2.4 compatible parameters."""
9682 FloodFill = ScreenDC.FloodFillXY
9683 GetPixel = ScreenDC.GetPixelXY
9684 DrawLine = ScreenDC.DrawLineXY
9685 CrossHair = ScreenDC.CrossHairXY
9686 DrawArc = ScreenDC.DrawArcXY
9687 DrawCheckMark = ScreenDC.DrawCheckMarkXY
9688 DrawEllipticArc = ScreenDC.DrawEllipticArcXY
9689 DrawPoint = ScreenDC.DrawPointXY
9690 DrawRectangle = ScreenDC.DrawRectangleXY
9691 DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
9692 DrawCircle = ScreenDC.DrawCircleXY
9693 DrawEllipse = ScreenDC.DrawEllipseXY
9694 DrawIcon = ScreenDC.DrawIconXY
9695 DrawBitmap = ScreenDC.DrawBitmapXY
9696 DrawText = ScreenDC.DrawTextXY
9697 DrawRotatedText = ScreenDC.DrawRotatedTextXY
9698 Blit = ScreenDC.BlitXY
9701 class ClientDC_old(ClientDC):
9702 """DC class that has methods with
2.4 compatible parameters."""
9703 FloodFill = ClientDC.FloodFillXY
9704 GetPixel = ClientDC.GetPixelXY
9705 DrawLine = ClientDC.DrawLineXY
9706 CrossHair = ClientDC.CrossHairXY
9707 DrawArc = ClientDC.DrawArcXY
9708 DrawCheckMark = ClientDC.DrawCheckMarkXY
9709 DrawEllipticArc = ClientDC.DrawEllipticArcXY
9710 DrawPoint = ClientDC.DrawPointXY
9711 DrawRectangle = ClientDC.DrawRectangleXY
9712 DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
9713 DrawCircle = ClientDC.DrawCircleXY
9714 DrawEllipse = ClientDC.DrawEllipseXY
9715 DrawIcon = ClientDC.DrawIconXY
9716 DrawBitmap = ClientDC.DrawBitmapXY
9717 DrawText = ClientDC.DrawTextXY
9718 DrawRotatedText = ClientDC.DrawRotatedTextXY
9719 Blit = ClientDC.BlitXY
9722 class PaintDC_old(PaintDC):
9723 """DC class that has methods with
2.4 compatible parameters."""
9724 FloodFill = PaintDC.FloodFillXY
9725 GetPixel = PaintDC.GetPixelXY
9726 DrawLine = PaintDC.DrawLineXY
9727 CrossHair = PaintDC.CrossHairXY
9728 DrawArc = PaintDC.DrawArcXY
9729 DrawCheckMark = PaintDC.DrawCheckMarkXY
9730 DrawEllipticArc = PaintDC.DrawEllipticArcXY
9731 DrawPoint = PaintDC.DrawPointXY
9732 DrawRectangle = PaintDC.DrawRectangleXY
9733 DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
9734 DrawCircle = PaintDC.DrawCircleXY
9735 DrawEllipse = PaintDC.DrawEllipseXY
9736 DrawIcon = PaintDC.DrawIconXY
9737 DrawBitmap = PaintDC.DrawBitmapXY
9738 DrawText = PaintDC.DrawTextXY
9739 DrawRotatedText = PaintDC.DrawRotatedTextXY
9740 Blit = PaintDC.BlitXY
9743 class WindowDC_old(WindowDC):
9744 """DC class that has methods with
2.4 compatible parameters."""
9745 FloodFill = WindowDC.FloodFillXY
9746 GetPixel = WindowDC.GetPixelXY
9747 DrawLine = WindowDC.DrawLineXY
9748 CrossHair = WindowDC.CrossHairXY
9749 DrawArc = WindowDC.DrawArcXY
9750 DrawCheckMark = WindowDC.DrawCheckMarkXY
9751 DrawEllipticArc = WindowDC.DrawEllipticArcXY
9752 DrawPoint = WindowDC.DrawPointXY
9753 DrawRectangle = WindowDC.DrawRectangleXY
9754 DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
9755 DrawCircle = WindowDC.DrawCircleXY
9756 DrawEllipse = WindowDC.DrawEllipseXY
9757 DrawIcon = WindowDC.DrawIconXY
9758 DrawBitmap = WindowDC.DrawBitmapXY
9759 DrawText = WindowDC.DrawTextXY
9760 DrawRotatedText = WindowDC.DrawRotatedTextXY
9761 Blit = WindowDC.BlitXY
9764 class MirrorDC_old(MirrorDC):
9765 """DC class that has methods with
2.4 compatible parameters."""
9766 FloodFill = MirrorDC.FloodFillXY
9767 GetPixel = MirrorDC.GetPixelXY
9768 DrawLine = MirrorDC.DrawLineXY
9769 CrossHair = MirrorDC.CrossHairXY
9770 DrawArc = MirrorDC.DrawArcXY
9771 DrawCheckMark = MirrorDC.DrawCheckMarkXY
9772 DrawEllipticArc = MirrorDC.DrawEllipticArcXY
9773 DrawPoint = MirrorDC.DrawPointXY
9774 DrawRectangle = MirrorDC.DrawRectangleXY
9775 DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
9776 DrawCircle = MirrorDC.DrawCircleXY
9777 DrawEllipse = MirrorDC.DrawEllipseXY
9778 DrawIcon = MirrorDC.DrawIconXY
9779 DrawBitmap = MirrorDC.DrawBitmapXY
9780 DrawText = MirrorDC.DrawTextXY
9781 DrawRotatedText = MirrorDC.DrawRotatedTextXY
9782 Blit = MirrorDC.BlitXY
9785 class PostScriptDC_old(PostScriptDC):
9786 """DC class that has methods with
2.4 compatible parameters."""
9787 FloodFill = PostScriptDC.FloodFillXY
9788 GetPixel = PostScriptDC.GetPixelXY
9789 DrawLine = PostScriptDC.DrawLineXY
9790 CrossHair = PostScriptDC.CrossHairXY
9791 DrawArc = PostScriptDC.DrawArcXY
9792 DrawCheckMark = PostScriptDC.DrawCheckMarkXY
9793 DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
9794 DrawPoint = PostScriptDC.DrawPointXY
9795 DrawRectangle = PostScriptDC.DrawRectangleXY
9796 DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
9797 DrawCircle = PostScriptDC.DrawCircleXY
9798 DrawEllipse = PostScriptDC.DrawEllipseXY
9799 DrawIcon = PostScriptDC.DrawIconXY
9800 DrawBitmap = PostScriptDC.DrawBitmapXY
9801 DrawText = PostScriptDC.DrawTextXY
9802 DrawRotatedText = PostScriptDC.DrawRotatedTextXY
9803 Blit = PostScriptDC.BlitXY
9806 class MetaFileDC_old(MetaFileDC):
9807 """DC class that has methods with
2.4 compatible parameters."""
9808 FloodFill = MetaFileDC.FloodFillXY
9809 GetPixel = MetaFileDC.GetPixelXY
9810 DrawLine = MetaFileDC.DrawLineXY
9811 CrossHair = MetaFileDC.CrossHairXY
9812 DrawArc = MetaFileDC.DrawArcXY
9813 DrawCheckMark = MetaFileDC.DrawCheckMarkXY
9814 DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
9815 DrawPoint = MetaFileDC.DrawPointXY
9816 DrawRectangle = MetaFileDC.DrawRectangleXY
9817 DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
9818 DrawCircle = MetaFileDC.DrawCircleXY
9819 DrawEllipse = MetaFileDC.DrawEllipseXY
9820 DrawIcon = MetaFileDC.DrawIconXY
9821 DrawBitmap = MetaFileDC.DrawBitmapXY
9822 DrawText = MetaFileDC.DrawTextXY
9823 DrawRotatedText = MetaFileDC.DrawRotatedTextXY
9824 Blit = MetaFileDC.BlitXY
9827 class PrinterDC_old(PrinterDC):
9828 """DC class that has methods with
2.4 compatible parameters."""
9829 FloodFill = PrinterDC.FloodFillXY
9830 GetPixel = PrinterDC.GetPixelXY
9831 DrawLine = PrinterDC.DrawLineXY
9832 CrossHair = PrinterDC.CrossHairXY
9833 DrawArc = PrinterDC.DrawArcXY
9834 DrawCheckMark = PrinterDC.DrawCheckMarkXY
9835 DrawEllipticArc = PrinterDC.DrawEllipticArcXY
9836 DrawPoint = PrinterDC.DrawPointXY
9837 DrawRectangle = PrinterDC.DrawRectangleXY
9838 DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
9839 DrawCircle = PrinterDC.DrawCircleXY
9840 DrawEllipse = PrinterDC.DrawEllipseXY
9841 DrawIcon = PrinterDC.DrawIconXY
9842 DrawBitmap = PrinterDC.DrawBitmapXY
9843 DrawText = PrinterDC.DrawTextXY
9844 DrawRotatedText = PrinterDC.DrawRotatedTextXY
9845 Blit = PrinterDC.BlitXY
9848 #---------------------------------------------------------------------------
9850 <class name=
"ImageList" oldname=
"wxImageList" module=
"gdi">
9851 <baseclass name=
"wxObject"/>
9852 <constructor name=
"ImageList" overloaded=
"no">
9853 <autodoc>__init__(int width, int height, int mask=True, int initialCount=
1) -
> ImageList
</autodoc>
9855 <param name=
"width" type=
"int" default=
""/>
9856 <param name=
"height" type=
"int" default=
""/>
9857 <param name=
"mask" type=
"int" default=
"True"/>
9858 <param name=
"initialCount" type=
"int" default=
"1"/>
9861 <destructor name=
"~wxImageList">
9862 <autodoc>__del__()
</autodoc>
9864 <method name=
"Add" overloaded=
"no">
9865 <autodoc>Add(Bitmap bitmap, Bitmap mask=NullBitmap) -
> int
</autodoc>
9867 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
9868 <param name=
"mask" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
9871 <method name=
"AddWithColourMask" overloaded=
"no">
9872 <autodoc>AddWithColourMask(Bitmap bitmap, Colour maskColour) -
> int
</autodoc>
9874 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
9875 <param name=
"maskColour" type=
"r.q(const).wxColour" default=
""/>
9878 <method name=
"AddIcon" overloaded=
"no">
9879 <autodoc>AddIcon(Icon icon) -
> int
</autodoc>
9881 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
9884 <method name=
"Replace" overloaded=
"no">
9885 <autodoc>Replace(int index, Bitmap bitmap) -
> bool
</autodoc>
9887 <param name=
"index" type=
"int" default=
""/>
9888 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
9891 <method name=
"Draw" overloaded=
"no">
9892 <autodoc>Draw(int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL,
9893 bool solidBackground=False) -
> bool
</autodoc>
9895 <param name=
"index" type=
"int" default=
""/>
9896 <param name=
"dc" type=
"r.wxDC" default=
""/>
9897 <param name=
"x" type=
"int" default=
""/>
9898 <param name=
"x" type=
"int" default=
""/>
9899 <param name=
"flags" type=
"int" default=
"wxIMAGELIST_DRAW_NORMAL"/>
9900 <param name=
"solidBackground" type=
"q(const).bool" default=
"False"/>
9903 <method name=
"GetImageCount" overloaded=
"no">
9904 <autodoc>GetImageCount() -
> int
</autodoc>
9906 <method name=
"Remove" overloaded=
"no">
9907 <autodoc>Remove(int index) -
> bool
</autodoc>
9909 <param name=
"index" type=
"int" default=
""/>
9912 <method name=
"RemoveAll" overloaded=
"no">
9913 <autodoc>RemoveAll() -
> bool
</autodoc>
9915 <method name=
"GetSize" overloaded=
"no">
9916 <autodoc>GetSize() -
> (width,height)
</autodoc>
9918 <param name=
"index" type=
"int" default=
""/>
9919 <param name=
"OUTPUT" type=
"r.int" default=
""/>
9920 <param name=
"OUTPUT" type=
"r.int" default=
""/>
9925 #---------------------------------------------------------------------------
9927 <class name=
"PenList" oldname=
"wxPenList" module=
"gdi">
9928 <baseclass name=
"wxObject"/>
9929 <method name=
"AddPen" overloaded=
"no">
9930 <autodoc>AddPen(Pen pen)
</autodoc>
9932 <param name=
"pen" type=
"p.wxPen" default=
""/>
9935 <method name=
"FindOrCreatePen" overloaded=
"no">
9936 <autodoc>FindOrCreatePen(Colour colour, int width, int style) -
> Pen
</autodoc>
9938 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
9939 <param name=
"width" type=
"int" default=
""/>
9940 <param name=
"style" type=
"int" default=
""/>
9943 <method name=
"RemovePen" overloaded=
"no">
9944 <autodoc>RemovePen(Pen pen)
</autodoc>
9946 <param name=
"pen" type=
"p.wxPen" default=
""/>
9949 <method name=
"GetCount" overloaded=
"no">
9950 <autodoc>GetCount() -
> int
</autodoc>
9953 <class name=
"BrushList" oldname=
"wxBrushList" module=
"gdi">
9954 <baseclass name=
"wxObject"/>
9955 <method name=
"AddBrush" overloaded=
"no">
9956 <autodoc>AddBrush(Brush brush)
</autodoc>
9958 <param name=
"brush" type=
"p.wxBrush" default=
""/>
9961 <method name=
"FindOrCreateBrush" overloaded=
"no">
9962 <autodoc>FindOrCreateBrush(Colour colour, int style) -
> Brush
</autodoc>
9964 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
9965 <param name=
"style" type=
"int" default=
""/>
9968 <method name=
"RemoveBrush" overloaded=
"no">
9969 <autodoc>RemoveBrush(Brush brush)
</autodoc>
9971 <param name=
"brush" type=
"p.wxBrush" default=
""/>
9974 <method name=
"GetCount" overloaded=
"no">
9975 <autodoc>GetCount() -
> int
</autodoc>
9978 <class name=
"ColourDatabase" oldname=
"wxColourDatabase" module=
"gdi">
9979 <baseclass name=
"wxObject"/>
9980 <constructor name=
"ColourDatabase" overloaded=
"no">
9981 <autodoc>__init__() -
> ColourDatabase
</autodoc>
9983 <destructor name=
"~wxColourDatabase">
9984 <autodoc>__del__()
</autodoc>
9986 <method name=
"Find" overloaded=
"no">
9987 <autodoc>Find(String name) -
> Colour
</autodoc>
9989 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
9992 <method name=
"FindName" overloaded=
"no">
9993 <autodoc>FindName(Colour colour) -
> String
</autodoc>
9995 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
9998 <pythoncode> FindColour = Find
</pythoncode>
9999 <method name=
"AddColour" overloaded=
"no">
10000 <autodoc>AddColour(String name, Colour colour)
</autodoc>
10002 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
10003 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
10006 <method name=
"Append" overloaded=
"no">
10007 <autodoc>Append(String name, int red, int green, int blue)
</autodoc>
10009 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
10010 <param name=
"red" type=
"int" default=
""/>
10011 <param name=
"green" type=
"int" default=
""/>
10012 <param name=
"blue" type=
"int" default=
""/>
10016 <class name=
"FontList" oldname=
"wxFontList" module=
"gdi">
10017 <baseclass name=
"wxObject"/>
10018 <method name=
"AddFont" overloaded=
"no">
10019 <autodoc>AddFont(Font font)
</autodoc>
10021 <param name=
"font" type=
"p.wxFont" default=
""/>
10024 <method name=
"FindOrCreateFont" overloaded=
"no">
10025 <autodoc>FindOrCreateFont(int point_size, int family, int style, int weight,
10026 bool underline=False, String facename=EmptyString,
10027 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
10029 <param name=
"point_size" type=
"int" default=
""/>
10030 <param name=
"family" type=
"int" default=
""/>
10031 <param name=
"style" type=
"int" default=
""/>
10032 <param name=
"weight" type=
"int" default=
""/>
10033 <param name=
"underline" type=
"bool" default=
"False"/>
10034 <param name=
"facename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
10035 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
10038 <method name=
"RemoveFont" overloaded=
"no">
10039 <autodoc>RemoveFont(Font font)
</autodoc>
10041 <param name=
"font" type=
"p.wxFont" default=
""/>
10044 <method name=
"GetCount" overloaded=
"no">
10045 <autodoc>GetCount() -
> int
</autodoc>
10049 #---------------------------------------------------------------------------
10051 <pythoncode> NullColor = NullColour
</pythoncode>
10053 #---------------------------------------------------------------------------
10055 <class name=
"Effects" oldname=
"wxEffects" module=
"gdi">
10056 <baseclass name=
"wxObject"/>
10057 <constructor name=
"Effects" overloaded=
"no">
10058 <autodoc>__init__() -
> Effects
</autodoc>
10060 <method name=
"GetHighlightColour" overloaded=
"no">
10061 <autodoc>GetHighlightColour() -
> Colour
</autodoc>
10063 <method name=
"GetLightShadow" overloaded=
"no">
10064 <autodoc>GetLightShadow() -
> Colour
</autodoc>
10066 <method name=
"GetFaceColour" overloaded=
"no">
10067 <autodoc>GetFaceColour() -
> Colour
</autodoc>
10069 <method name=
"GetMediumShadow" overloaded=
"no">
10070 <autodoc>GetMediumShadow() -
> Colour
</autodoc>
10072 <method name=
"GetDarkShadow" overloaded=
"no">
10073 <autodoc>GetDarkShadow() -
> Colour
</autodoc>
10075 <method name=
"SetHighlightColour" overloaded=
"no">
10076 <autodoc>SetHighlightColour(Colour c)
</autodoc>
10078 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
10081 <method name=
"SetLightShadow" overloaded=
"no">
10082 <autodoc>SetLightShadow(Colour c)
</autodoc>
10084 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
10087 <method name=
"SetFaceColour" overloaded=
"no">
10088 <autodoc>SetFaceColour(Colour c)
</autodoc>
10090 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
10093 <method name=
"SetMediumShadow" overloaded=
"no">
10094 <autodoc>SetMediumShadow(Colour c)
</autodoc>
10096 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
10099 <method name=
"SetDarkShadow" overloaded=
"no">
10100 <autodoc>SetDarkShadow(Colour c)
</autodoc>
10102 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
10105 <method name=
"Set" overloaded=
"no">
10106 <autodoc>Set(Colour highlightColour, Colour lightShadow, Colour faceColour,
10107 Colour mediumShadow, Colour darkShadow)
</autodoc>
10109 <param name=
"highlightColour" type=
"r.q(const).wxColour" default=
""/>
10110 <param name=
"lightShadow" type=
"r.q(const).wxColour" default=
""/>
10111 <param name=
"faceColour" type=
"r.q(const).wxColour" default=
""/>
10112 <param name=
"mediumShadow" type=
"r.q(const).wxColour" default=
""/>
10113 <param name=
"darkShadow" type=
"r.q(const).wxColour" default=
""/>
10116 <method name=
"DrawSunkenEdge" overloaded=
"no">
10117 <autodoc>DrawSunkenEdge(DC dc, Rect rect, int borderSize=
1)
</autodoc>
10119 <param name=
"dc" type=
"r.wxDC" default=
""/>
10120 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
10121 <param name=
"borderSize" type=
"int" default=
"1"/>
10124 <method name=
"TileBitmap" overloaded=
"no">
10125 <autodoc>TileBitmap(Rect rect, DC dc, Bitmap bitmap) -
> bool
</autodoc>
10127 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
10128 <param name=
"dc" type=
"r.wxDC" default=
""/>
10129 <param name=
"bitmap" type=
"r.wxBitmap" default=
""/>
10134 <module name=
"windows">
10135 <pythoncode> wx = core
</pythoncode>
10137 #---------------------------------------------------------------------------
10139 <class name=
"Panel" oldname=
"wxPanel" module=
"windows">
10140 <baseclass name=
"wxWindow"/>
10141 <constructor name=
"Panel" overloaded=
"no">
10142 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
10143 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10144 String name=PanelNameStr) -
> Panel
</autodoc>
10146 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10147 <param name=
"id" type=
"q(const).int" default=
"-1"/>
10148 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10149 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10150 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10151 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
10154 <constructor name=
"PrePanel" overloaded=
"no">
10155 <autodoc>PrePanel() -
> Panel
</autodoc>
10157 <method name=
"Create" overloaded=
"no">
10158 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10159 long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10160 String name=PanelNameStr) -
> bool
</autodoc>
10162 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10163 <param name=
"id" type=
"q(const).int" default=
""/>
10164 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10165 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10166 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10167 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
10170 <method name=
"InitDialog" overloaded=
"no">
10171 <autodoc>InitDialog()
</autodoc>
10175 #---------------------------------------------------------------------------
10177 <class name=
"ScrolledWindow" oldname=
"wxScrolledWindow" module=
"windows">
10178 <baseclass name=
"wxPanel"/>
10179 <constructor name=
"ScrolledWindow" overloaded=
"no">
10180 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
10181 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
10182 String name=PanelNameStr) -
> ScrolledWindow
</autodoc>
10184 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10185 <param name=
"id" type=
"q(const).int" default=
"-1"/>
10186 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10187 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10188 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
10189 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
10192 <constructor name=
"PreScrolledWindow" overloaded=
"no">
10193 <autodoc>PreScrolledWindow() -
> ScrolledWindow
</autodoc>
10195 <method name=
"Create" overloaded=
"no">
10196 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
10197 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
10198 String name=PanelNameStr) -
> bool
</autodoc>
10200 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10201 <param name=
"id" type=
"q(const).int" default=
"-1"/>
10202 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10203 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10204 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
10205 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
10208 <method name=
"SetScrollbars" overloaded=
"no">
10209 <autodoc>SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
10210 int noUnitsY, int xPos=
0, int yPos=
0, bool noRefresh=False)
</autodoc>
10212 <param name=
"pixelsPerUnitX" type=
"int" default=
""/>
10213 <param name=
"pixelsPerUnitY" type=
"int" default=
""/>
10214 <param name=
"noUnitsX" type=
"int" default=
""/>
10215 <param name=
"noUnitsY" type=
"int" default=
""/>
10216 <param name=
"xPos" type=
"int" default=
"0"/>
10217 <param name=
"yPos" type=
"int" default=
"0"/>
10218 <param name=
"noRefresh" type=
"bool" default=
"False"/>
10221 <method name=
"Scroll" overloaded=
"no">
10222 <autodoc>Scroll(int x, int y)
</autodoc>
10224 <param name=
"x" type=
"int" default=
""/>
10225 <param name=
"y" type=
"int" default=
""/>
10228 <method name=
"GetScrollPageSize" overloaded=
"no">
10229 <autodoc>GetScrollPageSize(int orient) -
> int
</autodoc>
10231 <param name=
"orient" type=
"int" default=
""/>
10234 <method name=
"SetScrollPageSize" overloaded=
"no">
10235 <autodoc>SetScrollPageSize(int orient, int pageSize)
</autodoc>
10237 <param name=
"orient" type=
"int" default=
""/>
10238 <param name=
"pageSize" type=
"int" default=
""/>
10241 <method name=
"SetScrollRate" overloaded=
"no">
10242 <autodoc>SetScrollRate(int xstep, int ystep)
</autodoc>
10244 <param name=
"xstep" type=
"int" default=
""/>
10245 <param name=
"ystep" type=
"int" default=
""/>
10248 <method name=
"GetScrollPixelsPerUnit" overloaded=
"no">
10249 <autodoc>GetScrollPixelsPerUnit() -
> (xUnit, yUnit)
</autodoc>
10250 <docstring>Get the size of one logical unit in physical units.
</docstring>
10252 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10253 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10256 <method name=
"EnableScrolling" overloaded=
"no">
10257 <autodoc>EnableScrolling(bool x_scrolling, bool y_scrolling)
</autodoc>
10259 <param name=
"x_scrolling" type=
"bool" default=
""/>
10260 <param name=
"y_scrolling" type=
"bool" default=
""/>
10263 <method name=
"GetViewStart" overloaded=
"no">
10264 <autodoc>GetViewStart() -
> (x,y)
</autodoc>
10265 <docstring>Get the view start
</docstring>
10267 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10268 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10271 <method name=
"SetScale" overloaded=
"no">
10272 <autodoc>SetScale(double xs, double ys)
</autodoc>
10274 <param name=
"xs" type=
"double" default=
""/>
10275 <param name=
"ys" type=
"double" default=
""/>
10278 <method name=
"GetScaleX" overloaded=
"no">
10279 <autodoc>GetScaleX() -
> double
</autodoc>
10281 <method name=
"GetScaleY" overloaded=
"no">
10282 <autodoc>GetScaleY() -
> double
</autodoc>
10284 <method name=
"CalcScrolledPosition" overloaded=
"yes">
10285 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
10287 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
10290 <method name=
"CalcScrolledPosition" overloaded=
"yes">
10291 <autodoc>CalcScrolledPosition(Point pt) -
> Point
10292 CalcScrolledPosition(int x, int y) -
> (sx, sy)
</autodoc>
10293 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
10295 <param name=
"x" type=
"int" default=
""/>
10296 <param name=
"y" type=
"int" default=
""/>
10297 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10298 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10301 <method name=
"CalcUnscrolledPosition" overloaded=
"yes">
10302 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
10304 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
10307 <method name=
"CalcUnscrolledPosition" overloaded=
"yes">
10308 <autodoc>CalcUnscrolledPosition(Point pt) -
> Point
10309 CalcUnscrolledPosition(int x, int y) -
> (ux, uy)
</autodoc>
10310 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
10312 <param name=
"x" type=
"int" default=
""/>
10313 <param name=
"y" type=
"int" default=
""/>
10314 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10315 <param name=
"OUTPUT" type=
"p.int" default=
""/>
10318 <method name=
"AdjustScrollbars" overloaded=
"no">
10319 <autodoc>AdjustScrollbars()
</autodoc>
10321 <method name=
"CalcScrollInc" overloaded=
"no">
10322 <autodoc>CalcScrollInc(ScrollWinEvent event) -
> int
</autodoc>
10324 <param name=
"event" type=
"r.wxScrollWinEvent" default=
""/>
10327 <method name=
"SetTargetWindow" overloaded=
"no">
10328 <autodoc>SetTargetWindow(Window target)
</autodoc>
10330 <param name=
"target" type=
"p.wxWindow" default=
""/>
10333 <method name=
"GetTargetWindow" overloaded=
"no">
10334 <autodoc>GetTargetWindow() -
> Window
</autodoc>
10338 #---------------------------------------------------------------------------
10340 <class name=
"TopLevelWindow" oldname=
"wxTopLevelWindow" module=
"windows">
10341 <baseclass name=
"wxWindow"/>
10342 <method name=
"Maximize" overloaded=
"no">
10343 <autodoc>Maximize(bool maximize=True)
</autodoc>
10345 <param name=
"maximize" type=
"bool" default=
"True"/>
10348 <method name=
"Restore" overloaded=
"no">
10349 <autodoc>Restore()
</autodoc>
10351 <method name=
"Iconize" overloaded=
"no">
10352 <autodoc>Iconize(bool iconize=True)
</autodoc>
10354 <param name=
"iconize" type=
"bool" default=
"True"/>
10357 <method name=
"IsMaximized" overloaded=
"no">
10358 <autodoc>IsMaximized() -
> bool
</autodoc>
10360 <method name=
"IsIconized" overloaded=
"no">
10361 <autodoc>IsIconized() -
> bool
</autodoc>
10363 <method name=
"GetIcon" overloaded=
"no">
10364 <autodoc>GetIcon() -
> Icon
</autodoc>
10366 <method name=
"SetIcon" overloaded=
"no">
10367 <autodoc>SetIcon(Icon icon)
</autodoc>
10369 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
10372 <method name=
"SetIcons" overloaded=
"no">
10373 <autodoc>SetIcons(wxIconBundle icons)
</autodoc>
10375 <param name=
"icons" type=
"r.q(const).wxIconBundle" default=
""/>
10378 <method name=
"ShowFullScreen" overloaded=
"no">
10379 <autodoc>ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -
> bool
</autodoc>
10381 <param name=
"show" type=
"bool" default=
""/>
10382 <param name=
"style" type=
"long" default=
"wxFULLSCREEN_ALL"/>
10385 <method name=
"IsFullScreen" overloaded=
"no">
10386 <autodoc>IsFullScreen() -
> bool
</autodoc>
10388 <method name=
"SetTitle" overloaded=
"no">
10389 <autodoc>SetTitle(String title)
</autodoc>
10391 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10394 <method name=
"GetTitle" overloaded=
"no">
10395 <autodoc>GetTitle() -
> String
</autodoc>
10397 <method name=
"SetShape" overloaded=
"no">
10398 <autodoc>SetShape(Region region) -
> bool
</autodoc>
10400 <param name=
"region" type=
"r.q(const).wxRegion" default=
""/>
10405 #---------------------------------------------------------------------------
10407 <class name=
"Frame" oldname=
"wxFrame" module=
"windows">
10408 <baseclass name=
"wxTopLevelWindow"/>
10409 <constructor name=
"Frame" overloaded=
"no">
10410 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
10411 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
10412 String name=FrameNameStr) -
> Frame
</autodoc>
10414 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10415 <param name=
"id" type=
"q(const).int" default=
""/>
10416 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10417 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10418 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10419 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
10420 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
10423 <constructor name=
"PreFrame" overloaded=
"no">
10424 <autodoc>PreFrame() -
> Frame
</autodoc>
10426 <method name=
"Create" overloaded=
"no">
10427 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
10428 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
10429 String name=FrameNameStr) -
> bool
</autodoc>
10431 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10432 <param name=
"id" type=
"q(const).int" default=
""/>
10433 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10434 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10435 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10436 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
10437 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
10440 <method name=
"GetClientAreaOrigin" overloaded=
"no">
10441 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
10443 <method name=
"SendSizeEvent" overloaded=
"no">
10444 <autodoc>SendSizeEvent()
</autodoc>
10446 <method name=
"SetMenuBar" overloaded=
"no">
10447 <autodoc>SetMenuBar(MenuBar menubar)
</autodoc>
10449 <param name=
"menubar" type=
"p.wxMenuBar" default=
""/>
10452 <method name=
"GetMenuBar" overloaded=
"no">
10453 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
10455 <method name=
"ProcessCommand" overloaded=
"no">
10456 <autodoc>ProcessCommand(int winid) -
> bool
</autodoc>
10458 <param name=
"winid" type=
"int" default=
""/>
10461 <pythoncode> Command = ProcessCommand
</pythoncode>
10462 <method name=
"CreateStatusBar" overloaded=
"no">
10463 <autodoc>CreateStatusBar(int number=
1, long style=ST_SIZEGRIP, int winid=
0,
10464 String name=StatusLineNameStr) -
> StatusBar
</autodoc>
10466 <param name=
"number" type=
"int" default=
"1"/>
10467 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
10468 <param name=
"winid" type=
"int" default=
"0"/>
10469 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStatusLineNameStr"/>
10472 <method name=
"GetStatusBar" overloaded=
"no">
10473 <autodoc>GetStatusBar() -
> StatusBar
</autodoc>
10475 <method name=
"SetStatusBar" overloaded=
"no">
10476 <autodoc>SetStatusBar(StatusBar statBar)
</autodoc>
10478 <param name=
"statBar" type=
"p.wxStatusBar" default=
""/>
10481 <method name=
"SetStatusText" overloaded=
"no">
10482 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
10484 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
10485 <param name=
"number" type=
"int" default=
"0"/>
10488 <method name=
"SetStatusWidths" overloaded=
"no">
10489 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
10491 <param name=
"widths" type=
"int" default=
""/>
10492 <param name=
"widths_field" type=
"p.q(const).int" default=
""/>
10495 <method name=
"PushStatusText" overloaded=
"no">
10496 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
10498 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
10499 <param name=
"number" type=
"int" default=
"0"/>
10502 <method name=
"PopStatusText" overloaded=
"no">
10503 <autodoc>PopStatusText(int number=
0)
</autodoc>
10505 <param name=
"number" type=
"int" default=
"0"/>
10508 <method name=
"SetStatusBarPane" overloaded=
"no">
10509 <autodoc>SetStatusBarPane(int n)
</autodoc>
10511 <param name=
"n" type=
"int" default=
""/>
10514 <method name=
"GetStatusBarPane" overloaded=
"no">
10515 <autodoc>GetStatusBarPane() -
> int
</autodoc>
10517 <method name=
"CreateToolBar" overloaded=
"no">
10518 <autodoc>CreateToolBar(long style=-
1, int winid=-
1, String name=ToolBarNameStr) -
> wxToolBar
</autodoc>
10520 <param name=
"style" type=
"long" default=
"-1"/>
10521 <param name=
"winid" type=
"int" default=
"-1"/>
10522 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyToolBarNameStr"/>
10525 <method name=
"GetToolBar" overloaded=
"no">
10526 <autodoc>GetToolBar() -
> wxToolBar
</autodoc>
10528 <method name=
"SetToolBar" overloaded=
"no">
10529 <autodoc>SetToolBar(wxToolBar toolbar)
</autodoc>
10531 <param name=
"toolbar" type=
"p.wxToolBar" default=
""/>
10534 <method name=
"DoGiveHelp" overloaded=
"no">
10535 <autodoc>DoGiveHelp(String text, bool show)
</autodoc>
10537 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
10538 <param name=
"show" type=
"bool" default=
""/>
10541 <method name=
"DoMenuUpdates" overloaded=
"no">
10542 <autodoc>DoMenuUpdates(Menu menu=None)
</autodoc>
10544 <param name=
"menu" type=
"p.wxMenu" default=
"NULL"/>
10549 #---------------------------------------------------------------------------
10551 <class name=
"Dialog" oldname=
"wxDialog" module=
"windows">
10552 <baseclass name=
"wxTopLevelWindow"/>
10553 <constructor name=
"Dialog" overloaded=
"no">
10554 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
10555 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
10556 String name=DialogNameStr) -
> Dialog
</autodoc>
10558 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10559 <param name=
"id" type=
"q(const).int" default=
""/>
10560 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10561 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10562 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10563 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
10564 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyDialogNameStr"/>
10567 <constructor name=
"PreDialog" overloaded=
"no">
10568 <autodoc>PreDialog() -
> Dialog
</autodoc>
10570 <method name=
"Create" overloaded=
"no">
10571 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
10572 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
10573 String name=DialogNameStr) -
> bool
</autodoc>
10575 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10576 <param name=
"id" type=
"q(const).int" default=
""/>
10577 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10578 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10579 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10580 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
10581 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyDialogNameStr"/>
10584 <method name=
"SetReturnCode" overloaded=
"no">
10585 <autodoc>SetReturnCode(int returnCode)
</autodoc>
10587 <param name=
"returnCode" type=
"int" default=
""/>
10590 <method name=
"GetReturnCode" overloaded=
"no">
10591 <autodoc>GetReturnCode() -
> int
</autodoc>
10593 <method name=
"CreateTextSizer" overloaded=
"no">
10594 <autodoc>CreateTextSizer(String message) -
> Sizer
</autodoc>
10596 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
10599 <method name=
"CreateButtonSizer" overloaded=
"no">
10600 <autodoc>CreateButtonSizer(long flags) -
> Sizer
</autodoc>
10602 <param name=
"flags" type=
"long" default=
""/>
10605 <method name=
"IsModal" overloaded=
"no">
10606 <autodoc>IsModal() -
> bool
</autodoc>
10608 <method name=
"ShowModal" overloaded=
"no">
10609 <autodoc>ShowModal() -
> int
</autodoc>
10611 <method name=
"EndModal" overloaded=
"no">
10612 <autodoc>EndModal(int retCode)
</autodoc>
10614 <param name=
"retCode" type=
"int" default=
""/>
10617 <method name=
"IsModalShowing" overloaded=
"no">
10618 <autodoc>IsModalShowing() -
> bool
</autodoc>
10622 #---------------------------------------------------------------------------
10624 <class name=
"MiniFrame" oldname=
"wxMiniFrame" module=
"windows">
10625 <baseclass name=
"wxFrame"/>
10626 <constructor name=
"MiniFrame" overloaded=
"no">
10627 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
10628 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
10629 String name=FrameNameStr) -
> MiniFrame
</autodoc>
10631 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10632 <param name=
"id" type=
"q(const).int" default=
""/>
10633 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10634 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10635 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10636 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
10637 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
10640 <constructor name=
"PreMiniFrame" overloaded=
"no">
10641 <autodoc>PreMiniFrame() -
> MiniFrame
</autodoc>
10643 <method name=
"Create" overloaded=
"no">
10644 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
10645 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
10646 String name=FrameNameStr) -
> bool
</autodoc>
10648 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10649 <param name=
"id" type=
"q(const).int" default=
""/>
10650 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
10651 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10652 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10653 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
10654 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
10659 #---------------------------------------------------------------------------
10661 <class name=
"SplashScreenWindow" oldname=
"wxSplashScreenWindow" module=
"windows">
10662 <baseclass name=
"wxWindow"/>
10663 <constructor name=
"SplashScreenWindow" overloaded=
"no">
10664 <autodoc>__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
10665 Size size=DefaultSize, long style=NO_BORDER) -
> SplashScreenWindow
</autodoc>
10667 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
10668 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10669 <param name=
"id" type=
"int" default=
""/>
10670 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10671 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10672 <param name=
"style" type=
"long" default=
"wxNO_BORDER"/>
10675 <method name=
"SetBitmap" overloaded=
"no">
10676 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
10678 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
10681 <method name=
"GetBitmap" overloaded=
"no">
10682 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
10685 <class name=
"SplashScreen" oldname=
"wxSplashScreen" module=
"windows">
10686 <baseclass name=
"wxFrame"/>
10687 <constructor name=
"SplashScreen" overloaded=
"no">
10688 <autodoc>__init__(Bitmap bitmap, long splashStyle, int milliseconds,
10689 Window parent, int id, Point pos=DefaultPosition,
10690 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -
> SplashScreen
</autodoc>
10692 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
10693 <param name=
"splashStyle" type=
"long" default=
""/>
10694 <param name=
"milliseconds" type=
"int" default=
""/>
10695 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10696 <param name=
"id" type=
"int" default=
""/>
10697 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10698 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10699 <param name=
"style" type=
"long" default=
"wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP"/>
10702 <method name=
"GetSplashStyle" overloaded=
"no">
10703 <autodoc>GetSplashStyle() -
> long
</autodoc>
10705 <method name=
"GetSplashWindow" overloaded=
"no">
10706 <autodoc>GetSplashWindow() -
> SplashScreenWindow
</autodoc>
10708 <method name=
"GetTimeout" overloaded=
"no">
10709 <autodoc>GetTimeout() -
> int
</autodoc>
10713 #---------------------------------------------------------------------------
10715 <class name=
"StatusBar" oldname=
"wxStatusBar" module=
"windows">
10716 <baseclass name=
"wxWindow"/>
10717 <constructor name=
"StatusBar" overloaded=
"no">
10718 <autodoc>__init__(Window parent, int id=-
1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> StatusBar
</autodoc>
10720 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10721 <param name=
"id" type=
"int" default=
"-1"/>
10722 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
10723 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStatusLineNameStr"/>
10726 <constructor name=
"PreStatusBar" overloaded=
"no">
10727 <autodoc>PreStatusBar() -
> StatusBar
</autodoc>
10729 <method name=
"Create" overloaded=
"no">
10730 <autodoc>Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> bool
</autodoc>
10732 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10733 <param name=
"id" type=
"int" default=
""/>
10734 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
10735 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStatusLineNameStr"/>
10738 <method name=
"SetFieldsCount" overloaded=
"no">
10739 <autodoc>SetFieldsCount(int number=
1)
</autodoc>
10741 <param name=
"number" type=
"int" default=
"1"/>
10744 <method name=
"GetFieldsCount" overloaded=
"no">
10745 <autodoc>GetFieldsCount() -
> int
</autodoc>
10747 <method name=
"SetStatusText" overloaded=
"no">
10748 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
10750 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
10751 <param name=
"number" type=
"int" default=
"0"/>
10754 <method name=
"GetStatusText" overloaded=
"no">
10755 <autodoc>GetStatusText(int number=
0) -
> String
</autodoc>
10757 <param name=
"number" type=
"int" default=
"0"/>
10760 <method name=
"PushStatusText" overloaded=
"no">
10761 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
10763 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
10764 <param name=
"number" type=
"int" default=
"0"/>
10767 <method name=
"PopStatusText" overloaded=
"no">
10768 <autodoc>PopStatusText(int number=
0)
</autodoc>
10770 <param name=
"number" type=
"int" default=
"0"/>
10773 <method name=
"SetStatusWidths" overloaded=
"no">
10774 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
10776 <param name=
"widths" type=
"int" default=
""/>
10777 <param name=
"widths_field" type=
"p.q(const).int" default=
""/>
10780 <method name=
"GetFieldRect" overloaded=
"no">
10781 <autodoc>GetFieldRect(int i) -
> Rect
</autodoc>
10783 <param name=
"i" type=
"int" default=
""/>
10786 <method name=
"SetMinHeight" overloaded=
"no">
10787 <autodoc>SetMinHeight(int height)
</autodoc>
10789 <param name=
"height" type=
"int" default=
""/>
10792 <method name=
"GetBorderX" overloaded=
"no">
10793 <autodoc>GetBorderX() -
> int
</autodoc>
10795 <method name=
"GetBorderY" overloaded=
"no">
10796 <autodoc>GetBorderY() -
> int
</autodoc>
10800 #---------------------------------------------------------------------------
10802 <class name=
"SplitterWindow" oldname=
"wxSplitterWindow" module=
"windows">
10803 <baseclass name=
"wxWindow"/>
10804 <constructor name=
"SplitterWindow" overloaded=
"no">
10805 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10806 long style=SP_3D, String name=SplitterNameStr) -
> SplitterWindow
</autodoc>
10808 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10809 <param name=
"id" type=
"int" default=
""/>
10810 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10811 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10812 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
10813 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySplitterNameStr"/>
10816 <constructor name=
"PreSplitterWindow" overloaded=
"no">
10817 <autodoc>PreSplitterWindow() -
> SplitterWindow
</autodoc>
10819 <method name=
"Create" overloaded=
"no">
10820 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10821 long style=SP_3D, String name=SplitterNameStr) -
> bool
</autodoc>
10823 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10824 <param name=
"id" type=
"int" default=
""/>
10825 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10826 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10827 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
10828 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySplitterNameStr"/>
10831 <method name=
"GetWindow1" overloaded=
"no">
10832 <autodoc>GetWindow1() -
> Window
</autodoc>
10834 <method name=
"GetWindow2" overloaded=
"no">
10835 <autodoc>GetWindow2() -
> Window
</autodoc>
10837 <method name=
"SetSplitMode" overloaded=
"no">
10838 <autodoc>SetSplitMode(int mode)
</autodoc>
10840 <param name=
"mode" type=
"int" default=
""/>
10843 <method name=
"GetSplitMode" overloaded=
"no">
10844 <autodoc>GetSplitMode() -
> int
</autodoc>
10846 <method name=
"Initialize" overloaded=
"no">
10847 <autodoc>Initialize(Window window)
</autodoc>
10849 <param name=
"window" type=
"p.wxWindow" default=
""/>
10852 <method name=
"SplitVertically" overloaded=
"no">
10853 <autodoc>SplitVertically(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
10855 <param name=
"window1" type=
"p.wxWindow" default=
""/>
10856 <param name=
"window2" type=
"p.wxWindow" default=
""/>
10857 <param name=
"sashPosition" type=
"int" default=
"0"/>
10860 <method name=
"SplitHorizontally" overloaded=
"no">
10861 <autodoc>SplitHorizontally(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
10863 <param name=
"window1" type=
"p.wxWindow" default=
""/>
10864 <param name=
"window2" type=
"p.wxWindow" default=
""/>
10865 <param name=
"sashPosition" type=
"int" default=
"0"/>
10868 <method name=
"Unsplit" overloaded=
"no">
10869 <autodoc>Unsplit(Window toRemove=None) -
> bool
</autodoc>
10871 <param name=
"toRemove" type=
"p.wxWindow" default=
"NULL"/>
10874 <method name=
"ReplaceWindow" overloaded=
"no">
10875 <autodoc>ReplaceWindow(Window winOld, Window winNew) -
> bool
</autodoc>
10877 <param name=
"winOld" type=
"p.wxWindow" default=
""/>
10878 <param name=
"winNew" type=
"p.wxWindow" default=
""/>
10881 <method name=
"IsSplit" overloaded=
"no">
10882 <autodoc>IsSplit() -
> bool
</autodoc>
10884 <method name=
"SetSashSize" overloaded=
"no">
10885 <autodoc>SetSashSize(int width)
</autodoc>
10887 <param name=
"width" type=
"int" default=
""/>
10890 <method name=
"SetBorderSize" overloaded=
"no">
10891 <autodoc>SetBorderSize(int width)
</autodoc>
10893 <param name=
"width" type=
"int" default=
""/>
10896 <method name=
"GetSashSize" overloaded=
"no">
10897 <autodoc>GetSashSize() -
> int
</autodoc>
10899 <method name=
"GetBorderSize" overloaded=
"no">
10900 <autodoc>GetBorderSize() -
> int
</autodoc>
10902 <method name=
"SetSashPosition" overloaded=
"no">
10903 <autodoc>SetSashPosition(int position, bool redraw=True)
</autodoc>
10905 <param name=
"position" type=
"int" default=
""/>
10906 <param name=
"redraw" type=
"bool" default=
"True"/>
10909 <method name=
"GetSashPosition" overloaded=
"no">
10910 <autodoc>GetSashPosition() -
> int
</autodoc>
10912 <method name=
"SetMinimumPaneSize" overloaded=
"no">
10913 <autodoc>SetMinimumPaneSize(int min)
</autodoc>
10915 <param name=
"min" type=
"int" default=
""/>
10918 <method name=
"GetMinimumPaneSize" overloaded=
"no">
10919 <autodoc>GetMinimumPaneSize() -
> int
</autodoc>
10921 <method name=
"SashHitTest" overloaded=
"no">
10922 <autodoc>SashHitTest(int x, int y, int tolerance=
5) -
> bool
</autodoc>
10924 <param name=
"x" type=
"int" default=
""/>
10925 <param name=
"y" type=
"int" default=
""/>
10926 <param name=
"tolerance" type=
"int" default=
"5"/>
10929 <method name=
"SizeWindows" overloaded=
"no">
10930 <autodoc>SizeWindows()
</autodoc>
10932 <method name=
"SetNeedUpdating" overloaded=
"no">
10933 <autodoc>SetNeedUpdating(bool needUpdating)
</autodoc>
10935 <param name=
"needUpdating" type=
"bool" default=
""/>
10938 <method name=
"GetNeedUpdating" overloaded=
"no">
10939 <autodoc>GetNeedUpdating() -
> bool
</autodoc>
10942 <class name=
"SplitterEvent" oldname=
"wxSplitterEvent" module=
"windows">
10943 <baseclass name=
"wxNotifyEvent"/>
10944 <constructor name=
"SplitterEvent" overloaded=
"no">
10945 <autodoc>__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -
> SplitterEvent
</autodoc>
10947 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
10948 <param name=
"splitter" type=
"p.wxSplitterWindow" default=
"(wxSplitterWindow *) NULL"/>
10951 <method name=
"SetSashPosition" overloaded=
"no">
10952 <autodoc>SetSashPosition(int pos)
</autodoc>
10954 <param name=
"pos" type=
"int" default=
""/>
10957 <method name=
"GetSashPosition" overloaded=
"no">
10958 <autodoc>GetSashPosition() -
> int
</autodoc>
10960 <method name=
"GetWindowBeingRemoved" overloaded=
"no">
10961 <autodoc>GetWindowBeingRemoved() -
> Window
</autodoc>
10963 <method name=
"GetX" overloaded=
"no">
10964 <autodoc>GetX() -
> int
</autodoc>
10966 <method name=
"GetY" overloaded=
"no">
10967 <autodoc>GetY() -
> int
</autodoc>
10971 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED,
1 )
10972 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING,
1 )
10973 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED,
1 )
10974 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT,
1 )
10977 #---------------------------------------------------------------------------
10979 <class name=
"SashWindow" oldname=
"wxSashWindow" module=
"windows">
10980 <baseclass name=
"wxWindow"/>
10981 <constructor name=
"SashWindow" overloaded=
"no">
10982 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10983 long style=wxCLIP_CHILDREN|wxSW_3D,
10984 String name=SashNameStr) -
> SashWindow
</autodoc>
10986 <param name=
"parent" type=
"p.wxWindow" default=
""/>
10987 <param name=
"id" type=
"int" default=
""/>
10988 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
10989 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
10990 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
10991 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySashNameStr"/>
10994 <constructor name=
"PreSashWindow" overloaded=
"no">
10995 <autodoc>PreSashWindow() -
> SashWindow
</autodoc>
10997 <method name=
"Create" overloaded=
"no">
10998 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10999 long style=wxCLIP_CHILDREN|wxSW_3D,
11000 String name=SashNameStr) -
> bool
</autodoc>
11002 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11003 <param name=
"id" type=
"int" default=
""/>
11004 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11005 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11006 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11007 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySashNameStr"/>
11010 <method name=
"SetSashVisible" overloaded=
"no">
11011 <autodoc>SetSashVisible(int edge, bool sash)
</autodoc>
11013 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11014 <param name=
"sash" type=
"bool" default=
""/>
11017 <method name=
"GetSashVisible" overloaded=
"no">
11018 <autodoc>GetSashVisible(int edge) -
> bool
</autodoc>
11020 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11023 <method name=
"SetSashBorder" overloaded=
"no">
11024 <autodoc>SetSashBorder(int edge, bool border)
</autodoc>
11026 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11027 <param name=
"border" type=
"bool" default=
""/>
11030 <method name=
"HasBorder" overloaded=
"no">
11031 <autodoc>HasBorder(int edge) -
> bool
</autodoc>
11033 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11036 <method name=
"GetEdgeMargin" overloaded=
"no">
11037 <autodoc>GetEdgeMargin(int edge) -
> int
</autodoc>
11039 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11042 <method name=
"SetDefaultBorderSize" overloaded=
"no">
11043 <autodoc>SetDefaultBorderSize(int width)
</autodoc>
11045 <param name=
"width" type=
"int" default=
""/>
11048 <method name=
"GetDefaultBorderSize" overloaded=
"no">
11049 <autodoc>GetDefaultBorderSize() -
> int
</autodoc>
11051 <method name=
"SetExtraBorderSize" overloaded=
"no">
11052 <autodoc>SetExtraBorderSize(int width)
</autodoc>
11054 <param name=
"width" type=
"int" default=
""/>
11057 <method name=
"GetExtraBorderSize" overloaded=
"no">
11058 <autodoc>GetExtraBorderSize() -
> int
</autodoc>
11060 <method name=
"SetMinimumSizeX" overloaded=
"no">
11061 <autodoc>SetMinimumSizeX(int min)
</autodoc>
11063 <param name=
"min" type=
"int" default=
""/>
11066 <method name=
"SetMinimumSizeY" overloaded=
"no">
11067 <autodoc>SetMinimumSizeY(int min)
</autodoc>
11069 <param name=
"min" type=
"int" default=
""/>
11072 <method name=
"GetMinimumSizeX" overloaded=
"no">
11073 <autodoc>GetMinimumSizeX() -
> int
</autodoc>
11075 <method name=
"GetMinimumSizeY" overloaded=
"no">
11076 <autodoc>GetMinimumSizeY() -
> int
</autodoc>
11078 <method name=
"SetMaximumSizeX" overloaded=
"no">
11079 <autodoc>SetMaximumSizeX(int max)
</autodoc>
11081 <param name=
"max" type=
"int" default=
""/>
11084 <method name=
"SetMaximumSizeY" overloaded=
"no">
11085 <autodoc>SetMaximumSizeY(int max)
</autodoc>
11087 <param name=
"max" type=
"int" default=
""/>
11090 <method name=
"GetMaximumSizeX" overloaded=
"no">
11091 <autodoc>GetMaximumSizeX() -
> int
</autodoc>
11093 <method name=
"GetMaximumSizeY" overloaded=
"no">
11094 <autodoc>GetMaximumSizeY() -
> int
</autodoc>
11096 <method name=
"SashHitTest" overloaded=
"no">
11097 <autodoc>SashHitTest(int x, int y, int tolerance=
2) -
> int
</autodoc>
11099 <param name=
"x" type=
"int" default=
""/>
11100 <param name=
"y" type=
"int" default=
""/>
11101 <param name=
"tolerance" type=
"int" default=
"2"/>
11104 <method name=
"SizeWindows" overloaded=
"no">
11105 <autodoc>SizeWindows()
</autodoc>
11108 <class name=
"SashEvent" oldname=
"wxSashEvent" module=
"windows">
11109 <baseclass name=
"wxCommandEvent"/>
11110 <constructor name=
"SashEvent" overloaded=
"no">
11111 <autodoc>__init__(int id=
0, int edge=SASH_NONE) -
> SashEvent
</autodoc>
11113 <param name=
"id" type=
"int" default=
"0"/>
11114 <param name=
"edge" type=
"wxSashEdgePosition" default=
"wxSASH_NONE"/>
11117 <method name=
"SetEdge" overloaded=
"no">
11118 <autodoc>SetEdge(int edge)
</autodoc>
11120 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11123 <method name=
"GetEdge" overloaded=
"no">
11124 <autodoc>GetEdge() -
> int
</autodoc>
11126 <method name=
"SetDragRect" overloaded=
"no">
11127 <autodoc>SetDragRect(Rect rect)
</autodoc>
11129 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
11132 <method name=
"GetDragRect" overloaded=
"no">
11133 <autodoc>GetDragRect() -
> Rect
</autodoc>
11135 <method name=
"SetDragStatus" overloaded=
"no">
11136 <autodoc>SetDragStatus(int status)
</autodoc>
11138 <param name=
"status" type=
"wxSashDragStatus" default=
""/>
11141 <method name=
"GetDragStatus" overloaded=
"no">
11142 <autodoc>GetDragStatus() -
> int
</autodoc>
11146 EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
1 )
11147 EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
2 )
11150 #---------------------------------------------------------------------------
11152 <class name=
"QueryLayoutInfoEvent" oldname=
"wxQueryLayoutInfoEvent" module=
"windows">
11153 <baseclass name=
"wxEvent"/>
11154 <constructor name=
"QueryLayoutInfoEvent" overloaded=
"no">
11155 <autodoc>__init__(int id=
0) -
> QueryLayoutInfoEvent
</autodoc>
11157 <param name=
"id" type=
"int" default=
"0"/>
11160 <method name=
"SetRequestedLength" overloaded=
"no">
11161 <autodoc>SetRequestedLength(int length)
</autodoc>
11163 <param name=
"length" type=
"int" default=
""/>
11166 <method name=
"GetRequestedLength" overloaded=
"no">
11167 <autodoc>GetRequestedLength() -
> int
</autodoc>
11169 <method name=
"SetFlags" overloaded=
"no">
11170 <autodoc>SetFlags(int flags)
</autodoc>
11172 <param name=
"flags" type=
"int" default=
""/>
11175 <method name=
"GetFlags" overloaded=
"no">
11176 <autodoc>GetFlags() -
> int
</autodoc>
11178 <method name=
"SetSize" overloaded=
"no">
11179 <autodoc>SetSize(Size size)
</autodoc>
11181 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
11184 <method name=
"GetSize" overloaded=
"no">
11185 <autodoc>GetSize() -
> Size
</autodoc>
11187 <method name=
"SetOrientation" overloaded=
"no">
11188 <autodoc>SetOrientation(int orient)
</autodoc>
11190 <param name=
"orient" type=
"wxLayoutOrientation" default=
""/>
11193 <method name=
"GetOrientation" overloaded=
"no">
11194 <autodoc>GetOrientation() -
> int
</autodoc>
11196 <method name=
"SetAlignment" overloaded=
"no">
11197 <autodoc>SetAlignment(int align)
</autodoc>
11199 <param name=
"align" type=
"wxLayoutAlignment" default=
""/>
11202 <method name=
"GetAlignment" overloaded=
"no">
11203 <autodoc>GetAlignment() -
> int
</autodoc>
11206 <class name=
"CalculateLayoutEvent" oldname=
"wxCalculateLayoutEvent" module=
"windows">
11207 <baseclass name=
"wxEvent"/>
11208 <constructor name=
"CalculateLayoutEvent" overloaded=
"no">
11209 <autodoc>__init__(int id=
0) -
> CalculateLayoutEvent
</autodoc>
11211 <param name=
"id" type=
"int" default=
"0"/>
11214 <method name=
"SetFlags" overloaded=
"no">
11215 <autodoc>SetFlags(int flags)
</autodoc>
11217 <param name=
"flags" type=
"int" default=
""/>
11220 <method name=
"GetFlags" overloaded=
"no">
11221 <autodoc>GetFlags() -
> int
</autodoc>
11223 <method name=
"SetRect" overloaded=
"no">
11224 <autodoc>SetRect(Rect rect)
</autodoc>
11226 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
11229 <method name=
"GetRect" overloaded=
"no">
11230 <autodoc>GetRect() -
> Rect
</autodoc>
11234 EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
11235 EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
11237 <class name=
"SashLayoutWindow" oldname=
"wxSashLayoutWindow" module=
"windows">
11238 <baseclass name=
"wxSashWindow"/>
11239 <constructor name=
"SashLayoutWindow" overloaded=
"no">
11240 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11241 long style=wxCLIP_CHILDREN|wxSW_3D,
11242 String name=SashLayoutNameStr) -
> SashLayoutWindow
</autodoc>
11244 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11245 <param name=
"id" type=
"int" default=
""/>
11246 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11247 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11248 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11249 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySashLayoutNameStr"/>
11252 <constructor name=
"PreSashLayoutWindow" overloaded=
"no">
11253 <autodoc>PreSashLayoutWindow() -
> SashLayoutWindow
</autodoc>
11255 <method name=
"Create" overloaded=
"no">
11256 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11257 long style=wxCLIP_CHILDREN|wxSW_3D,
11258 String name=SashLayoutNameStr) -
> bool
</autodoc>
11260 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11261 <param name=
"id" type=
"int" default=
""/>
11262 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11263 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11264 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11265 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySashLayoutNameStr"/>
11268 <method name=
"GetAlignment" overloaded=
"no">
11269 <autodoc>GetAlignment() -
> int
</autodoc>
11271 <method name=
"GetOrientation" overloaded=
"no">
11272 <autodoc>GetOrientation() -
> int
</autodoc>
11274 <method name=
"SetAlignment" overloaded=
"no">
11275 <autodoc>SetAlignment(int alignment)
</autodoc>
11277 <param name=
"alignment" type=
"wxLayoutAlignment" default=
""/>
11280 <method name=
"SetDefaultSize" overloaded=
"no">
11281 <autodoc>SetDefaultSize(Size size)
</autodoc>
11283 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
11286 <method name=
"SetOrientation" overloaded=
"no">
11287 <autodoc>SetOrientation(int orientation)
</autodoc>
11289 <param name=
"orientation" type=
"wxLayoutOrientation" default=
""/>
11293 <class name=
"LayoutAlgorithm" oldname=
"wxLayoutAlgorithm" module=
"windows">
11294 <baseclass name=
"wxObject"/>
11295 <constructor name=
"LayoutAlgorithm" overloaded=
"no">
11296 <autodoc>__init__() -
> LayoutAlgorithm
</autodoc>
11298 <destructor name=
"~wxLayoutAlgorithm">
11299 <autodoc>__del__()
</autodoc>
11301 <method name=
"LayoutMDIFrame" overloaded=
"no">
11302 <autodoc>LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -
> bool
</autodoc>
11304 <param name=
"frame" type=
"p.wxMDIParentFrame" default=
""/>
11305 <param name=
"rect" type=
"p.wxRect" default=
"NULL"/>
11308 <method name=
"LayoutFrame" overloaded=
"no">
11309 <autodoc>LayoutFrame(Frame frame, Window mainWindow=None) -
> bool
</autodoc>
11311 <param name=
"frame" type=
"p.wxFrame" default=
""/>
11312 <param name=
"mainWindow" type=
"p.wxWindow" default=
"NULL"/>
11315 <method name=
"LayoutWindow" overloaded=
"no">
11316 <autodoc>LayoutWindow(Window parent, Window mainWindow=None) -
> bool
</autodoc>
11318 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11319 <param name=
"mainWindow" type=
"p.wxWindow" default=
"NULL"/>
11324 #---------------------------------------------------------------------------
11326 <class name=
"PopupWindow" oldname=
"wxPopupWindow" module=
"windows">
11327 <baseclass name=
"wxWindow"/>
11328 <constructor name=
"PopupWindow" overloaded=
"no">
11329 <autodoc>__init__(Window parent, int flags=BORDER_NONE) -
> PopupWindow
</autodoc>
11331 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11332 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
11335 <constructor name=
"PrePopupWindow" overloaded=
"no">
11336 <autodoc>PrePopupWindow() -
> PopupWindow
</autodoc>
11338 <method name=
"Create" overloaded=
"no">
11339 <autodoc>Create(Window parent, int flags=BORDER_NONE) -
> bool
</autodoc>
11341 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11342 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
11345 <method name=
"Position" overloaded=
"no">
11346 <autodoc>Position(Point ptOrigin, Size size)
</autodoc>
11348 <param name=
"ptOrigin" type=
"r.q(const).wxPoint" default=
""/>
11349 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
11354 #---------------------------------------------------------------------------
11356 <class name=
"PopupTransientWindow" oldname=
"wxPyPopupTransientWindow" module=
"windows">
11357 <baseclass name=
"wxPopupWindow"/>
11358 <constructor name=
"wxPyPopupTransientWindow" overloaded=
"no">
11359 <autodoc>__init__(Window parent, int style=BORDER_NONE) -
> PopupTransientWindow
</autodoc>
11361 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11362 <param name=
"style" type=
"int" default=
"wxBORDER_NONE"/>
11365 <constructor name=
"PrePopupTransientWindow" overloaded=
"no">
11366 <autodoc>PrePopupTransientWindow() -
> PopupTransientWindow
</autodoc>
11368 <method name=
"_setCallbackInfo" overloaded=
"no">
11369 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
11371 <param name=
"self" type=
"p.PyObject" default=
""/>
11372 <param name=
"_class" type=
"p.PyObject" default=
""/>
11375 <method name=
"Popup" overloaded=
"no">
11376 <autodoc>Popup(Window focus=None)
</autodoc>
11378 <param name=
"focus" type=
"p.wxWindow" default=
"NULL"/>
11381 <method name=
"Dismiss" overloaded=
"no">
11382 <autodoc>Dismiss()
</autodoc>
11386 #---------------------------------------------------------------------------
11388 <class name=
"TipWindow" oldname=
"wxTipWindow" module=
"windows">
11389 <baseclass name=
"wxPyPopupTransientWindow"/>
11390 <constructor name=
"TipWindow" overloaded=
"no">
11391 <autodoc>__init__(Window parent, String text, int maxLength=
100, Rect rectBound=None) -
> TipWindow
</autodoc>
11393 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11394 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
11395 <param name=
"maxLength" type=
"int" default=
"100"/>
11396 <param name=
"rectBound" type=
"p.wxRect" default=
"NULL"/>
11399 <method name=
"SetBoundingRect" overloaded=
"no">
11400 <autodoc>SetBoundingRect(Rect rectBound)
</autodoc>
11402 <param name=
"rectBound" type=
"r.q(const).wxRect" default=
""/>
11405 <method name=
"Close" overloaded=
"no">
11406 <autodoc>Close()
</autodoc>
11410 #---------------------------------------------------------------------------
11412 <class name=
"VScrolledWindow" oldname=
"wxPyVScrolledWindow" module=
"windows">
11413 <baseclass name=
"wxPanel"/>
11414 <constructor name=
"wxPyVScrolledWindow" overloaded=
"no">
11415 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11416 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> VScrolledWindow
</autodoc>
11418 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11419 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11420 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11421 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11422 <param name=
"style" type=
"long" default=
"0"/>
11423 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
11426 <constructor name=
"PreVScrolledWindow" overloaded=
"no">
11427 <autodoc>PreVScrolledWindow() -
> VScrolledWindow
</autodoc>
11429 <method name=
"_setCallbackInfo" overloaded=
"no">
11430 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
11432 <param name=
"self" type=
"p.PyObject" default=
""/>
11433 <param name=
"_class" type=
"p.PyObject" default=
""/>
11436 <method name=
"Create" overloaded=
"no">
11437 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11438 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
11440 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11441 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11442 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11443 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11444 <param name=
"style" type=
"long" default=
"0"/>
11445 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
11448 <method name=
"SetLineCount" overloaded=
"no">
11449 <autodoc>SetLineCount(size_t count)
</autodoc>
11451 <param name=
"count" type=
"size_t" default=
""/>
11454 <method name=
"ScrollToLine" overloaded=
"no">
11455 <autodoc>ScrollToLine(size_t line) -
> bool
</autodoc>
11457 <param name=
"line" type=
"size_t" default=
""/>
11460 <method name=
"ScrollLines" overloaded=
"no">
11461 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
11463 <param name=
"lines" type=
"int" default=
""/>
11466 <method name=
"ScrollPages" overloaded=
"no">
11467 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
11469 <param name=
"pages" type=
"int" default=
""/>
11472 <method name=
"RefreshLine" overloaded=
"no">
11473 <autodoc>RefreshLine(size_t line)
</autodoc>
11475 <param name=
"line" type=
"size_t" default=
""/>
11478 <method name=
"RefreshLines" overloaded=
"no">
11479 <autodoc>RefreshLines(size_t from, size_t to)
</autodoc>
11481 <param name=
"from" type=
"size_t" default=
""/>
11482 <param name=
"to" type=
"size_t" default=
""/>
11485 <method name=
"HitTestXT" overloaded=
"no">
11486 <autodoc>HitTestXT(int x, int y) -
> int
</autodoc>
11488 <param name=
"x" type=
"int" default=
""/>
11489 <param name=
"y" type=
"int" default=
""/>
11492 <method name=
"HitTest" overloaded=
"no">
11493 <autodoc>HitTest(Point pt) -
> int
</autodoc>
11495 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
11498 <method name=
"RefreshAll" overloaded=
"no">
11499 <autodoc>RefreshAll()
</autodoc>
11501 <method name=
"GetLineCount" overloaded=
"no">
11502 <autodoc>GetLineCount() -
> size_t
</autodoc>
11504 <method name=
"GetFirstVisibleLine" overloaded=
"no">
11505 <autodoc>GetFirstVisibleLine() -
> size_t
</autodoc>
11507 <method name=
"GetLastVisibleLine" overloaded=
"no">
11508 <autodoc>GetLastVisibleLine() -
> size_t
</autodoc>
11510 <method name=
"IsVisible" overloaded=
"no">
11511 <autodoc>IsVisible(size_t line) -
> bool
</autodoc>
11513 <param name=
"line" type=
"size_t" default=
""/>
11517 <class name=
"VListBox" oldname=
"wxPyVListBox" module=
"windows">
11518 <baseclass name=
"wxPyVScrolledWindow"/>
11519 <constructor name=
"wxPyVListBox" overloaded=
"no">
11520 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11521 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> VListBox
</autodoc>
11523 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11524 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11525 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11526 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11527 <param name=
"style" type=
"long" default=
"0"/>
11528 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyVListBoxNameStr"/>
11531 <constructor name=
"PreVListBox" overloaded=
"no">
11532 <autodoc>PreVListBox() -
> VListBox
</autodoc>
11534 <method name=
"_setCallbackInfo" overloaded=
"no">
11535 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
11537 <param name=
"self" type=
"p.PyObject" default=
""/>
11538 <param name=
"_class" type=
"p.PyObject" default=
""/>
11541 <method name=
"Create" overloaded=
"no">
11542 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11543 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
11545 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11546 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11547 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11548 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11549 <param name=
"style" type=
"long" default=
"0"/>
11550 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyVListBoxNameStr"/>
11553 <method name=
"GetItemCount" overloaded=
"no">
11554 <autodoc>GetItemCount() -
> size_t
</autodoc>
11556 <method name=
"HasMultipleSelection" overloaded=
"no">
11557 <autodoc>HasMultipleSelection() -
> bool
</autodoc>
11559 <method name=
"GetSelection" overloaded=
"no">
11560 <autodoc>GetSelection() -
> int
</autodoc>
11562 <method name=
"IsCurrent" overloaded=
"no">
11563 <autodoc>IsCurrent(size_t item) -
> bool
</autodoc>
11565 <param name=
"item" type=
"size_t" default=
""/>
11568 <method name=
"IsSelected" overloaded=
"no">
11569 <autodoc>IsSelected(size_t item) -
> bool
</autodoc>
11571 <param name=
"item" type=
"size_t" default=
""/>
11574 <method name=
"GetSelectedCount" overloaded=
"no">
11575 <autodoc>GetSelectedCount() -
> size_t
</autodoc>
11577 <method name=
"GetFirstSelected" overloaded=
"no">
11578 <autodoc>GetFirstSelected(unsigned long cookie) -
> int
</autodoc>
11580 <param name=
"cookie" type=
"r.unsigned long" default=
""/>
11583 <method name=
"GetNextSelected" overloaded=
"no">
11584 <autodoc>GetNextSelected(unsigned long cookie) -
> int
</autodoc>
11586 <param name=
"cookie" type=
"r.unsigned long" default=
""/>
11589 <method name=
"GetMargins" overloaded=
"no">
11590 <autodoc>GetMargins() -
> Point
</autodoc>
11592 <method name=
"GetSelectionBackground" overloaded=
"no">
11593 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
11595 <method name=
"SetItemCount" overloaded=
"no">
11596 <autodoc>SetItemCount(size_t count)
</autodoc>
11598 <param name=
"count" type=
"size_t" default=
""/>
11601 <method name=
"Clear" overloaded=
"no">
11602 <autodoc>Clear()
</autodoc>
11604 <method name=
"SetSelection" overloaded=
"no">
11605 <autodoc>SetSelection(int selection)
</autodoc>
11607 <param name=
"selection" type=
"int" default=
""/>
11610 <method name=
"Select" overloaded=
"no">
11611 <autodoc>Select(size_t item, bool select=True) -
> bool
</autodoc>
11613 <param name=
"item" type=
"size_t" default=
""/>
11614 <param name=
"select" type=
"bool" default=
"True"/>
11617 <method name=
"SelectRange" overloaded=
"no">
11618 <autodoc>SelectRange(size_t from, size_t to) -
> bool
</autodoc>
11620 <param name=
"from" type=
"size_t" default=
""/>
11621 <param name=
"to" type=
"size_t" default=
""/>
11624 <method name=
"Toggle" overloaded=
"no">
11625 <autodoc>Toggle(size_t item)
</autodoc>
11627 <param name=
"item" type=
"size_t" default=
""/>
11630 <method name=
"SelectAll" overloaded=
"no">
11631 <autodoc>SelectAll() -
> bool
</autodoc>
11633 <method name=
"DeselectAll" overloaded=
"no">
11634 <autodoc>DeselectAll() -
> bool
</autodoc>
11636 <method name=
"SetMargins" overloaded=
"no">
11637 <autodoc>SetMargins(Point pt)
</autodoc>
11639 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
11642 <method name=
"SetMarginsXY" overloaded=
"no">
11643 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
11645 <param name=
"x" type=
"int" default=
""/>
11646 <param name=
"y" type=
"int" default=
""/>
11649 <method name=
"SetSelectionBackground" overloaded=
"no">
11650 <autodoc>SetSelectionBackground(Colour col)
</autodoc>
11652 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
11656 <class name=
"HtmlListBox" oldname=
"wxPyHtmlListBox" module=
"windows">
11657 <baseclass name=
"wxPyVListBox"/>
11658 <constructor name=
"wxPyHtmlListBox" overloaded=
"no">
11659 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11660 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> HtmlListBox
</autodoc>
11662 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11663 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11664 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11665 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11666 <param name=
"style" type=
"long" default=
"0"/>
11667 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyVListBoxNameStr"/>
11670 <constructor name=
"PreHtmlListBox" overloaded=
"no">
11671 <autodoc>PreHtmlListBox() -
> HtmlListBox
</autodoc>
11673 <method name=
"_setCallbackInfo" overloaded=
"no">
11674 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
11676 <param name=
"self" type=
"p.PyObject" default=
""/>
11677 <param name=
"_class" type=
"p.PyObject" default=
""/>
11680 <method name=
"Create" overloaded=
"no">
11681 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
11682 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
11684 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11685 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
11686 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11687 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11688 <param name=
"style" type=
"long" default=
"0"/>
11689 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyVListBoxNameStr"/>
11692 <method name=
"RefreshAll" overloaded=
"no">
11693 <autodoc>RefreshAll()
</autodoc>
11695 <method name=
"SetItemCount" overloaded=
"no">
11696 <autodoc>SetItemCount(size_t count)
</autodoc>
11698 <param name=
"count" type=
"size_t" default=
""/>
11703 #---------------------------------------------------------------------------
11705 <class name=
"TaskBarIcon" oldname=
"wxTaskBarIcon" module=
"windows">
11706 <baseclass name=
"wxEvtHandler"/>
11707 <constructor name=
"TaskBarIcon" overloaded=
"no">
11708 <autodoc>__init__() -
> TaskBarIcon
</autodoc>
11710 <destructor name=
"~wxTaskBarIcon">
11711 <autodoc>__del__()
</autodoc>
11713 <method name=
"IsOk" overloaded=
"no">
11714 <autodoc>IsOk() -
> bool
</autodoc>
11716 <method name=
"IsIconInstalled" overloaded=
"no">
11717 <autodoc>IsIconInstalled() -
> bool
</autodoc>
11719 <method name=
"SetIcon" overloaded=
"no">
11720 <autodoc>SetIcon(Icon icon, String tooltip=EmptyString) -
> bool
</autodoc>
11722 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
11723 <param name=
"tooltip" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
11726 <method name=
"RemoveIcon" overloaded=
"no">
11727 <autodoc>RemoveIcon() -
> bool
</autodoc>
11729 <method name=
"PopupMenu" overloaded=
"no">
11730 <autodoc>PopupMenu(Menu menu) -
> bool
</autodoc>
11732 <param name=
"menu" type=
"p.wxMenu" default=
""/>
11736 <class name=
"TaskBarIconEvent" oldname=
"wxTaskBarIconEvent" module=
"windows">
11737 <baseclass name=
"wxEvent"/>
11738 <constructor name=
"TaskBarIconEvent" overloaded=
"no">
11739 <autodoc>__init__(wxEventType evtType, TaskBarIcon tbIcon) -
> TaskBarIconEvent
</autodoc>
11741 <param name=
"evtType" type=
"wxEventType" default=
""/>
11742 <param name=
"tbIcon" type=
"p.wxTaskBarIcon" default=
""/>
11747 EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
11748 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
11749 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
11750 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
11751 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
11752 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
11753 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
11756 #---------------------------------------------------------------------------
11758 <class name=
"ColourData" oldname=
"wxColourData" module=
"windows">
11759 <baseclass name=
"wxObject"/>
11760 <constructor name=
"ColourData" overloaded=
"no">
11761 <autodoc>__init__() -
> ColourData
</autodoc>
11763 <destructor name=
"~wxColourData">
11764 <autodoc>__del__()
</autodoc>
11766 <method name=
"GetChooseFull" overloaded=
"no">
11767 <autodoc>GetChooseFull() -
> bool
</autodoc>
11769 <method name=
"GetColour" overloaded=
"no">
11770 <autodoc>GetColour() -
> Colour
</autodoc>
11772 <method name=
"GetCustomColour" overloaded=
"no">
11773 <autodoc>GetCustomColour(int i) -
> Colour
</autodoc>
11775 <param name=
"i" type=
"int" default=
""/>
11778 <method name=
"SetChooseFull" overloaded=
"no">
11779 <autodoc>SetChooseFull(int flag)
</autodoc>
11781 <param name=
"flag" type=
"int" default=
""/>
11784 <method name=
"SetColour" overloaded=
"no">
11785 <autodoc>SetColour(Colour colour)
</autodoc>
11787 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
11790 <method name=
"SetCustomColour" overloaded=
"no">
11791 <autodoc>SetCustomColour(int i, Colour colour)
</autodoc>
11793 <param name=
"i" type=
"int" default=
""/>
11794 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
11798 <class name=
"ColourDialog" oldname=
"wxColourDialog" module=
"windows">
11799 <baseclass name=
"wxDialog"/>
11800 <constructor name=
"ColourDialog" overloaded=
"no">
11801 <autodoc>__init__(Window parent, ColourData data=None) -
> ColourDialog
</autodoc>
11803 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11804 <param name=
"data" type=
"p.wxColourData" default=
"NULL"/>
11807 <method name=
"GetColourData" overloaded=
"no">
11808 <autodoc>GetColourData() -
> ColourData
</autodoc>
11810 <method name=
"ShowModal" overloaded=
"no">
11811 <autodoc>ShowModal() -
> int
</autodoc>
11814 <class name=
"DirDialog" oldname=
"wxDirDialog" module=
"windows">
11815 <baseclass name=
"wxDialog"/>
11816 <constructor name=
"DirDialog" overloaded=
"no">
11817 <autodoc>__init__(Window parent, String message=DirSelectorPromptStr,
11818 String defaultPath=EmptyString, long style=
0,
11819 Point pos=DefaultPosition, Size size=DefaultSize,
11820 String name=DirDialogNameStr) -
> DirDialog
</autodoc>
11822 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11823 <param name=
"message" type=
"r.q(const).wxString" default=
"wxPyDirSelectorPromptStr"/>
11824 <param name=
"defaultPath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
11825 <param name=
"style" type=
"long" default=
"0"/>
11826 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11827 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
11828 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyDirDialogNameStr"/>
11831 <method name=
"GetPath" overloaded=
"no">
11832 <autodoc>GetPath() -
> String
</autodoc>
11834 <method name=
"GetMessage" overloaded=
"no">
11835 <autodoc>GetMessage() -
> String
</autodoc>
11837 <method name=
"GetStyle" overloaded=
"no">
11838 <autodoc>GetStyle() -
> long
</autodoc>
11840 <method name=
"SetMessage" overloaded=
"no">
11841 <autodoc>SetMessage(String message)
</autodoc>
11843 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
11846 <method name=
"SetPath" overloaded=
"no">
11847 <autodoc>SetPath(String path)
</autodoc>
11849 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
11852 <method name=
"ShowModal" overloaded=
"no">
11853 <autodoc>ShowModal() -
> int
</autodoc>
11856 <class name=
"FileDialog" oldname=
"wxFileDialog" module=
"windows">
11857 <baseclass name=
"wxDialog"/>
11858 <constructor name=
"FileDialog" overloaded=
"no">
11859 <autodoc>__init__(Window parent, String message=FileSelectorPromptStr,
11860 String defaultDir=EmptyString, String defaultFile=EmptyString,
11861 String wildcard=FileSelectorDefaultWildcardStr,
11862 long style=
0, Point pos=DefaultPosition) -
> FileDialog
</autodoc>
11864 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11865 <param name=
"message" type=
"r.q(const).wxString" default=
"wxPyFileSelectorPromptStr"/>
11866 <param name=
"defaultDir" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
11867 <param name=
"defaultFile" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
11868 <param name=
"wildcard" type=
"r.q(const).wxString" default=
"wxPyFileSelectorDefaultWildcardStr"/>
11869 <param name=
"style" type=
"long" default=
"0"/>
11870 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11873 <method name=
"SetMessage" overloaded=
"no">
11874 <autodoc>SetMessage(String message)
</autodoc>
11876 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
11879 <method name=
"SetPath" overloaded=
"no">
11880 <autodoc>SetPath(String path)
</autodoc>
11882 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
11885 <method name=
"SetDirectory" overloaded=
"no">
11886 <autodoc>SetDirectory(String dir)
</autodoc>
11888 <param name=
"dir" type=
"r.q(const).wxString" default=
""/>
11891 <method name=
"SetFilename" overloaded=
"no">
11892 <autodoc>SetFilename(String name)
</autodoc>
11894 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
11897 <method name=
"SetWildcard" overloaded=
"no">
11898 <autodoc>SetWildcard(String wildCard)
</autodoc>
11900 <param name=
"wildCard" type=
"r.q(const).wxString" default=
""/>
11903 <method name=
"SetStyle" overloaded=
"no">
11904 <autodoc>SetStyle(long style)
</autodoc>
11906 <param name=
"style" type=
"long" default=
""/>
11909 <method name=
"SetFilterIndex" overloaded=
"no">
11910 <autodoc>SetFilterIndex(int filterIndex)
</autodoc>
11912 <param name=
"filterIndex" type=
"int" default=
""/>
11915 <method name=
"GetMessage" overloaded=
"no">
11916 <autodoc>GetMessage() -
> String
</autodoc>
11918 <method name=
"GetPath" overloaded=
"no">
11919 <autodoc>GetPath() -
> String
</autodoc>
11921 <method name=
"GetDirectory" overloaded=
"no">
11922 <autodoc>GetDirectory() -
> String
</autodoc>
11924 <method name=
"GetFilename" overloaded=
"no">
11925 <autodoc>GetFilename() -
> String
</autodoc>
11927 <method name=
"GetWildcard" overloaded=
"no">
11928 <autodoc>GetWildcard() -
> String
</autodoc>
11930 <method name=
"GetStyle" overloaded=
"no">
11931 <autodoc>GetStyle() -
> long
</autodoc>
11933 <method name=
"GetFilterIndex" overloaded=
"no">
11934 <autodoc>GetFilterIndex() -
> int
</autodoc>
11936 <method name=
"GetFilenames" overloaded=
"no">
11937 <autodoc>GetFilenames() -
> PyObject
</autodoc>
11939 <method name=
"GetPaths" overloaded=
"no">
11940 <autodoc>GetPaths() -
> PyObject
</autodoc>
11943 <class name=
"MultiChoiceDialog" oldname=
"wxMultiChoiceDialog" module=
"windows">
11944 <baseclass name=
"wxDialog"/>
11945 <constructor name=
"MultiChoiceDialog" overloaded=
"no">
11946 <autodoc>__init__(Window parent, String message, String caption, int choices=
0,
11947 String choices_array, long style=CHOICEDLG_STYLE,
11948 Point pos=DefaultPosition) -
> MultiChoiceDialog
</autodoc>
11950 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11951 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
11952 <param name=
"caption" type=
"r.q(const).wxString" default=
""/>
11953 <param name=
"choices" type=
"int" default=
"0"/>
11954 <param name=
"choices_array" type=
"p.wxString" default=
""/>
11955 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
11956 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11959 <method name=
"SetSelections" overloaded=
"no">
11960 <autodoc>SetSelections(wxArrayInt selections)
</autodoc>
11962 <param name=
"selections" type=
"r.q(const).wxArrayInt" default=
""/>
11965 <method name=
"GetSelections" overloaded=
"no">
11966 <autodoc>GetSelections() -
> PyObject
</autodoc>
11969 <class name=
"SingleChoiceDialog" oldname=
"wxSingleChoiceDialog" module=
"windows">
11970 <baseclass name=
"wxDialog"/>
11971 <constructor name=
"SingleChoiceDialog" overloaded=
"no">
11972 <autodoc>__init__(Window parent, String message, String caption, int choices,
11973 String choices_array, long style=CHOICEDLG_STYLE,
11974 Point pos=DefaultPosition) -
> SingleChoiceDialog
</autodoc>
11976 <param name=
"parent" type=
"p.wxWindow" default=
""/>
11977 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
11978 <param name=
"caption" type=
"r.q(const).wxString" default=
""/>
11979 <param name=
"choices" type=
"int" default=
""/>
11980 <param name=
"choices_array" type=
"p.wxString" default=
""/>
11981 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
11982 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
11985 <method name=
"GetSelection" overloaded=
"no">
11986 <autodoc>GetSelection() -
> int
</autodoc>
11988 <method name=
"GetStringSelection" overloaded=
"no">
11989 <autodoc>GetStringSelection() -
> String
</autodoc>
11991 <method name=
"SetSelection" overloaded=
"no">
11992 <autodoc>SetSelection(int sel)
</autodoc>
11994 <param name=
"sel" type=
"int" default=
""/>
11997 <method name=
"ShowModal" overloaded=
"no">
11998 <autodoc>ShowModal() -
> int
</autodoc>
12001 <class name=
"TextEntryDialog" oldname=
"wxTextEntryDialog" module=
"windows">
12002 <baseclass name=
"wxDialog"/>
12003 <constructor name=
"TextEntryDialog" overloaded=
"no">
12004 <autodoc>__init__(Window parent, String message, String caption=GetTextFromUserPromptStr,
12005 String defaultValue=EmptyString,
12006 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -
> TextEntryDialog
</autodoc>
12008 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12009 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
12010 <param name=
"caption" type=
"r.q(const).wxString" default=
"wxPyGetTextFromUserPromptStr"/>
12011 <param name=
"defaultValue" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
12012 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
12013 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12016 <method name=
"GetValue" overloaded=
"no">
12017 <autodoc>GetValue() -
> String
</autodoc>
12019 <method name=
"SetValue" overloaded=
"no">
12020 <autodoc>SetValue(String value)
</autodoc>
12022 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
12025 <method name=
"ShowModal" overloaded=
"no">
12026 <autodoc>ShowModal() -
> int
</autodoc>
12029 <class name=
"FontData" oldname=
"wxFontData" module=
"windows">
12030 <baseclass name=
"wxObject"/>
12031 <constructor name=
"FontData" overloaded=
"no">
12032 <autodoc>__init__() -
> FontData
</autodoc>
12034 <destructor name=
"~wxFontData">
12035 <autodoc>__del__()
</autodoc>
12037 <method name=
"EnableEffects" overloaded=
"no">
12038 <autodoc>EnableEffects(bool enable)
</autodoc>
12040 <param name=
"enable" type=
"bool" default=
""/>
12043 <method name=
"GetAllowSymbols" overloaded=
"no">
12044 <autodoc>GetAllowSymbols() -
> bool
</autodoc>
12046 <method name=
"GetColour" overloaded=
"no">
12047 <autodoc>GetColour() -
> Colour
</autodoc>
12049 <method name=
"GetChosenFont" overloaded=
"no">
12050 <autodoc>GetChosenFont() -
> Font
</autodoc>
12052 <method name=
"GetEnableEffects" overloaded=
"no">
12053 <autodoc>GetEnableEffects() -
> bool
</autodoc>
12055 <method name=
"GetInitialFont" overloaded=
"no">
12056 <autodoc>GetInitialFont() -
> Font
</autodoc>
12058 <method name=
"GetShowHelp" overloaded=
"no">
12059 <autodoc>GetShowHelp() -
> bool
</autodoc>
12061 <method name=
"SetAllowSymbols" overloaded=
"no">
12062 <autodoc>SetAllowSymbols(bool allowSymbols)
</autodoc>
12064 <param name=
"allowSymbols" type=
"bool" default=
""/>
12067 <method name=
"SetChosenFont" overloaded=
"no">
12068 <autodoc>SetChosenFont(Font font)
</autodoc>
12070 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
12073 <method name=
"SetColour" overloaded=
"no">
12074 <autodoc>SetColour(Colour colour)
</autodoc>
12076 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
12079 <method name=
"SetInitialFont" overloaded=
"no">
12080 <autodoc>SetInitialFont(Font font)
</autodoc>
12082 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
12085 <method name=
"SetRange" overloaded=
"no">
12086 <autodoc>SetRange(int min, int max)
</autodoc>
12088 <param name=
"min" type=
"int" default=
""/>
12089 <param name=
"max" type=
"int" default=
""/>
12092 <method name=
"SetShowHelp" overloaded=
"no">
12093 <autodoc>SetShowHelp(bool showHelp)
</autodoc>
12095 <param name=
"showHelp" type=
"bool" default=
""/>
12099 <class name=
"FontDialog" oldname=
"wxFontDialog" module=
"windows">
12100 <baseclass name=
"wxDialog"/>
12101 <constructor name=
"FontDialog" overloaded=
"no">
12102 <autodoc>__init__(Window parent, FontData data) -
> FontDialog
</autodoc>
12104 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12105 <param name=
"data" type=
"r.q(const).wxFontData" default=
""/>
12108 <method name=
"GetFontData" overloaded=
"no">
12109 <autodoc>GetFontData() -
> FontData
</autodoc>
12111 <method name=
"ShowModal" overloaded=
"no">
12112 <autodoc>ShowModal() -
> int
</autodoc>
12115 <class name=
"MessageDialog" oldname=
"wxMessageDialog" module=
"windows">
12116 <baseclass name=
"wxDialog"/>
12117 <constructor name=
"MessageDialog" overloaded=
"no">
12118 <autodoc>__init__(Window parent, String message, String caption=MessageBoxCaptionStr,
12119 long style=wxOK|wxCANCEL|wxCENTRE,
12120 Point pos=DefaultPosition) -
> MessageDialog
</autodoc>
12122 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12123 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
12124 <param name=
"caption" type=
"r.q(const).wxString" default=
"wxPyMessageBoxCaptionStr"/>
12125 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
12126 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12129 <method name=
"ShowModal" overloaded=
"no">
12130 <autodoc>ShowModal() -
> int
</autodoc>
12133 <class name=
"ProgressDialog" oldname=
"wxProgressDialog" module=
"windows">
12134 <baseclass name=
"wxFrame"/>
12135 <constructor name=
"ProgressDialog" overloaded=
"no">
12136 <autodoc>__init__(String title, String message, int maximum=
100, Window parent=None,
12137 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -
> ProgressDialog
</autodoc>
12139 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12140 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
12141 <param name=
"maximum" type=
"int" default=
"100"/>
12142 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
12143 <param name=
"style" type=
"int" default=
"wxPD_AUTO_HIDE|wxPD_APP_MODAL"/>
12146 <method name=
"Update" overloaded=
"no">
12147 <autodoc>Update(int value, String newmsg=EmptyString) -
> bool
</autodoc>
12149 <param name=
"value" type=
"int" default=
""/>
12150 <param name=
"newmsg" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
12153 <method name=
"Resume" overloaded=
"no">
12154 <autodoc>Resume()
</autodoc>
12158 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND,
1 )
12159 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT,
1 )
12160 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE,
1 )
12161 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL,
1 )
12162 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE,
1 )
12164 # For backwards compatibility. Should they be removed?
12165 EVT_COMMAND_FIND = EVT_FIND
12166 EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
12167 EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
12168 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
12169 EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
12171 <class name=
"FindDialogEvent" oldname=
"wxFindDialogEvent" module=
"windows">
12172 <baseclass name=
"wxCommandEvent"/>
12173 <constructor name=
"FindDialogEvent" overloaded=
"no">
12174 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> FindDialogEvent
</autodoc>
12176 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
12177 <param name=
"id" type=
"int" default=
"0"/>
12180 <method name=
"GetFlags" overloaded=
"no">
12181 <autodoc>GetFlags() -
> int
</autodoc>
12183 <method name=
"GetFindString" overloaded=
"no">
12184 <autodoc>GetFindString() -
> String
</autodoc>
12186 <method name=
"GetReplaceString" overloaded=
"no">
12187 <autodoc>GetReplaceString() -
> String
</autodoc>
12189 <method name=
"GetDialog" overloaded=
"no">
12190 <autodoc>GetDialog() -
> FindReplaceDialog
</autodoc>
12192 <method name=
"SetFlags" overloaded=
"no">
12193 <autodoc>SetFlags(int flags)
</autodoc>
12195 <param name=
"flags" type=
"int" default=
""/>
12198 <method name=
"SetFindString" overloaded=
"no">
12199 <autodoc>SetFindString(String str)
</autodoc>
12201 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
12204 <method name=
"SetReplaceString" overloaded=
"no">
12205 <autodoc>SetReplaceString(String str)
</autodoc>
12207 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
12211 <class name=
"FindReplaceData" oldname=
"wxFindReplaceData" module=
"windows">
12212 <baseclass name=
"wxObject"/>
12213 <constructor name=
"FindReplaceData" overloaded=
"no">
12214 <autodoc>__init__(int flags=
0) -
> FindReplaceData
</autodoc>
12216 <param name=
"flags" type=
"int" default=
"0"/>
12219 <destructor name=
"~wxFindReplaceData">
12220 <autodoc>__del__()
</autodoc>
12222 <method name=
"GetFindString" overloaded=
"no">
12223 <autodoc>GetFindString() -
> String
</autodoc>
12225 <method name=
"GetReplaceString" overloaded=
"no">
12226 <autodoc>GetReplaceString() -
> String
</autodoc>
12228 <method name=
"GetFlags" overloaded=
"no">
12229 <autodoc>GetFlags() -
> int
</autodoc>
12231 <method name=
"SetFlags" overloaded=
"no">
12232 <autodoc>SetFlags(int flags)
</autodoc>
12234 <param name=
"flags" type=
"int" default=
""/>
12237 <method name=
"SetFindString" overloaded=
"no">
12238 <autodoc>SetFindString(String str)
</autodoc>
12240 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
12243 <method name=
"SetReplaceString" overloaded=
"no">
12244 <autodoc>SetReplaceString(String str)
</autodoc>
12246 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
12250 <class name=
"FindReplaceDialog" oldname=
"wxFindReplaceDialog" module=
"windows">
12251 <baseclass name=
"wxDialog"/>
12252 <constructor name=
"FindReplaceDialog" overloaded=
"no">
12253 <autodoc>__init__(Window parent, FindReplaceData data, String title,
12254 int style=
0) -
> FindReplaceDialog
</autodoc>
12256 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12257 <param name=
"data" type=
"p.wxFindReplaceData" default=
""/>
12258 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12259 <param name=
"style" type=
"int" default=
"0"/>
12262 <constructor name=
"PreFindReplaceDialog" overloaded=
"no">
12263 <autodoc>PreFindReplaceDialog() -
> FindReplaceDialog
</autodoc>
12265 <method name=
"Create" overloaded=
"no">
12266 <autodoc>Create(Window parent, FindReplaceData data, String title,
12267 int style=
0) -
> bool
</autodoc>
12269 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12270 <param name=
"data" type=
"p.wxFindReplaceData" default=
""/>
12271 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12272 <param name=
"style" type=
"int" default=
"0"/>
12275 <method name=
"GetData" overloaded=
"no">
12276 <autodoc>GetData() -
> FindReplaceData
</autodoc>
12278 <method name=
"SetData" overloaded=
"no">
12279 <autodoc>SetData(FindReplaceData data)
</autodoc>
12281 <param name=
"data" type=
"p.wxFindReplaceData" default=
""/>
12286 #---------------------------------------------------------------------------
12288 <class name=
"MDIParentFrame" oldname=
"wxMDIParentFrame" module=
"windows">
12289 <baseclass name=
"wxFrame"/>
12290 <constructor name=
"MDIParentFrame" overloaded=
"no">
12291 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
12292 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
12293 String name=FrameNameStr) -
> MDIParentFrame
</autodoc>
12295 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12296 <param name=
"id" type=
"q(const).int" default=
""/>
12297 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12298 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12299 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12300 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
12301 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
12304 <constructor name=
"PreMDIParentFrame" overloaded=
"no">
12305 <autodoc>PreMDIParentFrame() -
> MDIParentFrame
</autodoc>
12307 <method name=
"Create" overloaded=
"no">
12308 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
12309 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
12310 String name=FrameNameStr) -
> bool
</autodoc>
12312 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12313 <param name=
"id" type=
"q(const).int" default=
""/>
12314 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12315 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12316 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12317 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
12318 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
12321 <method name=
"ActivateNext" overloaded=
"no">
12322 <autodoc>ActivateNext()
</autodoc>
12324 <method name=
"ActivatePrevious" overloaded=
"no">
12325 <autodoc>ActivatePrevious()
</autodoc>
12327 <method name=
"ArrangeIcons" overloaded=
"no">
12328 <autodoc>ArrangeIcons()
</autodoc>
12330 <method name=
"Cascade" overloaded=
"no">
12331 <autodoc>Cascade()
</autodoc>
12333 <method name=
"GetActiveChild" overloaded=
"no">
12334 <autodoc>GetActiveChild() -
> MDIChildFrame
</autodoc>
12336 <method name=
"GetClientWindow" overloaded=
"no">
12337 <autodoc>GetClientWindow() -
> MDIClientWindow
</autodoc>
12339 <method name=
"GetToolBar" overloaded=
"no">
12340 <autodoc>GetToolBar() -
> Window
</autodoc>
12342 <method name=
"Tile" overloaded=
"no">
12343 <autodoc>Tile()
</autodoc>
12346 <class name=
"MDIChildFrame" oldname=
"wxMDIChildFrame" module=
"windows">
12347 <baseclass name=
"wxFrame"/>
12348 <constructor name=
"MDIChildFrame" overloaded=
"no">
12349 <autodoc>__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
12350 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
12351 String name=FrameNameStr) -
> MDIChildFrame
</autodoc>
12353 <param name=
"parent" type=
"p.wxMDIParentFrame" default=
""/>
12354 <param name=
"id" type=
"q(const).int" default=
""/>
12355 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12356 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12357 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12358 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
12359 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
12362 <constructor name=
"PreMDIChildFrame" overloaded=
"no">
12363 <autodoc>PreMDIChildFrame() -
> MDIChildFrame
</autodoc>
12365 <method name=
"Create" overloaded=
"no">
12366 <autodoc>Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
12367 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
12368 String name=FrameNameStr) -
> bool
</autodoc>
12370 <param name=
"parent" type=
"p.wxMDIParentFrame" default=
""/>
12371 <param name=
"id" type=
"q(const).int" default=
""/>
12372 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
12373 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12374 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12375 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
12376 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
12379 <method name=
"Activate" overloaded=
"no">
12380 <autodoc>Activate()
</autodoc>
12382 <method name=
"Maximize" overloaded=
"no">
12383 <autodoc>Maximize(bool maximize)
</autodoc>
12385 <param name=
"maximize" type=
"bool" default=
""/>
12388 <method name=
"Restore" overloaded=
"no">
12389 <autodoc>Restore()
</autodoc>
12392 <class name=
"MDIClientWindow" oldname=
"wxMDIClientWindow" module=
"windows">
12393 <baseclass name=
"wxWindow"/>
12394 <constructor name=
"MDIClientWindow" overloaded=
"no">
12395 <autodoc>__init__(MDIParentFrame parent, long style=
0) -
> MDIClientWindow
</autodoc>
12397 <param name=
"parent" type=
"p.wxMDIParentFrame" default=
""/>
12398 <param name=
"style" type=
"long" default=
"0"/>
12401 <constructor name=
"PreMDIClientWindow" overloaded=
"no">
12402 <autodoc>PreMDIClientWindow() -
> MDIClientWindow
</autodoc>
12404 <method name=
"Create" overloaded=
"no">
12405 <autodoc>Create(MDIParentFrame parent, long style=
0) -
> bool
</autodoc>
12407 <param name=
"parent" type=
"p.wxMDIParentFrame" default=
""/>
12408 <param name=
"style" type=
"long" default=
"0"/>
12413 #---------------------------------------------------------------------------
12415 <class name=
"PyWindow" oldname=
"wxPyWindow" module=
"windows">
12416 <baseclass name=
"wxWindow"/>
12417 <constructor name=
"PyWindow" overloaded=
"no">
12418 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12419 long style=
0, String name=PanelNameStr) -
> PyWindow
</autodoc>
12421 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12422 <param name=
"id" type=
"q(const).int" default=
""/>
12423 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12424 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12425 <param name=
"style" type=
"long" default=
"0"/>
12426 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
12429 <method name=
"_setCallbackInfo" overloaded=
"no">
12430 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12432 <param name=
"self" type=
"p.PyObject" default=
""/>
12433 <param name=
"_class" type=
"p.PyObject" default=
""/>
12436 <method name=
"base_DoMoveWindow" overloaded=
"no">
12437 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
12439 <param name=
"x" type=
"int" default=
""/>
12440 <param name=
"y" type=
"int" default=
""/>
12441 <param name=
"width" type=
"int" default=
""/>
12442 <param name=
"height" type=
"int" default=
""/>
12445 <method name=
"base_DoSetSize" overloaded=
"no">
12446 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
12448 <param name=
"x" type=
"int" default=
""/>
12449 <param name=
"y" type=
"int" default=
""/>
12450 <param name=
"width" type=
"int" default=
""/>
12451 <param name=
"height" type=
"int" default=
""/>
12452 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
12455 <method name=
"base_DoSetClientSize" overloaded=
"no">
12456 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
12458 <param name=
"width" type=
"int" default=
""/>
12459 <param name=
"height" type=
"int" default=
""/>
12462 <method name=
"base_DoSetVirtualSize" overloaded=
"no">
12463 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
12465 <param name=
"x" type=
"int" default=
""/>
12466 <param name=
"y" type=
"int" default=
""/>
12469 <method name=
"base_DoGetSize" overloaded=
"no">
12470 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
12472 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12473 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12476 <method name=
"base_DoGetClientSize" overloaded=
"no">
12477 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
12479 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12480 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12483 <method name=
"base_DoGetPosition" overloaded=
"no">
12484 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
12486 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12487 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12490 <method name=
"base_DoGetVirtualSize" overloaded=
"no">
12491 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
12493 <method name=
"base_DoGetBestSize" overloaded=
"no">
12494 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
12496 <method name=
"base_InitDialog" overloaded=
"no">
12497 <autodoc>base_InitDialog()
</autodoc>
12499 <method name=
"base_TransferDataToWindow" overloaded=
"no">
12500 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
12502 <method name=
"base_TransferDataFromWindow" overloaded=
"no">
12503 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
12505 <method name=
"base_Validate" overloaded=
"no">
12506 <autodoc>base_Validate() -
> bool
</autodoc>
12508 <method name=
"base_AcceptsFocus" overloaded=
"no">
12509 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
12511 <method name=
"base_AcceptsFocusFromKeyboard" overloaded=
"no">
12512 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
12514 <method name=
"base_GetMaxSize" overloaded=
"no">
12515 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
12517 <method name=
"base_AddChild" overloaded=
"no">
12518 <autodoc>base_AddChild(Window child)
</autodoc>
12520 <param name=
"child" type=
"p.wxWindow" default=
""/>
12523 <method name=
"base_RemoveChild" overloaded=
"no">
12524 <autodoc>base_RemoveChild(Window child)
</autodoc>
12526 <param name=
"child" type=
"p.wxWindow" default=
""/>
12530 <class name=
"PyPanel" oldname=
"wxPyPanel" module=
"windows">
12531 <baseclass name=
"wxPanel"/>
12532 <constructor name=
"PyPanel" overloaded=
"no">
12533 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12534 long style=
0, String name=PanelNameStr) -
> PyPanel
</autodoc>
12536 <param name=
"parent" type=
"p.wxWindow" default=
""/>
12537 <param name=
"id" type=
"q(const).int" default=
""/>
12538 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
12539 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
12540 <param name=
"style" type=
"long" default=
"0"/>
12541 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
12544 <method name=
"_setCallbackInfo" overloaded=
"no">
12545 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12547 <param name=
"self" type=
"p.PyObject" default=
""/>
12548 <param name=
"_class" type=
"p.PyObject" default=
""/>
12551 <method name=
"base_DoMoveWindow" overloaded=
"no">
12552 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
12554 <param name=
"x" type=
"int" default=
""/>
12555 <param name=
"y" type=
"int" default=
""/>
12556 <param name=
"width" type=
"int" default=
""/>
12557 <param name=
"height" type=
"int" default=
""/>
12560 <method name=
"base_DoSetSize" overloaded=
"no">
12561 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
12563 <param name=
"x" type=
"int" default=
""/>
12564 <param name=
"y" type=
"int" default=
""/>
12565 <param name=
"width" type=
"int" default=
""/>
12566 <param name=
"height" type=
"int" default=
""/>
12567 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
12570 <method name=
"base_DoSetClientSize" overloaded=
"no">
12571 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
12573 <param name=
"width" type=
"int" default=
""/>
12574 <param name=
"height" type=
"int" default=
""/>
12577 <method name=
"base_DoSetVirtualSize" overloaded=
"no">
12578 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
12580 <param name=
"x" type=
"int" default=
""/>
12581 <param name=
"y" type=
"int" default=
""/>
12584 <method name=
"base_DoGetSize" overloaded=
"no">
12585 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
12587 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12588 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12591 <method name=
"base_DoGetClientSize" overloaded=
"no">
12592 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
12594 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12595 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12598 <method name=
"base_DoGetPosition" overloaded=
"no">
12599 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
12601 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12602 <param name=
"OUTPUT" type=
"p.int" default=
""/>
12605 <method name=
"base_DoGetVirtualSize" overloaded=
"no">
12606 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
12608 <method name=
"base_DoGetBestSize" overloaded=
"no">
12609 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
12611 <method name=
"base_InitDialog" overloaded=
"no">
12612 <autodoc>base_InitDialog()
</autodoc>
12614 <method name=
"base_TransferDataToWindow" overloaded=
"no">
12615 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
12617 <method name=
"base_TransferDataFromWindow" overloaded=
"no">
12618 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
12620 <method name=
"base_Validate" overloaded=
"no">
12621 <autodoc>base_Validate() -
> bool
</autodoc>
12623 <method name=
"base_AcceptsFocus" overloaded=
"no">
12624 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
12626 <method name=
"base_AcceptsFocusFromKeyboard" overloaded=
"no">
12627 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
12629 <method name=
"base_GetMaxSize" overloaded=
"no">
12630 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
12632 <method name=
"base_AddChild" overloaded=
"no">
12633 <autodoc>base_AddChild(Window child)
</autodoc>
12635 <param name=
"child" type=
"p.wxWindow" default=
""/>
12638 <method name=
"base_RemoveChild" overloaded=
"no">
12639 <autodoc>base_RemoveChild(Window child)
</autodoc>
12641 <param name=
"child" type=
"p.wxWindow" default=
""/>
12646 #---------------------------------------------------------------------------
12648 <class name=
"PrintData" oldname=
"wxPrintData" module=
"windows">
12649 <baseclass name=
"wxObject"/>
12650 <constructor name=
"PrintData" overloaded=
"no">
12651 <autodoc>__init__() -
> PrintData
</autodoc>
12653 <destructor name=
"~wxPrintData">
12654 <autodoc>__del__()
</autodoc>
12656 <method name=
"GetNoCopies" overloaded=
"no">
12657 <autodoc>GetNoCopies() -
> int
</autodoc>
12659 <method name=
"GetCollate" overloaded=
"no">
12660 <autodoc>GetCollate() -
> bool
</autodoc>
12662 <method name=
"GetOrientation" overloaded=
"no">
12663 <autodoc>GetOrientation() -
> int
</autodoc>
12665 <method name=
"Ok" overloaded=
"no">
12666 <autodoc>Ok() -
> bool
</autodoc>
12668 <method name=
"GetPrinterName" overloaded=
"no">
12669 <autodoc>GetPrinterName() -
> String
</autodoc>
12671 <method name=
"GetColour" overloaded=
"no">
12672 <autodoc>GetColour() -
> bool
</autodoc>
12674 <method name=
"GetDuplex" overloaded=
"no">
12675 <autodoc>GetDuplex() -
> int
</autodoc>
12677 <method name=
"GetPaperId" overloaded=
"no">
12678 <autodoc>GetPaperId() -
> int
</autodoc>
12680 <method name=
"GetPaperSize" overloaded=
"no">
12681 <autodoc>GetPaperSize() -
> Size
</autodoc>
12683 <method name=
"GetQuality" overloaded=
"no">
12684 <autodoc>GetQuality() -
> int
</autodoc>
12686 <method name=
"SetNoCopies" overloaded=
"no">
12687 <autodoc>SetNoCopies(int v)
</autodoc>
12689 <param name=
"v" type=
"int" default=
""/>
12692 <method name=
"SetCollate" overloaded=
"no">
12693 <autodoc>SetCollate(bool flag)
</autodoc>
12695 <param name=
"flag" type=
"bool" default=
""/>
12698 <method name=
"SetOrientation" overloaded=
"no">
12699 <autodoc>SetOrientation(int orient)
</autodoc>
12701 <param name=
"orient" type=
"int" default=
""/>
12704 <method name=
"SetPrinterName" overloaded=
"no">
12705 <autodoc>SetPrinterName(String name)
</autodoc>
12707 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
12710 <method name=
"SetColour" overloaded=
"no">
12711 <autodoc>SetColour(bool colour)
</autodoc>
12713 <param name=
"colour" type=
"bool" default=
""/>
12716 <method name=
"SetDuplex" overloaded=
"no">
12717 <autodoc>SetDuplex(int duplex)
</autodoc>
12719 <param name=
"duplex" type=
"wxDuplexMode" default=
""/>
12722 <method name=
"SetPaperId" overloaded=
"no">
12723 <autodoc>SetPaperId(int sizeId)
</autodoc>
12725 <param name=
"sizeId" type=
"wxPaperSize" default=
""/>
12728 <method name=
"SetPaperSize" overloaded=
"no">
12729 <autodoc>SetPaperSize(Size sz)
</autodoc>
12731 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
12734 <method name=
"SetQuality" overloaded=
"no">
12735 <autodoc>SetQuality(int quality)
</autodoc>
12737 <param name=
"quality" type=
"int" default=
""/>
12740 <method name=
"GetPrinterCommand" overloaded=
"no">
12741 <autodoc>GetPrinterCommand() -
> String
</autodoc>
12743 <method name=
"GetPrinterOptions" overloaded=
"no">
12744 <autodoc>GetPrinterOptions() -
> String
</autodoc>
12746 <method name=
"GetPreviewCommand" overloaded=
"no">
12747 <autodoc>GetPreviewCommand() -
> String
</autodoc>
12749 <method name=
"GetFilename" overloaded=
"no">
12750 <autodoc>GetFilename() -
> String
</autodoc>
12752 <method name=
"GetFontMetricPath" overloaded=
"no">
12753 <autodoc>GetFontMetricPath() -
> String
</autodoc>
12755 <method name=
"GetPrinterScaleX" overloaded=
"no">
12756 <autodoc>GetPrinterScaleX() -
> double
</autodoc>
12758 <method name=
"GetPrinterScaleY" overloaded=
"no">
12759 <autodoc>GetPrinterScaleY() -
> double
</autodoc>
12761 <method name=
"GetPrinterTranslateX" overloaded=
"no">
12762 <autodoc>GetPrinterTranslateX() -
> long
</autodoc>
12764 <method name=
"GetPrinterTranslateY" overloaded=
"no">
12765 <autodoc>GetPrinterTranslateY() -
> long
</autodoc>
12767 <method name=
"GetPrintMode" overloaded=
"no">
12768 <autodoc>GetPrintMode() -
> int
</autodoc>
12770 <method name=
"SetPrinterCommand" overloaded=
"no">
12771 <autodoc>SetPrinterCommand(String command)
</autodoc>
12773 <param name=
"command" type=
"r.q(const).wxString" default=
""/>
12776 <method name=
"SetPrinterOptions" overloaded=
"no">
12777 <autodoc>SetPrinterOptions(String options)
</autodoc>
12779 <param name=
"options" type=
"r.q(const).wxString" default=
""/>
12782 <method name=
"SetPreviewCommand" overloaded=
"no">
12783 <autodoc>SetPreviewCommand(String command)
</autodoc>
12785 <param name=
"command" type=
"r.q(const).wxString" default=
""/>
12788 <method name=
"SetFilename" overloaded=
"no">
12789 <autodoc>SetFilename(String filename)
</autodoc>
12791 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
12794 <method name=
"SetFontMetricPath" overloaded=
"no">
12795 <autodoc>SetFontMetricPath(String path)
</autodoc>
12797 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
12800 <method name=
"SetPrinterScaleX" overloaded=
"no">
12801 <autodoc>SetPrinterScaleX(double x)
</autodoc>
12803 <param name=
"x" type=
"double" default=
""/>
12806 <method name=
"SetPrinterScaleY" overloaded=
"no">
12807 <autodoc>SetPrinterScaleY(double y)
</autodoc>
12809 <param name=
"y" type=
"double" default=
""/>
12812 <method name=
"SetPrinterScaling" overloaded=
"no">
12813 <autodoc>SetPrinterScaling(double x, double y)
</autodoc>
12815 <param name=
"x" type=
"double" default=
""/>
12816 <param name=
"y" type=
"double" default=
""/>
12819 <method name=
"SetPrinterTranslateX" overloaded=
"no">
12820 <autodoc>SetPrinterTranslateX(long x)
</autodoc>
12822 <param name=
"x" type=
"long" default=
""/>
12825 <method name=
"SetPrinterTranslateY" overloaded=
"no">
12826 <autodoc>SetPrinterTranslateY(long y)
</autodoc>
12828 <param name=
"y" type=
"long" default=
""/>
12831 <method name=
"SetPrinterTranslation" overloaded=
"no">
12832 <autodoc>SetPrinterTranslation(long x, long y)
</autodoc>
12834 <param name=
"x" type=
"long" default=
""/>
12835 <param name=
"y" type=
"long" default=
""/>
12838 <method name=
"SetPrintMode" overloaded=
"no">
12839 <autodoc>SetPrintMode(int printMode)
</autodoc>
12841 <param name=
"printMode" type=
"wxPrintMode" default=
""/>
12844 <method name=
"GetOutputStream" overloaded=
"no">
12845 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
12847 <method name=
"SetOutputStream" overloaded=
"no">
12848 <autodoc>SetOutputStream(OutputStream outputstream)
</autodoc>
12850 <param name=
"outputstream" type=
"p.wxOutputStream" default=
""/>
12853 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
12855 <class name=
"PageSetupDialogData" oldname=
"wxPageSetupDialogData" module=
"windows">
12856 <baseclass name=
"wxObject"/>
12857 <constructor name=
"PageSetupDialogData" overloaded=
"no">
12858 <autodoc>__init__() -
> PageSetupDialogData
</autodoc>
12860 <destructor name=
"~wxPageSetupDialogData">
12861 <autodoc>__del__()
</autodoc>
12863 <method name=
"EnableHelp" overloaded=
"no">
12864 <autodoc>EnableHelp(bool flag)
</autodoc>
12866 <param name=
"flag" type=
"bool" default=
""/>
12869 <method name=
"EnableMargins" overloaded=
"no">
12870 <autodoc>EnableMargins(bool flag)
</autodoc>
12872 <param name=
"flag" type=
"bool" default=
""/>
12875 <method name=
"EnableOrientation" overloaded=
"no">
12876 <autodoc>EnableOrientation(bool flag)
</autodoc>
12878 <param name=
"flag" type=
"bool" default=
""/>
12881 <method name=
"EnablePaper" overloaded=
"no">
12882 <autodoc>EnablePaper(bool flag)
</autodoc>
12884 <param name=
"flag" type=
"bool" default=
""/>
12887 <method name=
"EnablePrinter" overloaded=
"no">
12888 <autodoc>EnablePrinter(bool flag)
</autodoc>
12890 <param name=
"flag" type=
"bool" default=
""/>
12893 <method name=
"GetDefaultMinMargins" overloaded=
"no">
12894 <autodoc>GetDefaultMinMargins() -
> bool
</autodoc>
12896 <method name=
"GetEnableMargins" overloaded=
"no">
12897 <autodoc>GetEnableMargins() -
> bool
</autodoc>
12899 <method name=
"GetEnableOrientation" overloaded=
"no">
12900 <autodoc>GetEnableOrientation() -
> bool
</autodoc>
12902 <method name=
"GetEnablePaper" overloaded=
"no">
12903 <autodoc>GetEnablePaper() -
> bool
</autodoc>
12905 <method name=
"GetEnablePrinter" overloaded=
"no">
12906 <autodoc>GetEnablePrinter() -
> bool
</autodoc>
12908 <method name=
"GetEnableHelp" overloaded=
"no">
12909 <autodoc>GetEnableHelp() -
> bool
</autodoc>
12911 <method name=
"GetDefaultInfo" overloaded=
"no">
12912 <autodoc>GetDefaultInfo() -
> bool
</autodoc>
12914 <method name=
"GetMarginTopLeft" overloaded=
"no">
12915 <autodoc>GetMarginTopLeft() -
> Point
</autodoc>
12917 <method name=
"GetMarginBottomRight" overloaded=
"no">
12918 <autodoc>GetMarginBottomRight() -
> Point
</autodoc>
12920 <method name=
"GetMinMarginTopLeft" overloaded=
"no">
12921 <autodoc>GetMinMarginTopLeft() -
> Point
</autodoc>
12923 <method name=
"GetMinMarginBottomRight" overloaded=
"no">
12924 <autodoc>GetMinMarginBottomRight() -
> Point
</autodoc>
12926 <method name=
"GetPaperId" overloaded=
"no">
12927 <autodoc>GetPaperId() -
> int
</autodoc>
12929 <method name=
"GetPaperSize" overloaded=
"no">
12930 <autodoc>GetPaperSize() -
> Size
</autodoc>
12932 <method name=
"GetPrintData" overloaded=
"no">
12933 <autodoc>GetPrintData() -
> PrintData
</autodoc>
12935 <method name=
"Ok" overloaded=
"no">
12936 <autodoc>Ok() -
> bool
</autodoc>
12938 <method name=
"SetDefaultInfo" overloaded=
"no">
12939 <autodoc>SetDefaultInfo(bool flag)
</autodoc>
12941 <param name=
"flag" type=
"bool" default=
""/>
12944 <method name=
"SetDefaultMinMargins" overloaded=
"no">
12945 <autodoc>SetDefaultMinMargins(bool flag)
</autodoc>
12947 <param name=
"flag" type=
"bool" default=
""/>
12950 <method name=
"SetMarginTopLeft" overloaded=
"no">
12951 <autodoc>SetMarginTopLeft(Point pt)
</autodoc>
12953 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
12956 <method name=
"SetMarginBottomRight" overloaded=
"no">
12957 <autodoc>SetMarginBottomRight(Point pt)
</autodoc>
12959 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
12962 <method name=
"SetMinMarginTopLeft" overloaded=
"no">
12963 <autodoc>SetMinMarginTopLeft(Point pt)
</autodoc>
12965 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
12968 <method name=
"SetMinMarginBottomRight" overloaded=
"no">
12969 <autodoc>SetMinMarginBottomRight(Point pt)
</autodoc>
12971 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
12974 <method name=
"SetPaperId" overloaded=
"no">
12975 <autodoc>SetPaperId(int id)
</autodoc>
12977 <param name=
"id" type=
"wxPaperSize" default=
""/>
12980 <method name=
"SetPaperSize" overloaded=
"no">
12981 <autodoc>SetPaperSize(Size size)
</autodoc>
12983 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
12986 <method name=
"SetPrintData" overloaded=
"no">
12987 <autodoc>SetPrintData(PrintData printData)
</autodoc>
12989 <param name=
"printData" type=
"r.q(const).wxPrintData" default=
""/>
12992 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
12994 <class name=
"PageSetupDialog" oldname=
"wxPageSetupDialog" module=
"windows">
12995 <baseclass name=
"wxDialog"/>
12996 <constructor name=
"PageSetupDialog" overloaded=
"no">
12997 <autodoc>__init__(Window parent, PageSetupDialogData data=None) -
> PageSetupDialog
</autodoc>
12999 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13000 <param name=
"data" type=
"p.wxPageSetupDialogData" default=
"NULL"/>
13003 <method name=
"GetPageSetupData" overloaded=
"no">
13004 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
13006 <method name=
"ShowModal" overloaded=
"no">
13007 <autodoc>ShowModal() -
> int
</autodoc>
13010 <class name=
"PrintDialogData" oldname=
"wxPrintDialogData" module=
"windows">
13011 <baseclass name=
"wxObject"/>
13012 <constructor name=
"PrintDialogData" overloaded=
"no">
13013 <autodoc>__init__() -
> PrintDialogData
</autodoc>
13015 <destructor name=
"~wxPrintDialogData">
13016 <autodoc>__del__()
</autodoc>
13018 <method name=
"GetFromPage" overloaded=
"no">
13019 <autodoc>GetFromPage() -
> int
</autodoc>
13021 <method name=
"GetToPage" overloaded=
"no">
13022 <autodoc>GetToPage() -
> int
</autodoc>
13024 <method name=
"GetMinPage" overloaded=
"no">
13025 <autodoc>GetMinPage() -
> int
</autodoc>
13027 <method name=
"GetMaxPage" overloaded=
"no">
13028 <autodoc>GetMaxPage() -
> int
</autodoc>
13030 <method name=
"GetNoCopies" overloaded=
"no">
13031 <autodoc>GetNoCopies() -
> int
</autodoc>
13033 <method name=
"GetAllPages" overloaded=
"no">
13034 <autodoc>GetAllPages() -
> bool
</autodoc>
13036 <method name=
"GetSelection" overloaded=
"no">
13037 <autodoc>GetSelection() -
> bool
</autodoc>
13039 <method name=
"GetCollate" overloaded=
"no">
13040 <autodoc>GetCollate() -
> bool
</autodoc>
13042 <method name=
"GetPrintToFile" overloaded=
"no">
13043 <autodoc>GetPrintToFile() -
> bool
</autodoc>
13045 <method name=
"GetSetupDialog" overloaded=
"no">
13046 <autodoc>GetSetupDialog() -
> bool
</autodoc>
13048 <method name=
"SetFromPage" overloaded=
"no">
13049 <autodoc>SetFromPage(int v)
</autodoc>
13051 <param name=
"v" type=
"int" default=
""/>
13054 <method name=
"SetToPage" overloaded=
"no">
13055 <autodoc>SetToPage(int v)
</autodoc>
13057 <param name=
"v" type=
"int" default=
""/>
13060 <method name=
"SetMinPage" overloaded=
"no">
13061 <autodoc>SetMinPage(int v)
</autodoc>
13063 <param name=
"v" type=
"int" default=
""/>
13066 <method name=
"SetMaxPage" overloaded=
"no">
13067 <autodoc>SetMaxPage(int v)
</autodoc>
13069 <param name=
"v" type=
"int" default=
""/>
13072 <method name=
"SetNoCopies" overloaded=
"no">
13073 <autodoc>SetNoCopies(int v)
</autodoc>
13075 <param name=
"v" type=
"int" default=
""/>
13078 <method name=
"SetAllPages" overloaded=
"no">
13079 <autodoc>SetAllPages(bool flag)
</autodoc>
13081 <param name=
"flag" type=
"bool" default=
""/>
13084 <method name=
"SetSelection" overloaded=
"no">
13085 <autodoc>SetSelection(bool flag)
</autodoc>
13087 <param name=
"flag" type=
"bool" default=
""/>
13090 <method name=
"SetCollate" overloaded=
"no">
13091 <autodoc>SetCollate(bool flag)
</autodoc>
13093 <param name=
"flag" type=
"bool" default=
""/>
13096 <method name=
"SetPrintToFile" overloaded=
"no">
13097 <autodoc>SetPrintToFile(bool flag)
</autodoc>
13099 <param name=
"flag" type=
"bool" default=
""/>
13102 <method name=
"SetSetupDialog" overloaded=
"no">
13103 <autodoc>SetSetupDialog(bool flag)
</autodoc>
13105 <param name=
"flag" type=
"bool" default=
""/>
13108 <method name=
"EnablePrintToFile" overloaded=
"no">
13109 <autodoc>EnablePrintToFile(bool flag)
</autodoc>
13111 <param name=
"flag" type=
"bool" default=
""/>
13114 <method name=
"EnableSelection" overloaded=
"no">
13115 <autodoc>EnableSelection(bool flag)
</autodoc>
13117 <param name=
"flag" type=
"bool" default=
""/>
13120 <method name=
"EnablePageNumbers" overloaded=
"no">
13121 <autodoc>EnablePageNumbers(bool flag)
</autodoc>
13123 <param name=
"flag" type=
"bool" default=
""/>
13126 <method name=
"EnableHelp" overloaded=
"no">
13127 <autodoc>EnableHelp(bool flag)
</autodoc>
13129 <param name=
"flag" type=
"bool" default=
""/>
13132 <method name=
"GetEnablePrintToFile" overloaded=
"no">
13133 <autodoc>GetEnablePrintToFile() -
> bool
</autodoc>
13135 <method name=
"GetEnableSelection" overloaded=
"no">
13136 <autodoc>GetEnableSelection() -
> bool
</autodoc>
13138 <method name=
"GetEnablePageNumbers" overloaded=
"no">
13139 <autodoc>GetEnablePageNumbers() -
> bool
</autodoc>
13141 <method name=
"GetEnableHelp" overloaded=
"no">
13142 <autodoc>GetEnableHelp() -
> bool
</autodoc>
13144 <method name=
"Ok" overloaded=
"no">
13145 <autodoc>Ok() -
> bool
</autodoc>
13147 <method name=
"GetPrintData" overloaded=
"no">
13148 <autodoc>GetPrintData() -
> PrintData
</autodoc>
13150 <method name=
"SetPrintData" overloaded=
"no">
13151 <autodoc>SetPrintData(PrintData printData)
</autodoc>
13153 <param name=
"printData" type=
"r.q(const).wxPrintData" default=
""/>
13156 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
13158 <class name=
"PrintDialog" oldname=
"wxPrintDialog" module=
"windows">
13159 <baseclass name=
"wxDialog"/>
13160 <constructor name=
"PrintDialog" overloaded=
"no">
13161 <autodoc>__init__(Window parent, PrintDialogData data=None) -
> PrintDialog
</autodoc>
13163 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13164 <param name=
"data" type=
"p.wxPrintDialogData" default=
"NULL"/>
13167 <method name=
"GetPrintDialogData" overloaded=
"no">
13168 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
13170 <method name=
"GetPrintDC" overloaded=
"no">
13171 <autodoc>GetPrintDC() -
> DC
</autodoc>
13173 <method name=
"ShowModal" overloaded=
"no">
13174 <autodoc>ShowModal() -
> int
</autodoc>
13177 <class name=
"Printer" oldname=
"wxPrinter" module=
"windows">
13178 <baseclass name=
"wxObject"/>
13179 <constructor name=
"Printer" overloaded=
"no">
13180 <autodoc>__init__(PrintDialogData data=None) -
> Printer
</autodoc>
13182 <param name=
"data" type=
"p.wxPrintDialogData" default=
"NULL"/>
13185 <destructor name=
"~wxPrinter">
13186 <autodoc>__del__()
</autodoc>
13188 <method name=
"CreateAbortWindow" overloaded=
"no">
13189 <autodoc>CreateAbortWindow(Window parent, Printout printout)
</autodoc>
13191 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13192 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13195 <method name=
"GetPrintDialogData" overloaded=
"no">
13196 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
13198 <method name=
"Print" overloaded=
"no">
13199 <autodoc>Print(Window parent, Printout printout, int prompt=True) -
> bool
</autodoc>
13201 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13202 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13203 <param name=
"prompt" type=
"int" default=
"True"/>
13206 <method name=
"PrintDialog" overloaded=
"no">
13207 <autodoc>PrintDialog(Window parent) -
> DC
</autodoc>
13209 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13212 <method name=
"ReportError" overloaded=
"no">
13213 <autodoc>ReportError(Window parent, Printout printout, String message)
</autodoc>
13215 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13216 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13217 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
13220 <method name=
"Setup" overloaded=
"no">
13221 <autodoc>Setup(Window parent) -
> bool
</autodoc>
13223 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13226 <method name=
"GetAbort" overloaded=
"no">
13227 <autodoc>GetAbort() -
> bool
</autodoc>
13229 <staticmethod name=
"GetLastError" overloaded=
"no">
13230 <autodoc>GetLastError() -
> int
</autodoc>
13233 <class name=
"Printout" oldname=
"wxPyPrintout" module=
"windows">
13234 <baseclass name=
"wxObject"/>
13235 <constructor name=
"wxPyPrintout" overloaded=
"no">
13236 <autodoc>__init__(String title=PrintoutTitleStr) -
> Printout
</autodoc>
13238 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyPrintoutTitleStr"/>
13241 <method name=
"_setCallbackInfo" overloaded=
"no">
13242 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13244 <param name=
"self" type=
"p.PyObject" default=
""/>
13245 <param name=
"_class" type=
"p.PyObject" default=
""/>
13248 <method name=
"GetTitle" overloaded=
"no">
13249 <autodoc>GetTitle() -
> String
</autodoc>
13251 <method name=
"GetDC" overloaded=
"no">
13252 <autodoc>GetDC() -
> DC
</autodoc>
13254 <method name=
"SetDC" overloaded=
"no">
13255 <autodoc>SetDC(DC dc)
</autodoc>
13257 <param name=
"dc" type=
"p.wxDC" default=
""/>
13260 <method name=
"SetPageSizePixels" overloaded=
"no">
13261 <autodoc>SetPageSizePixels(int w, int h)
</autodoc>
13263 <param name=
"w" type=
"int" default=
""/>
13264 <param name=
"h" type=
"int" default=
""/>
13267 <method name=
"GetPageSizePixels" overloaded=
"no">
13268 <autodoc>GetPageSizePixels() -
> (w, h)
</autodoc>
13270 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13271 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13274 <method name=
"SetPageSizeMM" overloaded=
"no">
13275 <autodoc>SetPageSizeMM(int w, int h)
</autodoc>
13277 <param name=
"w" type=
"int" default=
""/>
13278 <param name=
"h" type=
"int" default=
""/>
13281 <method name=
"GetPageSizeMM" overloaded=
"no">
13282 <autodoc>GetPageSizeMM() -
> (w, h)
</autodoc>
13284 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13285 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13288 <method name=
"SetPPIScreen" overloaded=
"no">
13289 <autodoc>SetPPIScreen(int x, int y)
</autodoc>
13291 <param name=
"x" type=
"int" default=
""/>
13292 <param name=
"y" type=
"int" default=
""/>
13295 <method name=
"GetPPIScreen" overloaded=
"no">
13296 <autodoc>GetPPIScreen() -
> (x,y)
</autodoc>
13298 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13299 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13302 <method name=
"SetPPIPrinter" overloaded=
"no">
13303 <autodoc>SetPPIPrinter(int x, int y)
</autodoc>
13305 <param name=
"x" type=
"int" default=
""/>
13306 <param name=
"y" type=
"int" default=
""/>
13309 <method name=
"GetPPIPrinter" overloaded=
"no">
13310 <autodoc>GetPPIPrinter() -
> (x,y)
</autodoc>
13312 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13313 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13316 <method name=
"IsPreview" overloaded=
"no">
13317 <autodoc>IsPreview() -
> bool
</autodoc>
13319 <method name=
"SetIsPreview" overloaded=
"no">
13320 <autodoc>SetIsPreview(bool p)
</autodoc>
13322 <param name=
"p" type=
"bool" default=
""/>
13325 <method name=
"base_OnBeginDocument" overloaded=
"no">
13326 <autodoc>base_OnBeginDocument(int startPage, int endPage) -
> bool
</autodoc>
13328 <param name=
"startPage" type=
"int" default=
""/>
13329 <param name=
"endPage" type=
"int" default=
""/>
13332 <method name=
"base_OnEndDocument" overloaded=
"no">
13333 <autodoc>base_OnEndDocument()
</autodoc>
13335 <method name=
"base_OnBeginPrinting" overloaded=
"no">
13336 <autodoc>base_OnBeginPrinting()
</autodoc>
13338 <method name=
"base_OnEndPrinting" overloaded=
"no">
13339 <autodoc>base_OnEndPrinting()
</autodoc>
13341 <method name=
"base_OnPreparePrinting" overloaded=
"no">
13342 <autodoc>base_OnPreparePrinting()
</autodoc>
13344 <method name=
"base_HasPage" overloaded=
"no">
13345 <autodoc>base_HasPage(int page) -
> bool
</autodoc>
13347 <param name=
"page" type=
"int" default=
""/>
13350 <method name=
"base_GetPageInfo" overloaded=
"no">
13351 <autodoc>base_GetPageInfo() -
> (minPage, maxPage, pageFrom, pageTo)
</autodoc>
13353 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13354 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13355 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13356 <param name=
"OUTPUT" type=
"p.int" default=
""/>
13360 <class name=
"PreviewCanvas" oldname=
"wxPreviewCanvas" module=
"windows">
13361 <baseclass name=
"wxScrolledWindow"/>
13362 <constructor name=
"PreviewCanvas" overloaded=
"no">
13363 <autodoc>__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition,
13364 Size size=DefaultSize, long style=
0,
13365 String name=PreviewCanvasNameStr) -
> PreviewCanvas
</autodoc>
13367 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13368 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13369 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13370 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13371 <param name=
"style" type=
"long" default=
"0"/>
13372 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPreviewCanvasNameStr"/>
13376 <class name=
"PreviewFrame" oldname=
"wxPreviewFrame" module=
"windows">
13377 <baseclass name=
"wxFrame"/>
13378 <constructor name=
"PreviewFrame" overloaded=
"no">
13379 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
13380 Size size=DefaultSize,
13381 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PreviewFrame
</autodoc>
13383 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13384 <param name=
"parent" type=
"p.wxFrame" default=
""/>
13385 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
13386 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13387 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13388 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13389 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
13392 <method name=
"Initialize" overloaded=
"no">
13393 <autodoc>Initialize()
</autodoc>
13395 <method name=
"CreateControlBar" overloaded=
"no">
13396 <autodoc>CreateControlBar()
</autodoc>
13398 <method name=
"CreateCanvas" overloaded=
"no">
13399 <autodoc>CreateCanvas()
</autodoc>
13401 <method name=
"GetControlBar" overloaded=
"no">
13402 <autodoc>GetControlBar() -
> PreviewControlBar
</autodoc>
13405 <class name=
"PreviewControlBar" oldname=
"wxPreviewControlBar" module=
"windows">
13406 <baseclass name=
"wxPanel"/>
13407 <constructor name=
"PreviewControlBar" overloaded=
"no">
13408 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
13409 Point pos=DefaultPosition, Size size=DefaultSize,
13410 long style=TAB_TRAVERSAL, String name=PanelNameStr) -
> PreviewControlBar
</autodoc>
13412 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13413 <param name=
"buttons" type=
"long" default=
""/>
13414 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13415 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13416 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13417 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL"/>
13418 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
13421 <method name=
"GetZoomControl" overloaded=
"no">
13422 <autodoc>GetZoomControl() -
> int
</autodoc>
13424 <method name=
"SetZoomControl" overloaded=
"no">
13425 <autodoc>SetZoomControl(int zoom)
</autodoc>
13427 <param name=
"zoom" type=
"int" default=
""/>
13430 <method name=
"GetPrintPreview" overloaded=
"no">
13431 <autodoc>GetPrintPreview() -
> PrintPreview
</autodoc>
13433 <method name=
"OnNext" overloaded=
"no">
13434 <autodoc>OnNext()
</autodoc>
13436 <method name=
"OnPrevious" overloaded=
"no">
13437 <autodoc>OnPrevious()
</autodoc>
13439 <method name=
"OnFirst" overloaded=
"no">
13440 <autodoc>OnFirst()
</autodoc>
13442 <method name=
"OnLast" overloaded=
"no">
13443 <autodoc>OnLast()
</autodoc>
13445 <method name=
"OnGoto" overloaded=
"no">
13446 <autodoc>OnGoto()
</autodoc>
13449 <class name=
"PrintPreview" oldname=
"wxPrintPreview" module=
"windows">
13450 <baseclass name=
"wxObject"/>
13451 <constructor name=
"PrintPreview" overloaded=
"no">
13452 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PrintPreview
</autodoc>
13454 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13455 <param name=
"printoutForPrinting" type=
"p.wxPyPrintout" default=
""/>
13456 <param name=
"data" type=
"p.wxPrintData" default=
"NULL"/>
13459 <method name=
"SetCurrentPage" overloaded=
"no">
13460 <autodoc>SetCurrentPage(int pageNum) -
> bool
</autodoc>
13462 <param name=
"pageNum" type=
"int" default=
""/>
13465 <method name=
"GetCurrentPage" overloaded=
"no">
13466 <autodoc>GetCurrentPage() -
> int
</autodoc>
13468 <method name=
"SetPrintout" overloaded=
"no">
13469 <autodoc>SetPrintout(Printout printout)
</autodoc>
13471 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13474 <method name=
"GetPrintout" overloaded=
"no">
13475 <autodoc>GetPrintout() -
> Printout
</autodoc>
13477 <method name=
"GetPrintoutForPrinting" overloaded=
"no">
13478 <autodoc>GetPrintoutForPrinting() -
> Printout
</autodoc>
13480 <method name=
"SetFrame" overloaded=
"no">
13481 <autodoc>SetFrame(Frame frame)
</autodoc>
13483 <param name=
"frame" type=
"p.wxFrame" default=
""/>
13486 <method name=
"SetCanvas" overloaded=
"no">
13487 <autodoc>SetCanvas(PreviewCanvas canvas)
</autodoc>
13489 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13492 <method name=
"GetFrame" overloaded=
"no">
13493 <autodoc>GetFrame() -
> Frame
</autodoc>
13495 <method name=
"GetCanvas" overloaded=
"no">
13496 <autodoc>GetCanvas() -
> PreviewCanvas
</autodoc>
13498 <method name=
"PaintPage" overloaded=
"no">
13499 <autodoc>PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
13501 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13502 <param name=
"dc" type=
"r.wxDC" default=
""/>
13505 <method name=
"DrawBlankPage" overloaded=
"no">
13506 <autodoc>DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
13508 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13509 <param name=
"dc" type=
"r.wxDC" default=
""/>
13512 <method name=
"RenderPage" overloaded=
"no">
13513 <autodoc>RenderPage(int pageNum) -
> bool
</autodoc>
13515 <param name=
"pageNum" type=
"int" default=
""/>
13518 <method name=
"AdjustScrollbars" overloaded=
"no">
13519 <autodoc>AdjustScrollbars(PreviewCanvas canvas)
</autodoc>
13521 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13524 <method name=
"GetPrintDialogData" overloaded=
"no">
13525 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
13527 <method name=
"SetZoom" overloaded=
"no">
13528 <autodoc>SetZoom(int percent)
</autodoc>
13530 <param name=
"percent" type=
"int" default=
""/>
13533 <method name=
"GetZoom" overloaded=
"no">
13534 <autodoc>GetZoom() -
> int
</autodoc>
13536 <method name=
"GetMaxPage" overloaded=
"no">
13537 <autodoc>GetMaxPage() -
> int
</autodoc>
13539 <method name=
"GetMinPage" overloaded=
"no">
13540 <autodoc>GetMinPage() -
> int
</autodoc>
13542 <method name=
"Ok" overloaded=
"no">
13543 <autodoc>Ok() -
> bool
</autodoc>
13545 <method name=
"SetOk" overloaded=
"no">
13546 <autodoc>SetOk(bool ok)
</autodoc>
13548 <param name=
"ok" type=
"bool" default=
""/>
13551 <method name=
"Print" overloaded=
"no">
13552 <autodoc>Print(bool interactive) -
> bool
</autodoc>
13554 <param name=
"interactive" type=
"bool" default=
""/>
13557 <method name=
"DetermineScaling" overloaded=
"no">
13558 <autodoc>DetermineScaling()
</autodoc>
13560 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
13562 <class name=
"PyPrintPreview" oldname=
"wxPyPrintPreview" module=
"windows">
13563 <baseclass name=
"wxPrintPreview"/>
13564 <constructor name=
"PyPrintPreview" overloaded=
"no">
13565 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PyPrintPreview
</autodoc>
13567 <param name=
"printout" type=
"p.wxPyPrintout" default=
""/>
13568 <param name=
"printoutForPrinting" type=
"p.wxPyPrintout" default=
""/>
13569 <param name=
"data" type=
"p.wxPrintData" default=
"NULL"/>
13572 <method name=
"_setCallbackInfo" overloaded=
"no">
13573 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13575 <param name=
"self" type=
"p.PyObject" default=
""/>
13576 <param name=
"_class" type=
"p.PyObject" default=
""/>
13579 <method name=
"base_SetCurrentPage" overloaded=
"no">
13580 <autodoc>base_SetCurrentPage(int pageNum) -
> bool
</autodoc>
13582 <param name=
"pageNum" type=
"int" default=
""/>
13585 <method name=
"base_PaintPage" overloaded=
"no">
13586 <autodoc>base_PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
13588 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13589 <param name=
"dc" type=
"r.wxDC" default=
""/>
13592 <method name=
"base_DrawBlankPage" overloaded=
"no">
13593 <autodoc>base_DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
13595 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13596 <param name=
"dc" type=
"r.wxDC" default=
""/>
13599 <method name=
"base_RenderPage" overloaded=
"no">
13600 <autodoc>base_RenderPage(int pageNum) -
> bool
</autodoc>
13602 <param name=
"pageNum" type=
"int" default=
""/>
13605 <method name=
"base_SetZoom" overloaded=
"no">
13606 <autodoc>base_SetZoom(int percent)
</autodoc>
13608 <param name=
"percent" type=
"int" default=
""/>
13611 <method name=
"base_Print" overloaded=
"no">
13612 <autodoc>base_Print(bool interactive) -
> bool
</autodoc>
13614 <param name=
"interactive" type=
"bool" default=
""/>
13617 <method name=
"base_DetermineScaling" overloaded=
"no">
13618 <autodoc>base_DetermineScaling()
</autodoc>
13621 <class name=
"PyPreviewFrame" oldname=
"wxPyPreviewFrame" module=
"windows">
13622 <baseclass name=
"wxPreviewFrame"/>
13623 <constructor name=
"PyPreviewFrame" overloaded=
"no">
13624 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
13625 Size size=DefaultSize,
13626 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PyPreviewFrame
</autodoc>
13628 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13629 <param name=
"parent" type=
"p.wxFrame" default=
""/>
13630 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
13631 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13632 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13633 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13634 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyFrameNameStr"/>
13637 <method name=
"_setCallbackInfo" overloaded=
"no">
13638 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13640 <param name=
"self" type=
"p.PyObject" default=
""/>
13641 <param name=
"_class" type=
"p.PyObject" default=
""/>
13644 <method name=
"SetPreviewCanvas" overloaded=
"no">
13645 <autodoc>SetPreviewCanvas(PreviewCanvas canvas)
</autodoc>
13647 <param name=
"canvas" type=
"p.wxPreviewCanvas" default=
""/>
13650 <method name=
"SetControlBar" overloaded=
"no">
13651 <autodoc>SetControlBar(PreviewControlBar bar)
</autodoc>
13653 <param name=
"bar" type=
"p.wxPreviewControlBar" default=
""/>
13656 <method name=
"base_Initialize" overloaded=
"no">
13657 <autodoc>base_Initialize()
</autodoc>
13659 <method name=
"base_CreateCanvas" overloaded=
"no">
13660 <autodoc>base_CreateCanvas()
</autodoc>
13662 <method name=
"base_CreateControlBar" overloaded=
"no">
13663 <autodoc>base_CreateControlBar()
</autodoc>
13666 <class name=
"PyPreviewControlBar" oldname=
"wxPyPreviewControlBar" module=
"windows">
13667 <baseclass name=
"wxPreviewControlBar"/>
13668 <constructor name=
"PyPreviewControlBar" overloaded=
"no">
13669 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
13670 Point pos=DefaultPosition, Size size=DefaultSize,
13671 long style=
0, String name=PanelNameStr) -
> PyPreviewControlBar
</autodoc>
13673 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13674 <param name=
"buttons" type=
"long" default=
""/>
13675 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13676 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13677 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13678 <param name=
"style" type=
"long" default=
"0"/>
13679 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
13682 <method name=
"_setCallbackInfo" overloaded=
"no">
13683 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13685 <param name=
"self" type=
"p.PyObject" default=
""/>
13686 <param name=
"_class" type=
"p.PyObject" default=
""/>
13689 <method name=
"SetPrintPreview" overloaded=
"no">
13690 <autodoc>SetPrintPreview(PrintPreview preview)
</autodoc>
13692 <param name=
"preview" type=
"p.wxPrintPreview" default=
""/>
13695 <method name=
"base_CreateButtons" overloaded=
"no">
13696 <autodoc>base_CreateButtons()
</autodoc>
13698 <method name=
"base_SetZoomControl" overloaded=
"no">
13699 <autodoc>base_SetZoomControl(int zoom)
</autodoc>
13701 <param name=
"zoom" type=
"int" default=
""/>
13706 <module name=
"controls">
13707 <pythoncode> wx = core
</pythoncode>
13709 #---------------------------------------------------------------------------
13711 <class name=
"Button" oldname=
"wxButton" module=
"controls">
13712 <docstring>A button is a control that contains a text string, and is one of the most
13713 common elements of a GUI. It may be placed on a dialog box or panel, or
13714 indeed almost any other window.
</docstring>
13717 wx.BU_LEFT: Left-justifies the label. WIN32 only.
13718 wx.BU_TOP: Aligns the label to the top of the button. WIN32 only.
13719 wx.BU_RIGHT: Right-justifies the bitmap label. WIN32 only.
13720 wx.BU_BOTTOM: Aligns the label to the bottom of the button. WIN32 only.
13721 wx.BU_EXACTFIT: Creates the button as small as possible instead of making
13722 it of the standard size (which is the default behaviour.)
13725 EVT_BUTTON: Sent when the button is clicked.
13727 <baseclass name=
"wxControl"/>
13728 <constructor name=
"Button" overloaded=
"no">
13729 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
13730 Size size=DefaultSize, long style=
0,
13731 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> Button
</autodoc>
13732 <docstring>Create and show a button.
</docstring>
13734 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13735 <param name=
"id" type=
"int" default=
""/>
13736 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
13737 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13738 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13739 <param name=
"style" type=
"long" default=
"0"/>
13740 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13741 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyButtonNameStr"/>
13744 <constructor name=
"PreButton" overloaded=
"no">
13745 <autodoc>PreButton() -
> Button
</autodoc>
13746 <docstring>Precreate a Button for
2-phase creation.
</docstring>
13748 <method name=
"Create" overloaded=
"no">
13749 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
13750 Size size=DefaultSize, long style=
0,
13751 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> bool
</autodoc>
13752 <docstring>Acutally create the GUI Button for
2-phase creation.
</docstring>
13754 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13755 <param name=
"id" type=
"int" default=
""/>
13756 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
13757 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13758 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13759 <param name=
"style" type=
"long" default=
"0"/>
13760 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13761 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyButtonNameStr"/>
13764 <method name=
"SetDefault" overloaded=
"no">
13765 <autodoc>SetDefault()
</autodoc>
13766 <docstring>This sets the button to be the default item for the panel or dialog box.
</docstring>
13768 <staticmethod name=
"GetDefaultSize" overloaded=
"no">
13769 <autodoc>GetDefaultSize() -
> Size
</autodoc>
13772 <class name=
"BitmapButton" oldname=
"wxBitmapButton" module=
"controls">
13773 <docstring>A Button that contains a bitmap. A bitmap button can be supplied with a
13774 single bitmap, and wxWindows will draw all button states using this bitmap. If
13775 the application needs more control, additional bitmaps for the selected state,
13776 unpressed focused state, and greyed-out state may be supplied.
13778 <baseclass name=
"wxButton"/>
13779 <constructor name=
"BitmapButton" overloaded=
"no">
13780 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
13781 Size size=DefaultSize, long style=BU_AUTODRAW,
13782 Validator validator=DefaultValidator,
13783 String name=ButtonNameStr) -
> BitmapButton
</autodoc>
13784 <docstring>Create and show a button with a bitmap for the label.
</docstring>
13786 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13787 <param name=
"id" type=
"int" default=
""/>
13788 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13789 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13790 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13791 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
13792 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13793 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyButtonNameStr"/>
13796 <constructor name=
"PreBitmapButton" overloaded=
"no">
13797 <autodoc>PreBitmapButton() -
> BitmapButton
</autodoc>
13798 <docstring>Precreate a BitmapButton for
2-phase creation.
</docstring>
13800 <method name=
"Create" overloaded=
"no">
13801 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
13802 Size size=DefaultSize, long style=BU_AUTODRAW,
13803 Validator validator=DefaultValidator,
13804 String name=ButtonNameStr) -
> bool
</autodoc>
13805 <docstring>Acutally create the GUI BitmapButton for
2-phase creation.
</docstring>
13807 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13808 <param name=
"id" type=
"int" default=
""/>
13809 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13810 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13811 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13812 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
13813 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13814 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyButtonNameStr"/>
13817 <method name=
"GetBitmapLabel" overloaded=
"no">
13818 <autodoc>GetBitmapLabel() -
> Bitmap
</autodoc>
13819 <docstring>Returns the label bitmap (the one passed to the constructor).
</docstring>
13821 <method name=
"GetBitmapDisabled" overloaded=
"no">
13822 <autodoc>GetBitmapDisabled() -
> Bitmap
</autodoc>
13823 <docstring>Returns the bitmap for the disabled state.
</docstring>
13825 <method name=
"GetBitmapFocus" overloaded=
"no">
13826 <autodoc>GetBitmapFocus() -
> Bitmap
</autodoc>
13827 <docstring>Returns the bitmap for the focused state.
</docstring>
13829 <method name=
"GetBitmapSelected" overloaded=
"no">
13830 <autodoc>GetBitmapSelected() -
> Bitmap
</autodoc>
13831 <docstring>Returns the bitmap for the selected state.
</docstring>
13833 <method name=
"SetBitmapDisabled" overloaded=
"no">
13834 <autodoc>SetBitmapDisabled(Bitmap bitmap)
</autodoc>
13835 <docstring>Sets the bitmap for the disabled button appearance.
</docstring>
13837 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13840 <method name=
"SetBitmapFocus" overloaded=
"no">
13841 <autodoc>SetBitmapFocus(Bitmap bitmap)
</autodoc>
13842 <docstring>Sets the bitmap for the button appearance when it has the keyboard focus.
</docstring>
13844 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13847 <method name=
"SetBitmapSelected" overloaded=
"no">
13848 <autodoc>SetBitmapSelected(Bitmap bitmap)
</autodoc>
13849 <docstring>Sets the bitmap for the selected (depressed) button appearance.
</docstring>
13851 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13854 <method name=
"SetBitmapLabel" overloaded=
"no">
13855 <autodoc>SetBitmapLabel(Bitmap bitmap)
</autodoc>
13856 <docstring>Sets the bitmap label for the button. This is the bitmap used for the
13857 unselected state, and for all other states if no other bitmaps are provided.
</docstring>
13859 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
13862 <method name=
"SetMargins" overloaded=
"no">
13863 <autodoc>SetMargins(int x, int y)
</autodoc>
13865 <param name=
"x" type=
"int" default=
""/>
13866 <param name=
"y" type=
"int" default=
""/>
13869 <method name=
"GetMarginX" overloaded=
"no">
13870 <autodoc>GetMarginX() -
> int
</autodoc>
13872 <method name=
"GetMarginY" overloaded=
"no">
13873 <autodoc>GetMarginY() -
> int
</autodoc>
13877 #---------------------------------------------------------------------------
13879 <class name=
"CheckBox" oldname=
"wxCheckBox" module=
"controls">
13880 <baseclass name=
"wxControl"/>
13881 <constructor name=
"CheckBox" overloaded=
"no">
13882 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
13883 Size size=DefaultSize, long style=
0,
13884 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> CheckBox
</autodoc>
13886 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13887 <param name=
"id" type=
"int" default=
""/>
13888 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
13889 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13890 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13891 <param name=
"style" type=
"long" default=
"0"/>
13892 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13893 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyCheckBoxNameStr"/>
13896 <constructor name=
"PreCheckBox" overloaded=
"no">
13897 <autodoc>PreCheckBox() -
> CheckBox
</autodoc>
13899 <method name=
"Create" overloaded=
"no">
13900 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
13901 Size size=DefaultSize, long style=
0,
13902 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> bool
</autodoc>
13904 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13905 <param name=
"id" type=
"int" default=
""/>
13906 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
13907 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13908 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13909 <param name=
"style" type=
"long" default=
"0"/>
13910 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13911 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyCheckBoxNameStr"/>
13914 <method name=
"GetValue" overloaded=
"no">
13915 <autodoc>GetValue() -
> bool
</autodoc>
13917 <method name=
"IsChecked" overloaded=
"no">
13918 <autodoc>IsChecked() -
> bool
</autodoc>
13920 <method name=
"SetValue" overloaded=
"no">
13921 <autodoc>SetValue(bool state)
</autodoc>
13923 <param name=
"state" type=
"q(const).bool" default=
""/>
13926 <method name=
"Get3StateValue" overloaded=
"no">
13927 <autodoc>Get3StateValue() -
> int
</autodoc>
13929 <method name=
"Set3StateValue" overloaded=
"no">
13930 <autodoc>Set3StateValue(int state)
</autodoc>
13932 <param name=
"state" type=
"wxCheckBoxState" default=
""/>
13935 <method name=
"Is3State" overloaded=
"no">
13936 <autodoc>Is3State() -
> bool
</autodoc>
13938 <method name=
"Is3rdStateAllowedForUser" overloaded=
"no">
13939 <autodoc>Is3rdStateAllowedForUser() -
> bool
</autodoc>
13943 #---------------------------------------------------------------------------
13945 <class name=
"Choice" oldname=
"wxChoice" module=
"controls">
13946 <baseclass name=
"wxControlWithItems"/>
13947 <constructor name=
"Choice" overloaded=
"no">
13948 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13949 wxArrayString choices=wxPyEmptyStringArray,
13950 long style=
0, Validator validator=DefaultValidator,
13951 String name=ChoiceNameStr) -
> Choice
</autodoc>
13953 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13954 <param name=
"id" type=
"int" default=
""/>
13955 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13956 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13957 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
13958 <param name=
"style" type=
"long" default=
"0"/>
13959 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13960 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyChoiceNameStr"/>
13963 <constructor name=
"PreChoice" overloaded=
"no">
13964 <autodoc>PreChoice() -
> Choice
</autodoc>
13966 <method name=
"Create" overloaded=
"no">
13967 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13968 wxArrayString choices=wxPyEmptyStringArray,
13969 long style=
0, Validator validator=DefaultValidator,
13970 String name=ChoiceNameStr) -
> bool
</autodoc>
13972 <param name=
"parent" type=
"p.wxWindow" default=
""/>
13973 <param name=
"id" type=
"int" default=
""/>
13974 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
13975 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
13976 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
13977 <param name=
"style" type=
"long" default=
"0"/>
13978 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
13979 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyChoiceNameStr"/>
13982 <method name=
"GetColumns" overloaded=
"no">
13983 <autodoc>GetColumns() -
> int
</autodoc>
13985 <method name=
"SetColumns" overloaded=
"no">
13986 <autodoc>SetColumns(int n=
1)
</autodoc>
13988 <param name=
"n" type=
"q(const).int" default=
"1"/>
13991 <method name=
"SetSelection" overloaded=
"no">
13992 <autodoc>SetSelection(int n)
</autodoc>
13994 <param name=
"n" type=
"q(const).int" default=
""/>
13997 <method name=
"SetStringSelection" overloaded=
"no">
13998 <autodoc>SetStringSelection(String string)
</autodoc>
14000 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
14003 <method name=
"SetString" overloaded=
"no">
14004 <autodoc>SetString(int n, String s)
</autodoc>
14006 <param name=
"n" type=
"int" default=
""/>
14007 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
14012 #---------------------------------------------------------------------------
14014 <class name=
"ComboBox" oldname=
"wxComboBox" module=
"controls">
14015 <baseclass name=
"wxControl"/>
14016 <baseclass name=
"wxItemContainer"/>
14017 <constructor name=
"ComboBox" overloaded=
"no">
14018 <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
14019 Size size=DefaultSize,
14020 wxArrayString choices=wxPyEmptyStringArray,
14021 long style=
0, Validator validator=DefaultValidator,
14022 String name=ComboBoxNameStr) -
> ComboBox
</autodoc>
14024 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14025 <param name=
"id" type=
"int" default=
""/>
14026 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
14027 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14028 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14029 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14030 <param name=
"style" type=
"long" default=
"0"/>
14031 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14032 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyComboBoxNameStr"/>
14035 <constructor name=
"PreComboBox" overloaded=
"no">
14036 <autodoc>PreComboBox() -
> ComboBox
</autodoc>
14038 <method name=
"Create" overloaded=
"no">
14039 <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
14040 Size size=DefaultSize,
14041 wxArrayString choices=wxPyEmptyStringArray,
14042 long style=
0, Validator validator=DefaultValidator,
14043 String name=ComboBoxNameStr) -
> bool
</autodoc>
14045 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14046 <param name=
"id" type=
"int" default=
""/>
14047 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
14048 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14049 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14050 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14051 <param name=
"style" type=
"long" default=
"0"/>
14052 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14053 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyComboBoxNameStr"/>
14056 <method name=
"GetValue" overloaded=
"no">
14057 <autodoc>GetValue() -
> String
</autodoc>
14059 <method name=
"SetValue" overloaded=
"no">
14060 <autodoc>SetValue(String value)
</autodoc>
14062 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
14065 <method name=
"Copy" overloaded=
"no">
14066 <autodoc>Copy()
</autodoc>
14068 <method name=
"Cut" overloaded=
"no">
14069 <autodoc>Cut()
</autodoc>
14071 <method name=
"Paste" overloaded=
"no">
14072 <autodoc>Paste()
</autodoc>
14074 <method name=
"SetInsertionPoint" overloaded=
"no">
14075 <autodoc>SetInsertionPoint(long pos)
</autodoc>
14077 <param name=
"pos" type=
"long" default=
""/>
14080 <method name=
"GetInsertionPoint" overloaded=
"no">
14081 <autodoc>GetInsertionPoint() -
> long
</autodoc>
14083 <method name=
"GetLastPosition" overloaded=
"no">
14084 <autodoc>GetLastPosition() -
> long
</autodoc>
14086 <method name=
"Replace" overloaded=
"no">
14087 <autodoc>Replace(long from, long to, String value)
</autodoc>
14089 <param name=
"from" type=
"long" default=
""/>
14090 <param name=
"to" type=
"long" default=
""/>
14091 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
14094 <method name=
"SetSelection" overloaded=
"no">
14095 <autodoc>SetSelection(int n)
</autodoc>
14097 <param name=
"n" type=
"int" default=
""/>
14100 <method name=
"SetMark" overloaded=
"no">
14101 <autodoc>SetMark(long from, long to)
</autodoc>
14103 <param name=
"from" type=
"long" default=
""/>
14104 <param name=
"to" type=
"long" default=
""/>
14107 <method name=
"SetEditable" overloaded=
"no">
14108 <autodoc>SetEditable(bool editable)
</autodoc>
14110 <param name=
"editable" type=
"bool" default=
""/>
14113 <method name=
"SetInsertionPointEnd" overloaded=
"no">
14114 <autodoc>SetInsertionPointEnd()
</autodoc>
14116 <method name=
"Remove" overloaded=
"no">
14117 <autodoc>Remove(long from, long to)
</autodoc>
14119 <param name=
"from" type=
"long" default=
""/>
14120 <param name=
"to" type=
"long" default=
""/>
14125 #---------------------------------------------------------------------------
14127 <class name=
"Gauge" oldname=
"wxGauge" module=
"controls">
14128 <baseclass name=
"wxControl"/>
14129 <constructor name=
"Gauge" overloaded=
"no">
14130 <autodoc>__init__(Window parent, int id, int range, Point pos=DefaultPosition,
14131 Size size=DefaultSize, long style=GA_HORIZONTAL,
14132 Validator validator=DefaultValidator,
14133 String name=GaugeNameStr) -
> Gauge
</autodoc>
14135 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14136 <param name=
"id" type=
"int" default=
""/>
14137 <param name=
"range" type=
"int" default=
""/>
14138 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14139 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14140 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
14141 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14142 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyGaugeNameStr"/>
14145 <constructor name=
"PreGauge" overloaded=
"no">
14146 <autodoc>PreGauge() -
> Gauge
</autodoc>
14148 <method name=
"Create" overloaded=
"no">
14149 <autodoc>Create(Window parent, int id, int range, Point pos=DefaultPosition,
14150 Size size=DefaultSize, long style=GA_HORIZONTAL,
14151 Validator validator=DefaultValidator,
14152 String name=GaugeNameStr) -
> bool
</autodoc>
14154 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14155 <param name=
"id" type=
"int" default=
""/>
14156 <param name=
"range" type=
"int" default=
""/>
14157 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14158 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14159 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
14160 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14161 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyGaugeNameStr"/>
14164 <method name=
"SetRange" overloaded=
"no">
14165 <autodoc>SetRange(int range)
</autodoc>
14167 <param name=
"range" type=
"int" default=
""/>
14170 <method name=
"GetRange" overloaded=
"no">
14171 <autodoc>GetRange() -
> int
</autodoc>
14173 <method name=
"SetValue" overloaded=
"no">
14174 <autodoc>SetValue(int pos)
</autodoc>
14176 <param name=
"pos" type=
"int" default=
""/>
14179 <method name=
"GetValue" overloaded=
"no">
14180 <autodoc>GetValue() -
> int
</autodoc>
14182 <method name=
"IsVertical" overloaded=
"no">
14183 <autodoc>IsVertical() -
> bool
</autodoc>
14185 <method name=
"SetShadowWidth" overloaded=
"no">
14186 <autodoc>SetShadowWidth(int w)
</autodoc>
14188 <param name=
"w" type=
"int" default=
""/>
14191 <method name=
"GetShadowWidth" overloaded=
"no">
14192 <autodoc>GetShadowWidth() -
> int
</autodoc>
14194 <method name=
"SetBezelFace" overloaded=
"no">
14195 <autodoc>SetBezelFace(int w)
</autodoc>
14197 <param name=
"w" type=
"int" default=
""/>
14200 <method name=
"GetBezelFace" overloaded=
"no">
14201 <autodoc>GetBezelFace() -
> int
</autodoc>
14205 #---------------------------------------------------------------------------
14207 <class name=
"StaticBox" oldname=
"wxStaticBox" module=
"controls">
14208 <baseclass name=
"wxControl"/>
14209 <constructor name=
"StaticBox" overloaded=
"no">
14210 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
14211 Size size=DefaultSize, long style=
0,
14212 String name=StaticBoxNameStr) -
> StaticBox
</autodoc>
14214 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14215 <param name=
"id" type=
"int" default=
""/>
14216 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
14217 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14218 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14219 <param name=
"style" type=
"long" default=
"0"/>
14220 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticBoxNameStr"/>
14223 <constructor name=
"PreStaticBox" overloaded=
"no">
14224 <autodoc>PreStaticBox() -
> StaticBox
</autodoc>
14226 <method name=
"Create" overloaded=
"no">
14227 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
14228 Size size=DefaultSize, long style=
0,
14229 String name=StaticBoxNameStr) -
> bool
</autodoc>
14231 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14232 <param name=
"id" type=
"int" default=
""/>
14233 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
14234 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14235 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14236 <param name=
"style" type=
"long" default=
"0"/>
14237 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticBoxNameStr"/>
14242 #---------------------------------------------------------------------------
14244 <class name=
"StaticLine" oldname=
"wxStaticLine" module=
"controls">
14245 <baseclass name=
"wxControl"/>
14246 <constructor name=
"StaticLine" overloaded=
"no">
14247 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14248 long style=LI_HORIZONTAL,
14249 String name=StaticTextNameStr) -
> StaticLine
</autodoc>
14251 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14252 <param name=
"id" type=
"int" default=
""/>
14253 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14254 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14255 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
14256 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticTextNameStr"/>
14259 <constructor name=
"PreStaticLine" overloaded=
"no">
14260 <autodoc>PreStaticLine() -
> StaticLine
</autodoc>
14262 <method name=
"Create" overloaded=
"no">
14263 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14264 long style=LI_HORIZONTAL,
14265 String name=StaticTextNameStr) -
> bool
</autodoc>
14267 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14268 <param name=
"id" type=
"int" default=
""/>
14269 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14270 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14271 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
14272 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticTextNameStr"/>
14275 <method name=
"IsVertical" overloaded=
"no">
14276 <autodoc>IsVertical() -
> bool
</autodoc>
14278 <staticmethod name=
"GetDefaultSize" overloaded=
"no">
14279 <autodoc>GetDefaultSize() -
> int
</autodoc>
14283 #---------------------------------------------------------------------------
14285 <class name=
"StaticText" oldname=
"wxStaticText" module=
"controls">
14286 <baseclass name=
"wxControl"/>
14287 <constructor name=
"StaticText" overloaded=
"no">
14288 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
14289 Size size=DefaultSize, long style=
0,
14290 String name=StaticTextNameStr) -
> StaticText
</autodoc>
14292 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14293 <param name=
"id" type=
"int" default=
""/>
14294 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
14295 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14296 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14297 <param name=
"style" type=
"long" default=
"0"/>
14298 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticTextNameStr"/>
14301 <constructor name=
"PreStaticText" overloaded=
"no">
14302 <autodoc>PreStaticText() -
> StaticText
</autodoc>
14304 <method name=
"Create" overloaded=
"no">
14305 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
14306 Size size=DefaultSize, long style=
0,
14307 String name=StaticTextNameStr) -
> bool
</autodoc>
14309 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14310 <param name=
"id" type=
"int" default=
""/>
14311 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
14312 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14313 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14314 <param name=
"style" type=
"long" default=
"0"/>
14315 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticTextNameStr"/>
14320 #---------------------------------------------------------------------------
14322 <class name=
"StaticBitmap" oldname=
"wxStaticBitmap" module=
"controls">
14323 <baseclass name=
"wxControl"/>
14324 <constructor name=
"StaticBitmap" overloaded=
"no">
14325 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
14326 Size size=DefaultSize, long style=
0,
14327 String name=StaticBitmapNameStr) -
> StaticBitmap
</autodoc>
14329 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14330 <param name=
"id" type=
"int" default=
""/>
14331 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
14332 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14333 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14334 <param name=
"style" type=
"long" default=
"0"/>
14335 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticBitmapNameStr"/>
14338 <constructor name=
"PreStaticBitmap" overloaded=
"no">
14339 <autodoc>PreStaticBitmap() -
> StaticBitmap
</autodoc>
14341 <method name=
"Create" overloaded=
"no">
14342 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
14343 Size size=DefaultSize, long style=
0,
14344 String name=StaticBitmapNameStr) -
> bool
</autodoc>
14346 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14347 <param name=
"id" type=
"int" default=
""/>
14348 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
14349 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14350 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14351 <param name=
"style" type=
"long" default=
"0"/>
14352 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyStaticBitmapNameStr"/>
14355 <method name=
"GetBitmap" overloaded=
"no">
14356 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
14358 <method name=
"SetBitmap" overloaded=
"no">
14359 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
14361 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
14364 <method name=
"SetIcon" overloaded=
"no">
14365 <autodoc>SetIcon(Icon icon)
</autodoc>
14367 <param name=
"icon" type=
"r.q(const).wxIcon" default=
""/>
14372 #---------------------------------------------------------------------------
14374 <class name=
"ListBox" oldname=
"wxListBox" module=
"controls">
14375 <baseclass name=
"wxControlWithItems"/>
14376 <constructor name=
"ListBox" overloaded=
"no">
14377 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14378 wxArrayString choices=wxPyEmptyStringArray,
14379 long style=
0, Validator validator=DefaultValidator,
14380 String name=ListBoxNameStr) -
> ListBox
</autodoc>
14382 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14383 <param name=
"id" type=
"int" default=
""/>
14384 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14385 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14386 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14387 <param name=
"style" type=
"long" default=
"0"/>
14388 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14389 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListBoxNameStr"/>
14392 <constructor name=
"PreListBox" overloaded=
"no">
14393 <autodoc>PreListBox() -
> ListBox
</autodoc>
14395 <method name=
"Create" overloaded=
"no">
14396 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14397 wxArrayString choices=wxPyEmptyStringArray,
14398 long style=
0, Validator validator=DefaultValidator,
14399 String name=ListBoxNameStr) -
> bool
</autodoc>
14401 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14402 <param name=
"id" type=
"int" default=
""/>
14403 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14404 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14405 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14406 <param name=
"style" type=
"long" default=
"0"/>
14407 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14408 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListBoxNameStr"/>
14411 <method name=
"Insert" overloaded=
"no">
14412 <autodoc>Insert(String item, int pos, PyObject clientData=None)
</autodoc>
14414 <param name=
"item" type=
"r.q(const).wxString" default=
""/>
14415 <param name=
"pos" type=
"int" default=
""/>
14416 <param name=
"clientData" type=
"p.PyObject" default=
"NULL"/>
14419 <method name=
"InsertItems" overloaded=
"no">
14420 <autodoc>InsertItems(wxArrayString items, int pos)
</autodoc>
14422 <param name=
"items" type=
"r.q(const).wxArrayString" default=
""/>
14423 <param name=
"pos" type=
"int" default=
""/>
14426 <method name=
"Set" overloaded=
"no">
14427 <autodoc>Set(wxArrayString items)
</autodoc>
14429 <param name=
"items" type=
"r.q(const).wxArrayString" default=
""/>
14432 <method name=
"IsSelected" overloaded=
"no">
14433 <autodoc>IsSelected(int n) -
> bool
</autodoc>
14435 <param name=
"n" type=
"int" default=
""/>
14438 <method name=
"SetSelection" overloaded=
"no">
14439 <autodoc>SetSelection(int n, bool select=True)
</autodoc>
14441 <param name=
"n" type=
"int" default=
""/>
14442 <param name=
"select" type=
"bool" default=
"True"/>
14445 <method name=
"Select" overloaded=
"no">
14446 <autodoc>Select(int n)
</autodoc>
14448 <param name=
"n" type=
"int" default=
""/>
14451 <method name=
"Deselect" overloaded=
"no">
14452 <autodoc>Deselect(int n)
</autodoc>
14454 <param name=
"n" type=
"int" default=
""/>
14457 <method name=
"DeselectAll" overloaded=
"no">
14458 <autodoc>DeselectAll(int itemToLeaveSelected=-
1)
</autodoc>
14460 <param name=
"itemToLeaveSelected" type=
"int" default=
"-1"/>
14463 <method name=
"SetStringSelection" overloaded=
"no">
14464 <autodoc>SetStringSelection(String s, bool select=True) -
> bool
</autodoc>
14466 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
14467 <param name=
"select" type=
"bool" default=
"True"/>
14470 <method name=
"GetSelections" overloaded=
"no">
14471 <autodoc>GetSelections() -
> PyObject
</autodoc>
14473 <method name=
"SetFirstItem" overloaded=
"no">
14474 <autodoc>SetFirstItem(int n)
</autodoc>
14476 <param name=
"n" type=
"int" default=
""/>
14479 <method name=
"SetFirstItemStr" overloaded=
"no">
14480 <autodoc>SetFirstItemStr(String s)
</autodoc>
14482 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
14485 <method name=
"EnsureVisible" overloaded=
"no">
14486 <autodoc>EnsureVisible(int n)
</autodoc>
14488 <param name=
"n" type=
"int" default=
""/>
14491 <method name=
"AppendAndEnsureVisible" overloaded=
"no">
14492 <autodoc>AppendAndEnsureVisible(String s)
</autodoc>
14494 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
14497 <method name=
"IsSorted" overloaded=
"no">
14498 <autodoc>IsSorted() -
> bool
</autodoc>
14500 <method name=
"SetItemForegroundColour" overloaded=
"no">
14501 <autodoc>SetItemForegroundColour(int item, Colour c)
</autodoc>
14503 <param name=
"item" type=
"int" default=
""/>
14504 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
14507 <method name=
"SetItemBackgroundColour" overloaded=
"no">
14508 <autodoc>SetItemBackgroundColour(int item, Colour c)
</autodoc>
14510 <param name=
"item" type=
"int" default=
""/>
14511 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
14514 <method name=
"SetItemFont" overloaded=
"no">
14515 <autodoc>SetItemFont(int item, Font f)
</autodoc>
14517 <param name=
"item" type=
"int" default=
""/>
14518 <param name=
"f" type=
"r.q(const).wxFont" default=
""/>
14523 #---------------------------------------------------------------------------
14525 <class name=
"CheckListBox" oldname=
"wxCheckListBox" module=
"controls">
14526 <baseclass name=
"wxListBox"/>
14527 <constructor name=
"CheckListBox" overloaded=
"no">
14528 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14529 wxArrayString choices=wxPyEmptyStringArray,
14530 long style=
0, Validator validator=DefaultValidator,
14531 String name=ListBoxNameStr) -
> CheckListBox
</autodoc>
14533 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14534 <param name=
"id" type=
"int" default=
""/>
14535 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14536 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14537 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14538 <param name=
"style" type=
"long" default=
"0"/>
14539 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14540 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListBoxNameStr"/>
14543 <constructor name=
"PreCheckListBox" overloaded=
"no">
14544 <autodoc>PreCheckListBox() -
> CheckListBox
</autodoc>
14546 <method name=
"Create" overloaded=
"no">
14547 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
14548 wxArrayString choices=wxPyEmptyStringArray,
14549 long style=
0, Validator validator=DefaultValidator,
14550 String name=ListBoxNameStr) -
> bool
</autodoc>
14552 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14553 <param name=
"id" type=
"int" default=
""/>
14554 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14555 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14556 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
14557 <param name=
"style" type=
"long" default=
"0"/>
14558 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14559 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListBoxNameStr"/>
14562 <method name=
"IsChecked" overloaded=
"no">
14563 <autodoc>IsChecked(int index) -
> bool
</autodoc>
14565 <param name=
"index" type=
"int" default=
""/>
14568 <method name=
"Check" overloaded=
"no">
14569 <autodoc>Check(int index, int check=True)
</autodoc>
14571 <param name=
"index" type=
"int" default=
""/>
14572 <param name=
"check" type=
"int" default=
"True"/>
14575 <method name=
"GetItemHeight" overloaded=
"no">
14576 <autodoc>GetItemHeight() -
> int
</autodoc>
14578 <method name=
"HitTest" overloaded=
"no">
14579 <autodoc>HitTest(Point pt) -
> int
</autodoc>
14581 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
14584 <method name=
"HitTestXY" overloaded=
"no">
14585 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
14587 <param name=
"x" type=
"int" default=
""/>
14588 <param name=
"y" type=
"int" default=
""/>
14593 #---------------------------------------------------------------------------
14595 <class name=
"TextAttr" oldname=
"wxTextAttr" module=
"controls">
14596 <constructor name=
"TextAttr" overloaded=
"yes"/>
14597 <constructor name=
"TextAttr" overloaded=
"yes">
14598 <autodoc>__init__() -
> TextAttr
14599 __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
14600 int alignment=TEXT_ALIGNMENT_DEFAULT) -
> TextAttr
</autodoc>
14602 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
14603 <param name=
"colBack" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
14604 <param name=
"font" type=
"r.q(const).wxFont" default=
"wxNullFont"/>
14605 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
"wxTEXT_ALIGNMENT_DEFAULT"/>
14608 <destructor name=
"~wxTextAttr">
14609 <autodoc>__del__()
</autodoc>
14611 <method name=
"Init" overloaded=
"no">
14612 <autodoc>Init()
</autodoc>
14614 <method name=
"SetTextColour" overloaded=
"no">
14615 <autodoc>SetTextColour(Colour colText)
</autodoc>
14617 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
14620 <method name=
"SetBackgroundColour" overloaded=
"no">
14621 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
14623 <param name=
"colBack" type=
"r.q(const).wxColour" default=
""/>
14626 <method name=
"SetFont" overloaded=
"no">
14627 <autodoc>SetFont(Font font, long flags=TEXT_ATTR_FONT)
</autodoc>
14629 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
14630 <param name=
"flags" type=
"long" default=
"wxTEXT_ATTR_FONT"/>
14633 <method name=
"SetAlignment" overloaded=
"no">
14634 <autodoc>SetAlignment(int alignment)
</autodoc>
14636 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
""/>
14639 <method name=
"SetTabs" overloaded=
"no">
14640 <autodoc>SetTabs(wxArrayInt tabs)
</autodoc>
14642 <param name=
"tabs" type=
"r.q(const).wxArrayInt" default=
""/>
14645 <method name=
"SetLeftIndent" overloaded=
"no">
14646 <autodoc>SetLeftIndent(int indent)
</autodoc>
14648 <param name=
"indent" type=
"int" default=
""/>
14651 <method name=
"SetRightIndent" overloaded=
"no">
14652 <autodoc>SetRightIndent(int indent)
</autodoc>
14654 <param name=
"indent" type=
"int" default=
""/>
14657 <method name=
"SetFlags" overloaded=
"no">
14658 <autodoc>SetFlags(long flags)
</autodoc>
14660 <param name=
"flags" type=
"long" default=
""/>
14663 <method name=
"HasTextColour" overloaded=
"no">
14664 <autodoc>HasTextColour() -
> bool
</autodoc>
14666 <method name=
"HasBackgroundColour" overloaded=
"no">
14667 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
14669 <method name=
"HasFont" overloaded=
"no">
14670 <autodoc>HasFont() -
> bool
</autodoc>
14672 <method name=
"HasAlignment" overloaded=
"no">
14673 <autodoc>HasAlignment() -
> bool
</autodoc>
14675 <method name=
"HasTabs" overloaded=
"no">
14676 <autodoc>HasTabs() -
> bool
</autodoc>
14678 <method name=
"HasLeftIndent" overloaded=
"no">
14679 <autodoc>HasLeftIndent() -
> bool
</autodoc>
14681 <method name=
"HasRightIndent" overloaded=
"no">
14682 <autodoc>HasRightIndent() -
> bool
</autodoc>
14684 <method name=
"HasFlag" overloaded=
"no">
14685 <autodoc>HasFlag(long flag) -
> bool
</autodoc>
14687 <param name=
"flag" type=
"long" default=
""/>
14690 <method name=
"GetTextColour" overloaded=
"no">
14691 <autodoc>GetTextColour() -
> Colour
</autodoc>
14693 <method name=
"GetBackgroundColour" overloaded=
"no">
14694 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
14696 <method name=
"GetFont" overloaded=
"no">
14697 <autodoc>GetFont() -
> Font
</autodoc>
14699 <method name=
"GetAlignment" overloaded=
"no">
14700 <autodoc>GetAlignment() -
> int
</autodoc>
14702 <method name=
"GetTabs" overloaded=
"no">
14703 <autodoc>GetTabs() -
> wxArrayInt
</autodoc>
14705 <method name=
"GetLeftIndent" overloaded=
"no">
14706 <autodoc>GetLeftIndent() -
> long
</autodoc>
14708 <method name=
"GetRightIndent" overloaded=
"no">
14709 <autodoc>GetRightIndent() -
> long
</autodoc>
14711 <method name=
"GetFlags" overloaded=
"no">
14712 <autodoc>GetFlags() -
> long
</autodoc>
14714 <method name=
"IsDefault" overloaded=
"no">
14715 <autodoc>IsDefault() -
> bool
</autodoc>
14717 <staticmethod name=
"Combine" overloaded=
"no">
14718 <autodoc>Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -
> TextAttr
</autodoc>
14720 <param name=
"attr" type=
"r.q(const).wxTextAttr" default=
""/>
14721 <param name=
"attrDef" type=
"r.q(const).wxTextAttr" default=
""/>
14722 <param name=
"text" type=
"p.q(const).wxTextCtrl" default=
""/>
14726 <class name=
"TextCtrl" oldname=
"wxTextCtrl" module=
"controls">
14727 <baseclass name=
"wxControl"/>
14728 <constructor name=
"TextCtrl" overloaded=
"no">
14729 <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
14730 Size size=DefaultSize,
14731 long style=
0, Validator validator=DefaultValidator,
14732 String name=TextCtrlNameStr) -
> TextCtrl
</autodoc>
14734 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14735 <param name=
"id" type=
"int" default=
""/>
14736 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
14737 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14738 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14739 <param name=
"style" type=
"long" default=
"0"/>
14740 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14741 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTextCtrlNameStr"/>
14744 <constructor name=
"PreTextCtrl" overloaded=
"no">
14745 <autodoc>PreTextCtrl() -
> TextCtrl
</autodoc>
14747 <method name=
"Create" overloaded=
"no">
14748 <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
14749 Size size=DefaultSize,
14750 long style=
0, Validator validator=DefaultValidator,
14751 String name=TextCtrlNameStr) -
> bool
</autodoc>
14753 <param name=
"parent" type=
"p.wxWindow" default=
""/>
14754 <param name=
"id" type=
"int" default=
""/>
14755 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
14756 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
14757 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
14758 <param name=
"style" type=
"long" default=
"0"/>
14759 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
14760 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTextCtrlNameStr"/>
14763 <method name=
"GetValue" overloaded=
"no">
14764 <autodoc>GetValue() -
> String
</autodoc>
14766 <method name=
"SetValue" overloaded=
"no">
14767 <autodoc>SetValue(String value)
</autodoc>
14769 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
14772 <method name=
"GetRange" overloaded=
"no">
14773 <autodoc>GetRange(long from, long to) -
> String
</autodoc>
14775 <param name=
"from" type=
"long" default=
""/>
14776 <param name=
"to" type=
"long" default=
""/>
14779 <method name=
"GetLineLength" overloaded=
"no">
14780 <autodoc>GetLineLength(long lineNo) -
> int
</autodoc>
14782 <param name=
"lineNo" type=
"long" default=
""/>
14785 <method name=
"GetLineText" overloaded=
"no">
14786 <autodoc>GetLineText(long lineNo) -
> String
</autodoc>
14788 <param name=
"lineNo" type=
"long" default=
""/>
14791 <method name=
"GetNumberOfLines" overloaded=
"no">
14792 <autodoc>GetNumberOfLines() -
> int
</autodoc>
14794 <method name=
"IsModified" overloaded=
"no">
14795 <autodoc>IsModified() -
> bool
</autodoc>
14797 <method name=
"IsEditable" overloaded=
"no">
14798 <autodoc>IsEditable() -
> bool
</autodoc>
14800 <method name=
"IsSingleLine" overloaded=
"no">
14801 <autodoc>IsSingleLine() -
> bool
</autodoc>
14803 <method name=
"IsMultiLine" overloaded=
"no">
14804 <autodoc>IsMultiLine() -
> bool
</autodoc>
14806 <method name=
"GetSelection" overloaded=
"no">
14807 <autodoc>GetSelection() -
> (from, to)
</autodoc>
14808 <docstring>If the return values from and to are the same, there is no selection.
</docstring>
14810 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14811 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14814 <method name=
"GetStringSelection" overloaded=
"no">
14815 <autodoc>GetStringSelection() -
> String
</autodoc>
14817 <method name=
"Clear" overloaded=
"no">
14818 <autodoc>Clear()
</autodoc>
14820 <method name=
"Replace" overloaded=
"no">
14821 <autodoc>Replace(long from, long to, String value)
</autodoc>
14823 <param name=
"from" type=
"long" default=
""/>
14824 <param name=
"to" type=
"long" default=
""/>
14825 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
14828 <method name=
"Remove" overloaded=
"no">
14829 <autodoc>Remove(long from, long to)
</autodoc>
14831 <param name=
"from" type=
"long" default=
""/>
14832 <param name=
"to" type=
"long" default=
""/>
14835 <method name=
"LoadFile" overloaded=
"no">
14836 <autodoc>LoadFile(String file) -
> bool
</autodoc>
14838 <param name=
"file" type=
"r.q(const).wxString" default=
""/>
14841 <method name=
"SaveFile" overloaded=
"no">
14842 <autodoc>SaveFile(String file=EmptyString) -
> bool
</autodoc>
14844 <param name=
"file" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
14847 <method name=
"MarkDirty" overloaded=
"no">
14848 <autodoc>MarkDirty()
</autodoc>
14850 <method name=
"DiscardEdits" overloaded=
"no">
14851 <autodoc>DiscardEdits()
</autodoc>
14853 <method name=
"SetMaxLength" overloaded=
"no">
14854 <autodoc>SetMaxLength(unsigned long len)
</autodoc>
14856 <param name=
"len" type=
"unsigned long" default=
""/>
14859 <method name=
"WriteText" overloaded=
"no">
14860 <autodoc>WriteText(String text)
</autodoc>
14862 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
14865 <method name=
"AppendText" overloaded=
"no">
14866 <autodoc>AppendText(String text)
</autodoc>
14868 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
14871 <method name=
"EmulateKeyPress" overloaded=
"no">
14872 <autodoc>EmulateKeyPress(KeyEvent event) -
> bool
</autodoc>
14874 <param name=
"event" type=
"r.q(const).wxKeyEvent" default=
""/>
14877 <method name=
"SetStyle" overloaded=
"no">
14878 <autodoc>SetStyle(long start, long end, TextAttr style) -
> bool
</autodoc>
14880 <param name=
"start" type=
"long" default=
""/>
14881 <param name=
"end" type=
"long" default=
""/>
14882 <param name=
"style" type=
"r.q(const).wxTextAttr" default=
""/>
14885 <method name=
"GetStyle" overloaded=
"no">
14886 <autodoc>GetStyle(long position, TextAttr style) -
> bool
</autodoc>
14888 <param name=
"position" type=
"long" default=
""/>
14889 <param name=
"style" type=
"r.wxTextAttr" default=
""/>
14892 <method name=
"SetDefaultStyle" overloaded=
"no">
14893 <autodoc>SetDefaultStyle(TextAttr style) -
> bool
</autodoc>
14895 <param name=
"style" type=
"r.q(const).wxTextAttr" default=
""/>
14898 <method name=
"GetDefaultStyle" overloaded=
"no">
14899 <autodoc>GetDefaultStyle() -
> TextAttr
</autodoc>
14901 <method name=
"XYToPosition" overloaded=
"no">
14902 <autodoc>XYToPosition(long x, long y) -
> long
</autodoc>
14904 <param name=
"x" type=
"long" default=
""/>
14905 <param name=
"y" type=
"long" default=
""/>
14908 <method name=
"PositionToXY" overloaded=
"no">
14909 <autodoc>PositionToXY(long pos) -
> (x, y)
</autodoc>
14911 <param name=
"pos" type=
"long" default=
""/>
14912 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14913 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14916 <method name=
"ShowPosition" overloaded=
"no">
14917 <autodoc>ShowPosition(long pos)
</autodoc>
14919 <param name=
"pos" type=
"long" default=
""/>
14922 <method name=
"HitTest" overloaded=
"no">
14923 <autodoc>HitTest(Point pt) -
> (result, row, col)
</autodoc>
14924 <docstring>Find the character at position given in pixels.
14925 NB: pt is in device coords (not adjusted for the client area
14926 origin nor scrolling)
</docstring>
14928 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
14929 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14930 <param name=
"OUTPUT" type=
"p.long" default=
""/>
14933 <method name=
"Copy" overloaded=
"no">
14934 <autodoc>Copy()
</autodoc>
14936 <method name=
"Cut" overloaded=
"no">
14937 <autodoc>Cut()
</autodoc>
14939 <method name=
"Paste" overloaded=
"no">
14940 <autodoc>Paste()
</autodoc>
14942 <method name=
"CanCopy" overloaded=
"no">
14943 <autodoc>CanCopy() -
> bool
</autodoc>
14945 <method name=
"CanCut" overloaded=
"no">
14946 <autodoc>CanCut() -
> bool
</autodoc>
14948 <method name=
"CanPaste" overloaded=
"no">
14949 <autodoc>CanPaste() -
> bool
</autodoc>
14951 <method name=
"Undo" overloaded=
"no">
14952 <autodoc>Undo()
</autodoc>
14954 <method name=
"Redo" overloaded=
"no">
14955 <autodoc>Redo()
</autodoc>
14957 <method name=
"CanUndo" overloaded=
"no">
14958 <autodoc>CanUndo() -
> bool
</autodoc>
14960 <method name=
"CanRedo" overloaded=
"no">
14961 <autodoc>CanRedo() -
> bool
</autodoc>
14963 <method name=
"SetInsertionPoint" overloaded=
"no">
14964 <autodoc>SetInsertionPoint(long pos)
</autodoc>
14966 <param name=
"pos" type=
"long" default=
""/>
14969 <method name=
"SetInsertionPointEnd" overloaded=
"no">
14970 <autodoc>SetInsertionPointEnd()
</autodoc>
14972 <method name=
"GetInsertionPoint" overloaded=
"no">
14973 <autodoc>GetInsertionPoint() -
> long
</autodoc>
14975 <method name=
"GetLastPosition" overloaded=
"no">
14976 <autodoc>GetLastPosition() -
> long
</autodoc>
14978 <method name=
"SetSelection" overloaded=
"no">
14979 <autodoc>SetSelection(long from, long to)
</autodoc>
14981 <param name=
"from" type=
"long" default=
""/>
14982 <param name=
"to" type=
"long" default=
""/>
14985 <method name=
"SelectAll" overloaded=
"no">
14986 <autodoc>SelectAll()
</autodoc>
14988 <method name=
"SetEditable" overloaded=
"no">
14989 <autodoc>SetEditable(bool editable)
</autodoc>
14991 <param name=
"editable" type=
"bool" default=
""/>
14994 <method name=
"write" overloaded=
"no">
14995 <autodoc>write(String text)
</autodoc>
14997 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
15000 <method name=
"GetString" overloaded=
"no">
15001 <autodoc>GetString(long from, long to) -
> String
</autodoc>
15003 <param name=
"from" type=
"long" default=
""/>
15004 <param name=
"to" type=
"long" default=
""/>
15008 <class name=
"TextUrlEvent" oldname=
"wxTextUrlEvent" module=
"controls">
15009 <baseclass name=
"wxCommandEvent"/>
15010 <constructor name=
"TextUrlEvent" overloaded=
"no">
15011 <autodoc>__init__(int winid, MouseEvent evtMouse, long start, long end) -
> TextUrlEvent
</autodoc>
15013 <param name=
"winid" type=
"int" default=
""/>
15014 <param name=
"evtMouse" type=
"r.q(const).wxMouseEvent" default=
""/>
15015 <param name=
"start" type=
"long" default=
""/>
15016 <param name=
"end" type=
"long" default=
""/>
15019 <method name=
"GetMouseEvent" overloaded=
"no">
15020 <autodoc>GetMouseEvent() -
> MouseEvent
</autodoc>
15022 <method name=
"GetURLStart" overloaded=
"no">
15023 <autodoc>GetURLStart() -
> long
</autodoc>
15025 <method name=
"GetURLEnd" overloaded=
"no">
15026 <autodoc>GetURLEnd() -
> long
</autodoc>
15030 EVT_TEXT = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED,
1)
15031 EVT_TEXT_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER,
1)
15032 EVT_TEXT_URL = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL,
1)
15033 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN,
1)
15036 #---------------------------------------------------------------------------
15038 <class name=
"ScrollBar" oldname=
"wxScrollBar" module=
"controls">
15039 <baseclass name=
"wxControl"/>
15040 <constructor name=
"ScrollBar" overloaded=
"no">
15041 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
15042 Size size=DefaultSize, long style=SB_HORIZONTAL,
15043 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> ScrollBar
</autodoc>
15045 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15046 <param name=
"id" type=
"int" default=
"-1"/>
15047 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15048 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15049 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
15050 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15051 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyScrollBarNameStr"/>
15054 <constructor name=
"PreScrollBar" overloaded=
"no">
15055 <autodoc>PreScrollBar() -
> ScrollBar
</autodoc>
15057 <method name=
"Create" overloaded=
"no">
15058 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
15059 Size size=DefaultSize, long style=SB_HORIZONTAL,
15060 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> bool
</autodoc>
15062 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15063 <param name=
"id" type=
"int" default=
"-1"/>
15064 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15065 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15066 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
15067 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15068 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyScrollBarNameStr"/>
15071 <method name=
"GetThumbPosition" overloaded=
"no">
15072 <autodoc>GetThumbPosition() -
> int
</autodoc>
15074 <method name=
"GetThumbSize" overloaded=
"no">
15075 <autodoc>GetThumbSize() -
> int
</autodoc>
15077 <pythoncode> GetThumbLength = GetThumbSize
</pythoncode>
15078 <method name=
"GetPageSize" overloaded=
"no">
15079 <autodoc>GetPageSize() -
> int
</autodoc>
15081 <method name=
"GetRange" overloaded=
"no">
15082 <autodoc>GetRange() -
> int
</autodoc>
15084 <method name=
"IsVertical" overloaded=
"no">
15085 <autodoc>IsVertical() -
> bool
</autodoc>
15087 <method name=
"SetThumbPosition" overloaded=
"no">
15088 <autodoc>SetThumbPosition(int viewStart)
</autodoc>
15090 <param name=
"viewStart" type=
"int" default=
""/>
15093 <method name=
"SetScrollbar" overloaded=
"no">
15094 <autodoc>SetScrollbar(int position, int thumbSize, int range, int pageSize,
15095 bool refresh=True)
</autodoc>
15097 <param name=
"position" type=
"int" default=
""/>
15098 <param name=
"thumbSize" type=
"int" default=
""/>
15099 <param name=
"range" type=
"int" default=
""/>
15100 <param name=
"pageSize" type=
"int" default=
""/>
15101 <param name=
"refresh" type=
"bool" default=
"True"/>
15106 #---------------------------------------------------------------------------
15108 <class name=
"SpinButton" oldname=
"wxSpinButton" module=
"controls">
15109 <baseclass name=
"wxControl"/>
15110 <constructor name=
"SpinButton" overloaded=
"no">
15111 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
15112 Size size=DefaultSize, long style=SP_HORIZONTAL,
15113 String name=SPIN_BUTTON_NAME) -
> SpinButton
</autodoc>
15115 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15116 <param name=
"id" type=
"int" default=
"-1"/>
15117 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15118 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15119 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
15120 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySPIN_BUTTON_NAME"/>
15123 <constructor name=
"PreSpinButton" overloaded=
"no">
15124 <autodoc>PreSpinButton() -
> SpinButton
</autodoc>
15126 <method name=
"Create" overloaded=
"no">
15127 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
15128 Size size=DefaultSize, long style=SP_HORIZONTAL,
15129 String name=SPIN_BUTTON_NAME) -
> bool
</autodoc>
15131 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15132 <param name=
"id" type=
"int" default=
"-1"/>
15133 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15134 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15135 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
15136 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySPIN_BUTTON_NAME"/>
15139 <method name=
"GetValue" overloaded=
"no">
15140 <autodoc>GetValue() -
> int
</autodoc>
15142 <method name=
"GetMin" overloaded=
"no">
15143 <autodoc>GetMin() -
> int
</autodoc>
15145 <method name=
"GetMax" overloaded=
"no">
15146 <autodoc>GetMax() -
> int
</autodoc>
15148 <method name=
"SetValue" overloaded=
"no">
15149 <autodoc>SetValue(int val)
</autodoc>
15151 <param name=
"val" type=
"int" default=
""/>
15154 <method name=
"SetMin" overloaded=
"no">
15155 <autodoc>SetMin(int minVal)
</autodoc>
15157 <param name=
"minVal" type=
"int" default=
""/>
15160 <method name=
"SetMax" overloaded=
"no">
15161 <autodoc>SetMax(int maxVal)
</autodoc>
15163 <param name=
"maxVal" type=
"int" default=
""/>
15166 <method name=
"SetRange" overloaded=
"no">
15167 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
15169 <param name=
"minVal" type=
"int" default=
""/>
15170 <param name=
"maxVal" type=
"int" default=
""/>
15173 <method name=
"IsVertical" overloaded=
"no">
15174 <autodoc>IsVertical() -
> bool
</autodoc>
15177 <class name=
"SpinCtrl" oldname=
"wxSpinCtrl" module=
"controls">
15178 <baseclass name=
"wxControl"/>
15179 <constructor name=
"SpinCtrl" overloaded=
"no">
15180 <autodoc>__init__(Window parent, int id=-
1, String value=EmptyString,
15181 Point pos=DefaultPosition, Size size=DefaultSize,
15182 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
15183 int initial=
0, String name=SpinCtrlNameStr) -
> SpinCtrl
</autodoc>
15185 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15186 <param name=
"id" type=
"int" default=
"-1"/>
15187 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
15188 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15189 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15190 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
15191 <param name=
"min" type=
"int" default=
"0"/>
15192 <param name=
"max" type=
"int" default=
"100"/>
15193 <param name=
"initial" type=
"int" default=
"0"/>
15194 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySpinCtrlNameStr"/>
15197 <constructor name=
"PreSpinCtrl" overloaded=
"no">
15198 <autodoc>PreSpinCtrl() -
> SpinCtrl
</autodoc>
15200 <method name=
"Create" overloaded=
"no">
15201 <autodoc>Create(Window parent, int id=-
1, String value=EmptyString,
15202 Point pos=DefaultPosition, Size size=DefaultSize,
15203 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
15204 int initial=
0, String name=SpinCtrlNameStr) -
> bool
</autodoc>
15206 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15207 <param name=
"id" type=
"int" default=
"-1"/>
15208 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
15209 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15210 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15211 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
15212 <param name=
"min" type=
"int" default=
"0"/>
15213 <param name=
"max" type=
"int" default=
"100"/>
15214 <param name=
"initial" type=
"int" default=
"0"/>
15215 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySpinCtrlNameStr"/>
15218 <method name=
"GetValue" overloaded=
"no">
15219 <autodoc>GetValue() -
> int
</autodoc>
15221 <method name=
"SetValue" overloaded=
"no">
15222 <autodoc>SetValue(int value)
</autodoc>
15224 <param name=
"value" type=
"int" default=
""/>
15227 <method name=
"SetValueString" overloaded=
"no">
15228 <autodoc>SetValueString(String text)
</autodoc>
15230 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
15233 <method name=
"SetRange" overloaded=
"no">
15234 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
15236 <param name=
"minVal" type=
"int" default=
""/>
15237 <param name=
"maxVal" type=
"int" default=
""/>
15240 <method name=
"GetMin" overloaded=
"no">
15241 <autodoc>GetMin() -
> int
</autodoc>
15243 <method name=
"GetMax" overloaded=
"no">
15244 <autodoc>GetMax() -
> int
</autodoc>
15246 <method name=
"SetSelection" overloaded=
"no">
15247 <autodoc>SetSelection(long from, long to)
</autodoc>
15249 <param name=
"from" type=
"long" default=
""/>
15250 <param name=
"to" type=
"long" default=
""/>
15254 <class name=
"SpinEvent" oldname=
"wxSpinEvent" module=
"controls">
15255 <baseclass name=
"wxNotifyEvent"/>
15256 <constructor name=
"SpinEvent" overloaded=
"no">
15257 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> SpinEvent
</autodoc>
15259 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
15260 <param name=
"winid" type=
"int" default=
"0"/>
15263 <method name=
"GetPosition" overloaded=
"no">
15264 <autodoc>GetPosition() -
> int
</autodoc>
15266 <method name=
"SetPosition" overloaded=
"no">
15267 <autodoc>SetPosition(int pos)
</autodoc>
15269 <param name=
"pos" type=
"int" default=
""/>
15274 EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP,
1)
15275 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN,
1)
15276 EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK,
1)
15277 EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED,
1)
15280 #---------------------------------------------------------------------------
15282 <class name=
"RadioBox" oldname=
"wxRadioBox" module=
"controls">
15283 <baseclass name=
"wxControl"/>
15284 <constructor name=
"RadioBox" overloaded=
"no">
15285 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15286 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
15287 int majorDimension=
0,
15288 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
15289 String name=RadioBoxNameStr) -
> RadioBox
</autodoc>
15291 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15292 <param name=
"id" type=
"int" default=
""/>
15293 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15294 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15295 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15296 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
15297 <param name=
"majorDimension" type=
"int" default=
"0"/>
15298 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
15299 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15300 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyRadioBoxNameStr"/>
15303 <constructor name=
"PreRadioBox" overloaded=
"no">
15304 <autodoc>PreRadioBox() -
> RadioBox
</autodoc>
15306 <method name=
"Create" overloaded=
"no">
15307 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15308 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
15309 int majorDimension=
0,
15310 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
15311 String name=RadioBoxNameStr) -
> bool
</autodoc>
15313 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15314 <param name=
"id" type=
"int" default=
""/>
15315 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15316 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15317 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15318 <param name=
"choices" type=
"r.q(const).wxArrayString" default=
"wxPyEmptyStringArray"/>
15319 <param name=
"majorDimension" type=
"int" default=
"0"/>
15320 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
15321 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15322 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyRadioBoxNameStr"/>
15325 <method name=
"SetSelection" overloaded=
"no">
15326 <autodoc>SetSelection(int n)
</autodoc>
15328 <param name=
"n" type=
"int" default=
""/>
15331 <method name=
"GetSelection" overloaded=
"no">
15332 <autodoc>GetSelection() -
> int
</autodoc>
15334 <method name=
"GetStringSelection" overloaded=
"no">
15335 <autodoc>GetStringSelection() -
> String
</autodoc>
15337 <method name=
"SetStringSelection" overloaded=
"no">
15338 <autodoc>SetStringSelection(String s) -
> bool
</autodoc>
15340 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
15343 <method name=
"GetCount" overloaded=
"no">
15344 <autodoc>GetCount() -
> int
</autodoc>
15346 <method name=
"FindString" overloaded=
"no">
15347 <autodoc>FindString(String s) -
> int
</autodoc>
15349 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
15352 <method name=
"GetString" overloaded=
"no">
15353 <autodoc>GetString(int n) -
> String
</autodoc>
15355 <param name=
"n" type=
"int" default=
""/>
15358 <method name=
"SetString" overloaded=
"no">
15359 <autodoc>SetString(int n, String label)
</autodoc>
15361 <param name=
"n" type=
"int" default=
""/>
15362 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15365 <pythoncode> GetItemLabel = GetString
</pythoncode>
15366 <pythoncode> SetItemLabel = SetString
</pythoncode>
15367 <method name=
"EnableItem" overloaded=
"no">
15368 <autodoc>EnableItem(int n, bool enable=True)
</autodoc>
15370 <param name=
"n" type=
"int" default=
""/>
15371 <param name=
"enable" type=
"bool" default=
"True"/>
15374 <method name=
"ShowItem" overloaded=
"no">
15375 <autodoc>ShowItem(int n, bool show=True)
</autodoc>
15377 <param name=
"n" type=
"int" default=
""/>
15378 <param name=
"show" type=
"bool" default=
"True"/>
15381 <method name=
"GetColumnCount" overloaded=
"no">
15382 <autodoc>GetColumnCount() -
> int
</autodoc>
15384 <method name=
"GetRowCount" overloaded=
"no">
15385 <autodoc>GetRowCount() -
> int
</autodoc>
15387 <method name=
"GetNextItem" overloaded=
"no">
15388 <autodoc>GetNextItem(int item, int dir, long style) -
> int
</autodoc>
15390 <param name=
"item" type=
"int" default=
""/>
15391 <param name=
"dir" type=
"wxDirection" default=
""/>
15392 <param name=
"style" type=
"long" default=
""/>
15397 #---------------------------------------------------------------------------
15399 <class name=
"RadioButton" oldname=
"wxRadioButton" module=
"controls">
15400 <baseclass name=
"wxControl"/>
15401 <constructor name=
"RadioButton" overloaded=
"no">
15402 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15403 Size size=DefaultSize, long style=
0,
15404 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> RadioButton
</autodoc>
15406 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15407 <param name=
"id" type=
"int" default=
""/>
15408 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15409 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15410 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15411 <param name=
"style" type=
"long" default=
"0"/>
15412 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15413 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyRadioButtonNameStr"/>
15416 <constructor name=
"PreRadioButton" overloaded=
"no">
15417 <autodoc>PreRadioButton() -
> RadioButton
</autodoc>
15419 <method name=
"Create" overloaded=
"no">
15420 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15421 Size size=DefaultSize, long style=
0,
15422 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> bool
</autodoc>
15424 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15425 <param name=
"id" type=
"int" default=
""/>
15426 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15427 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15428 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15429 <param name=
"style" type=
"long" default=
"0"/>
15430 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15431 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyRadioButtonNameStr"/>
15434 <method name=
"GetValue" overloaded=
"no">
15435 <autodoc>GetValue() -
> bool
</autodoc>
15437 <method name=
"SetValue" overloaded=
"no">
15438 <autodoc>SetValue(bool value)
</autodoc>
15440 <param name=
"value" type=
"bool" default=
""/>
15445 #---------------------------------------------------------------------------
15447 <class name=
"Slider" oldname=
"wxSlider" module=
"controls">
15448 <baseclass name=
"wxControl"/>
15449 <constructor name=
"Slider" overloaded=
"no">
15450 <autodoc>__init__(Window parent, int id, int value, int minValue, int maxValue,
15451 Point pos=DefaultPosition, Size size=DefaultSize,
15452 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
15453 String name=SliderNameStr) -
> Slider
</autodoc>
15455 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15456 <param name=
"id" type=
"int" default=
""/>
15457 <param name=
"value" type=
"int" default=
""/>
15458 <param name=
"minValue" type=
"int" default=
""/>
15459 <param name=
"maxValue" type=
"int" default=
""/>
15460 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15461 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15462 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
15463 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15464 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySliderNameStr"/>
15467 <constructor name=
"PreSlider" overloaded=
"no">
15468 <autodoc>PreSlider() -
> Slider
</autodoc>
15470 <method name=
"Create" overloaded=
"no">
15471 <autodoc>Create(Window parent, int id, int value, int minValue, int maxValue,
15472 Point pos=DefaultPosition, Size size=DefaultSize,
15473 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
15474 String name=SliderNameStr) -
> bool
</autodoc>
15476 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15477 <param name=
"id" type=
"int" default=
""/>
15478 <param name=
"value" type=
"int" default=
""/>
15479 <param name=
"minValue" type=
"int" default=
""/>
15480 <param name=
"maxValue" type=
"int" default=
""/>
15481 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15482 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15483 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
15484 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15485 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySliderNameStr"/>
15488 <method name=
"GetValue" overloaded=
"no">
15489 <autodoc>GetValue() -
> int
</autodoc>
15491 <method name=
"SetValue" overloaded=
"no">
15492 <autodoc>SetValue(int value)
</autodoc>
15494 <param name=
"value" type=
"int" default=
""/>
15497 <method name=
"SetRange" overloaded=
"no">
15498 <autodoc>SetRange(int minValue, int maxValue)
</autodoc>
15500 <param name=
"minValue" type=
"int" default=
""/>
15501 <param name=
"maxValue" type=
"int" default=
""/>
15504 <method name=
"GetMin" overloaded=
"no">
15505 <autodoc>GetMin() -
> int
</autodoc>
15507 <method name=
"GetMax" overloaded=
"no">
15508 <autodoc>GetMax() -
> int
</autodoc>
15510 <method name=
"SetMin" overloaded=
"no">
15511 <autodoc>SetMin(int minValue)
</autodoc>
15513 <param name=
"minValue" type=
"int" default=
""/>
15516 <method name=
"SetMax" overloaded=
"no">
15517 <autodoc>SetMax(int maxValue)
</autodoc>
15519 <param name=
"maxValue" type=
"int" default=
""/>
15522 <method name=
"SetLineSize" overloaded=
"no">
15523 <autodoc>SetLineSize(int lineSize)
</autodoc>
15525 <param name=
"lineSize" type=
"int" default=
""/>
15528 <method name=
"SetPageSize" overloaded=
"no">
15529 <autodoc>SetPageSize(int pageSize)
</autodoc>
15531 <param name=
"pageSize" type=
"int" default=
""/>
15534 <method name=
"GetLineSize" overloaded=
"no">
15535 <autodoc>GetLineSize() -
> int
</autodoc>
15537 <method name=
"GetPageSize" overloaded=
"no">
15538 <autodoc>GetPageSize() -
> int
</autodoc>
15540 <method name=
"SetThumbLength" overloaded=
"no">
15541 <autodoc>SetThumbLength(int lenPixels)
</autodoc>
15543 <param name=
"lenPixels" type=
"int" default=
""/>
15546 <method name=
"GetThumbLength" overloaded=
"no">
15547 <autodoc>GetThumbLength() -
> int
</autodoc>
15549 <method name=
"SetTickFreq" overloaded=
"no">
15550 <autodoc>SetTickFreq(int n, int pos=
1)
</autodoc>
15552 <param name=
"n" type=
"int" default=
""/>
15553 <param name=
"pos" type=
"int" default=
"1"/>
15556 <method name=
"GetTickFreq" overloaded=
"no">
15557 <autodoc>GetTickFreq() -
> int
</autodoc>
15559 <method name=
"ClearTicks" overloaded=
"no">
15560 <autodoc>ClearTicks()
</autodoc>
15562 <method name=
"SetTick" overloaded=
"no">
15563 <autodoc>SetTick(int tickPos)
</autodoc>
15565 <param name=
"tickPos" type=
"int" default=
""/>
15568 <method name=
"ClearSel" overloaded=
"no">
15569 <autodoc>ClearSel()
</autodoc>
15571 <method name=
"GetSelEnd" overloaded=
"no">
15572 <autodoc>GetSelEnd() -
> int
</autodoc>
15574 <method name=
"GetSelStart" overloaded=
"no">
15575 <autodoc>GetSelStart() -
> int
</autodoc>
15577 <method name=
"SetSelection" overloaded=
"no">
15578 <autodoc>SetSelection(int min, int max)
</autodoc>
15580 <param name=
"min" type=
"int" default=
""/>
15581 <param name=
"max" type=
"int" default=
""/>
15586 #---------------------------------------------------------------------------
15589 EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED,
1)
15591 <class name=
"ToggleButton" oldname=
"wxToggleButton" module=
"controls">
15592 <baseclass name=
"wxControl"/>
15593 <constructor name=
"ToggleButton" overloaded=
"no">
15594 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15595 Size size=DefaultSize, long style=
0,
15596 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> ToggleButton
</autodoc>
15598 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15599 <param name=
"id" type=
"int" default=
""/>
15600 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15601 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15602 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15603 <param name=
"style" type=
"long" default=
"0"/>
15604 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15605 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyToggleButtonNameStr"/>
15608 <constructor name=
"PreToggleButton" overloaded=
"no">
15609 <autodoc>PreToggleButton() -
> ToggleButton
</autodoc>
15611 <method name=
"Create" overloaded=
"no">
15612 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15613 Size size=DefaultSize, long style=
0,
15614 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> bool
</autodoc>
15616 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15617 <param name=
"id" type=
"int" default=
""/>
15618 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15619 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15620 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15621 <param name=
"style" type=
"long" default=
"0"/>
15622 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
15623 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyToggleButtonNameStr"/>
15626 <method name=
"SetValue" overloaded=
"no">
15627 <autodoc>SetValue(bool value)
</autodoc>
15629 <param name=
"value" type=
"bool" default=
""/>
15632 <method name=
"GetValue" overloaded=
"no">
15633 <autodoc>GetValue() -
> bool
</autodoc>
15635 <method name=
"SetLabel" overloaded=
"no">
15636 <autodoc>SetLabel(String label)
</autodoc>
15638 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
15643 #---------------------------------------------------------------------------
15645 <class name=
"BookCtrl" oldname=
"wxBookCtrl" module=
"controls">
15646 <baseclass name=
"wxControl"/>
15647 <method name=
"GetPageCount" overloaded=
"no">
15648 <autodoc>GetPageCount() -
> size_t
</autodoc>
15650 <method name=
"GetPage" overloaded=
"no">
15651 <autodoc>GetPage(size_t n) -
> Window
</autodoc>
15653 <param name=
"n" type=
"size_t" default=
""/>
15656 <method name=
"GetSelection" overloaded=
"no">
15657 <autodoc>GetSelection() -
> int
</autodoc>
15659 <method name=
"SetPageText" overloaded=
"no">
15660 <autodoc>SetPageText(size_t n, String strText) -
> bool
</autodoc>
15662 <param name=
"n" type=
"size_t" default=
""/>
15663 <param name=
"strText" type=
"r.q(const).wxString" default=
""/>
15666 <method name=
"GetPageText" overloaded=
"no">
15667 <autodoc>GetPageText(size_t n) -
> String
</autodoc>
15669 <param name=
"n" type=
"size_t" default=
""/>
15672 <method name=
"SetImageList" overloaded=
"no">
15673 <autodoc>SetImageList(ImageList imageList)
</autodoc>
15675 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
15678 <method name=
"AssignImageList" overloaded=
"no">
15679 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
15681 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
15684 <method name=
"GetImageList" overloaded=
"no">
15685 <autodoc>GetImageList() -
> ImageList
</autodoc>
15687 <method name=
"GetPageImage" overloaded=
"no">
15688 <autodoc>GetPageImage(size_t n) -
> int
</autodoc>
15690 <param name=
"n" type=
"size_t" default=
""/>
15693 <method name=
"SetPageImage" overloaded=
"no">
15694 <autodoc>SetPageImage(size_t n, int imageId) -
> bool
</autodoc>
15696 <param name=
"n" type=
"size_t" default=
""/>
15697 <param name=
"imageId" type=
"int" default=
""/>
15700 <method name=
"SetPageSize" overloaded=
"no">
15701 <autodoc>SetPageSize(Size size)
</autodoc>
15703 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
15706 <method name=
"CalcSizeFromPage" overloaded=
"no">
15707 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
15709 <param name=
"sizePage" type=
"r.q(const).wxSize" default=
""/>
15712 <method name=
"DeletePage" overloaded=
"no">
15713 <autodoc>DeletePage(size_t n) -
> bool
</autodoc>
15715 <param name=
"n" type=
"size_t" default=
""/>
15718 <method name=
"RemovePage" overloaded=
"no">
15719 <autodoc>RemovePage(size_t n) -
> bool
</autodoc>
15721 <param name=
"n" type=
"size_t" default=
""/>
15724 <method name=
"DeleteAllPages" overloaded=
"no">
15725 <autodoc>DeleteAllPages() -
> bool
</autodoc>
15727 <method name=
"AddPage" overloaded=
"no">
15728 <autodoc>AddPage(Window page, String text, bool select=False, int imageId=-
1) -
> bool
</autodoc>
15730 <param name=
"page" type=
"p.wxWindow" default=
""/>
15731 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
15732 <param name=
"select" type=
"bool" default=
"False"/>
15733 <param name=
"imageId" type=
"int" default=
"-1"/>
15736 <method name=
"InsertPage" overloaded=
"no">
15737 <autodoc>InsertPage(size_t n, Window page, String text, bool select=False,
15738 int imageId=-
1) -
> bool
</autodoc>
15740 <param name=
"n" type=
"size_t" default=
""/>
15741 <param name=
"page" type=
"p.wxWindow" default=
""/>
15742 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
15743 <param name=
"select" type=
"bool" default=
"False"/>
15744 <param name=
"imageId" type=
"int" default=
"-1"/>
15747 <method name=
"SetSelection" overloaded=
"no">
15748 <autodoc>SetSelection(size_t n) -
> int
</autodoc>
15750 <param name=
"n" type=
"size_t" default=
""/>
15753 <method name=
"AdvanceSelection" overloaded=
"no">
15754 <autodoc>AdvanceSelection(bool forward=True)
</autodoc>
15756 <param name=
"forward" type=
"bool" default=
"True"/>
15760 <class name=
"BookCtrlEvent" oldname=
"wxBookCtrlEvent" module=
"controls">
15761 <baseclass name=
"wxNotifyEvent"/>
15762 <constructor name=
"BookCtrlEvent" overloaded=
"no">
15763 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
15764 int nOldSel=-
1) -
> BookCtrlEvent
</autodoc>
15766 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
15767 <param name=
"id" type=
"int" default=
"0"/>
15768 <param name=
"nSel" type=
"int" default=
"-1"/>
15769 <param name=
"nOldSel" type=
"int" default=
"-1"/>
15772 <method name=
"GetSelection" overloaded=
"no">
15773 <autodoc>GetSelection() -
> int
</autodoc>
15775 <method name=
"SetSelection" overloaded=
"no">
15776 <autodoc>SetSelection(int nSel)
</autodoc>
15778 <param name=
"nSel" type=
"int" default=
""/>
15781 <method name=
"GetOldSelection" overloaded=
"no">
15782 <autodoc>GetOldSelection() -
> int
</autodoc>
15784 <method name=
"SetOldSelection" overloaded=
"no">
15785 <autodoc>SetOldSelection(int nOldSel)
</autodoc>
15787 <param name=
"nOldSel" type=
"int" default=
""/>
15792 #---------------------------------------------------------------------------
15794 <class name=
"Notebook" oldname=
"wxNotebook" module=
"controls">
15795 <baseclass name=
"wxBookCtrl"/>
15796 <constructor name=
"Notebook" overloaded=
"no">
15797 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15798 long style=
0, String name=NOTEBOOK_NAME) -
> Notebook
</autodoc>
15800 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15801 <param name=
"id" type=
"int" default=
""/>
15802 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15803 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15804 <param name=
"style" type=
"long" default=
"0"/>
15805 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyNOTEBOOK_NAME"/>
15808 <constructor name=
"PreNotebook" overloaded=
"no">
15809 <autodoc>PreNotebook() -
> Notebook
</autodoc>
15811 <method name=
"Create" overloaded=
"no">
15812 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15813 long style=
0, String name=NOTEBOOK_NAME) -
> bool
</autodoc>
15815 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15816 <param name=
"id" type=
"int" default=
""/>
15817 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15818 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15819 <param name=
"style" type=
"long" default=
"0"/>
15820 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyNOTEBOOK_NAME"/>
15823 <method name=
"GetRowCount" overloaded=
"no">
15824 <autodoc>GetRowCount() -
> int
</autodoc>
15826 <method name=
"SetPadding" overloaded=
"no">
15827 <autodoc>SetPadding(Size padding)
</autodoc>
15829 <param name=
"padding" type=
"r.q(const).wxSize" default=
""/>
15832 <method name=
"SetTabSize" overloaded=
"no">
15833 <autodoc>SetTabSize(Size sz)
</autodoc>
15835 <param name=
"sz" type=
"r.q(const).wxSize" default=
""/>
15838 <method name=
"HitTest" overloaded=
"no">
15839 <autodoc>HitTest(Point pt) -
> (tab, where)
</autodoc>
15840 <docstring>Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
</docstring>
15842 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
15843 <param name=
"OUTPUT" type=
"p.long" default=
""/>
15846 <method name=
"CalcSizeFromPage" overloaded=
"no">
15847 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
15849 <param name=
"sizePage" type=
"r.q(const).wxSize" default=
""/>
15853 <class name=
"NotebookEvent" oldname=
"wxNotebookEvent" module=
"controls">
15854 <baseclass name=
"wxBookCtrlEvent"/>
15855 <constructor name=
"NotebookEvent" overloaded=
"no">
15856 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
15857 int nOldSel=-
1) -
> NotebookEvent
</autodoc>
15859 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
15860 <param name=
"id" type=
"int" default=
"0"/>
15861 <param name=
"nSel" type=
"int" default=
"-1"/>
15862 <param name=
"nOldSel" type=
"int" default=
"-1"/>
15867 # wxNotebook events
15868 EVT_NOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
1 )
15869 EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING,
1 )
15872 #----------------------------------------------------------------------------
15874 class NotebookPage(wx.Panel):
15876 There is an old (and apparently unsolvable) bug when placing a
15877 window with a nonstandard background colour in a wxNotebook on
15878 wxGTK, as the notbooks's background colour would always be used
15879 when the window is refreshed. The solution is to place a panel in
15880 the notbook and the coloured window on the panel, sized to cover
15881 the panel. This simple class does that for you, just put an
15882 instance of this in the notebook and make your regular window a
15883 child of this one and it will handle the resize for you.
15885 def __init__(self, parent, id=-
1,
15886 pos=wx.DefaultPosition, size=wx.DefaultSize,
15887 style=wx.TAB_TRAVERSAL,
name="panel"):
15888 wx.Panel.__init__(self, parent, id, pos, size, style, name)
15890 EVT_SIZE(self, self.OnSize)
15892 def OnSize(self, evt):
15893 if self.child is None:
15894 children = self.GetChildren()
15896 self.child = children[
0]
15898 self.child.SetPosition((
0,
0))
15899 self.child.SetSize(self.GetSize())
15903 #---------------------------------------------------------------------------
15905 <class name=
"Listbook" oldname=
"wxListbook" module=
"controls">
15906 <baseclass name=
"wxBookCtrl"/>
15907 <constructor name=
"Listbook" overloaded=
"no">
15908 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15909 long style=
0, String name=EmptyString) -
> Listbook
</autodoc>
15911 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15912 <param name=
"id" type=
"int" default=
""/>
15913 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15914 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15915 <param name=
"style" type=
"long" default=
"0"/>
15916 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
15919 <constructor name=
"PreListbook" overloaded=
"no">
15920 <autodoc>PreListbook() -
> Listbook
</autodoc>
15922 <method name=
"Create" overloaded=
"no">
15923 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15924 long style=
0, String name=EmptyString) -
> bool
</autodoc>
15926 <param name=
"parent" type=
"p.wxWindow" default=
""/>
15927 <param name=
"id" type=
"int" default=
""/>
15928 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
15929 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
15930 <param name=
"style" type=
"long" default=
"0"/>
15931 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
15934 <method name=
"IsVertical" overloaded=
"no">
15935 <autodoc>IsVertical() -
> bool
</autodoc>
15938 <class name=
"ListbookEvent" oldname=
"wxListbookEvent" module=
"controls">
15939 <baseclass name=
"wxBookCtrlEvent"/>
15940 <constructor name=
"ListbookEvent" overloaded=
"no">
15941 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
15942 int nOldSel=-
1) -
> ListbookEvent
</autodoc>
15944 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
15945 <param name=
"id" type=
"int" default=
"0"/>
15946 <param name=
"nSel" type=
"int" default=
"-1"/>
15947 <param name=
"nOldSel" type=
"int" default=
"-1"/>
15952 EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED,
1 )
15953 EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING,
1 )
15956 #---------------------------------------------------------------------------
15958 <class name=
"BookCtrlSizer" oldname=
"wxBookCtrlSizer" module=
"controls">
15959 <baseclass name=
"wxSizer"/>
15960 <constructor name=
"BookCtrlSizer" overloaded=
"no">
15961 <autodoc>__init__(BookCtrl nb) -
> BookCtrlSizer
</autodoc>
15963 <param name=
"nb" type=
"p.wxBookCtrl" default=
""/>
15966 <method name=
"RecalcSizes" overloaded=
"no">
15967 <autodoc>RecalcSizes()
</autodoc>
15969 <method name=
"CalcMin" overloaded=
"no">
15970 <autodoc>CalcMin() -
> Size
</autodoc>
15972 <method name=
"GetControl" overloaded=
"no">
15973 <autodoc>GetControl() -
> BookCtrl
</autodoc>
15976 <class name=
"NotebookSizer" oldname=
"wxNotebookSizer" module=
"controls">
15977 <baseclass name=
"wxSizer"/>
15978 <constructor name=
"NotebookSizer" overloaded=
"no">
15979 <autodoc>__init__(Notebook nb) -
> NotebookSizer
</autodoc>
15981 <param name=
"nb" type=
"p.wxNotebook" default=
""/>
15984 <method name=
"RecalcSizes" overloaded=
"no">
15985 <autodoc>RecalcSizes()
</autodoc>
15987 <method name=
"CalcMin" overloaded=
"no">
15988 <autodoc>CalcMin() -
> Size
</autodoc>
15990 <method name=
"GetNotebook" overloaded=
"no">
15991 <autodoc>GetNotebook() -
> Notebook
</autodoc>
15995 #---------------------------------------------------------------------------
15997 <class name=
"ToolBarToolBase" oldname=
"wxToolBarToolBase" module=
"controls">
15998 <baseclass name=
"wxObject"/>
15999 <method name=
"GetId" overloaded=
"no">
16000 <autodoc>GetId() -
> int
</autodoc>
16002 <method name=
"GetControl" overloaded=
"no">
16003 <autodoc>GetControl() -
> Control
</autodoc>
16005 <method name=
"GetToolBar" overloaded=
"no">
16006 <autodoc>GetToolBar() -
> ToolBarBase
</autodoc>
16008 <method name=
"IsButton" overloaded=
"no">
16009 <autodoc>IsButton() -
> int
</autodoc>
16011 <method name=
"IsControl" overloaded=
"no">
16012 <autodoc>IsControl() -
> int
</autodoc>
16014 <method name=
"IsSeparator" overloaded=
"no">
16015 <autodoc>IsSeparator() -
> int
</autodoc>
16017 <method name=
"GetStyle" overloaded=
"no">
16018 <autodoc>GetStyle() -
> int
</autodoc>
16020 <method name=
"GetKind" overloaded=
"no">
16021 <autodoc>GetKind() -
> int
</autodoc>
16023 <method name=
"IsEnabled" overloaded=
"no">
16024 <autodoc>IsEnabled() -
> bool
</autodoc>
16026 <method name=
"IsToggled" overloaded=
"no">
16027 <autodoc>IsToggled() -
> bool
</autodoc>
16029 <method name=
"CanBeToggled" overloaded=
"no">
16030 <autodoc>CanBeToggled() -
> bool
</autodoc>
16032 <method name=
"GetNormalBitmap" overloaded=
"no">
16033 <autodoc>GetNormalBitmap() -
> Bitmap
</autodoc>
16035 <method name=
"GetDisabledBitmap" overloaded=
"no">
16036 <autodoc>GetDisabledBitmap() -
> Bitmap
</autodoc>
16038 <method name=
"GetBitmap" overloaded=
"no">
16039 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
16041 <method name=
"GetLabel" overloaded=
"no">
16042 <autodoc>GetLabel() -
> String
</autodoc>
16044 <method name=
"GetShortHelp" overloaded=
"no">
16045 <autodoc>GetShortHelp() -
> String
</autodoc>
16047 <method name=
"GetLongHelp" overloaded=
"no">
16048 <autodoc>GetLongHelp() -
> String
</autodoc>
16050 <method name=
"Enable" overloaded=
"no">
16051 <autodoc>Enable(bool enable) -
> bool
</autodoc>
16053 <param name=
"enable" type=
"bool" default=
""/>
16056 <method name=
"Toggle" overloaded=
"no">
16057 <autodoc>Toggle()
</autodoc>
16059 <method name=
"SetToggle" overloaded=
"no">
16060 <autodoc>SetToggle(bool toggle) -
> bool
</autodoc>
16062 <param name=
"toggle" type=
"bool" default=
""/>
16065 <method name=
"SetShortHelp" overloaded=
"no">
16066 <autodoc>SetShortHelp(String help) -
> bool
</autodoc>
16068 <param name=
"help" type=
"r.q(const).wxString" default=
""/>
16071 <method name=
"SetLongHelp" overloaded=
"no">
16072 <autodoc>SetLongHelp(String help) -
> bool
</autodoc>
16074 <param name=
"help" type=
"r.q(const).wxString" default=
""/>
16077 <method name=
"SetNormalBitmap" overloaded=
"no">
16078 <autodoc>SetNormalBitmap(Bitmap bmp)
</autodoc>
16080 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
16083 <method name=
"SetDisabledBitmap" overloaded=
"no">
16084 <autodoc>SetDisabledBitmap(Bitmap bmp)
</autodoc>
16086 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
16089 <method name=
"SetLabel" overloaded=
"no">
16090 <autodoc>SetLabel(String label)
</autodoc>
16092 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
16095 <method name=
"Detach" overloaded=
"no">
16096 <autodoc>Detach()
</autodoc>
16098 <method name=
"Attach" overloaded=
"no">
16099 <autodoc>Attach(ToolBarBase tbar)
</autodoc>
16101 <param name=
"tbar" type=
"p.wxToolBarBase" default=
""/>
16104 <method name=
"GetClientData" overloaded=
"no">
16105 <autodoc>GetClientData() -
> PyObject
</autodoc>
16107 <method name=
"SetClientData" overloaded=
"no">
16108 <autodoc>SetClientData(PyObject clientData)
</autodoc>
16110 <param name=
"clientData" type=
"p.PyObject" default=
""/>
16114 GetBitmap1 = GetNormalBitmap
16115 GetBitmap2 = GetDisabledBitmap
16116 SetBitmap1 = SetNormalBitmap
16117 SetBitmap2 = SetDisabledBitmap
16120 <class name=
"ToolBarBase" oldname=
"wxToolBarBase" module=
"controls">
16121 <baseclass name=
"wxControl"/>
16122 <method name=
"DoAddTool" overloaded=
"no">
16123 <autodoc>DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
16124 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
16125 String longHelp=EmptyString,
16126 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
16128 <param name=
"id" type=
"int" default=
""/>
16129 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
16130 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
16131 <param name=
"bmpDisabled" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
16132 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
16133 <param name=
"shortHelp" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
16134 <param name=
"longHelp" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
16135 <param name=
"clientData" type=
"p.PyObject" default=
"NULL"/>
16138 <method name=
"DoInsertTool" overloaded=
"no">
16139 <autodoc>DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
16140 int kind=ITEM_NORMAL,
16141 String shortHelp=EmptyString, String longHelp=EmptyString,
16142 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
16144 <param name=
"pos" type=
"size_t" default=
""/>
16145 <param name=
"id" type=
"int" default=
""/>
16146 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
16147 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
16148 <param name=
"bmpDisabled" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
16149 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
16150 <param name=
"shortHelp" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
16151 <param name=
"longHelp" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
16152 <param name=
"clientData" type=
"p.PyObject" default=
"NULL"/>
16156 # These match the original Add methods for this class, kept for
16157 # backwards compatibility with versions
< 2.3.3.
16160 def AddTool(self, id, bitmap,
16161 pushedBitmap = wx.NullBitmap,
16164 shortHelpString = '',
16165 longHelpString = '') :
16166 '''Old style method to add a tool to the toolbar.'''
16167 kind = wx.ITEM_NORMAL
16168 if isToggle: kind = wx.ITEM_CHECK
16169 return self.DoAddTool(id, '', bitmap, pushedBitmap, kind,
16170 shortHelpString, longHelpString, clientData)
16172 def AddSimpleTool(self, id, bitmap,
16173 shortHelpString = '',
16174 longHelpString = '',
16176 '''Old style method to add a tool to the toolbar.'''
16177 kind = wx.ITEM_NORMAL
16178 if isToggle: kind = wx.ITEM_CHECK
16179 return self.DoAddTool(id, '', bitmap, wx.NullBitmap, kind,
16180 shortHelpString, longHelpString, None)
16182 def InsertTool(self, pos, id, bitmap,
16183 pushedBitmap = wx.NullBitmap,
16186 shortHelpString = '',
16187 longHelpString = ''):
16188 '''Old style method to insert a tool in the toolbar.'''
16189 kind = wx.ITEM_NORMAL
16190 if isToggle: kind = wx.ITEM_CHECK
16191 return self.DoInsertTool(pos, id, '', bitmap, pushedBitmap, kind,
16192 shortHelpString, longHelpString, clientData)
16194 def InsertSimpleTool(self, pos, id, bitmap,
16195 shortHelpString = '',
16196 longHelpString = '',
16198 '''Old style method to insert a tool in the toolbar.'''
16199 kind = wx.ITEM_NORMAL
16200 if isToggle: kind = wx.ITEM_CHECK
16201 return self.DoInsertTool(pos, id, '', bitmap, wx.NullBitmap, kind,
16202 shortHelpString, longHelpString, None)
16205 # The following are the new toolbar Add methods starting with
16206 #
2.3.3. They are renamed to have 'Label' in the name so as to be
16207 # able to keep backwards compatibility with using the above
16208 # methods. Eventually these should migrate to be the methods used
16209 # primarily and lose the 'Label' in the name...
16211 def AddLabelTool(self, id, label, bitmap,
16212 bmpDisabled = wx.NullBitmap,
16213 kind = wx.ITEM_NORMAL,
16214 shortHelp = '', longHelp = '',
16215 clientData = None):
16217 The full AddTool() function.
16219 If bmpDisabled is wx.NullBitmap, a shadowed version of the normal bitmap
16220 is created and used as the disabled image.
16222 return self.DoAddTool(id, label, bitmap, bmpDisabled, kind,
16223 shortHelp, longHelp, clientData)
16226 def InsertLabelTool(self, pos, id, label, bitmap,
16227 bmpDisabled = wx.NullBitmap,
16228 kind = wx.ITEM_NORMAL,
16229 shortHelp = '', longHelp = '',
16230 clientData = None):
16232 Insert the new tool at the given position, if pos == GetToolsCount(), it
16233 is equivalent to AddTool()
16235 return self.DoInsertTool(pos, id, label, bitmap, bmpDisabled, kind,
16236 shortHelp, longHelp, clientData)
16238 def AddCheckLabelTool(self, id, label, bitmap,
16239 bmpDisabled = wx.NullBitmap,
16240 shortHelp = '', longHelp = '',
16241 clientData = None):
16242 '''Add a check tool, i.e. a tool which can be toggled'''
16243 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_CHECK,
16244 shortHelp, longHelp, clientData)
16246 def AddRadioLabelTool(self, id, label, bitmap,
16247 bmpDisabled = wx.NullBitmap,
16248 shortHelp = '', longHelp = '',
16249 clientData = None):
16251 Add a radio tool, i.e. a tool which can be toggled and releases any
16252 other toggled radio tools in the same group when it happens
16254 return self.DoAddTool(id, label, bitmap, bmpDisabled, wx.ITEM_RADIO,
16255 shortHelp, longHelp, clientData)
16258 # For consistency with the backwards compatible methods above, here are
16259 # some non-'Label' versions of the Check and Radio methods
16260 def AddCheckTool(self, id, bitmap,
16261 bmpDisabled = wx.NullBitmap,
16262 shortHelp = '', longHelp = '',
16263 clientData = None):
16264 '''Add a check tool, i.e. a tool which can be toggled'''
16265 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_CHECK,
16266 shortHelp, longHelp, clientData)
16268 def AddRadioTool(self, id, bitmap,
16269 bmpDisabled = wx.NullBitmap,
16270 shortHelp = '', longHelp = '',
16271 clientData = None):
16273 Add a radio tool, i.e. a tool which can be toggled and releases any
16274 other toggled radio tools in the same group when it happens
16276 return self.DoAddTool(id, '', bitmap, bmpDisabled, wx.ITEM_RADIO,
16277 shortHelp, longHelp, clientData)
16279 <method name=
"AddToolItem" overloaded=
"no">
16280 <autodoc>AddToolItem(ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
16282 <param name=
"tool" type=
"p.wxToolBarToolBase" default=
""/>
16285 <method name=
"InsertToolItem" overloaded=
"no">
16286 <autodoc>InsertToolItem(size_t pos, ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
16288 <param name=
"pos" type=
"size_t" default=
""/>
16289 <param name=
"tool" type=
"p.wxToolBarToolBase" default=
""/>
16292 <method name=
"AddControl" overloaded=
"no">
16293 <autodoc>AddControl(Control control) -
> ToolBarToolBase
</autodoc>
16295 <param name=
"control" type=
"p.wxControl" default=
""/>
16298 <method name=
"InsertControl" overloaded=
"no">
16299 <autodoc>InsertControl(size_t pos, Control control) -
> ToolBarToolBase
</autodoc>
16301 <param name=
"pos" type=
"size_t" default=
""/>
16302 <param name=
"control" type=
"p.wxControl" default=
""/>
16305 <method name=
"FindControl" overloaded=
"no">
16306 <autodoc>FindControl(int id) -
> Control
</autodoc>
16308 <param name=
"id" type=
"int" default=
""/>
16311 <method name=
"AddSeparator" overloaded=
"no">
16312 <autodoc>AddSeparator() -
> ToolBarToolBase
</autodoc>
16314 <method name=
"InsertSeparator" overloaded=
"no">
16315 <autodoc>InsertSeparator(size_t pos) -
> ToolBarToolBase
</autodoc>
16317 <param name=
"pos" type=
"size_t" default=
""/>
16320 <method name=
"RemoveTool" overloaded=
"no">
16321 <autodoc>RemoveTool(int id) -
> ToolBarToolBase
</autodoc>
16323 <param name=
"id" type=
"int" default=
""/>
16326 <method name=
"DeleteToolByPos" overloaded=
"no">
16327 <autodoc>DeleteToolByPos(size_t pos) -
> bool
</autodoc>
16329 <param name=
"pos" type=
"size_t" default=
""/>
16332 <method name=
"DeleteTool" overloaded=
"no">
16333 <autodoc>DeleteTool(int id) -
> bool
</autodoc>
16335 <param name=
"id" type=
"int" default=
""/>
16338 <method name=
"ClearTools" overloaded=
"no">
16339 <autodoc>ClearTools()
</autodoc>
16341 <method name=
"Realize" overloaded=
"no">
16342 <autodoc>Realize() -
> bool
</autodoc>
16344 <method name=
"EnableTool" overloaded=
"no">
16345 <autodoc>EnableTool(int id, bool enable)
</autodoc>
16347 <param name=
"id" type=
"int" default=
""/>
16348 <param name=
"enable" type=
"bool" default=
""/>
16351 <method name=
"ToggleTool" overloaded=
"no">
16352 <autodoc>ToggleTool(int id, bool toggle)
</autodoc>
16354 <param name=
"id" type=
"int" default=
""/>
16355 <param name=
"toggle" type=
"bool" default=
""/>
16358 <method name=
"SetToggle" overloaded=
"no">
16359 <autodoc>SetToggle(int id, bool toggle)
</autodoc>
16361 <param name=
"id" type=
"int" default=
""/>
16362 <param name=
"toggle" type=
"bool" default=
""/>
16365 <method name=
"GetToolClientData" overloaded=
"no">
16366 <autodoc>GetToolClientData(int id) -
> PyObject
</autodoc>
16368 <param name=
"id" type=
"int" default=
""/>
16371 <method name=
"SetToolClientData" overloaded=
"no">
16372 <autodoc>SetToolClientData(int id, PyObject clientData)
</autodoc>
16374 <param name=
"id" type=
"int" default=
""/>
16375 <param name=
"clientData" type=
"p.PyObject" default=
""/>
16378 <method name=
"GetToolPos" overloaded=
"no">
16379 <autodoc>GetToolPos(int id) -
> int
</autodoc>
16381 <param name=
"id" type=
"int" default=
""/>
16384 <method name=
"GetToolState" overloaded=
"no">
16385 <autodoc>GetToolState(int id) -
> bool
</autodoc>
16387 <param name=
"id" type=
"int" default=
""/>
16390 <method name=
"GetToolEnabled" overloaded=
"no">
16391 <autodoc>GetToolEnabled(int id) -
> bool
</autodoc>
16393 <param name=
"id" type=
"int" default=
""/>
16396 <method name=
"SetToolShortHelp" overloaded=
"no">
16397 <autodoc>SetToolShortHelp(int id, String helpString)
</autodoc>
16399 <param name=
"id" type=
"int" default=
""/>
16400 <param name=
"helpString" type=
"r.q(const).wxString" default=
""/>
16403 <method name=
"GetToolShortHelp" overloaded=
"no">
16404 <autodoc>GetToolShortHelp(int id) -
> String
</autodoc>
16406 <param name=
"id" type=
"int" default=
""/>
16409 <method name=
"SetToolLongHelp" overloaded=
"no">
16410 <autodoc>SetToolLongHelp(int id, String helpString)
</autodoc>
16412 <param name=
"id" type=
"int" default=
""/>
16413 <param name=
"helpString" type=
"r.q(const).wxString" default=
""/>
16416 <method name=
"GetToolLongHelp" overloaded=
"no">
16417 <autodoc>GetToolLongHelp(int id) -
> String
</autodoc>
16419 <param name=
"id" type=
"int" default=
""/>
16422 <method name=
"SetMarginsXY" overloaded=
"no">
16423 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
16425 <param name=
"x" type=
"int" default=
""/>
16426 <param name=
"y" type=
"int" default=
""/>
16429 <method name=
"SetMargins" overloaded=
"no">
16430 <autodoc>SetMargins(Size size)
</autodoc>
16432 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
16435 <method name=
"SetToolPacking" overloaded=
"no">
16436 <autodoc>SetToolPacking(int packing)
</autodoc>
16438 <param name=
"packing" type=
"int" default=
""/>
16441 <method name=
"SetToolSeparation" overloaded=
"no">
16442 <autodoc>SetToolSeparation(int separation)
</autodoc>
16444 <param name=
"separation" type=
"int" default=
""/>
16447 <method name=
"GetToolMargins" overloaded=
"no">
16448 <autodoc>GetToolMargins() -
> Size
</autodoc>
16450 <method name=
"GetMargins" overloaded=
"no">
16451 <autodoc>GetMargins() -
> Size
</autodoc>
16453 <method name=
"GetToolPacking" overloaded=
"no">
16454 <autodoc>GetToolPacking() -
> int
</autodoc>
16456 <method name=
"GetToolSeparation" overloaded=
"no">
16457 <autodoc>GetToolSeparation() -
> int
</autodoc>
16459 <method name=
"SetRows" overloaded=
"no">
16460 <autodoc>SetRows(int nRows)
</autodoc>
16462 <param name=
"nRows" type=
"int" default=
""/>
16465 <method name=
"SetMaxRowsCols" overloaded=
"no">
16466 <autodoc>SetMaxRowsCols(int rows, int cols)
</autodoc>
16468 <param name=
"rows" type=
"int" default=
""/>
16469 <param name=
"cols" type=
"int" default=
""/>
16472 <method name=
"GetMaxRows" overloaded=
"no">
16473 <autodoc>GetMaxRows() -
> int
</autodoc>
16475 <method name=
"GetMaxCols" overloaded=
"no">
16476 <autodoc>GetMaxCols() -
> int
</autodoc>
16478 <method name=
"SetToolBitmapSize" overloaded=
"no">
16479 <autodoc>SetToolBitmapSize(Size size)
</autodoc>
16481 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
16484 <method name=
"GetToolBitmapSize" overloaded=
"no">
16485 <autodoc>GetToolBitmapSize() -
> Size
</autodoc>
16487 <method name=
"GetToolSize" overloaded=
"no">
16488 <autodoc>GetToolSize() -
> Size
</autodoc>
16490 <method name=
"FindToolForPosition" overloaded=
"no">
16491 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
16493 <param name=
"x" type=
"int" default=
""/>
16494 <param name=
"y" type=
"int" default=
""/>
16497 <method name=
"FindById" overloaded=
"no">
16498 <autodoc>FindById(int toolid) -
> ToolBarToolBase
</autodoc>
16500 <param name=
"toolid" type=
"int" default=
""/>
16503 <method name=
"IsVertical" overloaded=
"no">
16504 <autodoc>IsVertical() -
> bool
</autodoc>
16507 <class name=
"ToolBar" oldname=
"wxToolBar" module=
"controls">
16508 <baseclass name=
"wxToolBarBase"/>
16509 <constructor name=
"ToolBar" overloaded=
"no">
16510 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
16511 long style=wxNO_BORDER|wxTB_HORIZONTAL,
16512 String name=wxPyToolBarNameStr) -
> ToolBar
</autodoc>
16514 <param name=
"parent" type=
"p.wxWindow" default=
""/>
16515 <param name=
"id" type=
"int" default=
""/>
16516 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
16517 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
16518 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
16519 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyToolBarNameStr"/>
16522 <constructor name=
"PreToolBar" overloaded=
"no">
16523 <autodoc>PreToolBar() -
> ToolBar
</autodoc>
16525 <method name=
"Create" overloaded=
"no">
16526 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
16527 long style=wxNO_BORDER|wxTB_HORIZONTAL,
16528 String name=wxPyToolBarNameStr) -
> bool
</autodoc>
16530 <param name=
"parent" type=
"p.wxWindow" default=
""/>
16531 <param name=
"id" type=
"int" default=
""/>
16532 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
16533 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
16534 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
16535 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyToolBarNameStr"/>
16538 <method name=
"FindToolForPosition" overloaded=
"no">
16539 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
16541 <param name=
"x" type=
"int" default=
""/>
16542 <param name=
"y" type=
"int" default=
""/>
16547 #---------------------------------------------------------------------------
16550 #---------------------------------------------------------------------------
16552 <class name=
"ListItemAttr" oldname=
"wxListItemAttr" module=
"controls">
16553 <constructor name=
"ListItemAttr" overloaded=
"no">
16554 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
16555 Font font=wxNullFont) -
> ListItemAttr
</autodoc>
16557 <param name=
"colText" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
16558 <param name=
"colBack" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
16559 <param name=
"font" type=
"r.q(const).wxFont" default=
"wxNullFont"/>
16562 <method name=
"SetTextColour" overloaded=
"no">
16563 <autodoc>SetTextColour(Colour colText)
</autodoc>
16565 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
16568 <method name=
"SetBackgroundColour" overloaded=
"no">
16569 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
16571 <param name=
"colBack" type=
"r.q(const).wxColour" default=
""/>
16574 <method name=
"SetFont" overloaded=
"no">
16575 <autodoc>SetFont(Font font)
</autodoc>
16577 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
16580 <method name=
"HasTextColour" overloaded=
"no">
16581 <autodoc>HasTextColour() -
> bool
</autodoc>
16583 <method name=
"HasBackgroundColour" overloaded=
"no">
16584 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
16586 <method name=
"HasFont" overloaded=
"no">
16587 <autodoc>HasFont() -
> bool
</autodoc>
16589 <method name=
"GetTextColour" overloaded=
"no">
16590 <autodoc>GetTextColour() -
> Colour
</autodoc>
16592 <method name=
"GetBackgroundColour" overloaded=
"no">
16593 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
16595 <method name=
"GetFont" overloaded=
"no">
16596 <autodoc>GetFont() -
> Font
</autodoc>
16598 <method name=
"Destroy" overloaded=
"no">
16599 <autodoc>Destroy()
</autodoc>
16603 #---------------------------------------------------------------------------
16605 <class name=
"ListItem" oldname=
"wxListItem" module=
"controls">
16606 <baseclass name=
"wxObject"/>
16607 <constructor name=
"ListItem" overloaded=
"no">
16608 <autodoc>__init__() -
> ListItem
</autodoc>
16610 <destructor name=
"~wxListItem">
16611 <autodoc>__del__()
</autodoc>
16613 <method name=
"Clear" overloaded=
"no">
16614 <autodoc>Clear()
</autodoc>
16616 <method name=
"ClearAttributes" overloaded=
"no">
16617 <autodoc>ClearAttributes()
</autodoc>
16619 <method name=
"SetMask" overloaded=
"no">
16620 <autodoc>SetMask(long mask)
</autodoc>
16622 <param name=
"mask" type=
"long" default=
""/>
16625 <method name=
"SetId" overloaded=
"no">
16626 <autodoc>SetId(long id)
</autodoc>
16628 <param name=
"id" type=
"long" default=
""/>
16631 <method name=
"SetColumn" overloaded=
"no">
16632 <autodoc>SetColumn(int col)
</autodoc>
16634 <param name=
"col" type=
"int" default=
""/>
16637 <method name=
"SetState" overloaded=
"no">
16638 <autodoc>SetState(long state)
</autodoc>
16640 <param name=
"state" type=
"long" default=
""/>
16643 <method name=
"SetStateMask" overloaded=
"no">
16644 <autodoc>SetStateMask(long stateMask)
</autodoc>
16646 <param name=
"stateMask" type=
"long" default=
""/>
16649 <method name=
"SetText" overloaded=
"no">
16650 <autodoc>SetText(String text)
</autodoc>
16652 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
16655 <method name=
"SetImage" overloaded=
"no">
16656 <autodoc>SetImage(int image)
</autodoc>
16658 <param name=
"image" type=
"int" default=
""/>
16661 <method name=
"SetData" overloaded=
"no">
16662 <autodoc>SetData(long data)
</autodoc>
16664 <param name=
"data" type=
"long" default=
""/>
16667 <method name=
"SetWidth" overloaded=
"no">
16668 <autodoc>SetWidth(int width)
</autodoc>
16670 <param name=
"width" type=
"int" default=
""/>
16673 <method name=
"SetAlign" overloaded=
"no">
16674 <autodoc>SetAlign(int align)
</autodoc>
16676 <param name=
"align" type=
"wxListColumnFormat" default=
""/>
16679 <method name=
"SetTextColour" overloaded=
"no">
16680 <autodoc>SetTextColour(Colour colText)
</autodoc>
16682 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
16685 <method name=
"SetBackgroundColour" overloaded=
"no">
16686 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
16688 <param name=
"colBack" type=
"r.q(const).wxColour" default=
""/>
16691 <method name=
"SetFont" overloaded=
"no">
16692 <autodoc>SetFont(Font font)
</autodoc>
16694 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
16697 <method name=
"GetMask" overloaded=
"no">
16698 <autodoc>GetMask() -
> long
</autodoc>
16700 <method name=
"GetId" overloaded=
"no">
16701 <autodoc>GetId() -
> long
</autodoc>
16703 <method name=
"GetColumn" overloaded=
"no">
16704 <autodoc>GetColumn() -
> int
</autodoc>
16706 <method name=
"GetState" overloaded=
"no">
16707 <autodoc>GetState() -
> long
</autodoc>
16709 <method name=
"GetText" overloaded=
"no">
16710 <autodoc>GetText() -
> String
</autodoc>
16712 <method name=
"GetImage" overloaded=
"no">
16713 <autodoc>GetImage() -
> int
</autodoc>
16715 <method name=
"GetData" overloaded=
"no">
16716 <autodoc>GetData() -
> long
</autodoc>
16718 <method name=
"GetWidth" overloaded=
"no">
16719 <autodoc>GetWidth() -
> int
</autodoc>
16721 <method name=
"GetAlign" overloaded=
"no">
16722 <autodoc>GetAlign() -
> int
</autodoc>
16724 <method name=
"GetAttributes" overloaded=
"no">
16725 <autodoc>GetAttributes() -
> ListItemAttr
</autodoc>
16727 <method name=
"HasAttributes" overloaded=
"no">
16728 <autodoc>HasAttributes() -
> bool
</autodoc>
16730 <method name=
"GetTextColour" overloaded=
"no">
16731 <autodoc>GetTextColour() -
> Colour
</autodoc>
16733 <method name=
"GetBackgroundColour" overloaded=
"no">
16734 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
16736 <method name=
"GetFont" overloaded=
"no">
16737 <autodoc>GetFont() -
> Font
</autodoc>
16739 <property name=
"m_mask" type=
"long" readonly=
"no"/>
16740 <property name=
"m_itemId" type=
"long" readonly=
"no"/>
16741 <property name=
"m_col" type=
"int" readonly=
"no"/>
16742 <property name=
"m_state" type=
"long" readonly=
"no"/>
16743 <property name=
"m_stateMask" type=
"long" readonly=
"no"/>
16744 <property name=
"m_text" type=
"wxString" readonly=
"no"/>
16745 <property name=
"m_image" type=
"int" readonly=
"no"/>
16746 <property name=
"m_data" type=
"long" readonly=
"no"/>
16747 <property name=
"m_format" type=
"int" readonly=
"no"/>
16748 <property name=
"m_width" type=
"int" readonly=
"no"/>
16751 #---------------------------------------------------------------------------
16753 <class name=
"ListEvent" oldname=
"wxListEvent" module=
"controls">
16754 <baseclass name=
"wxNotifyEvent"/>
16755 <constructor name=
"ListEvent" overloaded=
"no">
16756 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> ListEvent
</autodoc>
16758 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
16759 <param name=
"id" type=
"int" default=
"0"/>
16762 <property name=
"m_code" type=
"int" readonly=
"no"/>
16763 <property name=
"m_oldItemIndex" type=
"long" readonly=
"no"/>
16764 <property name=
"m_itemIndex" type=
"long" readonly=
"no"/>
16765 <property name=
"m_col" type=
"int" readonly=
"no"/>
16766 <property name=
"m_pointDrag" type=
"wxPoint" readonly=
"no"/>
16767 <property name=
"m_item" type=
"wxListItem" readonly=
"yes"/>
16768 <method name=
"GetKeyCode" overloaded=
"no">
16769 <autodoc>GetKeyCode() -
> int
</autodoc>
16771 <pythoncode> GetCode = GetKeyCode
</pythoncode>
16772 <method name=
"GetIndex" overloaded=
"no">
16773 <autodoc>GetIndex() -
> long
</autodoc>
16775 <method name=
"GetColumn" overloaded=
"no">
16776 <autodoc>GetColumn() -
> int
</autodoc>
16778 <method name=
"GetPoint" overloaded=
"no">
16779 <autodoc>GetPoint() -
> Point
</autodoc>
16781 <pythoncode> GetPosition = GetPoint
</pythoncode>
16782 <method name=
"GetLabel" overloaded=
"no">
16783 <autodoc>GetLabel() -
> String
</autodoc>
16785 <method name=
"GetText" overloaded=
"no">
16786 <autodoc>GetText() -
> String
</autodoc>
16788 <method name=
"GetImage" overloaded=
"no">
16789 <autodoc>GetImage() -
> int
</autodoc>
16791 <method name=
"GetData" overloaded=
"no">
16792 <autodoc>GetData() -
> long
</autodoc>
16794 <method name=
"GetMask" overloaded=
"no">
16795 <autodoc>GetMask() -
> long
</autodoc>
16797 <method name=
"GetItem" overloaded=
"no">
16798 <autodoc>GetItem() -
> ListItem
</autodoc>
16800 <method name=
"GetCacheFrom" overloaded=
"no">
16801 <autodoc>GetCacheFrom() -
> long
</autodoc>
16803 <method name=
"GetCacheTo" overloaded=
"no">
16804 <autodoc>GetCacheTo() -
> long
</autodoc>
16806 <method name=
"IsEditCancelled" overloaded=
"no">
16807 <autodoc>IsEditCancelled() -
> bool
</autodoc>
16809 <method name=
"SetEditCanceled" overloaded=
"no">
16810 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
16812 <param name=
"editCancelled" type=
"bool" default=
""/>
16818 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG ,
1)
16819 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG ,
1)
16820 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT ,
1)
16821 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT ,
1)
16822 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM ,
1)
16823 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS ,
1)
16824 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO ,
1)
16825 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO ,
1)
16826 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED ,
1)
16827 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED ,
1)
16828 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN ,
1)
16829 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM ,
1)
16830 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK ,
1)
16831 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK ,
1)
16832 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK,
1)
16833 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED ,
1)
16834 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT ,
1)
16835 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK ,
1)
16836 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG ,
1)
16837 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING ,
1)
16838 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG ,
1)
16839 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED ,
1)
16842 #---------------------------------------------------------------------------
16844 <class name=
"ListCtrl" oldname=
"wxPyListCtrl" module=
"controls">
16845 <baseclass name=
"wxControl"/>
16846 <constructor name=
"wxPyListCtrl" overloaded=
"no">
16847 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
16848 Size size=DefaultSize, long style=LC_ICON,
16849 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListCtrl
</autodoc>
16851 <param name=
"parent" type=
"p.wxWindow" default=
""/>
16852 <param name=
"id" type=
"int" default=
"-1"/>
16853 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
16854 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
16855 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
16856 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
16857 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListCtrlNameStr"/>
16860 <constructor name=
"PreListCtrl" overloaded=
"no">
16861 <autodoc>PreListCtrl() -
> ListCtrl
</autodoc>
16863 <method name=
"Create" overloaded=
"no">
16864 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
16865 Size size=DefaultSize, long style=LC_ICON,
16866 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
16868 <param name=
"parent" type=
"p.wxWindow" default=
""/>
16869 <param name=
"id" type=
"int" default=
"-1"/>
16870 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
16871 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
16872 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
16873 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
16874 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListCtrlNameStr"/>
16877 <method name=
"_setCallbackInfo" overloaded=
"no">
16878 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
16880 <param name=
"self" type=
"p.PyObject" default=
""/>
16881 <param name=
"_class" type=
"p.PyObject" default=
""/>
16884 <method name=
"SetForegroundColour" overloaded=
"no">
16885 <autodoc>SetForegroundColour(Colour col) -
> bool
</autodoc>
16887 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
16890 <method name=
"SetBackgroundColour" overloaded=
"no">
16891 <autodoc>SetBackgroundColour(Colour col) -
> bool
</autodoc>
16893 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
16896 <method name=
"GetColumn" overloaded=
"no">
16897 <autodoc>GetColumn(int col) -
> ListItem
</autodoc>
16899 <param name=
"col" type=
"int" default=
""/>
16902 <method name=
"SetColumn" overloaded=
"no">
16903 <autodoc>SetColumn(int col, ListItem item) -
> bool
</autodoc>
16905 <param name=
"col" type=
"int" default=
""/>
16906 <param name=
"item" type=
"r.wxListItem" default=
""/>
16909 <method name=
"GetColumnWidth" overloaded=
"no">
16910 <autodoc>GetColumnWidth(int col) -
> int
</autodoc>
16912 <param name=
"col" type=
"int" default=
""/>
16915 <method name=
"SetColumnWidth" overloaded=
"no">
16916 <autodoc>SetColumnWidth(int col, int width) -
> bool
</autodoc>
16918 <param name=
"col" type=
"int" default=
""/>
16919 <param name=
"width" type=
"int" default=
""/>
16922 <method name=
"GetCountPerPage" overloaded=
"no">
16923 <autodoc>GetCountPerPage() -
> int
</autodoc>
16925 <method name=
"GetViewRect" overloaded=
"no">
16926 <autodoc>GetViewRect() -
> Rect
</autodoc>
16928 <method name=
"GetItem" overloaded=
"no">
16929 <autodoc>GetItem(long itemId, int col=
0) -
> ListItem
</autodoc>
16931 <param name=
"itemId" type=
"long" default=
""/>
16932 <param name=
"col" type=
"int" default=
"0"/>
16935 <method name=
"SetItem" overloaded=
"no">
16936 <autodoc>SetItem(ListItem info) -
> bool
</autodoc>
16938 <param name=
"info" type=
"r.wxListItem" default=
""/>
16941 <method name=
"SetStringItem" overloaded=
"no">
16942 <autodoc>SetStringItem(long index, int col, String label, int imageId=-
1) -
> long
</autodoc>
16944 <param name=
"index" type=
"long" default=
""/>
16945 <param name=
"col" type=
"int" default=
""/>
16946 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
16947 <param name=
"imageId" type=
"int" default=
"-1"/>
16950 <method name=
"GetItemState" overloaded=
"no">
16951 <autodoc>GetItemState(long item, long stateMask) -
> int
</autodoc>
16953 <param name=
"item" type=
"long" default=
""/>
16954 <param name=
"stateMask" type=
"long" default=
""/>
16957 <method name=
"SetItemState" overloaded=
"no">
16958 <autodoc>SetItemState(long item, long state, long stateMask) -
> bool
</autodoc>
16960 <param name=
"item" type=
"long" default=
""/>
16961 <param name=
"state" type=
"long" default=
""/>
16962 <param name=
"stateMask" type=
"long" default=
""/>
16965 <method name=
"SetItemImage" overloaded=
"no">
16966 <autodoc>SetItemImage(long item, int image, int selImage) -
> bool
</autodoc>
16968 <param name=
"item" type=
"long" default=
""/>
16969 <param name=
"image" type=
"int" default=
""/>
16970 <param name=
"selImage" type=
"int" default=
""/>
16973 <method name=
"GetItemText" overloaded=
"no">
16974 <autodoc>GetItemText(long item) -
> String
</autodoc>
16976 <param name=
"item" type=
"long" default=
""/>
16979 <method name=
"SetItemText" overloaded=
"no">
16980 <autodoc>SetItemText(long item, String str)
</autodoc>
16982 <param name=
"item" type=
"long" default=
""/>
16983 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
16986 <method name=
"GetItemData" overloaded=
"no">
16987 <autodoc>GetItemData(long item) -
> long
</autodoc>
16989 <param name=
"item" type=
"long" default=
""/>
16992 <method name=
"SetItemData" overloaded=
"no">
16993 <autodoc>SetItemData(long item, long data) -
> bool
</autodoc>
16995 <param name=
"item" type=
"long" default=
""/>
16996 <param name=
"data" type=
"long" default=
""/>
16999 <method name=
"GetItemPosition" overloaded=
"no">
17000 <autodoc>GetItemPosition(long item) -
> Point
</autodoc>
17002 <param name=
"item" type=
"long" default=
""/>
17005 <method name=
"GetItemRect" overloaded=
"no">
17006 <autodoc>GetItemRect(long item, int code=LIST_RECT_BOUNDS) -
> Rect
</autodoc>
17008 <param name=
"item" type=
"long" default=
""/>
17009 <param name=
"code" type=
"int" default=
"wxLIST_RECT_BOUNDS"/>
17012 <method name=
"SetItemPosition" overloaded=
"no">
17013 <autodoc>SetItemPosition(long item, Point pos) -
> bool
</autodoc>
17015 <param name=
"item" type=
"long" default=
""/>
17016 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
17019 <method name=
"GetItemCount" overloaded=
"no">
17020 <autodoc>GetItemCount() -
> int
</autodoc>
17022 <method name=
"GetColumnCount" overloaded=
"no">
17023 <autodoc>GetColumnCount() -
> int
</autodoc>
17025 <method name=
"GetItemSpacing" overloaded=
"no">
17026 <autodoc>GetItemSpacing() -
> Size
</autodoc>
17028 <method name=
"SetItemSpacing" overloaded=
"no">
17029 <autodoc>SetItemSpacing(int spacing, bool isSmall=False)
</autodoc>
17031 <param name=
"spacing" type=
"int" default=
""/>
17032 <param name=
"isSmall" type=
"bool" default=
"False"/>
17035 <method name=
"GetSelectedItemCount" overloaded=
"no">
17036 <autodoc>GetSelectedItemCount() -
> int
</autodoc>
17038 <method name=
"GetTextColour" overloaded=
"no">
17039 <autodoc>GetTextColour() -
> Colour
</autodoc>
17041 <method name=
"SetTextColour" overloaded=
"no">
17042 <autodoc>SetTextColour(Colour col)
</autodoc>
17044 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
17047 <method name=
"GetTopItem" overloaded=
"no">
17048 <autodoc>GetTopItem() -
> long
</autodoc>
17050 <method name=
"SetSingleStyle" overloaded=
"no">
17051 <autodoc>SetSingleStyle(long style, bool add=True)
</autodoc>
17053 <param name=
"style" type=
"long" default=
""/>
17054 <param name=
"add" type=
"bool" default=
"True"/>
17057 <method name=
"SetWindowStyleFlag" overloaded=
"no">
17058 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
17060 <param name=
"style" type=
"long" default=
""/>
17063 <method name=
"GetNextItem" overloaded=
"no">
17064 <autodoc>GetNextItem(long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -
> long
</autodoc>
17066 <param name=
"item" type=
"long" default=
""/>
17067 <param name=
"geometry" type=
"int" default=
"wxLIST_NEXT_ALL"/>
17068 <param name=
"state" type=
"int" default=
"wxLIST_STATE_DONTCARE"/>
17071 <method name=
"GetImageList" overloaded=
"no">
17072 <autodoc>GetImageList(int which) -
> ImageList
</autodoc>
17074 <param name=
"which" type=
"int" default=
""/>
17077 <method name=
"SetImageList" overloaded=
"no">
17078 <autodoc>SetImageList(ImageList imageList, int which)
</autodoc>
17080 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17081 <param name=
"which" type=
"int" default=
""/>
17084 <method name=
"AssignImageList" overloaded=
"no">
17085 <autodoc>AssignImageList(ImageList imageList, int which)
</autodoc>
17087 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17088 <param name=
"which" type=
"int" default=
""/>
17091 <method name=
"IsVirtual" overloaded=
"no">
17092 <autodoc>IsVirtual() -
> bool
</autodoc>
17094 <method name=
"RefreshItem" overloaded=
"no">
17095 <autodoc>RefreshItem(long item)
</autodoc>
17097 <param name=
"item" type=
"long" default=
""/>
17100 <method name=
"RefreshItems" overloaded=
"no">
17101 <autodoc>RefreshItems(long itemFrom, long itemTo)
</autodoc>
17103 <param name=
"itemFrom" type=
"long" default=
""/>
17104 <param name=
"itemTo" type=
"long" default=
""/>
17107 <method name=
"Arrange" overloaded=
"no">
17108 <autodoc>Arrange(int flag=LIST_ALIGN_DEFAULT) -
> bool
</autodoc>
17110 <param name=
"flag" type=
"int" default=
"wxLIST_ALIGN_DEFAULT"/>
17113 <method name=
"DeleteItem" overloaded=
"no">
17114 <autodoc>DeleteItem(long item) -
> bool
</autodoc>
17116 <param name=
"item" type=
"long" default=
""/>
17119 <method name=
"DeleteAllItems" overloaded=
"no">
17120 <autodoc>DeleteAllItems() -
> bool
</autodoc>
17122 <method name=
"DeleteColumn" overloaded=
"no">
17123 <autodoc>DeleteColumn(int col) -
> bool
</autodoc>
17125 <param name=
"col" type=
"int" default=
""/>
17128 <method name=
"DeleteAllColumns" overloaded=
"no">
17129 <autodoc>DeleteAllColumns() -
> bool
</autodoc>
17131 <method name=
"ClearAll" overloaded=
"no">
17132 <autodoc>ClearAll()
</autodoc>
17134 <method name=
"EditLabel" overloaded=
"no">
17135 <autodoc>EditLabel(long item)
</autodoc>
17137 <param name=
"item" type=
"long" default=
""/>
17140 <method name=
"EnsureVisible" overloaded=
"no">
17141 <autodoc>EnsureVisible(long item) -
> bool
</autodoc>
17143 <param name=
"item" type=
"long" default=
""/>
17146 <method name=
"FindItem" overloaded=
"no">
17147 <autodoc>FindItem(long start, String str, bool partial=False) -
> long
</autodoc>
17149 <param name=
"start" type=
"long" default=
""/>
17150 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
17151 <param name=
"partial" type=
"bool" default=
"False"/>
17154 <method name=
"FindItemData" overloaded=
"no">
17155 <autodoc>FindItemData(long start, long data) -
> long
</autodoc>
17157 <param name=
"start" type=
"long" default=
""/>
17158 <param name=
"data" type=
"long" default=
""/>
17161 <method name=
"FindItemAtPos" overloaded=
"no">
17162 <autodoc>FindItemAtPos(long start, Point pt, int direction) -
> long
</autodoc>
17164 <param name=
"start" type=
"long" default=
""/>
17165 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
17166 <param name=
"direction" type=
"int" default=
""/>
17169 <method name=
"HitTest" overloaded=
"no">
17170 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
17171 <docstring>Determines which item (if any) is at the specified point,
17172 giving details in the second return value (see wxLIST_HITTEST_... flags.)
</docstring>
17174 <param name=
"point" type=
"r.q(const).wxPoint" default=
""/>
17175 <param name=
"OUTPUT" type=
"r.int" default=
""/>
17178 <method name=
"InsertItem" overloaded=
"no">
17179 <autodoc>InsertItem(ListItem info) -
> long
</autodoc>
17181 <param name=
"info" type=
"r.wxListItem" default=
""/>
17184 <method name=
"InsertStringItem" overloaded=
"no">
17185 <autodoc>InsertStringItem(long index, String label) -
> long
</autodoc>
17187 <param name=
"index" type=
"long" default=
""/>
17188 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
17191 <method name=
"InsertImageItem" overloaded=
"no">
17192 <autodoc>InsertImageItem(long index, int imageIndex) -
> long
</autodoc>
17194 <param name=
"index" type=
"long" default=
""/>
17195 <param name=
"imageIndex" type=
"int" default=
""/>
17198 <method name=
"InsertImageStringItem" overloaded=
"no">
17199 <autodoc>InsertImageStringItem(long index, String label, int imageIndex) -
> long
</autodoc>
17201 <param name=
"index" type=
"long" default=
""/>
17202 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
17203 <param name=
"imageIndex" type=
"int" default=
""/>
17206 <method name=
"InsertColumnInfo" overloaded=
"no">
17207 <autodoc>InsertColumnInfo(long col, ListItem info) -
> long
</autodoc>
17209 <param name=
"col" type=
"long" default=
""/>
17210 <param name=
"info" type=
"r.wxListItem" default=
""/>
17213 <method name=
"InsertColumn" overloaded=
"no">
17214 <autodoc>InsertColumn(long col, String heading, int format=LIST_FORMAT_LEFT,
17215 int width=-
1) -
> long
</autodoc>
17217 <param name=
"col" type=
"long" default=
""/>
17218 <param name=
"heading" type=
"r.q(const).wxString" default=
""/>
17219 <param name=
"format" type=
"int" default=
"wxLIST_FORMAT_LEFT"/>
17220 <param name=
"width" type=
"int" default=
"-1"/>
17223 <method name=
"SetItemCount" overloaded=
"no">
17224 <autodoc>SetItemCount(long count)
</autodoc>
17226 <param name=
"count" type=
"long" default=
""/>
17229 <method name=
"ScrollList" overloaded=
"no">
17230 <autodoc>ScrollList(int dx, int dy) -
> bool
</autodoc>
17232 <param name=
"dx" type=
"int" default=
""/>
17233 <param name=
"dy" type=
"int" default=
""/>
17236 <method name=
"SetItemTextColour" overloaded=
"no">
17237 <autodoc>SetItemTextColour(long item, Colour col)
</autodoc>
17239 <param name=
"item" type=
"long" default=
""/>
17240 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
17243 <method name=
"GetItemTextColour" overloaded=
"no">
17244 <autodoc>GetItemTextColour(long item) -
> Colour
</autodoc>
17246 <param name=
"item" type=
"long" default=
""/>
17249 <method name=
"SetItemBackgroundColour" overloaded=
"no">
17250 <autodoc>SetItemBackgroundColour(long item, Colour col)
</autodoc>
17252 <param name=
"item" type=
"long" default=
""/>
17253 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
17256 <method name=
"GetItemBackgroundColour" overloaded=
"no">
17257 <autodoc>GetItemBackgroundColour(long item) -
> Colour
</autodoc>
17259 <param name=
"item" type=
"long" default=
""/>
17265 def Select(self, idx, on=
1):
17266 '''[de]select an item'''
17267 if on: state = wx.LIST_STATE_SELECTED
17269 self.SetItemState(idx, state, wx.LIST_STATE_SELECTED)
17271 def Focus(self, idx):
17272 '''Focus and show the given item'''
17273 self.SetItemState(idx, wx.LIST_STATE_FOCUSED, wx.LIST_STATE_FOCUSED)
17274 self.EnsureVisible(idx)
17276 def GetFocusedItem(self):
17277 '''get the currently focused item or -
1 if none'''
17278 return self.GetNextItem(-
1, wx.LIST_NEXT_ALL, wx.LIST_STATE_FOCUSED)
17280 def GetFirstSelected(self, *args):
17281 '''return first selected item, or -
1 when none'''
17282 return self.GetNextSelected(-
1)
17284 def GetNextSelected(self, item):
17285 '''return subsequent selected items, or -
1 when no more'''
17286 return self.GetNextItem(item, wx.LIST_NEXT_ALL, wx.LIST_STATE_SELECTED)
17288 def IsSelected(self, idx):
17289 '''return True if the item is selected'''
17290 return self.GetItemState(idx, wx.LIST_STATE_SELECTED) !=
0
17292 def SetColumnImage(self, col, image):
17293 item = self.GetColumn(col)
17294 # preserve all other attributes too
17295 item.SetMask( wx.LIST_MASK_STATE |
17296 wx.LIST_MASK_TEXT |
17297 wx.LIST_MASK_IMAGE |
17298 wx.LIST_MASK_DATA |
17300 wx.LIST_MASK_WIDTH |
17301 wx.LIST_MASK_FORMAT )
17302 item.SetImage(image)
17303 self.SetColumn(col, item)
17305 def ClearColumnImage(self, col):
17306 self.SetColumnImage(col, -
1)
17308 def Append(self, entry):
17309 '''Append an item to the list control. The entry parameter should be a
17310 sequence with an item for each column'''
17316 pos = self.GetItemCount()
17317 self.InsertStringItem(pos, cvtfunc(entry[
0]))
17318 for i in range(
1, len(entry)):
17319 self.SetStringItem(pos, i, cvtfunc(entry[i]))
17322 <method name=
"SortItems" overloaded=
"no">
17323 <autodoc>SortItems(PyObject func) -
> bool
</autodoc>
17325 <param name=
"func" type=
"p.PyObject" default=
""/>
17328 <method name=
"GetMainWindow" overloaded=
"no">
17329 <autodoc>GetMainWindow() -
> Window
</autodoc>
17333 #---------------------------------------------------------------------------
17335 <class name=
"ListView" oldname=
"wxListView" module=
"controls">
17336 <baseclass name=
"wxPyListCtrl"/>
17337 <constructor name=
"ListView" overloaded=
"no">
17338 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
17339 Size size=DefaultSize, long style=LC_REPORT,
17340 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListView
</autodoc>
17342 <param name=
"parent" type=
"p.wxWindow" default=
""/>
17343 <param name=
"id" type=
"int" default=
"-1"/>
17344 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
17345 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
17346 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
17347 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
17348 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListCtrlNameStr"/>
17351 <constructor name=
"PreListView" overloaded=
"no">
17352 <autodoc>PreListView() -
> ListView
</autodoc>
17354 <method name=
"Create" overloaded=
"no">
17355 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
17356 Size size=DefaultSize, long style=LC_REPORT,
17357 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
17359 <param name=
"parent" type=
"p.wxWindow" default=
""/>
17360 <param name=
"id" type=
"int" default=
"-1"/>
17361 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
17362 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
17363 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
17364 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
17365 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyListCtrlNameStr"/>
17368 <method name=
"Select" overloaded=
"no">
17369 <autodoc>Select(long n, bool on=True)
</autodoc>
17371 <param name=
"n" type=
"long" default=
""/>
17372 <param name=
"on" type=
"bool" default=
"True"/>
17375 <method name=
"Focus" overloaded=
"no">
17376 <autodoc>Focus(long index)
</autodoc>
17378 <param name=
"index" type=
"long" default=
""/>
17381 <method name=
"GetFocusedItem" overloaded=
"no">
17382 <autodoc>GetFocusedItem() -
> long
</autodoc>
17384 <method name=
"GetNextSelected" overloaded=
"no">
17385 <autodoc>GetNextSelected(long item) -
> long
</autodoc>
17387 <param name=
"item" type=
"long" default=
""/>
17390 <method name=
"GetFirstSelected" overloaded=
"no">
17391 <autodoc>GetFirstSelected() -
> long
</autodoc>
17393 <method name=
"IsSelected" overloaded=
"no">
17394 <autodoc>IsSelected(long index) -
> bool
</autodoc>
17396 <param name=
"index" type=
"long" default=
""/>
17399 <method name=
"SetColumnImage" overloaded=
"no">
17400 <autodoc>SetColumnImage(int col, int image)
</autodoc>
17402 <param name=
"col" type=
"int" default=
""/>
17403 <param name=
"image" type=
"int" default=
""/>
17406 <method name=
"ClearColumnImage" overloaded=
"no">
17407 <autodoc>ClearColumnImage(int col)
</autodoc>
17409 <param name=
"col" type=
"int" default=
""/>
17414 #---------------------------------------------------------------------------
17417 #---------------------------------------------------------------------------
17419 <class name=
"TreeItemId" oldname=
"wxTreeItemId" module=
"controls">
17420 <constructor name=
"TreeItemId" overloaded=
"no">
17421 <autodoc>__init__() -
> TreeItemId
</autodoc>
17423 <destructor name=
"~wxTreeItemId">
17424 <autodoc>__del__()
</autodoc>
17426 <method name=
"IsOk" overloaded=
"no">
17427 <autodoc>IsOk() -
> bool
</autodoc>
17429 <method name=
"__eq__" overloaded=
"no">
17430 <autodoc>__eq__(TreeItemId other) -
> bool
</autodoc>
17432 <param name=
"other" type=
"p.q(const).wxTreeItemId" default=
""/>
17435 <method name=
"__ne__" overloaded=
"no">
17436 <autodoc>__ne__(TreeItemId other) -
> bool
</autodoc>
17438 <param name=
"other" type=
"p.q(const).wxTreeItemId" default=
""/>
17441 <property name=
"m_pItem" type=
"void" readonly=
"no"/>
17444 def __nonzero__(self): return self.IsOk()
</pythoncode>
17446 <class name=
"TreeItemData" oldname=
"wxPyTreeItemData" module=
"controls">
17447 <constructor name=
"wxPyTreeItemData" overloaded=
"no">
17448 <autodoc>__init__(PyObject obj=None) -
> TreeItemData
</autodoc>
17450 <param name=
"obj" type=
"p.PyObject" default=
"NULL"/>
17453 <method name=
"GetData" overloaded=
"no">
17454 <autodoc>GetData() -
> PyObject
</autodoc>
17456 <method name=
"SetData" overloaded=
"no">
17457 <autodoc>SetData(PyObject obj)
</autodoc>
17459 <param name=
"obj" type=
"p.PyObject" default=
""/>
17462 <method name=
"GetId" overloaded=
"no">
17463 <autodoc>GetId() -
> TreeItemId
</autodoc>
17465 <method name=
"SetId" overloaded=
"no">
17466 <autodoc>SetId(TreeItemId id)
</autodoc>
17468 <param name=
"id" type=
"r.q(const).wxTreeItemId" default=
""/>
17471 <method name=
"Destroy" overloaded=
"no">
17472 <autodoc>Destroy()
</autodoc>
17476 #---------------------------------------------------------------------------
17480 EVT_TREE_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG ,
1)
17481 EVT_TREE_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG ,
1)
17482 EVT_TREE_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT ,
1)
17483 EVT_TREE_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT ,
1)
17484 EVT_TREE_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM ,
1)
17485 EVT_TREE_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO ,
1)
17486 EVT_TREE_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO ,
1)
17487 EVT_TREE_ITEM_EXPANDED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED ,
1)
17488 EVT_TREE_ITEM_EXPANDING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING ,
1)
17489 EVT_TREE_ITEM_COLLAPSED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED ,
1)
17490 EVT_TREE_ITEM_COLLAPSING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING ,
1)
17491 EVT_TREE_SEL_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED ,
1)
17492 EVT_TREE_SEL_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING ,
1)
17493 EVT_TREE_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN ,
1)
17494 EVT_TREE_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED ,
1)
17495 EVT_TREE_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK ,
1)
17496 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK,
1)
17497 EVT_TREE_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG ,
1)
17498 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK,
1)
17499 EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,
1)
17501 <class name=
"TreeEvent" oldname=
"wxTreeEvent" module=
"controls">
17502 <baseclass name=
"wxNotifyEvent"/>
17503 <constructor name=
"TreeEvent" overloaded=
"no">
17504 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> TreeEvent
</autodoc>
17506 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17507 <param name=
"id" type=
"int" default=
"0"/>
17510 <method name=
"GetItem" overloaded=
"no">
17511 <autodoc>GetItem() -
> TreeItemId
</autodoc>
17513 <method name=
"SetItem" overloaded=
"no">
17514 <autodoc>SetItem(TreeItemId item)
</autodoc>
17516 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17519 <method name=
"GetOldItem" overloaded=
"no">
17520 <autodoc>GetOldItem() -
> TreeItemId
</autodoc>
17522 <method name=
"SetOldItem" overloaded=
"no">
17523 <autodoc>SetOldItem(TreeItemId item)
</autodoc>
17525 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17528 <method name=
"GetPoint" overloaded=
"no">
17529 <autodoc>GetPoint() -
> Point
</autodoc>
17531 <method name=
"SetPoint" overloaded=
"no">
17532 <autodoc>SetPoint(Point pt)
</autodoc>
17534 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
17537 <method name=
"GetKeyEvent" overloaded=
"no">
17538 <autodoc>GetKeyEvent() -
> KeyEvent
</autodoc>
17540 <method name=
"GetKeyCode" overloaded=
"no">
17541 <autodoc>GetKeyCode() -
> int
</autodoc>
17543 <method name=
"SetKeyEvent" overloaded=
"no">
17544 <autodoc>SetKeyEvent(KeyEvent evt)
</autodoc>
17546 <param name=
"evt" type=
"r.q(const).wxKeyEvent" default=
""/>
17549 <method name=
"GetLabel" overloaded=
"no">
17550 <autodoc>GetLabel() -
> String
</autodoc>
17552 <method name=
"SetLabel" overloaded=
"no">
17553 <autodoc>SetLabel(String label)
</autodoc>
17555 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
17558 <method name=
"IsEditCancelled" overloaded=
"no">
17559 <autodoc>IsEditCancelled() -
> bool
</autodoc>
17561 <method name=
"SetEditCanceled" overloaded=
"no">
17562 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
17564 <param name=
"editCancelled" type=
"bool" default=
""/>
17567 <method name=
"SetToolTip" overloaded=
"no">
17568 <autodoc>SetToolTip(String toolTip)
</autodoc>
17570 <param name=
"toolTip" type=
"r.q(const).wxString" default=
""/>
17575 #---------------------------------------------------------------------------
17577 <class name=
"TreeCtrl" oldname=
"wxPyTreeCtrl" module=
"controls">
17578 <baseclass name=
"wxControl"/>
17579 <constructor name=
"wxPyTreeCtrl" overloaded=
"no">
17580 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
17581 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
17582 Validator validator=DefaultValidator,
17583 String name=TreeCtrlNameStr) -
> TreeCtrl
</autodoc>
17585 <param name=
"parent" type=
"p.wxWindow" default=
""/>
17586 <param name=
"id" type=
"int" default=
"-1"/>
17587 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
17588 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
17589 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
17590 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
17591 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeCtrlNameStr"/>
17594 <constructor name=
"PreTreeCtrl" overloaded=
"no">
17595 <autodoc>PreTreeCtrl() -
> TreeCtrl
</autodoc>
17597 <method name=
"Create" overloaded=
"no">
17598 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
17599 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
17600 Validator validator=DefaultValidator,
17601 String name=TreeCtrlNameStr) -
> bool
</autodoc>
17603 <param name=
"parent" type=
"p.wxWindow" default=
""/>
17604 <param name=
"id" type=
"int" default=
"-1"/>
17605 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
17606 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
17607 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
17608 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
17609 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeCtrlNameStr"/>
17612 <method name=
"_setCallbackInfo" overloaded=
"no">
17613 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
17615 <param name=
"self" type=
"p.PyObject" default=
""/>
17616 <param name=
"_class" type=
"p.PyObject" default=
""/>
17619 <method name=
"GetCount" overloaded=
"no">
17620 <autodoc>GetCount() -
> size_t
</autodoc>
17622 <method name=
"GetIndent" overloaded=
"no">
17623 <autodoc>GetIndent() -
> unsigned int
</autodoc>
17625 <method name=
"SetIndent" overloaded=
"no">
17626 <autodoc>SetIndent(unsigned int indent)
</autodoc>
17628 <param name=
"indent" type=
"unsigned int" default=
""/>
17631 <method name=
"GetSpacing" overloaded=
"no">
17632 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
17634 <method name=
"SetSpacing" overloaded=
"no">
17635 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
17637 <param name=
"spacing" type=
"unsigned int" default=
""/>
17640 <method name=
"GetImageList" overloaded=
"no">
17641 <autodoc>GetImageList() -
> ImageList
</autodoc>
17643 <method name=
"GetStateImageList" overloaded=
"no">
17644 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
17646 <method name=
"SetImageList" overloaded=
"no">
17647 <autodoc>SetImageList(ImageList imageList)
</autodoc>
17649 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17652 <method name=
"SetStateImageList" overloaded=
"no">
17653 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
17655 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17658 <method name=
"AssignImageList" overloaded=
"no">
17659 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
17661 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17664 <method name=
"AssignStateImageList" overloaded=
"no">
17665 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
17667 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
17670 <method name=
"GetItemText" overloaded=
"no">
17671 <autodoc>GetItemText(TreeItemId item) -
> String
</autodoc>
17673 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17676 <method name=
"GetItemImage" overloaded=
"no">
17677 <autodoc>GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -
> int
</autodoc>
17679 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17680 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
17683 <method name=
"GetItemData" overloaded=
"no">
17684 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
17686 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17689 <method name=
"GetItemPyData" overloaded=
"no">
17690 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
17692 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17695 <pythoncode> GetPyData = GetItemPyData
</pythoncode>
17696 <method name=
"GetItemTextColour" overloaded=
"no">
17697 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
17699 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17702 <method name=
"GetItemBackgroundColour" overloaded=
"no">
17703 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
17705 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17708 <method name=
"GetItemFont" overloaded=
"no">
17709 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
17711 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17714 <method name=
"SetItemText" overloaded=
"no">
17715 <autodoc>SetItemText(TreeItemId item, String text)
</autodoc>
17717 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17718 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17721 <method name=
"SetItemImage" overloaded=
"no">
17722 <autodoc>SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
</autodoc>
17724 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17725 <param name=
"image" type=
"int" default=
""/>
17726 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
17729 <method name=
"SetItemData" overloaded=
"no">
17730 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
17732 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17733 <param name=
"data" type=
"p.wxPyTreeItemData" default=
""/>
17736 <method name=
"SetItemPyData" overloaded=
"no">
17737 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
17739 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17740 <param name=
"obj" type=
"p.PyObject" default=
""/>
17743 <pythoncode> SetPyData = SetItemPyData
</pythoncode>
17744 <method name=
"SetItemHasChildren" overloaded=
"no">
17745 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
17747 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17748 <param name=
"has" type=
"bool" default=
"True"/>
17751 <method name=
"SetItemBold" overloaded=
"no">
17752 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
17754 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17755 <param name=
"bold" type=
"bool" default=
"True"/>
17758 <method name=
"SetItemTextColour" overloaded=
"no">
17759 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
17761 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17762 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
17765 <method name=
"SetItemBackgroundColour" overloaded=
"no">
17766 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
17768 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17769 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
17772 <method name=
"SetItemFont" overloaded=
"no">
17773 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
17775 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17776 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
17779 <method name=
"IsVisible" overloaded=
"no">
17780 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
17782 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17785 <method name=
"ItemHasChildren" overloaded=
"no">
17786 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
17788 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17791 <method name=
"IsExpanded" overloaded=
"no">
17792 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
17794 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17797 <method name=
"IsSelected" overloaded=
"no">
17798 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
17800 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17803 <method name=
"IsBold" overloaded=
"no">
17804 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
17806 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17809 <method name=
"GetChildrenCount" overloaded=
"no">
17810 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
17812 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17813 <param name=
"recursively" type=
"bool" default=
"True"/>
17816 <method name=
"GetRootItem" overloaded=
"no">
17817 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
17819 <method name=
"GetSelection" overloaded=
"no">
17820 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
17822 <method name=
"GetSelections" overloaded=
"no">
17823 <autodoc>GetSelections() -
> PyObject
</autodoc>
17825 <method name=
"GetItemParent" overloaded=
"no">
17826 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
17828 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17831 <method name=
"GetFirstChild" overloaded=
"no">
17832 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
17834 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17837 <method name=
"GetNextChild" overloaded=
"no">
17838 <autodoc>GetNextChild(TreeItemId item, void cookie) -
> PyObject
</autodoc>
17840 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17841 <param name=
"cookie" type=
"p.void" default=
""/>
17844 <method name=
"GetLastChild" overloaded=
"no">
17845 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
17847 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17850 <method name=
"GetNextSibling" overloaded=
"no">
17851 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
17853 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17856 <method name=
"GetPrevSibling" overloaded=
"no">
17857 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
17859 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17862 <method name=
"GetFirstVisibleItem" overloaded=
"no">
17863 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
17865 <method name=
"GetNextVisible" overloaded=
"no">
17866 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
17868 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17871 <method name=
"GetPrevVisible" overloaded=
"no">
17872 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
17874 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17877 <method name=
"AddRoot" overloaded=
"no">
17878 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
17880 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17881 <param name=
"image" type=
"int" default=
"-1"/>
17882 <param name=
"selectedImage" type=
"int" default=
"-1"/>
17883 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
17886 <method name=
"PrependItem" overloaded=
"no">
17887 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
17888 TreeItemData data=None) -
> TreeItemId
</autodoc>
17890 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
17891 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17892 <param name=
"image" type=
"int" default=
"-1"/>
17893 <param name=
"selectedImage" type=
"int" default=
"-1"/>
17894 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
17897 <method name=
"InsertItem" overloaded=
"no">
17898 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
17899 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
17901 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
17902 <param name=
"idPrevious" type=
"r.q(const).wxTreeItemId" default=
""/>
17903 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17904 <param name=
"image" type=
"int" default=
"-1"/>
17905 <param name=
"selectedImage" type=
"int" default=
"-1"/>
17906 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
17909 <method name=
"InsertItemBefore" overloaded=
"no">
17910 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
17911 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
17913 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
17914 <param name=
"index" type=
"size_t" default=
""/>
17915 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17916 <param name=
"image" type=
"int" default=
"-1"/>
17917 <param name=
"selectedImage" type=
"int" default=
"-1"/>
17918 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
17921 <method name=
"AppendItem" overloaded=
"no">
17922 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
17923 TreeItemData data=None) -
> TreeItemId
</autodoc>
17925 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
17926 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
17927 <param name=
"image" type=
"int" default=
"-1"/>
17928 <param name=
"selectedImage" type=
"int" default=
"-1"/>
17929 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
17932 <method name=
"Delete" overloaded=
"no">
17933 <autodoc>Delete(TreeItemId item)
</autodoc>
17935 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17938 <method name=
"DeleteChildren" overloaded=
"no">
17939 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
17941 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17944 <method name=
"DeleteAllItems" overloaded=
"no">
17945 <autodoc>DeleteAllItems()
</autodoc>
17947 <method name=
"Expand" overloaded=
"no">
17948 <autodoc>Expand(TreeItemId item)
</autodoc>
17950 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17953 <method name=
"Collapse" overloaded=
"no">
17954 <autodoc>Collapse(TreeItemId item)
</autodoc>
17956 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17959 <method name=
"CollapseAndReset" overloaded=
"no">
17960 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
17962 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17965 <method name=
"Toggle" overloaded=
"no">
17966 <autodoc>Toggle(TreeItemId item)
</autodoc>
17968 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17971 <method name=
"Unselect" overloaded=
"no">
17972 <autodoc>Unselect()
</autodoc>
17974 <method name=
"UnselectItem" overloaded=
"no">
17975 <autodoc>UnselectItem(TreeItemId item)
</autodoc>
17977 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17980 <method name=
"UnselectAll" overloaded=
"no">
17981 <autodoc>UnselectAll()
</autodoc>
17983 <method name=
"SelectItem" overloaded=
"no">
17984 <autodoc>SelectItem(TreeItemId item, bool select=True)
</autodoc>
17986 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17987 <param name=
"select" type=
"bool" default=
"True"/>
17990 <method name=
"ToggleItemSelection" overloaded=
"no">
17991 <autodoc>ToggleItemSelection(TreeItemId item)
</autodoc>
17993 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
17996 <method name=
"EnsureVisible" overloaded=
"no">
17997 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
17999 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
18002 <method name=
"ScrollTo" overloaded=
"no">
18003 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
18005 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
18008 <method name=
"EditLabel" overloaded=
"no">
18009 <autodoc>EditLabel(TreeItemId item)
</autodoc>
18011 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
18014 <method name=
"GetEditControl" overloaded=
"no">
18015 <autodoc>GetEditControl() -
> TextCtrl
</autodoc>
18017 <method name=
"SortChildren" overloaded=
"no">
18018 <autodoc>SortChildren(TreeItemId item)
</autodoc>
18020 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
18023 <method name=
"HitTest" overloaded=
"no">
18024 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
18025 <docstring>Determine which item (if any) belongs the given point. The
18026 coordinates specified are relative to the client area of tree ctrl
18027 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
18031 <param name=
"point" type=
"r.q(const).wxPoint" default=
""/>
18032 <param name=
"OUTPUT" type=
"r.int" default=
""/>
18035 <method name=
"GetBoundingRect" overloaded=
"no">
18036 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
18038 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
18039 <param name=
"textOnly" type=
"bool" default=
"False"/>
18044 #---------------------------------------------------------------------------
18046 <class name=
"GenericDirCtrl" oldname=
"wxGenericDirCtrl" module=
"controls">
18047 <baseclass name=
"wxControl"/>
18048 <constructor name=
"GenericDirCtrl" overloaded=
"no">
18049 <autodoc>__init__(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
18050 Point pos=DefaultPosition, Size size=DefaultSize,
18051 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
18052 String filter=EmptyString,
18053 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> GenericDirCtrl
</autodoc>
18055 <param name=
"parent" type=
"p.wxWindow" default=
""/>
18056 <param name=
"id" type=
"q(const).int" default=
"-1"/>
18057 <param name=
"dir" type=
"r.q(const).wxString" default=
"wxPyDirDialogDefaultFolderStr"/>
18058 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18059 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18060 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
18061 <param name=
"filter" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18062 <param name=
"defaultFilter" type=
"int" default=
"0"/>
18063 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeCtrlNameStr"/>
18066 <constructor name=
"PreGenericDirCtrl" overloaded=
"no">
18067 <autodoc>PreGenericDirCtrl() -
> GenericDirCtrl
</autodoc>
18069 <method name=
"Create" overloaded=
"no">
18070 <autodoc>Create(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
18071 Point pos=DefaultPosition, Size size=DefaultSize,
18072 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
18073 String filter=EmptyString,
18074 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> bool
</autodoc>
18076 <param name=
"parent" type=
"p.wxWindow" default=
""/>
18077 <param name=
"id" type=
"q(const).int" default=
"-1"/>
18078 <param name=
"dir" type=
"r.q(const).wxString" default=
"wxPyDirDialogDefaultFolderStr"/>
18079 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18080 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18081 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
18082 <param name=
"filter" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18083 <param name=
"defaultFilter" type=
"int" default=
"0"/>
18084 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeCtrlNameStr"/>
18087 <method name=
"ExpandPath" overloaded=
"no">
18088 <autodoc>ExpandPath(String path) -
> bool
</autodoc>
18090 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
18093 <method name=
"GetDefaultPath" overloaded=
"no">
18094 <autodoc>GetDefaultPath() -
> String
</autodoc>
18096 <method name=
"SetDefaultPath" overloaded=
"no">
18097 <autodoc>SetDefaultPath(String path)
</autodoc>
18099 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
18102 <method name=
"GetPath" overloaded=
"no">
18103 <autodoc>GetPath() -
> String
</autodoc>
18105 <method name=
"GetFilePath" overloaded=
"no">
18106 <autodoc>GetFilePath() -
> String
</autodoc>
18108 <method name=
"SetPath" overloaded=
"no">
18109 <autodoc>SetPath(String path)
</autodoc>
18111 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
18114 <method name=
"ShowHidden" overloaded=
"no">
18115 <autodoc>ShowHidden(bool show)
</autodoc>
18117 <param name=
"show" type=
"bool" default=
""/>
18120 <method name=
"GetShowHidden" overloaded=
"no">
18121 <autodoc>GetShowHidden() -
> bool
</autodoc>
18123 <method name=
"GetFilter" overloaded=
"no">
18124 <autodoc>GetFilter() -
> String
</autodoc>
18126 <method name=
"SetFilter" overloaded=
"no">
18127 <autodoc>SetFilter(String filter)
</autodoc>
18129 <param name=
"filter" type=
"r.q(const).wxString" default=
""/>
18132 <method name=
"GetFilterIndex" overloaded=
"no">
18133 <autodoc>GetFilterIndex() -
> int
</autodoc>
18135 <method name=
"SetFilterIndex" overloaded=
"no">
18136 <autodoc>SetFilterIndex(int n)
</autodoc>
18138 <param name=
"n" type=
"int" default=
""/>
18141 <method name=
"GetRootId" overloaded=
"no">
18142 <autodoc>GetRootId() -
> TreeItemId
</autodoc>
18144 <method name=
"GetTreeCtrl" overloaded=
"no">
18145 <autodoc>GetTreeCtrl() -
> TreeCtrl
</autodoc>
18147 <method name=
"GetFilterListCtrl" overloaded=
"no">
18148 <autodoc>GetFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
18150 <method name=
"FindChild" overloaded=
"no">
18151 <autodoc>FindChild(wxTreeItemId parentId, wxString path) -
> (item, done)
</autodoc>
18152 <docstring>Find the child that matches the first part of 'path'. E.g. if a child path is
18153 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
18154 If the path string has been used (we're at the leaf), done is set to True
18157 <param name=
"parentId" type=
"wxTreeItemId" default=
""/>
18158 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
18159 <param name=
"OUTPUT" type=
"r.bool" default=
""/>
18162 <method name=
"DoResize" overloaded=
"no">
18163 <autodoc>DoResize()
</autodoc>
18165 <method name=
"ReCreateTree" overloaded=
"no">
18166 <autodoc>ReCreateTree()
</autodoc>
18169 <class name=
"DirFilterListCtrl" oldname=
"wxDirFilterListCtrl" module=
"controls">
18170 <baseclass name=
"wxChoice"/>
18171 <constructor name=
"DirFilterListCtrl" overloaded=
"no">
18172 <autodoc>__init__(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
18173 Size size=DefaultSize, long style=
0) -
> DirFilterListCtrl
</autodoc>
18175 <param name=
"parent" type=
"p.wxGenericDirCtrl" default=
""/>
18176 <param name=
"id" type=
"q(const).int" default=
"-1"/>
18177 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18178 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18179 <param name=
"style" type=
"long" default=
"0"/>
18182 <constructor name=
"PreDirFilterListCtrl" overloaded=
"no">
18183 <autodoc>PreDirFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
18185 <method name=
"Create" overloaded=
"no">
18186 <autodoc>Create(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
18187 Size size=DefaultSize, long style=
0) -
> bool
</autodoc>
18189 <param name=
"parent" type=
"p.wxGenericDirCtrl" default=
""/>
18190 <param name=
"id" type=
"q(const).int" default=
"-1"/>
18191 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18192 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18193 <param name=
"style" type=
"long" default=
"0"/>
18196 <method name=
"FillFilterList" overloaded=
"no">
18197 <autodoc>FillFilterList(String filter, int defaultFilter)
</autodoc>
18199 <param name=
"filter" type=
"r.q(const).wxString" default=
""/>
18200 <param name=
"defaultFilter" type=
"int" default=
""/>
18205 #---------------------------------------------------------------------------
18207 <class name=
"PyControl" oldname=
"wxPyControl" module=
"controls">
18208 <baseclass name=
"wxControl"/>
18209 <constructor name=
"PyControl" overloaded=
"no">
18210 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
18211 long style=
0, Validator validator=DefaultValidator,
18212 String name=ControlNameStr) -
> PyControl
</autodoc>
18214 <param name=
"parent" type=
"p.wxWindow" default=
""/>
18215 <param name=
"id" type=
"q(const).int" default=
""/>
18216 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18217 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18218 <param name=
"style" type=
"long" default=
"0"/>
18219 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
18220 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyControlNameStr"/>
18223 <method name=
"_setCallbackInfo" overloaded=
"no">
18224 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
18226 <param name=
"self" type=
"p.PyObject" default=
""/>
18227 <param name=
"_class" type=
"p.PyObject" default=
""/>
18230 <method name=
"base_DoMoveWindow" overloaded=
"no">
18231 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
18233 <param name=
"x" type=
"int" default=
""/>
18234 <param name=
"y" type=
"int" default=
""/>
18235 <param name=
"width" type=
"int" default=
""/>
18236 <param name=
"height" type=
"int" default=
""/>
18239 <method name=
"base_DoSetSize" overloaded=
"no">
18240 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
18242 <param name=
"x" type=
"int" default=
""/>
18243 <param name=
"y" type=
"int" default=
""/>
18244 <param name=
"width" type=
"int" default=
""/>
18245 <param name=
"height" type=
"int" default=
""/>
18246 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
18249 <method name=
"base_DoSetClientSize" overloaded=
"no">
18250 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
18252 <param name=
"width" type=
"int" default=
""/>
18253 <param name=
"height" type=
"int" default=
""/>
18256 <method name=
"base_DoSetVirtualSize" overloaded=
"no">
18257 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
18259 <param name=
"x" type=
"int" default=
""/>
18260 <param name=
"y" type=
"int" default=
""/>
18263 <method name=
"base_DoGetSize" overloaded=
"no">
18264 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
18266 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18267 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18270 <method name=
"base_DoGetClientSize" overloaded=
"no">
18271 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
18273 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18274 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18277 <method name=
"base_DoGetPosition" overloaded=
"no">
18278 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
18280 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18281 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18284 <method name=
"base_DoGetVirtualSize" overloaded=
"no">
18285 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
18287 <method name=
"base_DoGetBestSize" overloaded=
"no">
18288 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
18290 <method name=
"base_InitDialog" overloaded=
"no">
18291 <autodoc>base_InitDialog()
</autodoc>
18293 <method name=
"base_TransferDataToWindow" overloaded=
"no">
18294 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
18296 <method name=
"base_TransferDataFromWindow" overloaded=
"no">
18297 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
18299 <method name=
"base_Validate" overloaded=
"no">
18300 <autodoc>base_Validate() -
> bool
</autodoc>
18302 <method name=
"base_AcceptsFocus" overloaded=
"no">
18303 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
18305 <method name=
"base_AcceptsFocusFromKeyboard" overloaded=
"no">
18306 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
18308 <method name=
"base_GetMaxSize" overloaded=
"no">
18309 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
18311 <method name=
"base_AddChild" overloaded=
"no">
18312 <autodoc>base_AddChild(Window child)
</autodoc>
18314 <param name=
"child" type=
"p.wxWindow" default=
""/>
18317 <method name=
"base_RemoveChild" overloaded=
"no">
18318 <autodoc>base_RemoveChild(Window child)
</autodoc>
18320 <param name=
"child" type=
"p.wxWindow" default=
""/>
18325 #---------------------------------------------------------------------------
18328 EVT_HELP = wx.PyEventBinder( wxEVT_HELP,
1)
18329 EVT_HELP_RANGE = wx.PyEventBinder( wxEVT_HELP,
2)
18330 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP,
1)
18331 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP,
2)
18333 <class name=
"HelpEvent" oldname=
"wxHelpEvent" module=
"controls">
18334 <baseclass name=
"wxCommandEvent"/>
18335 <constructor name=
"HelpEvent" overloaded=
"no">
18336 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> HelpEvent
</autodoc>
18338 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
18339 <param name=
"winid" type=
"int" default=
"0"/>
18340 <param name=
"pt" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18343 <method name=
"GetPosition" overloaded=
"no">
18344 <autodoc>GetPosition() -
> Point
</autodoc>
18346 <method name=
"SetPosition" overloaded=
"no">
18347 <autodoc>SetPosition(Point pos)
</autodoc>
18349 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
18352 <method name=
"GetLink" overloaded=
"no">
18353 <autodoc>GetLink() -
> String
</autodoc>
18355 <method name=
"SetLink" overloaded=
"no">
18356 <autodoc>SetLink(String link)
</autodoc>
18358 <param name=
"link" type=
"r.q(const).wxString" default=
""/>
18361 <method name=
"GetTarget" overloaded=
"no">
18362 <autodoc>GetTarget() -
> String
</autodoc>
18364 <method name=
"SetTarget" overloaded=
"no">
18365 <autodoc>SetTarget(String target)
</autodoc>
18367 <param name=
"target" type=
"r.q(const).wxString" default=
""/>
18371 <class name=
"ContextHelp" oldname=
"wxContextHelp" module=
"controls">
18372 <baseclass name=
"wxObject"/>
18373 <constructor name=
"ContextHelp" overloaded=
"no">
18374 <autodoc>__init__(Window window=None, bool doNow=True) -
> ContextHelp
</autodoc>
18376 <param name=
"window" type=
"p.wxWindow" default=
"NULL"/>
18377 <param name=
"doNow" type=
"bool" default=
"True"/>
18380 <destructor name=
"~wxContextHelp">
18381 <autodoc>__del__()
</autodoc>
18383 <method name=
"BeginContextHelp" overloaded=
"no">
18384 <autodoc>BeginContextHelp(Window window=None) -
> bool
</autodoc>
18386 <param name=
"window" type=
"p.wxWindow" default=
"NULL"/>
18389 <method name=
"EndContextHelp" overloaded=
"no">
18390 <autodoc>EndContextHelp() -
> bool
</autodoc>
18393 <class name=
"ContextHelpButton" oldname=
"wxContextHelpButton" module=
"controls">
18394 <baseclass name=
"wxBitmapButton"/>
18395 <constructor name=
"ContextHelpButton" overloaded=
"no">
18396 <autodoc>__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
18397 Size size=DefaultSize, long style=BU_AUTODRAW) -
> ContextHelpButton
</autodoc>
18399 <param name=
"parent" type=
"p.wxWindow" default=
""/>
18400 <param name=
"id" type=
"int" default=
"wxID_CONTEXT_HELP"/>
18401 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18402 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
18403 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
18407 <class name=
"HelpProvider" oldname=
"wxHelpProvider" module=
"controls">
18408 <staticmethod name=
"Set" overloaded=
"no">
18409 <autodoc>Set(HelpProvider helpProvider) -
> HelpProvider
</autodoc>
18411 <param name=
"helpProvider" type=
"p.wxHelpProvider" default=
""/>
18414 <staticmethod name=
"Get" overloaded=
"no">
18415 <autodoc>Get() -
> HelpProvider
</autodoc>
18417 <method name=
"GetHelp" overloaded=
"no">
18418 <autodoc>GetHelp(Window window) -
> String
</autodoc>
18420 <param name=
"window" type=
"p.q(const).wxWindow" default=
""/>
18423 <method name=
"ShowHelp" overloaded=
"no">
18424 <autodoc>ShowHelp(Window window) -
> bool
</autodoc>
18426 <param name=
"window" type=
"p.wxWindow" default=
""/>
18429 <method name=
"AddHelp" overloaded=
"no">
18430 <autodoc>AddHelp(Window window, String text)
</autodoc>
18432 <param name=
"window" type=
"p.wxWindow" default=
""/>
18433 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
18436 <method name=
"AddHelpById" overloaded=
"no">
18437 <autodoc>AddHelpById(int id, String text)
</autodoc>
18439 <param name=
"id" type=
"int" default=
""/>
18440 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
18443 <method name=
"Destroy" overloaded=
"no">
18444 <autodoc>Destroy()
</autodoc>
18447 <class name=
"SimpleHelpProvider" oldname=
"wxSimpleHelpProvider" module=
"controls">
18448 <baseclass name=
"wxHelpProvider"/>
18449 <constructor name=
"SimpleHelpProvider" overloaded=
"no">
18450 <autodoc>__init__() -
> SimpleHelpProvider
</autodoc>
18454 #---------------------------------------------------------------------------
18456 <class name=
"DragImage" oldname=
"wxGenericDragImage" module=
"controls">
18457 <baseclass name=
"wxObject"/>
18458 <constructor name=
"wxGenericDragImage" overloaded=
"no">
18459 <autodoc>__init__(Bitmap image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
18461 <param name=
"image" type=
"r.q(const).wxBitmap" default=
""/>
18462 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
"wxNullCursor"/>
18465 <constructor name=
"DragIcon" overloaded=
"no">
18466 <autodoc>DragIcon(Icon image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
18468 <param name=
"image" type=
"r.q(const).wxIcon" default=
""/>
18469 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
"wxNullCursor"/>
18472 <constructor name=
"DragString" overloaded=
"no">
18473 <autodoc>DragString(String str, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
18475 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
18476 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
"wxNullCursor"/>
18479 <constructor name=
"DragTreeItem" overloaded=
"no">
18480 <autodoc>DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -
> DragImage
</autodoc>
18482 <param name=
"treeCtrl" type=
"r.q(const).wxPyTreeCtrl" default=
""/>
18483 <param name=
"id" type=
"r.wxTreeItemId" default=
""/>
18486 <constructor name=
"DragListItem" overloaded=
"no">
18487 <autodoc>DragListItem(ListCtrl listCtrl, long id) -
> DragImage
</autodoc>
18489 <param name=
"listCtrl" type=
"r.q(const).wxPyListCtrl" default=
""/>
18490 <param name=
"id" type=
"long" default=
""/>
18493 <destructor name=
"~wxGenericDragImage">
18494 <autodoc>__del__()
</autodoc>
18496 <method name=
"SetBackingBitmap" overloaded=
"no">
18497 <autodoc>SetBackingBitmap(Bitmap bitmap)
</autodoc>
18499 <param name=
"bitmap" type=
"p.wxBitmap" default=
""/>
18502 <method name=
"BeginDrag" overloaded=
"no">
18503 <autodoc>BeginDrag(Point hotspot, Window window, bool fullScreen=False,
18504 Rect rect=None) -
> bool
</autodoc>
18506 <param name=
"hotspot" type=
"r.q(const).wxPoint" default=
""/>
18507 <param name=
"window" type=
"p.wxWindow" default=
""/>
18508 <param name=
"fullScreen" type=
"bool" default=
"False"/>
18509 <param name=
"rect" type=
"p.wxRect" default=
"NULL"/>
18512 <method name=
"BeginDragBounded" overloaded=
"no">
18513 <autodoc>BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -
> bool
</autodoc>
18515 <param name=
"hotspot" type=
"r.q(const).wxPoint" default=
""/>
18516 <param name=
"window" type=
"p.wxWindow" default=
""/>
18517 <param name=
"boundingWindow" type=
"p.wxWindow" default=
""/>
18520 <method name=
"EndDrag" overloaded=
"no">
18521 <autodoc>EndDrag() -
> bool
</autodoc>
18523 <method name=
"Move" overloaded=
"no">
18524 <autodoc>Move(Point pt) -
> bool
</autodoc>
18526 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
18529 <method name=
"Show" overloaded=
"no">
18530 <autodoc>Show() -
> bool
</autodoc>
18532 <method name=
"Hide" overloaded=
"no">
18533 <autodoc>Hide() -
> bool
</autodoc>
18535 <method name=
"GetImageRect" overloaded=
"no">
18536 <autodoc>GetImageRect(Point pos) -
> Rect
</autodoc>
18538 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
18541 <method name=
"DoDrawImage" overloaded=
"no">
18542 <autodoc>DoDrawImage(DC dc, Point pos) -
> bool
</autodoc>
18544 <param name=
"dc" type=
"r.wxDC" default=
""/>
18545 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
18548 <method name=
"UpdateBackingFromWindow" overloaded=
"no">
18549 <autodoc>UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -
> bool
</autodoc>
18551 <param name=
"windowDC" type=
"r.wxDC" default=
""/>
18552 <param name=
"destDC" type=
"r.wxMemoryDC" default=
""/>
18553 <param name=
"sourceRect" type=
"r.q(const).wxRect" default=
""/>
18554 <param name=
"destRect" type=
"r.q(const).wxRect" default=
""/>
18557 <method name=
"RedrawImage" overloaded=
"no">
18558 <autodoc>RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -
> bool
</autodoc>
18560 <param name=
"oldPos" type=
"r.q(const).wxPoint" default=
""/>
18561 <param name=
"newPos" type=
"r.q(const).wxPoint" default=
""/>
18562 <param name=
"eraseOld" type=
"bool" default=
""/>
18563 <param name=
"drawNew" type=
"bool" default=
""/>
18568 <module name=
"misc">
18569 <pythoncode> wx = core
</pythoncode>
18571 #---------------------------------------------------------------------------
18573 <class name=
"SystemSettings" oldname=
"wxSystemSettings" module=
"misc">
18574 <staticmethod name=
"GetColour" overloaded=
"no">
18575 <autodoc>GetColour(int index) -
> Colour
</autodoc>
18577 <param name=
"index" type=
"wxSystemColour" default=
""/>
18580 <staticmethod name=
"GetFont" overloaded=
"no">
18581 <autodoc>GetFont(int index) -
> Font
</autodoc>
18583 <param name=
"index" type=
"wxSystemFont" default=
""/>
18586 <staticmethod name=
"GetMetric" overloaded=
"no">
18587 <autodoc>GetMetric(int index) -
> int
</autodoc>
18589 <param name=
"index" type=
"wxSystemMetric" default=
""/>
18592 <staticmethod name=
"HasFeature" overloaded=
"no">
18593 <autodoc>HasFeature(int index) -
> bool
</autodoc>
18595 <param name=
"index" type=
"wxSystemFeature" default=
""/>
18598 <staticmethod name=
"GetScreenType" overloaded=
"no">
18599 <autodoc>GetScreenType() -
> int
</autodoc>
18601 <staticmethod name=
"SetScreenType" overloaded=
"no">
18602 <autodoc>SetScreenType(int screen)
</autodoc>
18604 <param name=
"screen" type=
"wxSystemScreenType" default=
""/>
18608 <class name=
"SystemOptions" oldname=
"wxSystemOptions" module=
"misc">
18609 <baseclass name=
"wxObject"/>
18610 <constructor name=
"SystemOptions" overloaded=
"no">
18611 <autodoc>__init__() -
> SystemOptions
</autodoc>
18613 <staticmethod name=
"SetOption" overloaded=
"no">
18614 <autodoc>SetOption(String name, String value)
</autodoc>
18616 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
18617 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
18620 <staticmethod name=
"SetOptionInt" overloaded=
"no">
18621 <autodoc>SetOptionInt(String name, int value)
</autodoc>
18623 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
18624 <param name=
"value" type=
"int" default=
""/>
18627 <staticmethod name=
"GetOption" overloaded=
"no">
18628 <autodoc>GetOption(String name) -
> String
</autodoc>
18630 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
18633 <staticmethod name=
"GetOptionInt" overloaded=
"no">
18634 <autodoc>GetOptionInt(String name) -
> int
</autodoc>
18636 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
18639 <staticmethod name=
"HasOption" overloaded=
"no">
18640 <autodoc>HasOption(String name) -
> bool
</autodoc>
18642 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
18647 #---------------------------------------------------------------------------
18649 <function oldname=
"wxNewId" name=
"NewId" overloaded=
"no">
18650 <autodoc>NewId() -
> long
</autodoc>
18652 <function oldname=
"wxRegisterId" name=
"RegisterId" overloaded=
"no">
18653 <autodoc>RegisterId(long id)
</autodoc>
18655 <param name=
"id" type=
"long" default=
""/>
18658 <function oldname=
"wxGetCurrentId" name=
"GetCurrentId" overloaded=
"no">
18659 <autodoc>GetCurrentId() -
> long
</autodoc>
18661 <function oldname=
"wxBell" name=
"Bell" overloaded=
"no">
18662 <autodoc>Bell()
</autodoc>
18664 <function oldname=
"wxEndBusyCursor" name=
"EndBusyCursor" overloaded=
"no">
18665 <autodoc>EndBusyCursor()
</autodoc>
18667 <function oldname=
"wxGetElapsedTime" name=
"GetElapsedTime" overloaded=
"no">
18668 <autodoc>GetElapsedTime(bool resetTimer=True) -
> long
</autodoc>
18670 <param name=
"resetTimer" type=
"bool" default=
"True"/>
18673 <function oldname=
"wxGetMousePosition" name=
"GetMousePosition" overloaded=
"no">
18674 <autodoc>GetMousePosition() -
> (x,y)
</autodoc>
18676 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18677 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18680 <function oldname=
"wxIsBusy" name=
"IsBusy" overloaded=
"no">
18681 <autodoc>IsBusy() -
> bool
</autodoc>
18683 <function oldname=
"wxNow" name=
"Now" overloaded=
"no">
18684 <autodoc>Now() -
> String
</autodoc>
18686 <function oldname=
"wxShell" name=
"Shell" overloaded=
"no">
18687 <autodoc>Shell(String command=EmptyString) -
> bool
</autodoc>
18689 <param name=
"command" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18692 <function oldname=
"wxStartTimer" name=
"StartTimer" overloaded=
"no">
18693 <autodoc>StartTimer()
</autodoc>
18695 <function oldname=
"wxGetOsVersion" name=
"GetOsVersion" overloaded=
"no">
18696 <autodoc>GetOsVersion() -
> (platform, major, minor)
</autodoc>
18698 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18699 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18702 <function oldname=
"wxGetOsDescription" name=
"GetOsDescription" overloaded=
"no">
18703 <autodoc>GetOsDescription() -
> String
</autodoc>
18705 <function oldname=
"wxGetFreeMemory" name=
"GetFreeMemory" overloaded=
"no">
18706 <autodoc>GetFreeMemory() -
> long
</autodoc>
18708 <function oldname=
"wxShutdown" name=
"Shutdown" overloaded=
"no">
18709 <autodoc>Shutdown(int wFlags) -
> bool
</autodoc>
18711 <param name=
"wFlags" type=
"wxShutdownFlags" default=
""/>
18714 <function oldname=
"wxSleep" name=
"Sleep" overloaded=
"no">
18715 <autodoc>Sleep(int secs)
</autodoc>
18717 <param name=
"secs" type=
"int" default=
""/>
18720 <function oldname=
"wxUsleep" name=
"Usleep" overloaded=
"no">
18721 <autodoc>Usleep(unsigned long milliseconds)
</autodoc>
18723 <param name=
"milliseconds" type=
"unsigned long" default=
""/>
18726 <function oldname=
"wxEnableTopLevelWindows" name=
"EnableTopLevelWindows" overloaded=
"no">
18727 <autodoc>EnableTopLevelWindows(bool enable)
</autodoc>
18729 <param name=
"enable" type=
"bool" default=
""/>
18732 <function oldname=
"wxStripMenuCodes" name=
"StripMenuCodes" overloaded=
"no">
18733 <autodoc>StripMenuCodes(String in) -
> String
</autodoc>
18735 <param name=
"in" type=
"r.q(const).wxString" default=
""/>
18738 <function oldname=
"wxGetEmailAddress" name=
"GetEmailAddress" overloaded=
"no">
18739 <autodoc>GetEmailAddress() -
> String
</autodoc>
18741 <function oldname=
"wxGetHostName" name=
"GetHostName" overloaded=
"no">
18742 <autodoc>GetHostName() -
> String
</autodoc>
18744 <function oldname=
"wxGetFullHostName" name=
"GetFullHostName" overloaded=
"no">
18745 <autodoc>GetFullHostName() -
> String
</autodoc>
18747 <function oldname=
"wxGetUserId" name=
"GetUserId" overloaded=
"no">
18748 <autodoc>GetUserId() -
> String
</autodoc>
18750 <function oldname=
"wxGetUserName" name=
"GetUserName" overloaded=
"no">
18751 <autodoc>GetUserName() -
> String
</autodoc>
18753 <function oldname=
"wxGetHomeDir" name=
"GetHomeDir" overloaded=
"no">
18754 <autodoc>GetHomeDir() -
> String
</autodoc>
18756 <function oldname=
"wxGetUserHome" name=
"GetUserHome" overloaded=
"no">
18757 <autodoc>GetUserHome(String user=EmptyString) -
> String
</autodoc>
18759 <param name=
"user" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18762 <function oldname=
"wxGetProcessId" name=
"GetProcessId" overloaded=
"no">
18763 <autodoc>GetProcessId() -
> unsigned long
</autodoc>
18765 <function oldname=
"wxTrap" name=
"Trap" overloaded=
"no">
18766 <autodoc>Trap()
</autodoc>
18768 <function oldname=
"wxFileSelector" name=
"FileSelector" overloaded=
"no">
18769 <autodoc>FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString,
18770 String default_filename=EmptyString,
18771 String default_extension=EmptyString,
18772 String wildcard=FileSelectorDefaultWildcardStr,
18773 int flags=
0, Window parent=None, int x=-
1,
18774 int y=-
1) -
> String
</autodoc>
18776 <param name=
"message" type=
"r.q(const).wxString" default=
"wxPyFileSelectorPromptStr"/>
18777 <param name=
"default_path" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18778 <param name=
"default_filename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18779 <param name=
"default_extension" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18780 <param name=
"wildcard" type=
"r.q(const).wxString" default=
"wxPyFileSelectorDefaultWildcardStr"/>
18781 <param name=
"flags" type=
"int" default=
"0"/>
18782 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18783 <param name=
"x" type=
"int" default=
"-1"/>
18784 <param name=
"y" type=
"int" default=
"-1"/>
18787 <function oldname=
"wxLoadFileSelector" name=
"LoadFileSelector" overloaded=
"no">
18788 <autodoc>LoadFileSelector(String what, String extension, String default_name=EmptyString,
18789 Window parent=None) -
> String
</autodoc>
18791 <param name=
"what" type=
"r.q(const).wxString" default=
""/>
18792 <param name=
"extension" type=
"r.q(const).wxString" default=
""/>
18793 <param name=
"default_name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18794 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18797 <function oldname=
"wxSaveFileSelector" name=
"SaveFileSelector" overloaded=
"no">
18798 <autodoc>SaveFileSelector(String what, String extension, String default_name=EmptyString,
18799 Window parent=None) -
> String
</autodoc>
18801 <param name=
"what" type=
"r.q(const).wxString" default=
""/>
18802 <param name=
"extension" type=
"r.q(const).wxString" default=
""/>
18803 <param name=
"default_name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18804 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18807 <function oldname=
"wxDirSelector" name=
"DirSelector" overloaded=
"no">
18808 <autodoc>DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString,
18809 long style=DD_DEFAULT_STYLE,
18810 Point pos=DefaultPosition, Window parent=None) -
> String
</autodoc>
18812 <param name=
"message" type=
"r.q(const).wxString" default=
"wxPyDirSelectorPromptStr"/>
18813 <param name=
"defaultPath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18814 <param name=
"style" type=
"long" default=
"wxDD_DEFAULT_STYLE"/>
18815 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18816 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18819 <function oldname=
"wxGetTextFromUser" name=
"GetTextFromUser" overloaded=
"no">
18820 <autodoc>GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
18821 Window parent=None,
18822 int x=-
1, int y=-
1, bool centre=True) -
> String
</autodoc>
18824 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18825 <param name=
"caption" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18826 <param name=
"default_value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18827 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18828 <param name=
"x" type=
"int" default=
"-1"/>
18829 <param name=
"y" type=
"int" default=
"-1"/>
18830 <param name=
"centre" type=
"bool" default=
"True"/>
18833 <function oldname=
"wxGetPasswordFromUser" name=
"GetPasswordFromUser" overloaded=
"no">
18834 <autodoc>GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
18835 Window parent=None) -
> String
</autodoc>
18837 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18838 <param name=
"caption" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18839 <param name=
"default_value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18840 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18843 <function oldname=
"wxGetSingleChoice" name=
"GetSingleChoice" overloaded=
"no">
18844 <autodoc>GetSingleChoice(String message, String caption, int choices, String choices_array,
18845 Window parent=None, int x=-
1,
18846 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> String
</autodoc>
18848 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18849 <param name=
"caption" type=
"r.q(const).wxString" default=
""/>
18850 <param name=
"choices" type=
"int" default=
""/>
18851 <param name=
"choices_array" type=
"p.wxString" default=
""/>
18852 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18853 <param name=
"x" type=
"int" default=
"-1"/>
18854 <param name=
"y" type=
"int" default=
"-1"/>
18855 <param name=
"centre" type=
"bool" default=
"True"/>
18856 <param name=
"width" type=
"int" default=
"150"/>
18857 <param name=
"height" type=
"int" default=
"200"/>
18860 <function oldname=
"wxGetSingleChoiceIndex" name=
"GetSingleChoiceIndex" overloaded=
"no">
18861 <autodoc>GetSingleChoiceIndex(String message, String caption, int choices, String choices_array,
18862 Window parent=None, int x=-
1,
18863 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> int
</autodoc>
18865 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18866 <param name=
"caption" type=
"r.q(const).wxString" default=
""/>
18867 <param name=
"choices" type=
"int" default=
""/>
18868 <param name=
"choices_array" type=
"p.wxString" default=
""/>
18869 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18870 <param name=
"x" type=
"int" default=
"-1"/>
18871 <param name=
"y" type=
"int" default=
"-1"/>
18872 <param name=
"centre" type=
"bool" default=
"True"/>
18873 <param name=
"width" type=
"int" default=
"150"/>
18874 <param name=
"height" type=
"int" default=
"200"/>
18877 <function oldname=
"wxMessageBox" name=
"MessageBox" overloaded=
"no">
18878 <autodoc>MessageBox(String message, String caption=EmptyString, int style=wxOK|wxCENTRE,
18879 Window parent=None, int x=-
1,
18880 int y=-
1) -
> int
</autodoc>
18882 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18883 <param name=
"caption" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
18884 <param name=
"style" type=
"int" default=
"wxOK|wxCENTRE"/>
18885 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18886 <param name=
"x" type=
"int" default=
"-1"/>
18887 <param name=
"y" type=
"int" default=
"-1"/>
18890 <function oldname=
"wxGetNumberFromUser" name=
"GetNumberFromUser" overloaded=
"no">
18891 <autodoc>GetNumberFromUser(String message, String prompt, String caption, long value,
18892 long min=
0, long max=
100, Window parent=None,
18893 Point pos=DefaultPosition) -
> long
</autodoc>
18895 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
18896 <param name=
"prompt" type=
"r.q(const).wxString" default=
""/>
18897 <param name=
"caption" type=
"r.q(const).wxString" default=
""/>
18898 <param name=
"value" type=
"long" default=
""/>
18899 <param name=
"min" type=
"long" default=
"0"/>
18900 <param name=
"max" type=
"long" default=
"100"/>
18901 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
18902 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
18905 <function oldname=
"wxColourDisplay" name=
"ColourDisplay" overloaded=
"no">
18906 <autodoc>ColourDisplay() -
> bool
</autodoc>
18908 <function oldname=
"wxDisplayDepth" name=
"DisplayDepth" overloaded=
"no">
18909 <autodoc>DisplayDepth() -
> int
</autodoc>
18911 <function oldname=
"wxGetDisplayDepth" name=
"GetDisplayDepth" overloaded=
"no">
18912 <autodoc>GetDisplayDepth() -
> int
</autodoc>
18914 <function oldname=
"wxDisplaySize" name=
"DisplaySize" overloaded=
"no">
18915 <autodoc>DisplaySize() -
> (width, height)
</autodoc>
18917 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18918 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18921 <function oldname=
"wxGetDisplaySize" name=
"GetDisplaySize" overloaded=
"no">
18922 <autodoc>GetDisplaySize() -
> Size
</autodoc>
18924 <function oldname=
"wxDisplaySizeMM" name=
"DisplaySizeMM" overloaded=
"no">
18925 <autodoc>DisplaySizeMM() -
> (width, height)
</autodoc>
18927 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18928 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18931 <function oldname=
"wxGetDisplaySizeMM" name=
"GetDisplaySizeMM" overloaded=
"no">
18932 <autodoc>GetDisplaySizeMM() -
> Size
</autodoc>
18934 <function oldname=
"wxClientDisplayRect" name=
"ClientDisplayRect" overloaded=
"no">
18935 <autodoc>ClientDisplayRect() -
> (x, y, width, height)
</autodoc>
18937 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18938 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18939 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18940 <param name=
"OUTPUT" type=
"p.int" default=
""/>
18943 <function oldname=
"wxGetClientDisplayRect" name=
"GetClientDisplayRect" overloaded=
"no">
18944 <autodoc>GetClientDisplayRect() -
> Rect
</autodoc>
18946 <function oldname=
"wxSetCursor" name=
"SetCursor" overloaded=
"no">
18947 <autodoc>SetCursor(Cursor cursor)
</autodoc>
18949 <param name=
"cursor" type=
"r.wxCursor" default=
""/>
18952 <function oldname=
"wxBeginBusyCursor" name=
"BeginBusyCursor" overloaded=
"no">
18953 <autodoc>BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
</autodoc>
18955 <param name=
"cursor" type=
"p.wxCursor" default=
"wxHOURGLASS_CURSOR"/>
18958 <function oldname=
"wxGetActiveWindow" name=
"GetActiveWindow" overloaded=
"no">
18959 <autodoc>GetActiveWindow() -
> Window
</autodoc>
18961 <function oldname=
"wxGenericFindWindowAtPoint" name=
"GenericFindWindowAtPoint" overloaded=
"no">
18962 <autodoc>GenericFindWindowAtPoint(Point pt) -
> Window
</autodoc>
18964 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
18967 <function oldname=
"wxFindWindowAtPoint" name=
"FindWindowAtPoint" overloaded=
"no">
18968 <autodoc>FindWindowAtPoint(Point pt) -
> Window
</autodoc>
18970 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
18973 <function oldname=
"wxGetTopLevelParent" name=
"GetTopLevelParent" overloaded=
"no">
18974 <autodoc>GetTopLevelParent(Window win) -
> Window
</autodoc>
18976 <param name=
"win" type=
"p.wxWindow" default=
""/>
18979 <function oldname=
"wxGetKeyState" name=
"GetKeyState" overloaded=
"no">
18980 <autodoc>GetKeyState(int key) -
> bool
</autodoc>
18982 <param name=
"key" type=
"wxKeyCode" default=
""/>
18985 <function oldname=
"wxWakeUpMainThread" name=
"WakeUpMainThread" overloaded=
"no">
18986 <autodoc>WakeUpMainThread()
</autodoc>
18988 <function oldname=
"wxMutexGuiEnter" name=
"MutexGuiEnter" overloaded=
"no">
18989 <autodoc>MutexGuiEnter()
</autodoc>
18991 <function oldname=
"wxMutexGuiLeave" name=
"MutexGuiLeave" overloaded=
"no">
18992 <autodoc>MutexGuiLeave()
</autodoc>
18994 <class name=
"MutexGuiLocker" oldname=
"wxMutexGuiLocker" module=
"misc">
18995 <constructor name=
"MutexGuiLocker" overloaded=
"no">
18996 <autodoc>__init__() -
> MutexGuiLocker
</autodoc>
18998 <destructor name=
"~wxMutexGuiLocker">
18999 <autodoc>__del__()
</autodoc>
19002 <function oldname=
"wxThread_IsMain" name=
"Thread_IsMain" overloaded=
"no">
19003 <autodoc>Thread_IsMain() -
> bool
</autodoc>
19006 #---------------------------------------------------------------------------
19008 <class name=
"ToolTip" oldname=
"wxToolTip" module=
"misc">
19009 <baseclass name=
"wxObject"/>
19010 <constructor name=
"ToolTip" overloaded=
"no">
19011 <autodoc>__init__(String tip) -
> ToolTip
</autodoc>
19013 <param name=
"tip" type=
"r.q(const).wxString" default=
""/>
19016 <method name=
"SetTip" overloaded=
"no">
19017 <autodoc>SetTip(String tip)
</autodoc>
19019 <param name=
"tip" type=
"r.q(const).wxString" default=
""/>
19022 <method name=
"GetTip" overloaded=
"no">
19023 <autodoc>GetTip() -
> String
</autodoc>
19025 <method name=
"GetWindow" overloaded=
"no">
19026 <autodoc>GetWindow() -
> Window
</autodoc>
19028 <staticmethod name=
"Enable" overloaded=
"no">
19029 <autodoc>Enable(bool flag)
</autodoc>
19031 <param name=
"flag" type=
"bool" default=
""/>
19034 <staticmethod name=
"SetDelay" overloaded=
"no">
19035 <autodoc>SetDelay(long milliseconds)
</autodoc>
19037 <param name=
"milliseconds" type=
"long" default=
""/>
19041 <class name=
"Caret" oldname=
"wxCaret" module=
"misc">
19042 <constructor name=
"Caret" overloaded=
"no">
19043 <autodoc>__init__(Window window, Size size) -
> Caret
</autodoc>
19045 <param name=
"window" type=
"p.wxWindow" default=
""/>
19046 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
19049 <destructor name=
"~wxCaret">
19050 <autodoc>__del__()
</autodoc>
19052 <method name=
"IsOk" overloaded=
"no">
19053 <autodoc>IsOk() -
> bool
</autodoc>
19055 <method name=
"IsVisible" overloaded=
"no">
19056 <autodoc>IsVisible() -
> bool
</autodoc>
19058 <method name=
"GetPosition" overloaded=
"no">
19059 <autodoc>GetPosition() -
> Point
</autodoc>
19061 <method name=
"GetPositionTuple" overloaded=
"no">
19062 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
19064 <param name=
"OUTPUT" type=
"p.int" default=
""/>
19065 <param name=
"OUTPUT" type=
"p.int" default=
""/>
19068 <method name=
"GetSize" overloaded=
"no">
19069 <autodoc>GetSize() -
> Size
</autodoc>
19071 <method name=
"GetSizeTuple" overloaded=
"no">
19072 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
19074 <param name=
"OUTPUT" type=
"p.int" default=
""/>
19075 <param name=
"OUTPUT" type=
"p.int" default=
""/>
19078 <method name=
"GetWindow" overloaded=
"no">
19079 <autodoc>GetWindow() -
> Window
</autodoc>
19081 <method name=
"MoveXY" overloaded=
"no">
19082 <autodoc>MoveXY(int x, int y)
</autodoc>
19084 <param name=
"x" type=
"int" default=
""/>
19085 <param name=
"y" type=
"int" default=
""/>
19088 <method name=
"Move" overloaded=
"no">
19089 <autodoc>Move(Point pt)
</autodoc>
19091 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
19094 <method name=
"SetSizeWH" overloaded=
"no">
19095 <autodoc>SetSizeWH(int width, int height)
</autodoc>
19097 <param name=
"width" type=
"int" default=
""/>
19098 <param name=
"height" type=
"int" default=
""/>
19101 <method name=
"SetSize" overloaded=
"no">
19102 <autodoc>SetSize(Size size)
</autodoc>
19104 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
19107 <method name=
"Show" overloaded=
"no">
19108 <autodoc>Show(int show=True)
</autodoc>
19110 <param name=
"show" type=
"int" default=
"True"/>
19113 <method name=
"Hide" overloaded=
"no">
19114 <autodoc>Hide()
</autodoc>
19116 <pythoncode> def __nonzero__(self): return self.IsOk()
</pythoncode>
19118 <function oldname=
"wxCaret_GetBlinkTime" name=
"Caret_GetBlinkTime" overloaded=
"no">
19119 <autodoc>Caret_GetBlinkTime() -
> int
</autodoc>
19121 <function oldname=
"wxCaret_SetBlinkTime" name=
"Caret_SetBlinkTime" overloaded=
"no">
19122 <autodoc>Caret_SetBlinkTime(int milliseconds)
</autodoc>
19124 <param name=
"milliseconds" type=
"int" default=
""/>
19127 <class name=
"BusyCursor" oldname=
"wxBusyCursor" module=
"misc">
19128 <constructor name=
"BusyCursor" overloaded=
"no">
19129 <autodoc>__init__(Cursor cursor=wxHOURGLASS_CURSOR) -
> BusyCursor
</autodoc>
19131 <param name=
"cursor" type=
"p.wxCursor" default=
"wxHOURGLASS_CURSOR"/>
19134 <destructor name=
"~wxBusyCursor">
19135 <autodoc>__del__()
</autodoc>
19138 <class name=
"WindowDisabler" oldname=
"wxWindowDisabler" module=
"misc">
19139 <constructor name=
"WindowDisabler" overloaded=
"no">
19140 <autodoc>__init__(Window winToSkip=None) -
> WindowDisabler
</autodoc>
19142 <param name=
"winToSkip" type=
"p.wxWindow" default=
"NULL"/>
19145 <destructor name=
"~wxWindowDisabler">
19146 <autodoc>__del__()
</autodoc>
19149 <class name=
"BusyInfo" oldname=
"wxBusyInfo" module=
"misc">
19150 <baseclass name=
"wxObject"/>
19151 <constructor name=
"BusyInfo" overloaded=
"no">
19152 <autodoc>__init__(String message) -
> BusyInfo
</autodoc>
19154 <param name=
"message" type=
"r.q(const).wxString" default=
""/>
19157 <destructor name=
"~wxBusyInfo">
19158 <autodoc>__del__()
</autodoc>
19161 <class name=
"StopWatch" oldname=
"wxStopWatch" module=
"misc">
19162 <constructor name=
"StopWatch" overloaded=
"no">
19163 <autodoc>__init__() -
> StopWatch
</autodoc>
19165 <method name=
"Start" overloaded=
"no">
19166 <autodoc>Start(long t0=
0)
</autodoc>
19168 <param name=
"t0" type=
"long" default=
"0"/>
19171 <method name=
"Pause" overloaded=
"no">
19172 <autodoc>Pause()
</autodoc>
19174 <method name=
"Resume" overloaded=
"no">
19175 <autodoc>Resume()
</autodoc>
19177 <method name=
"Time" overloaded=
"no">
19178 <autodoc>Time() -
> long
</autodoc>
19181 <class name=
"FileHistory" oldname=
"wxFileHistory" module=
"misc">
19182 <baseclass name=
"wxObject"/>
19183 <constructor name=
"FileHistory" overloaded=
"no">
19184 <autodoc>__init__(int maxFiles=
9) -
> FileHistory
</autodoc>
19186 <param name=
"maxFiles" type=
"int" default=
"9"/>
19189 <destructor name=
"~wxFileHistory">
19190 <autodoc>__del__()
</autodoc>
19192 <method name=
"AddFileToHistory" overloaded=
"no">
19193 <autodoc>AddFileToHistory(String file)
</autodoc>
19195 <param name=
"file" type=
"r.q(const).wxString" default=
""/>
19198 <method name=
"RemoveFileFromHistory" overloaded=
"no">
19199 <autodoc>RemoveFileFromHistory(int i)
</autodoc>
19201 <param name=
"i" type=
"int" default=
""/>
19204 <method name=
"GetMaxFiles" overloaded=
"no">
19205 <autodoc>GetMaxFiles() -
> int
</autodoc>
19207 <method name=
"UseMenu" overloaded=
"no">
19208 <autodoc>UseMenu(Menu menu)
</autodoc>
19210 <param name=
"menu" type=
"p.wxMenu" default=
""/>
19213 <method name=
"RemoveMenu" overloaded=
"no">
19214 <autodoc>RemoveMenu(Menu menu)
</autodoc>
19216 <param name=
"menu" type=
"p.wxMenu" default=
""/>
19219 <method name=
"Load" overloaded=
"no">
19220 <autodoc>Load(ConfigBase config)
</autodoc>
19222 <param name=
"config" type=
"r.wxConfigBase" default=
""/>
19225 <method name=
"Save" overloaded=
"no">
19226 <autodoc>Save(ConfigBase config)
</autodoc>
19228 <param name=
"config" type=
"r.wxConfigBase" default=
""/>
19231 <method name=
"AddFilesToMenu" overloaded=
"no">
19232 <autodoc>AddFilesToMenu()
</autodoc>
19234 <method name=
"AddFilesToThisMenu" overloaded=
"no">
19235 <autodoc>AddFilesToThisMenu(Menu menu)
</autodoc>
19237 <param name=
"menu" type=
"p.wxMenu" default=
""/>
19240 <method name=
"GetHistoryFile" overloaded=
"no">
19241 <autodoc>GetHistoryFile(int i) -
> String
</autodoc>
19243 <param name=
"i" type=
"int" default=
""/>
19246 <method name=
"GetCount" overloaded=
"no">
19247 <autodoc>GetCount() -
> int
</autodoc>
19249 <pythoncode> GetNoHistoryFiles = GetCount
</pythoncode>
19251 <class name=
"SingleInstanceChecker" oldname=
"wxSingleInstanceChecker" module=
"misc">
19252 <constructor name=
"SingleInstanceChecker" overloaded=
"no">
19253 <autodoc>__init__(String name, String path=EmptyString) -
> SingleInstanceChecker
</autodoc>
19255 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
19256 <param name=
"path" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
19259 <constructor name=
"PreSingleInstanceChecker" overloaded=
"no">
19260 <autodoc>PreSingleInstanceChecker() -
> SingleInstanceChecker
</autodoc>
19262 <destructor name=
"~wxSingleInstanceChecker">
19263 <autodoc>__del__()
</autodoc>
19265 <method name=
"Create" overloaded=
"no">
19266 <autodoc>Create(String name, String path=EmptyString) -
> bool
</autodoc>
19268 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
19269 <param name=
"path" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
19272 <method name=
"IsAnotherRunning" overloaded=
"no">
19273 <autodoc>IsAnotherRunning() -
> bool
</autodoc>
19276 <function oldname=
"wxDrawWindowOnDC" name=
"DrawWindowOnDC" overloaded=
"no">
19277 <autodoc>DrawWindowOnDC(Window window, DC dc, int method)
</autodoc>
19279 <param name=
"window" type=
"p.wxWindow" default=
""/>
19280 <param name=
"dc" type=
"r.q(const).wxDC" default=
""/>
19281 <param name=
"method" type=
"int" default=
""/>
19285 #---------------------------------------------------------------------------
19287 <class name=
"TipProvider" oldname=
"wxTipProvider" module=
"misc">
19288 <destructor name=
"~wxTipProvider">
19289 <autodoc>__del__()
</autodoc>
19291 <method name=
"GetTip" overloaded=
"no">
19292 <autodoc>GetTip() -
> String
</autodoc>
19294 <method name=
"GetCurrentTip" overloaded=
"no">
19295 <autodoc>GetCurrentTip() -
> size_t
</autodoc>
19297 <method name=
"PreprocessTip" overloaded=
"no">
19298 <autodoc>PreprocessTip(String tip) -
> String
</autodoc>
19300 <param name=
"tip" type=
"r.q(const).wxString" default=
""/>
19304 <class name=
"PyTipProvider" oldname=
"wxPyTipProvider" module=
"misc">
19305 <baseclass name=
"wxTipProvider"/>
19306 <constructor name=
"PyTipProvider" overloaded=
"no">
19307 <autodoc>__init__(size_t currentTip) -
> PyTipProvider
</autodoc>
19309 <param name=
"currentTip" type=
"size_t" default=
""/>
19312 <method name=
"_setCallbackInfo" overloaded=
"no">
19313 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19315 <param name=
"self" type=
"p.PyObject" default=
""/>
19316 <param name=
"_class" type=
"p.PyObject" default=
""/>
19320 <function oldname=
"wxShowTip" name=
"ShowTip" overloaded=
"no">
19321 <autodoc>ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -
> bool
</autodoc>
19323 <param name=
"parent" type=
"p.wxWindow" default=
""/>
19324 <param name=
"tipProvider" type=
"p.wxTipProvider" default=
""/>
19325 <param name=
"showAtStartup" type=
"bool" default=
"True"/>
19328 <function oldname=
"wxCreateFileTipProvider" name=
"CreateFileTipProvider" overloaded=
"no">
19329 <autodoc>CreateFileTipProvider(String filename, size_t currentTip) -
> TipProvider
</autodoc>
19331 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
19332 <param name=
"currentTip" type=
"size_t" default=
""/>
19336 #---------------------------------------------------------------------------
19338 <class name=
"Timer" oldname=
"wxPyTimer" module=
"misc">
19339 <baseclass name=
"wxEvtHandler"/>
19340 <constructor name=
"wxPyTimer" overloaded=
"no">
19341 <autodoc>__init__(EvtHandler owner=None, int id=-
1) -
> Timer
</autodoc>
19343 <param name=
"owner" type=
"p.wxEvtHandler" default=
"NULL"/>
19344 <param name=
"id" type=
"int" default=
"-1"/>
19347 <destructor name=
"~wxPyTimer">
19348 <autodoc>__del__()
</autodoc>
19350 <method name=
"_setCallbackInfo" overloaded=
"no">
19351 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19353 <param name=
"self" type=
"p.PyObject" default=
""/>
19354 <param name=
"_class" type=
"p.PyObject" default=
""/>
19357 <method name=
"SetOwner" overloaded=
"no">
19358 <autodoc>SetOwner(EvtHandler owner, int id=-
1)
</autodoc>
19360 <param name=
"owner" type=
"p.wxEvtHandler" default=
""/>
19361 <param name=
"id" type=
"int" default=
"-1"/>
19364 <method name=
"Start" overloaded=
"no">
19365 <autodoc>Start(int milliseconds=-
1, bool oneShot=False) -
> bool
</autodoc>
19367 <param name=
"milliseconds" type=
"int" default=
"-1"/>
19368 <param name=
"oneShot" type=
"bool" default=
"False"/>
19371 <method name=
"Stop" overloaded=
"no">
19372 <autodoc>Stop()
</autodoc>
19374 <method name=
"IsRunning" overloaded=
"no">
19375 <autodoc>IsRunning() -
> bool
</autodoc>
19377 <method name=
"GetInterval" overloaded=
"no">
19378 <autodoc>GetInterval() -
> int
</autodoc>
19380 <method name=
"IsOneShot" overloaded=
"no">
19381 <autodoc>IsOneShot() -
> bool
</autodoc>
19383 <method name=
"GetId" overloaded=
"no">
19384 <autodoc>GetId() -
> int
</autodoc>
19388 # For backwards compatibility with
2.4
19389 class PyTimer(Timer):
19390 def __init__(self, notify):
19391 Timer.__init__(self)
19392 self.notify = notify
19399 EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER,
1 )
19402 <class name=
"TimerEvent" oldname=
"wxTimerEvent" module=
"misc">
19403 <baseclass name=
"wxEvent"/>
19404 <constructor name=
"TimerEvent" overloaded=
"no">
19405 <autodoc>__init__(int timerid=
0, int interval=
0) -
> TimerEvent
</autodoc>
19407 <param name=
"timerid" type=
"int" default=
"0"/>
19408 <param name=
"interval" type=
"int" default=
"0"/>
19411 <method name=
"GetInterval" overloaded=
"no">
19412 <autodoc>GetInterval() -
> int
</autodoc>
19415 <class name=
"TimerRunner" oldname=
"wxTimerRunner" module=
"misc">
19416 <constructor name=
"TimerRunner" overloaded=
"yes">
19418 <param name=
"timer" type=
"r.wxTimer" default=
""/>
19421 <constructor name=
"TimerRunner" overloaded=
"yes">
19422 <autodoc>__init__(wxTimer timer) -
> TimerRunner
19423 __init__(wxTimer timer, int milli, bool oneShot=False) -
> TimerRunner
</autodoc>
19425 <param name=
"timer" type=
"r.wxTimer" default=
""/>
19426 <param name=
"milli" type=
"int" default=
""/>
19427 <param name=
"oneShot" type=
"bool" default=
"False"/>
19430 <destructor name=
"~wxTimerRunner">
19431 <autodoc>__del__()
</autodoc>
19433 <method name=
"Start" overloaded=
"no">
19434 <autodoc>Start(int milli, bool oneShot=False)
</autodoc>
19436 <param name=
"milli" type=
"int" default=
""/>
19437 <param name=
"oneShot" type=
"bool" default=
"False"/>
19442 #---------------------------------------------------------------------------
19444 <class name=
"Log" oldname=
"wxLog" module=
"misc">
19445 <constructor name=
"Log" overloaded=
"no">
19446 <autodoc>__init__() -
> Log
</autodoc>
19448 <staticmethod name=
"IsEnabled" overloaded=
"no">
19449 <autodoc>IsEnabled() -
> bool
</autodoc>
19451 <staticmethod name=
"EnableLogging" overloaded=
"no">
19452 <autodoc>EnableLogging(bool doIt=True) -
> bool
</autodoc>
19454 <param name=
"doIt" type=
"bool" default=
"True"/>
19457 <staticmethod name=
"OnLog" overloaded=
"no">
19458 <autodoc>OnLog(wxLogLevel level, wxChar szString, time_t t)
</autodoc>
19460 <param name=
"level" type=
"wxLogLevel" default=
""/>
19461 <param name=
"szString" type=
"p.q(const).wxChar" default=
""/>
19462 <param name=
"t" type=
"time_t" default=
""/>
19465 <method name=
"Flush" overloaded=
"no">
19466 <autodoc>Flush()
</autodoc>
19468 <staticmethod name=
"FlushActive" overloaded=
"no">
19469 <autodoc>FlushActive()
</autodoc>
19471 <staticmethod name=
"GetActiveTarget" overloaded=
"no">
19472 <autodoc>GetActiveTarget() -
> Log
</autodoc>
19474 <staticmethod name=
"SetActiveTarget" overloaded=
"no">
19475 <autodoc>SetActiveTarget(Log pLogger) -
> Log
</autodoc>
19477 <param name=
"pLogger" type=
"p.wxLog" default=
""/>
19480 <staticmethod name=
"Suspend" overloaded=
"no">
19481 <autodoc>Suspend()
</autodoc>
19483 <staticmethod name=
"Resume" overloaded=
"no">
19484 <autodoc>Resume()
</autodoc>
19486 <staticmethod name=
"SetVerbose" overloaded=
"no">
19487 <autodoc>SetVerbose(bool bVerbose=True)
</autodoc>
19489 <param name=
"bVerbose" type=
"bool" default=
"True"/>
19492 <staticmethod name=
"SetLogLevel" overloaded=
"no">
19493 <autodoc>SetLogLevel(wxLogLevel logLevel)
</autodoc>
19495 <param name=
"logLevel" type=
"wxLogLevel" default=
""/>
19498 <staticmethod name=
"DontCreateOnDemand" overloaded=
"no">
19499 <autodoc>DontCreateOnDemand()
</autodoc>
19501 <staticmethod name=
"SetTraceMask" overloaded=
"no">
19502 <autodoc>SetTraceMask(wxTraceMask ulMask)
</autodoc>
19504 <param name=
"ulMask" type=
"wxTraceMask" default=
""/>
19507 <staticmethod name=
"AddTraceMask" overloaded=
"no">
19508 <autodoc>AddTraceMask(String str)
</autodoc>
19510 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
19513 <staticmethod name=
"RemoveTraceMask" overloaded=
"no">
19514 <autodoc>RemoveTraceMask(String str)
</autodoc>
19516 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
19519 <staticmethod name=
"ClearTraceMasks" overloaded=
"no">
19520 <autodoc>ClearTraceMasks()
</autodoc>
19522 <staticmethod name=
"GetTraceMasks" overloaded=
"no">
19523 <autodoc>GetTraceMasks() -
> wxArrayString
</autodoc>
19525 <staticmethod name=
"SetTimestamp" overloaded=
"no">
19526 <autodoc>SetTimestamp(wxChar ts)
</autodoc>
19528 <param name=
"ts" type=
"p.q(const).wxChar" default=
""/>
19531 <staticmethod name=
"GetVerbose" overloaded=
"no">
19532 <autodoc>GetVerbose() -
> bool
</autodoc>
19534 <staticmethod name=
"GetTraceMask" overloaded=
"no">
19535 <autodoc>GetTraceMask() -
> wxTraceMask
</autodoc>
19537 <staticmethod name=
"IsAllowedTraceMask" overloaded=
"no">
19538 <autodoc>IsAllowedTraceMask(wxChar mask) -
> bool
</autodoc>
19540 <param name=
"mask" type=
"p.q(const).wxChar" default=
""/>
19543 <staticmethod name=
"GetLogLevel" overloaded=
"no">
19544 <autodoc>GetLogLevel() -
> wxLogLevel
</autodoc>
19546 <staticmethod name=
"GetTimestamp" overloaded=
"no">
19547 <autodoc>GetTimestamp() -
> wxChar
</autodoc>
19549 <staticmethod name=
"TimeStamp" overloaded=
"no">
19550 <autodoc>TimeStamp() -
> String
</autodoc>
19552 <method name=
"Destroy" overloaded=
"no">
19553 <autodoc>Destroy()
</autodoc>
19556 <class name=
"LogStderr" oldname=
"wxLogStderr" module=
"misc">
19557 <baseclass name=
"wxLog"/>
19558 <constructor name=
"LogStderr" overloaded=
"no">
19559 <autodoc>__init__() -
> LogStderr
</autodoc>
19562 <class name=
"LogTextCtrl" oldname=
"wxLogTextCtrl" module=
"misc">
19563 <baseclass name=
"wxLog"/>
19564 <constructor name=
"LogTextCtrl" overloaded=
"no">
19565 <autodoc>__init__(wxTextCtrl pTextCtrl) -
> LogTextCtrl
</autodoc>
19567 <param name=
"pTextCtrl" type=
"p.wxTextCtrl" default=
""/>
19571 <class name=
"LogGui" oldname=
"wxLogGui" module=
"misc">
19572 <baseclass name=
"wxLog"/>
19573 <constructor name=
"LogGui" overloaded=
"no">
19574 <autodoc>__init__() -
> LogGui
</autodoc>
19577 <class name=
"LogWindow" oldname=
"wxLogWindow" module=
"misc">
19578 <baseclass name=
"wxLog"/>
19579 <constructor name=
"LogWindow" overloaded=
"no">
19580 <autodoc>__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -
> LogWindow
</autodoc>
19582 <param name=
"pParent" type=
"p.wxFrame" default=
""/>
19583 <param name=
"szTitle" type=
"r.q(const).wxString" default=
""/>
19584 <param name=
"bShow" type=
"bool" default=
"True"/>
19585 <param name=
"bPassToOld" type=
"bool" default=
"True"/>
19588 <method name=
"Show" overloaded=
"no">
19589 <autodoc>Show(bool bShow=True)
</autodoc>
19591 <param name=
"bShow" type=
"bool" default=
"True"/>
19594 <method name=
"GetFrame" overloaded=
"no">
19595 <autodoc>GetFrame() -
> wxFrame
</autodoc>
19597 <method name=
"GetOldLog" overloaded=
"no">
19598 <autodoc>GetOldLog() -
> Log
</autodoc>
19600 <method name=
"IsPassingMessages" overloaded=
"no">
19601 <autodoc>IsPassingMessages() -
> bool
</autodoc>
19603 <method name=
"PassMessages" overloaded=
"no">
19604 <autodoc>PassMessages(bool bDoPass)
</autodoc>
19606 <param name=
"bDoPass" type=
"bool" default=
""/>
19610 <class name=
"LogChain" oldname=
"wxLogChain" module=
"misc">
19611 <baseclass name=
"wxLog"/>
19612 <constructor name=
"LogChain" overloaded=
"no">
19613 <autodoc>__init__(Log logger) -
> LogChain
</autodoc>
19615 <param name=
"logger" type=
"p.wxLog" default=
""/>
19618 <method name=
"SetLog" overloaded=
"no">
19619 <autodoc>SetLog(Log logger)
</autodoc>
19621 <param name=
"logger" type=
"p.wxLog" default=
""/>
19624 <method name=
"PassMessages" overloaded=
"no">
19625 <autodoc>PassMessages(bool bDoPass)
</autodoc>
19627 <param name=
"bDoPass" type=
"bool" default=
""/>
19630 <method name=
"IsPassingMessages" overloaded=
"no">
19631 <autodoc>IsPassingMessages() -
> bool
</autodoc>
19633 <method name=
"GetOldLog" overloaded=
"no">
19634 <autodoc>GetOldLog() -
> Log
</autodoc>
19637 <function oldname=
"wxSysErrorCode" name=
"SysErrorCode" overloaded=
"no">
19638 <autodoc>SysErrorCode() -
> unsigned long
</autodoc>
19640 <function oldname=
"wxSysErrorMsg" name=
"SysErrorMsg" overloaded=
"no">
19641 <autodoc>SysErrorMsg(unsigned long nErrCode=
0) -
> String
</autodoc>
19643 <param name=
"nErrCode" type=
"unsigned long" default=
"0"/>
19646 <function oldname=
"wxLogFatalError" name=
"LogFatalError" overloaded=
"no">
19647 <autodoc>LogFatalError(String msg)
</autodoc>
19649 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19652 <function oldname=
"wxLogError" name=
"LogError" overloaded=
"no">
19653 <autodoc>LogError(String msg)
</autodoc>
19655 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19658 <function oldname=
"wxLogWarning" name=
"LogWarning" overloaded=
"no">
19659 <autodoc>LogWarning(String msg)
</autodoc>
19661 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19664 <function oldname=
"wxLogMessage" name=
"LogMessage" overloaded=
"no">
19665 <autodoc>LogMessage(String msg)
</autodoc>
19667 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19670 <function oldname=
"wxLogInfo" name=
"LogInfo" overloaded=
"no">
19671 <autodoc>LogInfo(String msg)
</autodoc>
19673 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19676 <function oldname=
"wxLogDebug" name=
"LogDebug" overloaded=
"no">
19677 <autodoc>LogDebug(String msg)
</autodoc>
19679 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19682 <function oldname=
"wxLogVerbose" name=
"LogVerbose" overloaded=
"no">
19683 <autodoc>LogVerbose(String msg)
</autodoc>
19685 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19688 <function oldname=
"wxLogStatus" name=
"LogStatus" overloaded=
"no">
19689 <autodoc>LogStatus(String msg)
</autodoc>
19691 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19694 <function oldname=
"wxLogStatus" name=
"LogStatusFrame" overloaded=
"no">
19695 <autodoc>LogStatusFrame(wxFrame pFrame, String msg)
</autodoc>
19697 <param name=
"pFrame" type=
"p.wxFrame" default=
""/>
19698 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19701 <function oldname=
"wxLogSysError" name=
"LogSysError" overloaded=
"no">
19702 <autodoc>LogSysError(String msg)
</autodoc>
19704 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19707 <function oldname=
"wxLogTrace" name=
"LogTrace" overloaded=
"yes">
19709 <param name=
"mask" type=
"unsigned long" default=
""/>
19710 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19713 <function oldname=
"wxLogTrace" name=
"LogTrace" overloaded=
"yes">
19714 <autodoc>LogTrace(unsigned long mask, String msg)
19715 LogTrace(String mask, String msg)
</autodoc>
19717 <param name=
"mask" type=
"r.q(const).wxString" default=
""/>
19718 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19721 <function oldname=
"wxLogGeneric" name=
"LogGeneric" overloaded=
"no">
19722 <autodoc>LogGeneric(unsigned long level, String msg)
</autodoc>
19724 <param name=
"level" type=
"unsigned long" default=
""/>
19725 <param name=
"msg" type=
"r.q(const).wxString" default=
""/>
19728 <function oldname=
"wxSafeShowMessage" name=
"SafeShowMessage" overloaded=
"no">
19729 <autodoc>SafeShowMessage(String title, String text)
</autodoc>
19731 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
19732 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
19735 <class name=
"LogNull" oldname=
"wxLogNull" module=
"misc">
19736 <constructor name=
"LogNull" overloaded=
"no">
19737 <autodoc>__init__() -
> LogNull
</autodoc>
19739 <destructor name=
"~wxLogNull">
19740 <autodoc>__del__()
</autodoc>
19743 <class name=
"PyLog" oldname=
"wxPyLog" module=
"misc">
19744 <baseclass name=
"wxLog"/>
19745 <constructor name=
"PyLog" overloaded=
"no">
19746 <autodoc>__init__() -
> PyLog
</autodoc>
19748 <method name=
"_setCallbackInfo" overloaded=
"no">
19749 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19751 <param name=
"self" type=
"p.PyObject" default=
""/>
19752 <param name=
"_class" type=
"p.PyObject" default=
""/>
19757 #---------------------------------------------------------------------------
19759 <class name=
"Process" oldname=
"wxPyProcess" module=
"misc">
19760 <baseclass name=
"wxEvtHandler"/>
19761 <staticmethod name=
"Kill" overloaded=
"no">
19762 <autodoc>Kill(int pid, int sig=SIGTERM) -
> int
</autodoc>
19764 <param name=
"pid" type=
"int" default=
""/>
19765 <param name=
"sig" type=
"wxSignal" default=
"wxSIGTERM"/>
19768 <staticmethod name=
"Exists" overloaded=
"no">
19769 <autodoc>Exists(int pid) -
> bool
</autodoc>
19771 <param name=
"pid" type=
"int" default=
""/>
19774 <staticmethod name=
"Open" overloaded=
"no">
19775 <autodoc>Open(String cmd, int flags=EXEC_ASYNC) -
> Process
</autodoc>
19777 <param name=
"cmd" type=
"r.q(const).wxString" default=
""/>
19778 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
19781 <constructor name=
"wxPyProcess" overloaded=
"no">
19782 <autodoc>__init__(EvtHandler parent=None, int id=-
1) -
> Process
</autodoc>
19784 <param name=
"parent" type=
"p.wxEvtHandler" default=
"NULL"/>
19785 <param name=
"id" type=
"int" default=
"-1"/>
19788 <method name=
"_setCallbackInfo" overloaded=
"no">
19789 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19791 <param name=
"self" type=
"p.PyObject" default=
""/>
19792 <param name=
"_class" type=
"p.PyObject" default=
""/>
19795 <method name=
"base_OnTerminate" overloaded=
"no">
19796 <autodoc>base_OnTerminate(int pid, int status)
</autodoc>
19798 <param name=
"pid" type=
"int" default=
""/>
19799 <param name=
"status" type=
"int" default=
""/>
19802 <method name=
"Redirect" overloaded=
"no">
19803 <autodoc>Redirect()
</autodoc>
19805 <method name=
"IsRedirected" overloaded=
"no">
19806 <autodoc>IsRedirected() -
> bool
</autodoc>
19808 <method name=
"Detach" overloaded=
"no">
19809 <autodoc>Detach()
</autodoc>
19811 <method name=
"GetInputStream" overloaded=
"no">
19812 <autodoc>GetInputStream() -
> InputStream
</autodoc>
19814 <method name=
"GetErrorStream" overloaded=
"no">
19815 <autodoc>GetErrorStream() -
> InputStream
</autodoc>
19817 <method name=
"GetOutputStream" overloaded=
"no">
19818 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
19820 <method name=
"CloseOutput" overloaded=
"no">
19821 <autodoc>CloseOutput()
</autodoc>
19823 <method name=
"IsInputOpened" overloaded=
"no">
19824 <autodoc>IsInputOpened() -
> bool
</autodoc>
19826 <method name=
"IsInputAvailable" overloaded=
"no">
19827 <autodoc>IsInputAvailable() -
> bool
</autodoc>
19829 <method name=
"IsErrorAvailable" overloaded=
"no">
19830 <autodoc>IsErrorAvailable() -
> bool
</autodoc>
19833 <class name=
"ProcessEvent" oldname=
"wxProcessEvent" module=
"misc">
19834 <baseclass name=
"wxEvent"/>
19835 <constructor name=
"ProcessEvent" overloaded=
"no">
19836 <autodoc>__init__(int id=
0, int pid=
0, int exitcode=
0) -
> ProcessEvent
</autodoc>
19838 <param name=
"id" type=
"int" default=
"0"/>
19839 <param name=
"pid" type=
"int" default=
"0"/>
19840 <param name=
"exitcode" type=
"int" default=
"0"/>
19843 <method name=
"GetPid" overloaded=
"no">
19844 <autodoc>GetPid() -
> int
</autodoc>
19846 <method name=
"GetExitCode" overloaded=
"no">
19847 <autodoc>GetExitCode() -
> int
</autodoc>
19849 <property name=
"m_pid" type=
"int" readonly=
"no"/>
19850 <property name=
"m_exitcode" type=
"int" readonly=
"no"/>
19853 EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS,
1 )
19855 <function oldname=
"wxExecute" name=
"Execute" overloaded=
"no">
19856 <autodoc>Execute(String command, int flags=EXEC_ASYNC, Process process=None) -
> long
</autodoc>
19858 <param name=
"command" type=
"r.q(const).wxString" default=
""/>
19859 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
19860 <param name=
"process" type=
"p.wxPyProcess" default=
"NULL"/>
19864 #---------------------------------------------------------------------------
19866 <class name=
"Joystick" oldname=
"wxJoystick" module=
"misc">
19867 <constructor name=
"Joystick" overloaded=
"no">
19868 <autodoc>__init__(int joystick=JOYSTICK1) -
> Joystick
</autodoc>
19870 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
19873 <destructor name=
"~wxJoystick">
19874 <autodoc>__del__()
</autodoc>
19876 <method name=
"GetPosition" overloaded=
"no">
19877 <autodoc>GetPosition() -
> Point
</autodoc>
19879 <method name=
"GetZPosition" overloaded=
"no">
19880 <autodoc>GetZPosition() -
> int
</autodoc>
19882 <method name=
"GetButtonState" overloaded=
"no">
19883 <autodoc>GetButtonState() -
> int
</autodoc>
19885 <method name=
"GetPOVPosition" overloaded=
"no">
19886 <autodoc>GetPOVPosition() -
> int
</autodoc>
19888 <method name=
"GetPOVCTSPosition" overloaded=
"no">
19889 <autodoc>GetPOVCTSPosition() -
> int
</autodoc>
19891 <method name=
"GetRudderPosition" overloaded=
"no">
19892 <autodoc>GetRudderPosition() -
> int
</autodoc>
19894 <method name=
"GetUPosition" overloaded=
"no">
19895 <autodoc>GetUPosition() -
> int
</autodoc>
19897 <method name=
"GetVPosition" overloaded=
"no">
19898 <autodoc>GetVPosition() -
> int
</autodoc>
19900 <method name=
"GetMovementThreshold" overloaded=
"no">
19901 <autodoc>GetMovementThreshold() -
> int
</autodoc>
19903 <method name=
"SetMovementThreshold" overloaded=
"no">
19904 <autodoc>SetMovementThreshold(int threshold)
</autodoc>
19906 <param name=
"threshold" type=
"int" default=
""/>
19909 <method name=
"IsOk" overloaded=
"no">
19910 <autodoc>IsOk() -
> bool
</autodoc>
19912 <method name=
"GetNumberJoysticks" overloaded=
"no">
19913 <autodoc>GetNumberJoysticks() -
> int
</autodoc>
19915 <method name=
"GetManufacturerId" overloaded=
"no">
19916 <autodoc>GetManufacturerId() -
> int
</autodoc>
19918 <method name=
"GetProductId" overloaded=
"no">
19919 <autodoc>GetProductId() -
> int
</autodoc>
19921 <method name=
"GetProductName" overloaded=
"no">
19922 <autodoc>GetProductName() -
> String
</autodoc>
19924 <method name=
"GetXMin" overloaded=
"no">
19925 <autodoc>GetXMin() -
> int
</autodoc>
19927 <method name=
"GetYMin" overloaded=
"no">
19928 <autodoc>GetYMin() -
> int
</autodoc>
19930 <method name=
"GetZMin" overloaded=
"no">
19931 <autodoc>GetZMin() -
> int
</autodoc>
19933 <method name=
"GetXMax" overloaded=
"no">
19934 <autodoc>GetXMax() -
> int
</autodoc>
19936 <method name=
"GetYMax" overloaded=
"no">
19937 <autodoc>GetYMax() -
> int
</autodoc>
19939 <method name=
"GetZMax" overloaded=
"no">
19940 <autodoc>GetZMax() -
> int
</autodoc>
19942 <method name=
"GetNumberButtons" overloaded=
"no">
19943 <autodoc>GetNumberButtons() -
> int
</autodoc>
19945 <method name=
"GetNumberAxes" overloaded=
"no">
19946 <autodoc>GetNumberAxes() -
> int
</autodoc>
19948 <method name=
"GetMaxButtons" overloaded=
"no">
19949 <autodoc>GetMaxButtons() -
> int
</autodoc>
19951 <method name=
"GetMaxAxes" overloaded=
"no">
19952 <autodoc>GetMaxAxes() -
> int
</autodoc>
19954 <method name=
"GetPollingMin" overloaded=
"no">
19955 <autodoc>GetPollingMin() -
> int
</autodoc>
19957 <method name=
"GetPollingMax" overloaded=
"no">
19958 <autodoc>GetPollingMax() -
> int
</autodoc>
19960 <method name=
"GetRudderMin" overloaded=
"no">
19961 <autodoc>GetRudderMin() -
> int
</autodoc>
19963 <method name=
"GetRudderMax" overloaded=
"no">
19964 <autodoc>GetRudderMax() -
> int
</autodoc>
19966 <method name=
"GetUMin" overloaded=
"no">
19967 <autodoc>GetUMin() -
> int
</autodoc>
19969 <method name=
"GetUMax" overloaded=
"no">
19970 <autodoc>GetUMax() -
> int
</autodoc>
19972 <method name=
"GetVMin" overloaded=
"no">
19973 <autodoc>GetVMin() -
> int
</autodoc>
19975 <method name=
"GetVMax" overloaded=
"no">
19976 <autodoc>GetVMax() -
> int
</autodoc>
19978 <method name=
"HasRudder" overloaded=
"no">
19979 <autodoc>HasRudder() -
> bool
</autodoc>
19981 <method name=
"HasZ" overloaded=
"no">
19982 <autodoc>HasZ() -
> bool
</autodoc>
19984 <method name=
"HasU" overloaded=
"no">
19985 <autodoc>HasU() -
> bool
</autodoc>
19987 <method name=
"HasV" overloaded=
"no">
19988 <autodoc>HasV() -
> bool
</autodoc>
19990 <method name=
"HasPOV" overloaded=
"no">
19991 <autodoc>HasPOV() -
> bool
</autodoc>
19993 <method name=
"HasPOV4Dir" overloaded=
"no">
19994 <autodoc>HasPOV4Dir() -
> bool
</autodoc>
19996 <method name=
"HasPOVCTS" overloaded=
"no">
19997 <autodoc>HasPOVCTS() -
> bool
</autodoc>
19999 <method name=
"SetCapture" overloaded=
"no">
20000 <autodoc>SetCapture(Window win, int pollingFreq=
0) -
> bool
</autodoc>
20002 <param name=
"win" type=
"p.wxWindow" default=
""/>
20003 <param name=
"pollingFreq" type=
"int" default=
"0"/>
20006 <method name=
"ReleaseCapture" overloaded=
"no">
20007 <autodoc>ReleaseCapture() -
> bool
</autodoc>
20009 <pythoncode> def __nonzero__(self): return self.IsOk()
</pythoncode>
20011 <class name=
"JoystickEvent" oldname=
"wxJoystickEvent" module=
"misc">
20012 <baseclass name=
"wxEvent"/>
20013 <property name=
"m_pos" type=
"wxPoint" readonly=
"no"/>
20014 <property name=
"m_zPosition" type=
"int" readonly=
"no"/>
20015 <property name=
"m_buttonChange" type=
"int" readonly=
"no"/>
20016 <property name=
"m_buttonState" type=
"int" readonly=
"no"/>
20017 <property name=
"m_joyStick" type=
"int" readonly=
"no"/>
20018 <constructor name=
"JoystickEvent" overloaded=
"no">
20019 <autodoc>__init__(wxEventType type=wxEVT_NULL, int state=
0, int joystick=JOYSTICK1,
20020 int change=
0) -
> JoystickEvent
</autodoc>
20022 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
20023 <param name=
"state" type=
"int" default=
"0"/>
20024 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
20025 <param name=
"change" type=
"int" default=
"0"/>
20028 <method name=
"GetPosition" overloaded=
"no">
20029 <autodoc>GetPosition() -
> Point
</autodoc>
20031 <method name=
"GetZPosition" overloaded=
"no">
20032 <autodoc>GetZPosition() -
> int
</autodoc>
20034 <method name=
"GetButtonState" overloaded=
"no">
20035 <autodoc>GetButtonState() -
> int
</autodoc>
20037 <method name=
"GetButtonChange" overloaded=
"no">
20038 <autodoc>GetButtonChange() -
> int
</autodoc>
20040 <method name=
"GetJoystick" overloaded=
"no">
20041 <autodoc>GetJoystick() -
> int
</autodoc>
20043 <method name=
"SetJoystick" overloaded=
"no">
20044 <autodoc>SetJoystick(int stick)
</autodoc>
20046 <param name=
"stick" type=
"int" default=
""/>
20049 <method name=
"SetButtonState" overloaded=
"no">
20050 <autodoc>SetButtonState(int state)
</autodoc>
20052 <param name=
"state" type=
"int" default=
""/>
20055 <method name=
"SetButtonChange" overloaded=
"no">
20056 <autodoc>SetButtonChange(int change)
</autodoc>
20058 <param name=
"change" type=
"int" default=
""/>
20061 <method name=
"SetPosition" overloaded=
"no">
20062 <autodoc>SetPosition(Point pos)
</autodoc>
20064 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
20067 <method name=
"SetZPosition" overloaded=
"no">
20068 <autodoc>SetZPosition(int zPos)
</autodoc>
20070 <param name=
"zPos" type=
"int" default=
""/>
20073 <method name=
"IsButton" overloaded=
"no">
20074 <autodoc>IsButton() -
> bool
</autodoc>
20076 <method name=
"IsMove" overloaded=
"no">
20077 <autodoc>IsMove() -
> bool
</autodoc>
20079 <method name=
"IsZMove" overloaded=
"no">
20080 <autodoc>IsZMove() -
> bool
</autodoc>
20082 <method name=
"ButtonDown" overloaded=
"no">
20083 <autodoc>ButtonDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
20085 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
20088 <method name=
"ButtonUp" overloaded=
"no">
20089 <autodoc>ButtonUp(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
20091 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
20094 <method name=
"ButtonIsDown" overloaded=
"no">
20095 <autodoc>ButtonIsDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
20097 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
20102 EVT_JOY_BUTTON_DOWN = wx.PyEventBinder( wxEVT_JOY_BUTTON_DOWN )
20103 EVT_JOY_BUTTON_UP = wx.PyEventBinder( wxEVT_JOY_BUTTON_UP )
20104 EVT_JOY_MOVE = wx.PyEventBinder( wxEVT_JOY_MOVE )
20105 EVT_JOY_ZMOVE = wx.PyEventBinder( wxEVT_JOY_ZMOVE )
20107 EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
20108 wxEVT_JOY_BUTTON_UP,
20115 #---------------------------------------------------------------------------
20117 <class name=
"Sound" oldname=
"wxSound" module=
"misc">
20118 <constructor name=
"Sound" overloaded=
"yes"/>
20119 <constructor name=
"Sound" overloaded=
"yes">
20121 <param name=
"fileName" type=
"r.q(const).wxString" default=
""/>
20122 <param name=
"isResource" type=
"bool" default=
"false"/>
20125 <constructor name=
"Sound" overloaded=
"yes">
20126 <autodoc>__init__() -
> Sound
20127 __init__(String fileName, bool isResource=false) -
> Sound
20128 __init__(int size, wxByte data) -
> Sound
</autodoc>
20130 <param name=
"size" type=
"int" default=
""/>
20131 <param name=
"data" type=
"p.q(const).wxByte" default=
""/>
20134 <destructor name=
"~wxSound">
20135 <autodoc>__del__()
</autodoc>
20137 <method name=
"Create" overloaded=
"yes">
20139 <param name=
"fileName" type=
"r.q(const).wxString" default=
""/>
20140 <param name=
"isResource" type=
"bool" default=
"false"/>
20143 <method name=
"Create" overloaded=
"yes">
20144 <autodoc>Create(String fileName, bool isResource=false) -
> bool
20145 Create(int size, wxByte data) -
> bool
</autodoc>
20147 <param name=
"size" type=
"int" default=
""/>
20148 <param name=
"data" type=
"p.q(const).wxByte" default=
""/>
20151 <method name=
"IsOk" overloaded=
"no">
20152 <autodoc>IsOk() -
> bool
</autodoc>
20154 <method name=
"Play" overloaded=
"no">
20155 <autodoc>Play(unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
20157 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
20160 <staticmethod name=
"PlaySound" overloaded=
"no">
20161 <autodoc>PlaySound(String filename, unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
20163 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20164 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
20167 <staticmethod name=
"Stop" overloaded=
"no">
20168 <autodoc>Stop()
</autodoc>
20170 <pythoncode> def __nonzero__(self): return self.IsOk()
</pythoncode>
20173 #---------------------------------------------------------------------------
20175 <class name=
"FileTypeInfo" oldname=
"wxFileTypeInfo" module=
"misc">
20176 <constructor name=
"FileTypeInfo" overloaded=
"no">
20177 <autodoc>__init__(String mimeType, String openCmd, String printCmd, String desc) -
> FileTypeInfo
</autodoc>
20179 <param name=
"mimeType" type=
"r.q(const).wxString" default=
""/>
20180 <param name=
"openCmd" type=
"r.q(const).wxString" default=
""/>
20181 <param name=
"printCmd" type=
"r.q(const).wxString" default=
""/>
20182 <param name=
"desc" type=
"r.q(const).wxString" default=
""/>
20185 <constructor name=
"FileTypeInfoSequence" overloaded=
"no">
20186 <autodoc>FileTypeInfoSequence(wxArrayString sArray) -
> FileTypeInfo
</autodoc>
20188 <param name=
"sArray" type=
"r.q(const).wxArrayString" default=
""/>
20191 <constructor name=
"NullFileTypeInfo" overloaded=
"no">
20192 <autodoc>NullFileTypeInfo() -
> FileTypeInfo
</autodoc>
20194 <method name=
"IsValid" overloaded=
"no">
20195 <autodoc>IsValid() -
> bool
</autodoc>
20197 <method name=
"SetIcon" overloaded=
"no">
20198 <autodoc>SetIcon(String iconFile, int iconIndex=
0)
</autodoc>
20200 <param name=
"iconFile" type=
"r.q(const).wxString" default=
""/>
20201 <param name=
"iconIndex" type=
"int" default=
"0"/>
20204 <method name=
"SetShortDesc" overloaded=
"no">
20205 <autodoc>SetShortDesc(String shortDesc)
</autodoc>
20207 <param name=
"shortDesc" type=
"r.q(const).wxString" default=
""/>
20210 <method name=
"GetMimeType" overloaded=
"no">
20211 <autodoc>GetMimeType() -
> String
</autodoc>
20213 <method name=
"GetOpenCommand" overloaded=
"no">
20214 <autodoc>GetOpenCommand() -
> String
</autodoc>
20216 <method name=
"GetPrintCommand" overloaded=
"no">
20217 <autodoc>GetPrintCommand() -
> String
</autodoc>
20219 <method name=
"GetShortDesc" overloaded=
"no">
20220 <autodoc>GetShortDesc() -
> String
</autodoc>
20222 <method name=
"GetDescription" overloaded=
"no">
20223 <autodoc>GetDescription() -
> String
</autodoc>
20225 <method name=
"GetExtensions" overloaded=
"no">
20226 <autodoc>GetExtensions() -
> wxArrayString
</autodoc>
20228 <method name=
"GetExtensionsCount" overloaded=
"no">
20229 <autodoc>GetExtensionsCount() -
> int
</autodoc>
20231 <method name=
"GetIconFile" overloaded=
"no">
20232 <autodoc>GetIconFile() -
> String
</autodoc>
20234 <method name=
"GetIconIndex" overloaded=
"no">
20235 <autodoc>GetIconIndex() -
> int
</autodoc>
20238 <class name=
"FileType" oldname=
"wxFileType" module=
"misc">
20239 <constructor name=
"FileType" overloaded=
"no">
20240 <autodoc>__init__(FileTypeInfo ftInfo) -
> FileType
</autodoc>
20242 <param name=
"ftInfo" type=
"r.q(const).wxFileTypeInfo" default=
""/>
20245 <destructor name=
"~wxFileType">
20246 <autodoc>__del__()
</autodoc>
20248 <method name=
"GetMimeType" overloaded=
"no">
20249 <autodoc>GetMimeType() -
> PyObject
</autodoc>
20251 <method name=
"GetMimeTypes" overloaded=
"no">
20252 <autodoc>GetMimeTypes() -
> PyObject
</autodoc>
20254 <method name=
"GetExtensions" overloaded=
"no">
20255 <autodoc>GetExtensions() -
> PyObject
</autodoc>
20257 <method name=
"GetIcon" overloaded=
"no">
20258 <autodoc>GetIcon() -
> Icon
</autodoc>
20260 <method name=
"GetIconInfo" overloaded=
"no">
20261 <autodoc>GetIconInfo() -
> PyObject
</autodoc>
20263 <method name=
"GetDescription" overloaded=
"no">
20264 <autodoc>GetDescription() -
> PyObject
</autodoc>
20266 <method name=
"GetOpenCommand" overloaded=
"no">
20267 <autodoc>GetOpenCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
20269 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20270 <param name=
"mimetype" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20273 <method name=
"GetPrintCommand" overloaded=
"no">
20274 <autodoc>GetPrintCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
20276 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20277 <param name=
"mimetype" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20280 <method name=
"GetAllCommands" overloaded=
"no">
20281 <autodoc>GetAllCommands(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
20283 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20284 <param name=
"mimetype" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20287 <method name=
"SetCommand" overloaded=
"no">
20288 <autodoc>SetCommand(String cmd, String verb, bool overwriteprompt=True) -
> bool
</autodoc>
20290 <param name=
"cmd" type=
"r.q(const).wxString" default=
""/>
20291 <param name=
"verb" type=
"r.q(const).wxString" default=
""/>
20292 <param name=
"overwriteprompt" type=
"bool" default=
"True"/>
20295 <method name=
"SetDefaultIcon" overloaded=
"no">
20296 <autodoc>SetDefaultIcon(String cmd=EmptyString, int index=
0) -
> bool
</autodoc>
20298 <param name=
"cmd" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20299 <param name=
"index" type=
"int" default=
"0"/>
20302 <method name=
"Unassociate" overloaded=
"no">
20303 <autodoc>Unassociate() -
> bool
</autodoc>
20305 <staticmethod name=
"ExpandCommand" overloaded=
"no">
20306 <autodoc>ExpandCommand(String command, String filename, String mimetype=EmptyString) -
> String
</autodoc>
20308 <param name=
"command" type=
"r.q(const).wxString" default=
""/>
20309 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20310 <param name=
"mimetype" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20314 <class name=
"MimeTypesManager" oldname=
"wxMimeTypesManager" module=
"misc">
20315 <staticmethod name=
"IsOfType" overloaded=
"no">
20316 <autodoc>IsOfType(String mimeType, String wildcard) -
> bool
</autodoc>
20318 <param name=
"mimeType" type=
"r.q(const).wxString" default=
""/>
20319 <param name=
"wildcard" type=
"r.q(const).wxString" default=
""/>
20322 <constructor name=
"MimeTypesManager" overloaded=
"no">
20323 <autodoc>__init__() -
> MimeTypesManager
</autodoc>
20325 <method name=
"Initialize" overloaded=
"no">
20326 <autodoc>Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
</autodoc>
20328 <param name=
"mailcapStyle" type=
"int" default=
"wxMAILCAP_ALL"/>
20329 <param name=
"extraDir" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20332 <method name=
"ClearData" overloaded=
"no">
20333 <autodoc>ClearData()
</autodoc>
20335 <method name=
"GetFileTypeFromExtension" overloaded=
"no">
20336 <autodoc>GetFileTypeFromExtension(String ext) -
> FileType
</autodoc>
20338 <param name=
"ext" type=
"r.q(const).wxString" default=
""/>
20341 <method name=
"GetFileTypeFromMimeType" overloaded=
"no">
20342 <autodoc>GetFileTypeFromMimeType(String mimeType) -
> FileType
</autodoc>
20344 <param name=
"mimeType" type=
"r.q(const).wxString" default=
""/>
20347 <method name=
"ReadMailcap" overloaded=
"no">
20348 <autodoc>ReadMailcap(String filename, bool fallback=False) -
> bool
</autodoc>
20350 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20351 <param name=
"fallback" type=
"bool" default=
"False"/>
20354 <method name=
"ReadMimeTypes" overloaded=
"no">
20355 <autodoc>ReadMimeTypes(String filename) -
> bool
</autodoc>
20357 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
20360 <method name=
"EnumAllFileTypes" overloaded=
"no">
20361 <autodoc>EnumAllFileTypes() -
> PyObject
</autodoc>
20363 <method name=
"AddFallback" overloaded=
"no">
20364 <autodoc>AddFallback(FileTypeInfo ft)
</autodoc>
20366 <param name=
"ft" type=
"r.q(const).wxFileTypeInfo" default=
""/>
20369 <method name=
"Associate" overloaded=
"no">
20370 <autodoc>Associate(FileTypeInfo ftInfo) -
> FileType
</autodoc>
20372 <param name=
"ftInfo" type=
"r.q(const).wxFileTypeInfo" default=
""/>
20375 <method name=
"Unassociate" overloaded=
"no">
20376 <autodoc>Unassociate(FileType ft) -
> bool
</autodoc>
20378 <param name=
"ft" type=
"p.wxFileType" default=
""/>
20381 <destructor name=
"~wxMimeTypesManager">
20382 <autodoc>__del__()
</autodoc>
20386 #---------------------------------------------------------------------------
20388 <class name=
"ArtProvider" oldname=
"wxPyArtProvider" module=
"misc">
20389 <constructor name=
"wxPyArtProvider" overloaded=
"no">
20390 <autodoc>__init__() -
> ArtProvider
</autodoc>
20392 <method name=
"_setCallbackInfo" overloaded=
"no">
20393 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
20395 <param name=
"self" type=
"p.PyObject" default=
""/>
20396 <param name=
"_class" type=
"p.PyObject" default=
""/>
20399 <staticmethod name=
"PushProvider" overloaded=
"no">
20400 <autodoc>PushProvider(ArtProvider provider)
</autodoc>
20401 <docstring>Add new provider to the top of providers stack.
</docstring>
20403 <param name=
"provider" type=
"p.wxPyArtProvider" default=
""/>
20406 <staticmethod name=
"PopProvider" overloaded=
"no">
20407 <autodoc>PopProvider() -
> bool
</autodoc>
20408 <docstring>Remove latest added provider and delete it.
</docstring>
20410 <staticmethod name=
"RemoveProvider" overloaded=
"no">
20411 <autodoc>RemoveProvider(ArtProvider provider) -
> bool
</autodoc>
20412 <docstring>Remove provider. The provider must have been added previously!
20413 The provider is _not_ deleted.
</docstring>
20415 <param name=
"provider" type=
"p.wxPyArtProvider" default=
""/>
20418 <staticmethod name=
"GetBitmap" overloaded=
"no">
20419 <autodoc>GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Bitmap
</autodoc>
20420 <docstring>Query the providers for bitmap with given ID and return it. Return
20421 wx.NullBitmap if no provider provides it.
</docstring>
20423 <param name=
"id" type=
"r.q(const).wxString" default=
""/>
20424 <param name=
"client" type=
"r.q(const).wxString" default=
"wxPyART_OTHER"/>
20425 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
20428 <staticmethod name=
"GetIcon" overloaded=
"no">
20429 <autodoc>GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Icon
</autodoc>
20430 <docstring>Query the providers for icon with given ID and return it. Return
20431 wx.NullIcon if no provider provides it.
</docstring>
20433 <param name=
"id" type=
"r.q(const).wxString" default=
""/>
20434 <param name=
"client" type=
"r.q(const).wxString" default=
"wxPyART_OTHER"/>
20435 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
20438 <method name=
"Destroy" overloaded=
"no">
20439 <autodoc>Destroy()
</autodoc>
20443 #---------------------------------------------------------------------------
20445 <class name=
"ConfigBase" oldname=
"wxConfigBase" module=
"misc">
20446 <destructor name=
"~wxConfigBase">
20447 <autodoc>__del__()
</autodoc>
20449 <staticmethod name=
"Set" overloaded=
"no">
20450 <autodoc>Set(ConfigBase pConfig) -
> ConfigBase
</autodoc>
20452 <param name=
"pConfig" type=
"p.wxConfigBase" default=
""/>
20455 <staticmethod name=
"Get" overloaded=
"no">
20456 <autodoc>Get(bool createOnDemand=True) -
> ConfigBase
</autodoc>
20458 <param name=
"createOnDemand" type=
"bool" default=
"True"/>
20461 <staticmethod name=
"Create" overloaded=
"no">
20462 <autodoc>Create() -
> ConfigBase
</autodoc>
20464 <staticmethod name=
"DontCreateOnDemand" overloaded=
"no">
20465 <autodoc>DontCreateOnDemand()
</autodoc>
20467 <method name=
"SetPath" overloaded=
"no">
20468 <autodoc>SetPath(String strPath)
</autodoc>
20470 <param name=
"strPath" type=
"r.q(const).wxString" default=
""/>
20473 <method name=
"GetPath" overloaded=
"no">
20474 <autodoc>GetPath() -
> String
</autodoc>
20476 <method name=
"GetFirstGroup" overloaded=
"no">
20477 <autodoc>GetFirstGroup() -
> PyObject
</autodoc>
20479 <method name=
"GetNextGroup" overloaded=
"no">
20480 <autodoc>GetNextGroup(long index) -
> PyObject
</autodoc>
20482 <param name=
"index" type=
"long" default=
""/>
20485 <method name=
"GetFirstEntry" overloaded=
"no">
20486 <autodoc>GetFirstEntry() -
> PyObject
</autodoc>
20488 <method name=
"GetNextEntry" overloaded=
"no">
20489 <autodoc>GetNextEntry(long index) -
> PyObject
</autodoc>
20491 <param name=
"index" type=
"long" default=
""/>
20494 <method name=
"GetNumberOfEntries" overloaded=
"no">
20495 <autodoc>GetNumberOfEntries(bool bRecursive=False) -
> size_t
</autodoc>
20497 <param name=
"bRecursive" type=
"bool" default=
"False"/>
20500 <method name=
"GetNumberOfGroups" overloaded=
"no">
20501 <autodoc>GetNumberOfGroups(bool bRecursive=False) -
> size_t
</autodoc>
20503 <param name=
"bRecursive" type=
"bool" default=
"False"/>
20506 <method name=
"HasGroup" overloaded=
"no">
20507 <autodoc>HasGroup(String strName) -
> bool
</autodoc>
20509 <param name=
"strName" type=
"r.q(const).wxString" default=
""/>
20512 <method name=
"HasEntry" overloaded=
"no">
20513 <autodoc>HasEntry(String strName) -
> bool
</autodoc>
20515 <param name=
"strName" type=
"r.q(const).wxString" default=
""/>
20518 <method name=
"Exists" overloaded=
"no">
20519 <autodoc>Exists(String strName) -
> bool
</autodoc>
20521 <param name=
"strName" type=
"r.q(const).wxString" default=
""/>
20524 <method name=
"GetEntryType" overloaded=
"no">
20525 <autodoc>GetEntryType(String name) -
> int
</autodoc>
20527 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
20530 <method name=
"Read" overloaded=
"no">
20531 <autodoc>Read(String key, String defaultVal=EmptyString) -
> String
</autodoc>
20533 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20534 <param name=
"defaultVal" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20537 <method name=
"ReadInt" overloaded=
"no">
20538 <autodoc>ReadInt(String key, long defaultVal=
0) -
> long
</autodoc>
20540 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20541 <param name=
"defaultVal" type=
"long" default=
"0"/>
20544 <method name=
"ReadFloat" overloaded=
"no">
20545 <autodoc>ReadFloat(String key, double defaultVal=
0.0) -
> double
</autodoc>
20547 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20548 <param name=
"defaultVal" type=
"double" default=
"0.0"/>
20551 <method name=
"ReadBool" overloaded=
"no">
20552 <autodoc>ReadBool(String key, bool defaultVal=False) -
> bool
</autodoc>
20554 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20555 <param name=
"defaultVal" type=
"bool" default=
"False"/>
20558 <method name=
"Write" overloaded=
"no">
20559 <autodoc>Write(String key, String value) -
> bool
</autodoc>
20561 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20562 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
20565 <method name=
"WriteInt" overloaded=
"no">
20566 <autodoc>WriteInt(String key, long value) -
> bool
</autodoc>
20568 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20569 <param name=
"value" type=
"long" default=
""/>
20572 <method name=
"WriteFloat" overloaded=
"no">
20573 <autodoc>WriteFloat(String key, double value) -
> bool
</autodoc>
20575 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20576 <param name=
"value" type=
"double" default=
""/>
20579 <method name=
"WriteBool" overloaded=
"no">
20580 <autodoc>WriteBool(String key, bool value) -
> bool
</autodoc>
20582 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20583 <param name=
"value" type=
"bool" default=
""/>
20586 <method name=
"Flush" overloaded=
"no">
20587 <autodoc>Flush(bool bCurrentOnly=False) -
> bool
</autodoc>
20589 <param name=
"bCurrentOnly" type=
"bool" default=
"False"/>
20592 <method name=
"RenameEntry" overloaded=
"no">
20593 <autodoc>RenameEntry(String oldName, String newName) -
> bool
</autodoc>
20595 <param name=
"oldName" type=
"r.q(const).wxString" default=
""/>
20596 <param name=
"newName" type=
"r.q(const).wxString" default=
""/>
20599 <method name=
"RenameGroup" overloaded=
"no">
20600 <autodoc>RenameGroup(String oldName, String newName) -
> bool
</autodoc>
20602 <param name=
"oldName" type=
"r.q(const).wxString" default=
""/>
20603 <param name=
"newName" type=
"r.q(const).wxString" default=
""/>
20606 <method name=
"DeleteEntry" overloaded=
"no">
20607 <autodoc>DeleteEntry(String key, bool bDeleteGroupIfEmpty=True) -
> bool
</autodoc>
20609 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20610 <param name=
"bDeleteGroupIfEmpty" type=
"bool" default=
"True"/>
20613 <method name=
"DeleteGroup" overloaded=
"no">
20614 <autodoc>DeleteGroup(String key) -
> bool
</autodoc>
20616 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
20619 <method name=
"DeleteAll" overloaded=
"no">
20620 <autodoc>DeleteAll() -
> bool
</autodoc>
20622 <method name=
"IsExpandingEnvVars" overloaded=
"no">
20623 <autodoc>IsExpandingEnvVars() -
> bool
</autodoc>
20625 <method name=
"SetExpandEnvVars" overloaded=
"no">
20626 <autodoc>SetExpandEnvVars(bool bDoIt=True)
</autodoc>
20628 <param name=
"bDoIt" type=
"bool" default=
"True"/>
20631 <method name=
"SetRecordDefaults" overloaded=
"no">
20632 <autodoc>SetRecordDefaults(bool bDoIt=True)
</autodoc>
20634 <param name=
"bDoIt" type=
"bool" default=
"True"/>
20637 <method name=
"IsRecordingDefaults" overloaded=
"no">
20638 <autodoc>IsRecordingDefaults() -
> bool
</autodoc>
20640 <method name=
"ExpandEnvVars" overloaded=
"no">
20641 <autodoc>ExpandEnvVars(String str) -
> String
</autodoc>
20643 <param name=
"str" type=
"r.q(const).wxString" default=
""/>
20646 <method name=
"GetAppName" overloaded=
"no">
20647 <autodoc>GetAppName() -
> String
</autodoc>
20649 <method name=
"GetVendorName" overloaded=
"no">
20650 <autodoc>GetVendorName() -
> String
</autodoc>
20652 <method name=
"SetAppName" overloaded=
"no">
20653 <autodoc>SetAppName(String appName)
</autodoc>
20655 <param name=
"appName" type=
"r.q(const).wxString" default=
""/>
20658 <method name=
"SetVendorName" overloaded=
"no">
20659 <autodoc>SetVendorName(String vendorName)
</autodoc>
20661 <param name=
"vendorName" type=
"r.q(const).wxString" default=
""/>
20664 <method name=
"SetStyle" overloaded=
"no">
20665 <autodoc>SetStyle(long style)
</autodoc>
20667 <param name=
"style" type=
"long" default=
""/>
20670 <method name=
"GetStyle" overloaded=
"no">
20671 <autodoc>GetStyle() -
> long
</autodoc>
20674 <class name=
"ConfigPathChanger" oldname=
"wxConfigPathChanger" module=
"misc">
20675 <constructor name=
"ConfigPathChanger" overloaded=
"no">
20676 <autodoc>__init__(ConfigBase pContainer, String strEntry) -
> ConfigPathChanger
</autodoc>
20678 <param name=
"pContainer" type=
"p.q(const).wxConfigBase" default=
""/>
20679 <param name=
"strEntry" type=
"r.q(const).wxString" default=
""/>
20682 <destructor name=
"~wxConfigPathChanger">
20683 <autodoc>__del__()
</autodoc>
20685 <method name=
"Name" overloaded=
"no">
20686 <autodoc>Name() -
> String
</autodoc>
20689 <class name=
"Config" oldname=
"wxConfig" module=
"misc">
20690 <baseclass name=
"wxConfigBase"/>
20691 <constructor name=
"Config" overloaded=
"no">
20692 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
20693 String localFilename=EmptyString, String globalFilename=EmptyString,
20694 long style=
0) -
> Config
</autodoc>
20696 <param name=
"appName" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20697 <param name=
"vendorName" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20698 <param name=
"localFilename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20699 <param name=
"globalFilename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20700 <param name=
"style" type=
"long" default=
"0"/>
20703 <destructor name=
"~wxConfig">
20704 <autodoc>__del__()
</autodoc>
20707 <class name=
"FileConfig" oldname=
"wxFileConfig" module=
"misc">
20708 <baseclass name=
"wxConfigBase"/>
20709 <constructor name=
"FileConfig" overloaded=
"no">
20710 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
20711 String localFilename=EmptyString, String globalFilename=EmptyString,
20712 long style=
0) -
> FileConfig
</autodoc>
20714 <param name=
"appName" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20715 <param name=
"vendorName" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20716 <param name=
"localFilename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20717 <param name=
"globalFilename" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
20718 <param name=
"style" type=
"long" default=
"0"/>
20721 <destructor name=
"~wxFileConfig">
20722 <autodoc>__del__()
</autodoc>
20725 <function oldname=
"wxExpandEnvVars" name=
"ExpandEnvVars" overloaded=
"no">
20726 <autodoc>ExpandEnvVars(String sz) -
> String
</autodoc>
20728 <param name=
"sz" type=
"r.q(const).wxString" default=
""/>
20732 #---------------------------------------------------------------------------
20734 <class name=
"DateTime" oldname=
"wxDateTime" module=
"misc">
20735 <staticmethod name=
"SetCountry" overloaded=
"no">
20736 <autodoc>SetCountry(int country)
</autodoc>
20738 <param name=
"country" type=
"wxDateTime::Country" default=
""/>
20741 <staticmethod name=
"GetCountry" overloaded=
"no">
20742 <autodoc>GetCountry() -
> int
</autodoc>
20744 <staticmethod name=
"IsWestEuropeanCountry" overloaded=
"no">
20745 <autodoc>IsWestEuropeanCountry(int country=Country_Default) -
> bool
</autodoc>
20747 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
20750 <staticmethod name=
"GetCurrentYear" overloaded=
"no">
20751 <autodoc>GetCurrentYear(int cal=Gregorian) -
> int
</autodoc>
20753 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
20756 <staticmethod name=
"ConvertYearToBC" overloaded=
"no">
20757 <autodoc>ConvertYearToBC(int year) -
> int
</autodoc>
20759 <param name=
"year" type=
"int" default=
""/>
20762 <staticmethod name=
"GetCurrentMonth" overloaded=
"no">
20763 <autodoc>GetCurrentMonth(int cal=Gregorian) -
> int
</autodoc>
20765 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
20768 <staticmethod name=
"IsLeapYear" overloaded=
"no">
20769 <autodoc>IsLeapYear(int year=Inv_Year, int cal=Gregorian) -
> bool
</autodoc>
20771 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20772 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
20775 <staticmethod name=
"GetCentury" overloaded=
"no">
20776 <autodoc>GetCentury(int year=Inv_Year) -
> int
</autodoc>
20778 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20781 <staticmethod name=
"GetNumberOfDaysinYear" overloaded=
"no">
20782 <autodoc>GetNumberOfDaysinYear(int year, int cal=Gregorian) -
> int
</autodoc>
20784 <param name=
"year" type=
"int" default=
""/>
20785 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
20788 <staticmethod name=
"GetNumberOfDaysInMonth" overloaded=
"no">
20789 <autodoc>GetNumberOfDaysInMonth(int month, int year=Inv_Year, int cal=Gregorian) -
> int
</autodoc>
20791 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
20792 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20793 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
20796 <staticmethod name=
"GetMonthName" overloaded=
"no">
20797 <autodoc>GetMonthName(int month, int flags=Name_Full) -
> String
</autodoc>
20799 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
20800 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
20803 <staticmethod name=
"GetWeekDayName" overloaded=
"no">
20804 <autodoc>GetWeekDayName(int weekday, int flags=Name_Full) -
> String
</autodoc>
20806 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
20807 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
20810 <staticmethod name=
"GetAmPmStrings" overloaded=
"no">
20811 <autodoc>GetAmPmStrings() -
> (am, pm)
</autodoc>
20812 <docstring>Get the AM and PM strings in the current locale (may be empty)
</docstring>
20814 <param name=
"OUTPUT" type=
"p.wxString" default=
""/>
20815 <param name=
"OUTPUT" type=
"p.wxString" default=
""/>
20818 <staticmethod name=
"IsDSTApplicable" overloaded=
"no">
20819 <autodoc>IsDSTApplicable(int year=Inv_Year, int country=Country_Default) -
> bool
</autodoc>
20821 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20822 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
20825 <staticmethod name=
"GetBeginDST" overloaded=
"no">
20826 <autodoc>GetBeginDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
20828 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20829 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
20832 <staticmethod name=
"GetEndDST" overloaded=
"no">
20833 <autodoc>GetEndDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
20835 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20836 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
20839 <staticmethod name=
"Now" overloaded=
"no">
20840 <autodoc>Now() -
> DateTime
</autodoc>
20842 <staticmethod name=
"UNow" overloaded=
"no">
20843 <autodoc>UNow() -
> DateTime
</autodoc>
20845 <staticmethod name=
"Today" overloaded=
"no">
20846 <autodoc>Today() -
> DateTime
</autodoc>
20848 <constructor name=
"DateTime" overloaded=
"no">
20849 <autodoc>__init__() -
> DateTime
</autodoc>
20851 <constructor name=
"DateTimeFromTimeT" overloaded=
"no">
20852 <autodoc>DateTimeFromTimeT(time_t timet) -
> DateTime
</autodoc>
20854 <param name=
"timet" type=
"time_t" default=
""/>
20857 <constructor name=
"DateTimeFromJDN" overloaded=
"no">
20858 <autodoc>DateTimeFromJDN(double jdn) -
> DateTime
</autodoc>
20860 <param name=
"jdn" type=
"double" default=
""/>
20863 <constructor name=
"DateTimeFromHMS" overloaded=
"no">
20864 <autodoc>DateTimeFromHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
20866 <param name=
"hour" type=
"int" default=
""/>
20867 <param name=
"minute" type=
"int" default=
"0"/>
20868 <param name=
"second" type=
"int" default=
"0"/>
20869 <param name=
"millisec" type=
"int" default=
"0"/>
20872 <constructor name=
"DateTimeFromDMY" overloaded=
"no">
20873 <autodoc>DateTimeFromDMY(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
20874 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
20876 <param name=
"day" type=
"int" default=
""/>
20877 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
20878 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20879 <param name=
"hour" type=
"int" default=
"0"/>
20880 <param name=
"minute" type=
"int" default=
"0"/>
20881 <param name=
"second" type=
"int" default=
"0"/>
20882 <param name=
"millisec" type=
"int" default=
"0"/>
20885 <destructor name=
"~wxDateTime">
20886 <autodoc>__del__()
</autodoc>
20888 <method name=
"SetToCurrent" overloaded=
"no">
20889 <autodoc>SetToCurrent() -
> DateTime
</autodoc>
20891 <method name=
"SetTimeT" overloaded=
"no">
20892 <autodoc>SetTimeT(time_t timet) -
> DateTime
</autodoc>
20894 <param name=
"timet" type=
"time_t" default=
""/>
20897 <method name=
"SetJDN" overloaded=
"no">
20898 <autodoc>SetJDN(double jdn) -
> DateTime
</autodoc>
20900 <param name=
"jdn" type=
"double" default=
""/>
20903 <method name=
"SetHMS" overloaded=
"no">
20904 <autodoc>SetHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
20906 <param name=
"hour" type=
"int" default=
""/>
20907 <param name=
"minute" type=
"int" default=
"0"/>
20908 <param name=
"second" type=
"int" default=
"0"/>
20909 <param name=
"millisec" type=
"int" default=
"0"/>
20912 <method name=
"Set" overloaded=
"no">
20913 <autodoc>Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
20914 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
20916 <param name=
"day" type=
"int" default=
""/>
20917 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
20918 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
20919 <param name=
"hour" type=
"int" default=
"0"/>
20920 <param name=
"minute" type=
"int" default=
"0"/>
20921 <param name=
"second" type=
"int" default=
"0"/>
20922 <param name=
"millisec" type=
"int" default=
"0"/>
20925 <method name=
"ResetTime" overloaded=
"no">
20926 <autodoc>ResetTime() -
> DateTime
</autodoc>
20928 <method name=
"SetYear" overloaded=
"no">
20929 <autodoc>SetYear(int year) -
> DateTime
</autodoc>
20931 <param name=
"year" type=
"int" default=
""/>
20934 <method name=
"SetMonth" overloaded=
"no">
20935 <autodoc>SetMonth(int month) -
> DateTime
</autodoc>
20937 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
20940 <method name=
"SetDay" overloaded=
"no">
20941 <autodoc>SetDay(int day) -
> DateTime
</autodoc>
20943 <param name=
"day" type=
"int" default=
""/>
20946 <method name=
"SetHour" overloaded=
"no">
20947 <autodoc>SetHour(int hour) -
> DateTime
</autodoc>
20949 <param name=
"hour" type=
"int" default=
""/>
20952 <method name=
"SetMinute" overloaded=
"no">
20953 <autodoc>SetMinute(int minute) -
> DateTime
</autodoc>
20955 <param name=
"minute" type=
"int" default=
""/>
20958 <method name=
"SetSecond" overloaded=
"no">
20959 <autodoc>SetSecond(int second) -
> DateTime
</autodoc>
20961 <param name=
"second" type=
"int" default=
""/>
20964 <method name=
"SetMillisecond" overloaded=
"no">
20965 <autodoc>SetMillisecond(int millisecond) -
> DateTime
</autodoc>
20967 <param name=
"millisecond" type=
"int" default=
""/>
20970 <method name=
"SetToWeekDayInSameWeek" overloaded=
"no">
20971 <autodoc>SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
20973 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
20974 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
20977 <method name=
"GetWeekDayInSameWeek" overloaded=
"no">
20978 <autodoc>GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
20980 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
20981 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
20984 <method name=
"SetToNextWeekDay" overloaded=
"no">
20985 <autodoc>SetToNextWeekDay(int weekday) -
> DateTime
</autodoc>
20987 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
20990 <method name=
"GetNextWeekDay" overloaded=
"no">
20991 <autodoc>GetNextWeekDay(int weekday) -
> DateTime
</autodoc>
20993 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
20996 <method name=
"SetToPrevWeekDay" overloaded=
"no">
20997 <autodoc>SetToPrevWeekDay(int weekday) -
> DateTime
</autodoc>
20999 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
21002 <method name=
"GetPrevWeekDay" overloaded=
"no">
21003 <autodoc>GetPrevWeekDay(int weekday) -
> DateTime
</autodoc>
21005 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
21008 <method name=
"SetToWeekDay" overloaded=
"no">
21009 <autodoc>SetToWeekDay(int weekday, int n=
1, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
21011 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
21012 <param name=
"n" type=
"int" default=
"1"/>
21013 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
21014 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
21017 <method name=
"SetToLastWeekDay" overloaded=
"no">
21018 <autodoc>SetToLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
21020 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
21021 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
21022 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
21025 <method name=
"GetLastWeekDay" overloaded=
"no">
21026 <autodoc>GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
21028 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
21029 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
21030 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
21033 <method name=
"SetToTheWeek" overloaded=
"no">
21034 <autodoc>SetToTheWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> bool
</autodoc>
21036 <param name=
"numWeek" type=
"int" default=
""/>
21037 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
21038 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
21041 <method name=
"GetWeek" overloaded=
"no">
21042 <autodoc>GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> DateTime
</autodoc>
21044 <param name=
"numWeek" type=
"int" default=
""/>
21045 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
21046 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
21049 <method name=
"SetToLastMonthDay" overloaded=
"no">
21050 <autodoc>SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
21052 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
21053 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
21056 <method name=
"GetLastMonthDay" overloaded=
"no">
21057 <autodoc>GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
21059 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
21060 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
21063 <method name=
"SetToYearDay" overloaded=
"no">
21064 <autodoc>SetToYearDay(int yday) -
> DateTime
</autodoc>
21066 <param name=
"yday" type=
"int" default=
""/>
21069 <method name=
"GetYearDay" overloaded=
"no">
21070 <autodoc>GetYearDay(int yday) -
> DateTime
</autodoc>
21072 <param name=
"yday" type=
"int" default=
""/>
21075 <method name=
"GetJulianDayNumber" overloaded=
"no">
21076 <autodoc>GetJulianDayNumber() -
> double
</autodoc>
21078 <method name=
"GetJDN" overloaded=
"no">
21079 <autodoc>GetJDN() -
> double
</autodoc>
21081 <method name=
"GetModifiedJulianDayNumber" overloaded=
"no">
21082 <autodoc>GetModifiedJulianDayNumber() -
> double
</autodoc>
21084 <method name=
"GetMJD" overloaded=
"no">
21085 <autodoc>GetMJD() -
> double
</autodoc>
21087 <method name=
"GetRataDie" overloaded=
"no">
21088 <autodoc>GetRataDie() -
> double
</autodoc>
21090 <method name=
"ToTimezone" overloaded=
"no">
21091 <autodoc>ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
21093 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
""/>
21094 <param name=
"noDST" type=
"bool" default=
"False"/>
21097 <method name=
"MakeTimezone" overloaded=
"no">
21098 <autodoc>MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
21100 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
""/>
21101 <param name=
"noDST" type=
"bool" default=
"False"/>
21104 <method name=
"ToGMT" overloaded=
"no">
21105 <autodoc>ToGMT(bool noDST=False) -
> DateTime
</autodoc>
21107 <param name=
"noDST" type=
"bool" default=
"False"/>
21110 <method name=
"MakeGMT" overloaded=
"no">
21111 <autodoc>MakeGMT(bool noDST=False) -
> DateTime
</autodoc>
21113 <param name=
"noDST" type=
"bool" default=
"False"/>
21116 <method name=
"IsDST" overloaded=
"no">
21117 <autodoc>IsDST(int country=Country_Default) -
> int
</autodoc>
21119 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
21122 <method name=
"IsValid" overloaded=
"no">
21123 <autodoc>IsValid() -
> bool
</autodoc>
21125 <pythoncode> Ok = IsValid
</pythoncode>
21126 <pythoncode> def __nonzero__(self): return self.Ok()
</pythoncode>
21127 <method name=
"GetTicks" overloaded=
"no">
21128 <autodoc>GetTicks() -
> time_t
</autodoc>
21130 <method name=
"GetYear" overloaded=
"no">
21131 <autodoc>GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21133 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21136 <method name=
"GetMonth" overloaded=
"no">
21137 <autodoc>GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21139 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21142 <method name=
"GetDay" overloaded=
"no">
21143 <autodoc>GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21145 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21148 <method name=
"GetWeekDay" overloaded=
"no">
21149 <autodoc>GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21151 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21154 <method name=
"GetHour" overloaded=
"no">
21155 <autodoc>GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21157 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21160 <method name=
"GetMinute" overloaded=
"no">
21161 <autodoc>GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21163 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21166 <method name=
"GetSecond" overloaded=
"no">
21167 <autodoc>GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21169 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21172 <method name=
"GetMillisecond" overloaded=
"no">
21173 <autodoc>GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21175 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21178 <method name=
"GetDayOfYear" overloaded=
"no">
21179 <autodoc>GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21181 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21184 <method name=
"GetWeekOfYear" overloaded=
"no">
21185 <autodoc>GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21187 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
21188 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21191 <method name=
"GetWeekOfMonth" overloaded=
"no">
21192 <autodoc>GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
21194 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
21195 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21198 <method name=
"IsWorkDay" overloaded=
"no">
21199 <autodoc>IsWorkDay(int country=Country_Default) -
> bool
</autodoc>
21201 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
21204 <method name=
"IsEqualTo" overloaded=
"no">
21205 <autodoc>IsEqualTo(DateTime datetime) -
> bool
</autodoc>
21207 <param name=
"datetime" type=
"r.q(const).wxDateTime" default=
""/>
21210 <method name=
"IsEarlierThan" overloaded=
"no">
21211 <autodoc>IsEarlierThan(DateTime datetime) -
> bool
</autodoc>
21213 <param name=
"datetime" type=
"r.q(const).wxDateTime" default=
""/>
21216 <method name=
"IsLaterThan" overloaded=
"no">
21217 <autodoc>IsLaterThan(DateTime datetime) -
> bool
</autodoc>
21219 <param name=
"datetime" type=
"r.q(const).wxDateTime" default=
""/>
21222 <method name=
"IsStrictlyBetween" overloaded=
"no">
21223 <autodoc>IsStrictlyBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
21225 <param name=
"t1" type=
"r.q(const).wxDateTime" default=
""/>
21226 <param name=
"t2" type=
"r.q(const).wxDateTime" default=
""/>
21229 <method name=
"IsBetween" overloaded=
"no">
21230 <autodoc>IsBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
21232 <param name=
"t1" type=
"r.q(const).wxDateTime" default=
""/>
21233 <param name=
"t2" type=
"r.q(const).wxDateTime" default=
""/>
21236 <method name=
"IsSameDate" overloaded=
"no">
21237 <autodoc>IsSameDate(DateTime dt) -
> bool
</autodoc>
21239 <param name=
"dt" type=
"r.q(const).wxDateTime" default=
""/>
21242 <method name=
"IsSameTime" overloaded=
"no">
21243 <autodoc>IsSameTime(DateTime dt) -
> bool
</autodoc>
21245 <param name=
"dt" type=
"r.q(const).wxDateTime" default=
""/>
21248 <method name=
"IsEqualUpTo" overloaded=
"no">
21249 <autodoc>IsEqualUpTo(DateTime dt, TimeSpan ts) -
> bool
</autodoc>
21251 <param name=
"dt" type=
"r.q(const).wxDateTime" default=
""/>
21252 <param name=
"ts" type=
"r.q(const).wxTimeSpan" default=
""/>
21255 <method name=
"AddTS" overloaded=
"no">
21256 <autodoc>AddTS(TimeSpan diff) -
> DateTime
</autodoc>
21258 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21261 <method name=
"AddDS" overloaded=
"no">
21262 <autodoc>AddDS(DateSpan diff) -
> DateTime
</autodoc>
21264 <param name=
"diff" type=
"r.q(const).wxDateSpan" default=
""/>
21267 <method name=
"SubtractTS" overloaded=
"no">
21268 <autodoc>SubtractTS(TimeSpan diff) -
> DateTime
</autodoc>
21270 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21273 <method name=
"SubtractDS" overloaded=
"no">
21274 <autodoc>SubtractDS(DateSpan diff) -
> DateTime
</autodoc>
21276 <param name=
"diff" type=
"r.q(const).wxDateSpan" default=
""/>
21279 <method name=
"Subtract" overloaded=
"no">
21280 <autodoc>Subtract(DateTime dt) -
> TimeSpan
</autodoc>
21282 <param name=
"dt" type=
"r.q(const).wxDateTime" default=
""/>
21285 <method name=
"__iadd__" overloaded=
"yes">
21287 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21290 <method name=
"__iadd__" overloaded=
"yes">
21291 <autodoc>__iadd__(TimeSpan diff) -
> DateTime
21292 __iadd__(DateSpan diff) -
> DateTime
</autodoc>
21294 <param name=
"diff" type=
"r.q(const).wxDateSpan" default=
""/>
21297 <method name=
"__isub__" overloaded=
"yes">
21299 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21302 <method name=
"__isub__" overloaded=
"yes">
21303 <autodoc>__isub__(TimeSpan diff) -
> DateTime
21304 __isub__(DateSpan diff) -
> DateTime
</autodoc>
21306 <param name=
"diff" type=
"r.q(const).wxDateSpan" default=
""/>
21309 <method name=
"__add__" overloaded=
"yes">
21311 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21314 <method name=
"__add__" overloaded=
"yes">
21315 <autodoc>__add__(TimeSpan other) -
> DateTime
21316 __add__(DateSpan other) -
> DateTime
</autodoc>
21318 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21321 <method name=
"__sub__" overloaded=
"yes">
21323 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21326 <method name=
"__sub__" overloaded=
"yes">
21328 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21331 <method name=
"__sub__" overloaded=
"yes">
21332 <autodoc>__sub__(DateTime other) -
> TimeSpan
21333 __sub__(TimeSpan other) -
> DateTime
21334 __sub__(DateSpan other) -
> DateTime
</autodoc>
21336 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21339 <method name=
"__lt__" overloaded=
"no">
21340 <autodoc>__lt__(DateTime other) -
> bool
</autodoc>
21342 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21345 <method name=
"__le__" overloaded=
"no">
21346 <autodoc>__le__(DateTime other) -
> bool
</autodoc>
21348 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21351 <method name=
"__gt__" overloaded=
"no">
21352 <autodoc>__gt__(DateTime other) -
> bool
</autodoc>
21354 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21357 <method name=
"__ge__" overloaded=
"no">
21358 <autodoc>__ge__(DateTime other) -
> bool
</autodoc>
21360 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21363 <method name=
"__eq__" overloaded=
"no">
21364 <autodoc>__eq__(DateTime other) -
> bool
</autodoc>
21366 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21369 <method name=
"__ne__" overloaded=
"no">
21370 <autodoc>__ne__(DateTime other) -
> bool
</autodoc>
21372 <param name=
"other" type=
"r.q(const).wxDateTime" default=
""/>
21375 <method name=
"ParseRfc822Date" overloaded=
"no">
21376 <autodoc>ParseRfc822Date(String date) -
> int
</autodoc>
21378 <param name=
"date" type=
"r.q(const).wxString" default=
""/>
21381 <method name=
"ParseFormat" overloaded=
"no">
21382 <autodoc>ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=DefaultDateTime) -
> int
</autodoc>
21384 <param name=
"date" type=
"r.q(const).wxString" default=
""/>
21385 <param name=
"format" type=
"r.q(const).wxString" default=
"wxPyDateFormatStr"/>
21386 <param name=
"dateDef" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
21389 <method name=
"ParseDateTime" overloaded=
"no">
21390 <autodoc>ParseDateTime(String datetime) -
> int
</autodoc>
21392 <param name=
"datetime" type=
"r.q(const).wxString" default=
""/>
21395 <method name=
"ParseDate" overloaded=
"no">
21396 <autodoc>ParseDate(String date) -
> int
</autodoc>
21398 <param name=
"date" type=
"r.q(const).wxString" default=
""/>
21401 <method name=
"ParseTime" overloaded=
"no">
21402 <autodoc>ParseTime(String time) -
> int
</autodoc>
21404 <param name=
"time" type=
"r.q(const).wxString" default=
""/>
21407 <method name=
"Format" overloaded=
"no">
21408 <autodoc>Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -
> String
</autodoc>
21410 <param name=
"format" type=
"r.q(const).wxString" default=
"wxPyDateFormatStr"/>
21411 <param name=
"tz" type=
"r.q(const).wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
21414 <method name=
"FormatDate" overloaded=
"no">
21415 <autodoc>FormatDate() -
> String
</autodoc>
21417 <method name=
"FormatTime" overloaded=
"no">
21418 <autodoc>FormatTime() -
> String
</autodoc>
21420 <method name=
"FormatISODate" overloaded=
"no">
21421 <autodoc>FormatISODate() -
> String
</autodoc>
21423 <method name=
"FormatISOTime" overloaded=
"no">
21424 <autodoc>FormatISOTime() -
> String
</autodoc>
21427 def __repr__(self):
21428 return '
<wxDateTime: \\"%s\\" at %s
>' % ( self.Format(), self.this)
21430 return self.Format()
21433 <class name=
"TimeSpan" oldname=
"wxTimeSpan" module=
"misc">
21434 <staticmethod name=
"Seconds" overloaded=
"no">
21435 <autodoc>Seconds(long sec) -
> TimeSpan
</autodoc>
21437 <param name=
"sec" type=
"long" default=
""/>
21440 <staticmethod name=
"Second" overloaded=
"no">
21441 <autodoc>Second() -
> TimeSpan
</autodoc>
21443 <staticmethod name=
"Minutes" overloaded=
"no">
21444 <autodoc>Minutes(long min) -
> TimeSpan
</autodoc>
21446 <param name=
"min" type=
"long" default=
""/>
21449 <staticmethod name=
"Minute" overloaded=
"no">
21450 <autodoc>Minute() -
> TimeSpan
</autodoc>
21452 <staticmethod name=
"Hours" overloaded=
"no">
21453 <autodoc>Hours(long hours) -
> TimeSpan
</autodoc>
21455 <param name=
"hours" type=
"long" default=
""/>
21458 <staticmethod name=
"Hour" overloaded=
"no">
21459 <autodoc>Hour() -
> TimeSpan
</autodoc>
21461 <staticmethod name=
"Days" overloaded=
"no">
21462 <autodoc>Days(long days) -
> TimeSpan
</autodoc>
21464 <param name=
"days" type=
"long" default=
""/>
21467 <staticmethod name=
"Day" overloaded=
"no">
21468 <autodoc>Day() -
> TimeSpan
</autodoc>
21470 <staticmethod name=
"Weeks" overloaded=
"no">
21471 <autodoc>Weeks(long days) -
> TimeSpan
</autodoc>
21473 <param name=
"days" type=
"long" default=
""/>
21476 <staticmethod name=
"Week" overloaded=
"no">
21477 <autodoc>Week() -
> TimeSpan
</autodoc>
21479 <constructor name=
"TimeSpan" overloaded=
"no">
21480 <autodoc>__init__(long hours=
0, long minutes=
0, long seconds=
0, long milliseconds=
0) -
> TimeSpan
</autodoc>
21482 <param name=
"hours" type=
"long" default=
"0"/>
21483 <param name=
"minutes" type=
"long" default=
"0"/>
21484 <param name=
"seconds" type=
"long" default=
"0"/>
21485 <param name=
"milliseconds" type=
"long" default=
"0"/>
21488 <destructor name=
"~wxTimeSpan">
21489 <autodoc>__del__()
</autodoc>
21491 <method name=
"Add" overloaded=
"no">
21492 <autodoc>Add(TimeSpan diff) -
> TimeSpan
</autodoc>
21494 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21497 <method name=
"Subtract" overloaded=
"no">
21498 <autodoc>Subtract(TimeSpan diff) -
> TimeSpan
</autodoc>
21500 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21503 <method name=
"Multiply" overloaded=
"no">
21504 <autodoc>Multiply(int n) -
> TimeSpan
</autodoc>
21506 <param name=
"n" type=
"int" default=
""/>
21509 <method name=
"Neg" overloaded=
"no">
21510 <autodoc>Neg() -
> TimeSpan
</autodoc>
21512 <method name=
"Abs" overloaded=
"no">
21513 <autodoc>Abs() -
> TimeSpan
</autodoc>
21515 <method name=
"__iadd__" overloaded=
"no">
21516 <autodoc>__iadd__(TimeSpan diff) -
> TimeSpan
</autodoc>
21518 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21521 <method name=
"__isub__" overloaded=
"no">
21522 <autodoc>__isub__(TimeSpan diff) -
> TimeSpan
</autodoc>
21524 <param name=
"diff" type=
"r.q(const).wxTimeSpan" default=
""/>
21527 <method name=
"__imul__" overloaded=
"no">
21528 <autodoc>__imul__(int n) -
> TimeSpan
</autodoc>
21530 <param name=
"n" type=
"int" default=
""/>
21533 <method name=
"__neg__" overloaded=
"no">
21534 <autodoc>__neg__() -
> TimeSpan
</autodoc>
21536 <method name=
"__add__" overloaded=
"no">
21537 <autodoc>__add__(TimeSpan other) -
> TimeSpan
</autodoc>
21539 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21542 <method name=
"__sub__" overloaded=
"no">
21543 <autodoc>__sub__(TimeSpan other) -
> TimeSpan
</autodoc>
21545 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21548 <method name=
"__mul__" overloaded=
"no">
21549 <autodoc>__mul__(int n) -
> TimeSpan
</autodoc>
21551 <param name=
"n" type=
"int" default=
""/>
21554 <method name=
"__rmul__" overloaded=
"no">
21555 <autodoc>__rmul__(int n) -
> TimeSpan
</autodoc>
21557 <param name=
"n" type=
"int" default=
""/>
21560 <method name=
"__lt__" overloaded=
"no">
21561 <autodoc>__lt__(TimeSpan other) -
> bool
</autodoc>
21563 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21566 <method name=
"__le__" overloaded=
"no">
21567 <autodoc>__le__(TimeSpan other) -
> bool
</autodoc>
21569 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21572 <method name=
"__gt__" overloaded=
"no">
21573 <autodoc>__gt__(TimeSpan other) -
> bool
</autodoc>
21575 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21578 <method name=
"__ge__" overloaded=
"no">
21579 <autodoc>__ge__(TimeSpan other) -
> bool
</autodoc>
21581 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21584 <method name=
"__eq__" overloaded=
"no">
21585 <autodoc>__eq__(TimeSpan other) -
> bool
</autodoc>
21587 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21590 <method name=
"__ne__" overloaded=
"no">
21591 <autodoc>__ne__(TimeSpan other) -
> bool
</autodoc>
21593 <param name=
"other" type=
"r.q(const).wxTimeSpan" default=
""/>
21596 <method name=
"IsNull" overloaded=
"no">
21597 <autodoc>IsNull() -
> bool
</autodoc>
21599 <method name=
"IsPositive" overloaded=
"no">
21600 <autodoc>IsPositive() -
> bool
</autodoc>
21602 <method name=
"IsNegative" overloaded=
"no">
21603 <autodoc>IsNegative() -
> bool
</autodoc>
21605 <method name=
"IsEqualTo" overloaded=
"no">
21606 <autodoc>IsEqualTo(TimeSpan ts) -
> bool
</autodoc>
21608 <param name=
"ts" type=
"r.q(const).wxTimeSpan" default=
""/>
21611 <method name=
"IsLongerThan" overloaded=
"no">
21612 <autodoc>IsLongerThan(TimeSpan ts) -
> bool
</autodoc>
21614 <param name=
"ts" type=
"r.q(const).wxTimeSpan" default=
""/>
21617 <method name=
"IsShorterThan" overloaded=
"no">
21618 <autodoc>IsShorterThan(TimeSpan t) -
> bool
</autodoc>
21620 <param name=
"t" type=
"r.q(const).wxTimeSpan" default=
""/>
21623 <method name=
"GetWeeks" overloaded=
"no">
21624 <autodoc>GetWeeks() -
> int
</autodoc>
21626 <method name=
"GetDays" overloaded=
"no">
21627 <autodoc>GetDays() -
> int
</autodoc>
21629 <method name=
"GetHours" overloaded=
"no">
21630 <autodoc>GetHours() -
> int
</autodoc>
21632 <method name=
"GetMinutes" overloaded=
"no">
21633 <autodoc>GetMinutes() -
> int
</autodoc>
21635 <method name=
"GetSeconds" overloaded=
"no">
21636 <autodoc>GetSeconds() -
> wxLongLong
</autodoc>
21638 <method name=
"GetMilliseconds" overloaded=
"no">
21639 <autodoc>GetMilliseconds() -
> wxLongLong
</autodoc>
21641 <method name=
"Format" overloaded=
"no">
21642 <autodoc>Format(String format=TimeSpanFormatStr) -
> String
</autodoc>
21644 <param name=
"format" type=
"r.q(const).wxString" default=
"wxPyTimeSpanFormatStr"/>
21648 def __repr__(self):
21649 return '
<wxTimeSpan: \\"%s\\" at %s
>' % ( self.Format(), self.this)
21651 return self.Format()
21654 <class name=
"DateSpan" oldname=
"wxDateSpan" module=
"misc">
21655 <constructor name=
"DateSpan" overloaded=
"no">
21656 <autodoc>__init__(int years=
0, int months=
0, int weeks=
0, int days=
0) -
> DateSpan
</autodoc>
21658 <param name=
"years" type=
"int" default=
"0"/>
21659 <param name=
"months" type=
"int" default=
"0"/>
21660 <param name=
"weeks" type=
"int" default=
"0"/>
21661 <param name=
"days" type=
"int" default=
"0"/>
21664 <destructor name=
"~wxDateSpan">
21665 <autodoc>__del__()
</autodoc>
21667 <staticmethod name=
"Days" overloaded=
"no">
21668 <autodoc>Days(int days) -
> DateSpan
</autodoc>
21670 <param name=
"days" type=
"int" default=
""/>
21673 <staticmethod name=
"Day" overloaded=
"no">
21674 <autodoc>Day() -
> DateSpan
</autodoc>
21676 <staticmethod name=
"Weeks" overloaded=
"no">
21677 <autodoc>Weeks(int weeks) -
> DateSpan
</autodoc>
21679 <param name=
"weeks" type=
"int" default=
""/>
21682 <staticmethod name=
"Week" overloaded=
"no">
21683 <autodoc>Week() -
> DateSpan
</autodoc>
21685 <staticmethod name=
"Months" overloaded=
"no">
21686 <autodoc>Months(int mon) -
> DateSpan
</autodoc>
21688 <param name=
"mon" type=
"int" default=
""/>
21691 <staticmethod name=
"Month" overloaded=
"no">
21692 <autodoc>Month() -
> DateSpan
</autodoc>
21694 <staticmethod name=
"Years" overloaded=
"no">
21695 <autodoc>Years(int years) -
> DateSpan
</autodoc>
21697 <param name=
"years" type=
"int" default=
""/>
21700 <staticmethod name=
"Year" overloaded=
"no">
21701 <autodoc>Year() -
> DateSpan
</autodoc>
21703 <method name=
"SetYears" overloaded=
"no">
21704 <autodoc>SetYears(int n) -
> DateSpan
</autodoc>
21706 <param name=
"n" type=
"int" default=
""/>
21709 <method name=
"SetMonths" overloaded=
"no">
21710 <autodoc>SetMonths(int n) -
> DateSpan
</autodoc>
21712 <param name=
"n" type=
"int" default=
""/>
21715 <method name=
"SetWeeks" overloaded=
"no">
21716 <autodoc>SetWeeks(int n) -
> DateSpan
</autodoc>
21718 <param name=
"n" type=
"int" default=
""/>
21721 <method name=
"SetDays" overloaded=
"no">
21722 <autodoc>SetDays(int n) -
> DateSpan
</autodoc>
21724 <param name=
"n" type=
"int" default=
""/>
21727 <method name=
"GetYears" overloaded=
"no">
21728 <autodoc>GetYears() -
> int
</autodoc>
21730 <method name=
"GetMonths" overloaded=
"no">
21731 <autodoc>GetMonths() -
> int
</autodoc>
21733 <method name=
"GetWeeks" overloaded=
"no">
21734 <autodoc>GetWeeks() -
> int
</autodoc>
21736 <method name=
"GetDays" overloaded=
"no">
21737 <autodoc>GetDays() -
> int
</autodoc>
21739 <method name=
"GetTotalDays" overloaded=
"no">
21740 <autodoc>GetTotalDays() -
> int
</autodoc>
21742 <method name=
"Add" overloaded=
"no">
21743 <autodoc>Add(DateSpan other) -
> DateSpan
</autodoc>
21745 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21748 <method name=
"Subtract" overloaded=
"no">
21749 <autodoc>Subtract(DateSpan other) -
> DateSpan
</autodoc>
21751 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21754 <method name=
"Neg" overloaded=
"no">
21755 <autodoc>Neg() -
> DateSpan
</autodoc>
21757 <method name=
"Multiply" overloaded=
"no">
21758 <autodoc>Multiply(int factor) -
> DateSpan
</autodoc>
21760 <param name=
"factor" type=
"int" default=
""/>
21763 <method name=
"__iadd__" overloaded=
"no">
21764 <autodoc>__iadd__(DateSpan other) -
> DateSpan
</autodoc>
21766 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21769 <method name=
"__isub__" overloaded=
"no">
21770 <autodoc>__isub__(DateSpan other) -
> DateSpan
</autodoc>
21772 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21775 <method name=
"__neg__" overloaded=
"no">
21776 <autodoc>__neg__() -
> DateSpan
</autodoc>
21778 <method name=
"__imul__" overloaded=
"no">
21779 <autodoc>__imul__(int factor) -
> DateSpan
</autodoc>
21781 <param name=
"factor" type=
"int" default=
""/>
21784 <method name=
"__add__" overloaded=
"no">
21785 <autodoc>__add__(DateSpan other) -
> DateSpan
</autodoc>
21787 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21790 <method name=
"__sub__" overloaded=
"no">
21791 <autodoc>__sub__(DateSpan other) -
> DateSpan
</autodoc>
21793 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21796 <method name=
"__mul__" overloaded=
"no">
21797 <autodoc>__mul__(int n) -
> DateSpan
</autodoc>
21799 <param name=
"n" type=
"int" default=
""/>
21802 <method name=
"__rmul__" overloaded=
"no">
21803 <autodoc>__rmul__(int n) -
> DateSpan
</autodoc>
21805 <param name=
"n" type=
"int" default=
""/>
21808 <method name=
"__eq__" overloaded=
"no">
21809 <autodoc>__eq__(DateSpan other) -
> bool
</autodoc>
21811 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21814 <method name=
"__ne__" overloaded=
"no">
21815 <autodoc>__ne__(DateSpan other) -
> bool
</autodoc>
21817 <param name=
"other" type=
"r.q(const).wxDateSpan" default=
""/>
21821 <function oldname=
"wxGetLocalTime" name=
"GetLocalTime" overloaded=
"no">
21822 <autodoc>GetLocalTime() -
> long
</autodoc>
21824 <function oldname=
"wxGetUTCTime" name=
"GetUTCTime" overloaded=
"no">
21825 <autodoc>GetUTCTime() -
> long
</autodoc>
21827 <function oldname=
"wxGetCurrentTime" name=
"GetCurrentTime" overloaded=
"no">
21828 <autodoc>GetCurrentTime() -
> long
</autodoc>
21830 <function oldname=
"wxGetLocalTimeMillis" name=
"GetLocalTimeMillis" overloaded=
"no">
21831 <autodoc>GetLocalTimeMillis() -
> wxLongLong
</autodoc>
21834 #---------------------------------------------------------------------------
21836 <class name=
"DataFormat" oldname=
"wxDataFormat" module=
"misc">
21837 <constructor name=
"DataFormat" overloaded=
"no">
21838 <autodoc>__init__(int type) -
> DataFormat
</autodoc>
21840 <param name=
"type" type=
"wxDataFormatId" default=
""/>
21843 <constructor name=
"CustomDataFormat" overloaded=
"no">
21844 <autodoc>CustomDataFormat(String format) -
> DataFormat
</autodoc>
21846 <param name=
"format" type=
"r.q(const).wxString" default=
""/>
21849 <destructor name=
"~wxDataFormat">
21850 <autodoc>__del__()
</autodoc>
21852 <method name=
"__eq__" overloaded=
"yes">
21854 <param name=
"format" type=
"wxDataFormatId" default=
""/>
21857 <method name=
"__ne__" overloaded=
"yes">
21859 <param name=
"format" type=
"wxDataFormatId" default=
""/>
21862 <method name=
"__eq__" overloaded=
"yes">
21863 <autodoc>__eq__(int format) -
> bool
21864 __eq__(DataFormat format) -
> bool
</autodoc>
21866 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21869 <method name=
"__ne__" overloaded=
"yes">
21870 <autodoc>__ne__(int format) -
> bool
21871 __ne__(DataFormat format) -
> bool
</autodoc>
21873 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21876 <method name=
"SetType" overloaded=
"no">
21877 <autodoc>SetType(int format)
</autodoc>
21879 <param name=
"format" type=
"wxDataFormatId" default=
""/>
21882 <method name=
"GetType" overloaded=
"no">
21883 <autodoc>GetType() -
> int
</autodoc>
21885 <method name=
"GetId" overloaded=
"no">
21886 <autodoc>GetId() -
> String
</autodoc>
21888 <method name=
"SetId" overloaded=
"no">
21889 <autodoc>SetId(String format)
</autodoc>
21891 <param name=
"format" type=
"r.q(const).wxString" default=
""/>
21895 <class name=
"DataObject" oldname=
"wxDataObject" module=
"misc">
21896 <destructor name=
"~wxDataObject">
21897 <autodoc>__del__()
</autodoc>
21899 <method name=
"GetPreferredFormat" overloaded=
"no">
21900 <autodoc>GetPreferredFormat(int dir=Get) -
> DataFormat
</autodoc>
21902 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
21905 <method name=
"GetFormatCount" overloaded=
"no">
21906 <autodoc>GetFormatCount(int dir=Get) -
> size_t
</autodoc>
21908 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
21911 <method name=
"IsSupported" overloaded=
"no">
21912 <autodoc>IsSupported(DataFormat format, int dir=Get) -
> bool
</autodoc>
21914 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21915 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
21918 <method name=
"GetDataSize" overloaded=
"no">
21919 <autodoc>GetDataSize(DataFormat format) -
> size_t
</autodoc>
21921 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21924 <method name=
"GetAllFormats" overloaded=
"no">
21925 <autodoc>GetAllFormats(DataFormat formats, int dir=Get)
</autodoc>
21927 <param name=
"formats" type=
"p.wxDataFormat" default=
""/>
21928 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
21931 <method name=
"GetDataHere" overloaded=
"no">
21932 <autodoc>GetDataHere(DataFormat format, void buf) -
> bool
</autodoc>
21934 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21935 <param name=
"buf" type=
"p.void" default=
""/>
21938 <method name=
"SetData" overloaded=
"no">
21939 <autodoc>SetData(DataFormat format, size_t len, void buf) -
> bool
</autodoc>
21941 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21942 <param name=
"len" type=
"size_t" default=
""/>
21943 <param name=
"buf" type=
"p.q(const).void" default=
""/>
21947 <class name=
"DataObjectSimple" oldname=
"wxDataObjectSimple" module=
"misc">
21948 <baseclass name=
"wxDataObject"/>
21949 <constructor name=
"DataObjectSimple" overloaded=
"no">
21950 <autodoc>__init__(DataFormat format=FormatInvalid) -
> DataObjectSimple
</autodoc>
21952 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
"wxFormatInvalid"/>
21955 <method name=
"GetFormat" overloaded=
"no">
21956 <autodoc>GetFormat() -
> DataFormat
</autodoc>
21958 <method name=
"SetFormat" overloaded=
"no">
21959 <autodoc>SetFormat(DataFormat format)
</autodoc>
21961 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
21965 <class name=
"PyDataObjectSimple" oldname=
"wxPyDataObjectSimple" module=
"misc">
21966 <baseclass name=
"wxDataObjectSimple"/>
21967 <constructor name=
"PyDataObjectSimple" overloaded=
"no">
21968 <autodoc>__init__(DataFormat format=FormatInvalid) -
> PyDataObjectSimple
</autodoc>
21970 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
"wxFormatInvalid"/>
21973 <method name=
"_setCallbackInfo" overloaded=
"no">
21974 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21976 <param name=
"self" type=
"p.PyObject" default=
""/>
21977 <param name=
"_class" type=
"p.PyObject" default=
""/>
21981 <class name=
"DataObjectComposite" oldname=
"wxDataObjectComposite" module=
"misc">
21982 <baseclass name=
"wxDataObject"/>
21983 <constructor name=
"DataObjectComposite" overloaded=
"no">
21984 <autodoc>__init__() -
> DataObjectComposite
</autodoc>
21986 <method name=
"Add" overloaded=
"no">
21987 <autodoc>Add(DataObjectSimple dataObject, int preferred=False)
</autodoc>
21989 <param name=
"dataObject" type=
"p.wxDataObjectSimple" default=
""/>
21990 <param name=
"preferred" type=
"int" default=
"False"/>
21994 <class name=
"TextDataObject" oldname=
"wxTextDataObject" module=
"misc">
21995 <baseclass name=
"wxDataObjectSimple"/>
21996 <constructor name=
"TextDataObject" overloaded=
"no">
21997 <autodoc>__init__(String text=EmptyString) -
> TextDataObject
</autodoc>
21999 <param name=
"text" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
22002 <method name=
"GetTextLength" overloaded=
"no">
22003 <autodoc>GetTextLength() -
> size_t
</autodoc>
22005 <method name=
"GetText" overloaded=
"no">
22006 <autodoc>GetText() -
> String
</autodoc>
22008 <method name=
"SetText" overloaded=
"no">
22009 <autodoc>SetText(String text)
</autodoc>
22011 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
22015 <class name=
"PyTextDataObject" oldname=
"wxPyTextDataObject" module=
"misc">
22016 <baseclass name=
"wxTextDataObject"/>
22017 <constructor name=
"PyTextDataObject" overloaded=
"no">
22018 <autodoc>__init__(String text=EmptyString) -
> PyTextDataObject
</autodoc>
22020 <param name=
"text" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
22023 <method name=
"_setCallbackInfo" overloaded=
"no">
22024 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22026 <param name=
"self" type=
"p.PyObject" default=
""/>
22027 <param name=
"_class" type=
"p.PyObject" default=
""/>
22031 <class name=
"BitmapDataObject" oldname=
"wxBitmapDataObject" module=
"misc">
22032 <baseclass name=
"wxDataObjectSimple"/>
22033 <constructor name=
"BitmapDataObject" overloaded=
"no">
22034 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> BitmapDataObject
</autodoc>
22036 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
22039 <method name=
"GetBitmap" overloaded=
"no">
22040 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
22042 <method name=
"SetBitmap" overloaded=
"no">
22043 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
22045 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
22049 <class name=
"PyBitmapDataObject" oldname=
"wxPyBitmapDataObject" module=
"misc">
22050 <baseclass name=
"wxBitmapDataObject"/>
22051 <constructor name=
"PyBitmapDataObject" overloaded=
"no">
22052 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> PyBitmapDataObject
</autodoc>
22054 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
22057 <method name=
"_setCallbackInfo" overloaded=
"no">
22058 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22060 <param name=
"self" type=
"p.PyObject" default=
""/>
22061 <param name=
"_class" type=
"p.PyObject" default=
""/>
22065 <class name=
"FileDataObject" oldname=
"wxFileDataObject" module=
"misc">
22066 <baseclass name=
"wxDataObjectSimple"/>
22067 <constructor name=
"FileDataObject" overloaded=
"no">
22068 <autodoc>__init__() -
> FileDataObject
</autodoc>
22070 <method name=
"GetFilenames" overloaded=
"no">
22071 <autodoc>GetFilenames() -
> wxArrayString
</autodoc>
22074 <class name=
"CustomDataObject" oldname=
"wxCustomDataObject" module=
"misc">
22075 <baseclass name=
"wxDataObjectSimple"/>
22076 <constructor name=
"CustomDataObject" overloaded=
"no">
22077 <autodoc>__init__(DataFormat format=FormatInvalid) -
> CustomDataObject
</autodoc>
22079 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
"wxFormatInvalid"/>
22082 <method name=
"TakeData" overloaded=
"no">
22083 <autodoc>TakeData(PyObject data)
</autodoc>
22085 <param name=
"data" type=
"p.PyObject" default=
""/>
22088 <method name=
"SetData" overloaded=
"no">
22089 <autodoc>SetData(PyObject data) -
> bool
</autodoc>
22091 <param name=
"data" type=
"p.PyObject" default=
""/>
22094 <method name=
"GetSize" overloaded=
"no">
22095 <autodoc>GetSize() -
> size_t
</autodoc>
22097 <method name=
"GetData" overloaded=
"no">
22098 <autodoc>GetData() -
> PyObject
</autodoc>
22101 <class name=
"URLDataObject" oldname=
"wxURLDataObject" module=
"misc">
22102 <baseclass name=
"wxDataObjectComposite"/>
22103 <constructor name=
"URLDataObject" overloaded=
"no">
22104 <autodoc>__init__() -
> URLDataObject
</autodoc>
22106 <method name=
"GetURL" overloaded=
"no">
22107 <autodoc>GetURL() -
> String
</autodoc>
22109 <method name=
"SetURL" overloaded=
"no">
22110 <autodoc>SetURL(String url)
</autodoc>
22112 <param name=
"url" type=
"r.q(const).wxString" default=
""/>
22116 <class name=
"MetafileDataObject" oldname=
"wxMetafileDataObject" module=
"misc">
22117 <baseclass name=
"wxDataObjectSimple"/>
22118 <constructor name=
"MetafileDataObject" overloaded=
"no">
22119 <autodoc>__init__() -
> MetafileDataObject
</autodoc>
22123 #---------------------------------------------------------------------------
22125 <function oldname=
"wxIsDragResultOk" name=
"IsDragResultOk" overloaded=
"no">
22126 <autodoc>IsDragResultOk(int res) -
> bool
</autodoc>
22128 <param name=
"res" type=
"wxDragResult" default=
""/>
22131 <class name=
"DropSource" oldname=
"wxPyDropSource" module=
"misc">
22132 <constructor name=
"wxPyDropSource" overloaded=
"no">
22133 <autodoc>__init__(Window win, Icon copy=wxNullIcon, Icon move=wxNullIcon,
22134 Icon none=wxNullIcon) -
> DropSource
</autodoc>
22136 <param name=
"win" type=
"p.wxWindow" default=
""/>
22137 <param name=
"copy" type=
"r.q(const).wxIcon" default=
"wxNullIcon"/>
22138 <param name=
"move" type=
"r.q(const).wxIcon" default=
"wxNullIcon"/>
22139 <param name=
"none" type=
"r.q(const).wxIcon" default=
"wxNullIcon"/>
22142 <method name=
"_setCallbackInfo" overloaded=
"no">
22143 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref)
</autodoc>
22145 <param name=
"self" type=
"p.PyObject" default=
""/>
22146 <param name=
"_class" type=
"p.PyObject" default=
""/>
22147 <param name=
"incref" type=
"int" default=
""/>
22150 <destructor name=
"~wxPyDropSource">
22151 <autodoc>__del__()
</autodoc>
22153 <method name=
"SetData" overloaded=
"no">
22154 <autodoc>SetData(DataObject data)
</autodoc>
22156 <param name=
"data" type=
"r.wxDataObject" default=
""/>
22159 <method name=
"GetDataObject" overloaded=
"no">
22160 <autodoc>GetDataObject() -
> DataObject
</autodoc>
22162 <method name=
"SetCursor" overloaded=
"no">
22163 <autodoc>SetCursor(int res, Cursor cursor)
</autodoc>
22165 <param name=
"res" type=
"wxDragResult" default=
""/>
22166 <param name=
"cursor" type=
"r.q(const).wxCursor" default=
""/>
22169 <method name=
"DoDragDrop" overloaded=
"no">
22170 <autodoc>DoDragDrop(int flags=Drag_CopyOnly) -
> int
</autodoc>
22172 <param name=
"flags" type=
"int" default=
"wxDrag_CopyOnly"/>
22175 <method name=
"base_GiveFeedback" overloaded=
"no">
22176 <autodoc>base_GiveFeedback(int effect) -
> bool
</autodoc>
22178 <param name=
"effect" type=
"wxDragResult" default=
""/>
22182 <class name=
"DropTarget" oldname=
"wxPyDropTarget" module=
"misc">
22183 <constructor name=
"PyDropTarget" overloaded=
"no">
22184 <autodoc>PyDropTarget(DataObject dataObject=None) -
> DropTarget
</autodoc>
22186 <param name=
"dataObject" type=
"p.wxDataObject" default=
"NULL"/>
22189 <method name=
"_setCallbackInfo" overloaded=
"no">
22190 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22192 <param name=
"self" type=
"p.PyObject" default=
""/>
22193 <param name=
"_class" type=
"p.PyObject" default=
""/>
22196 <destructor name=
"~wxPyDropTarget">
22197 <autodoc>__del__()
</autodoc>
22199 <method name=
"GetDataObject" overloaded=
"no">
22200 <autodoc>GetDataObject() -
> DataObject
</autodoc>
22202 <method name=
"SetDataObject" overloaded=
"no">
22203 <autodoc>SetDataObject(DataObject dataObject)
</autodoc>
22205 <param name=
"dataObject" type=
"p.wxDataObject" default=
""/>
22208 <method name=
"base_OnEnter" overloaded=
"no">
22209 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
22211 <param name=
"x" type=
"int" default=
""/>
22212 <param name=
"y" type=
"int" default=
""/>
22213 <param name=
"def" type=
"wxDragResult" default=
""/>
22216 <method name=
"base_OnDragOver" overloaded=
"no">
22217 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
22219 <param name=
"x" type=
"int" default=
""/>
22220 <param name=
"y" type=
"int" default=
""/>
22221 <param name=
"def" type=
"wxDragResult" default=
""/>
22224 <method name=
"base_OnLeave" overloaded=
"no">
22225 <autodoc>base_OnLeave()
</autodoc>
22227 <method name=
"base_OnDrop" overloaded=
"no">
22228 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
22230 <param name=
"x" type=
"int" default=
""/>
22231 <param name=
"y" type=
"int" default=
""/>
22234 <method name=
"GetData" overloaded=
"no">
22235 <autodoc>GetData() -
> bool
</autodoc>
22238 <pythoncode> PyDropTarget = DropTarget
</pythoncode>
22239 <class name=
"TextDropTarget" oldname=
"wxPyTextDropTarget" module=
"misc">
22240 <baseclass name=
"wxPyDropTarget"/>
22241 <constructor name=
"wxPyTextDropTarget" overloaded=
"no">
22242 <autodoc>__init__() -
> TextDropTarget
</autodoc>
22244 <method name=
"_setCallbackInfo" overloaded=
"no">
22245 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22247 <param name=
"self" type=
"p.PyObject" default=
""/>
22248 <param name=
"_class" type=
"p.PyObject" default=
""/>
22251 <method name=
"base_OnEnter" overloaded=
"no">
22252 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
22254 <param name=
"x" type=
"int" default=
""/>
22255 <param name=
"y" type=
"int" default=
""/>
22256 <param name=
"def" type=
"wxDragResult" default=
""/>
22259 <method name=
"base_OnDragOver" overloaded=
"no">
22260 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
22262 <param name=
"x" type=
"int" default=
""/>
22263 <param name=
"y" type=
"int" default=
""/>
22264 <param name=
"def" type=
"wxDragResult" default=
""/>
22267 <method name=
"base_OnLeave" overloaded=
"no">
22268 <autodoc>base_OnLeave()
</autodoc>
22270 <method name=
"base_OnDrop" overloaded=
"no">
22271 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
22273 <param name=
"x" type=
"int" default=
""/>
22274 <param name=
"y" type=
"int" default=
""/>
22277 <method name=
"base_OnData" overloaded=
"no">
22278 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
22280 <param name=
"x" type=
"int" default=
""/>
22281 <param name=
"y" type=
"int" default=
""/>
22282 <param name=
"def" type=
"wxDragResult" default=
""/>
22286 <class name=
"FileDropTarget" oldname=
"wxPyFileDropTarget" module=
"misc">
22287 <baseclass name=
"wxPyDropTarget"/>
22288 <constructor name=
"wxPyFileDropTarget" overloaded=
"no">
22289 <autodoc>__init__() -
> FileDropTarget
</autodoc>
22291 <method name=
"_setCallbackInfo" overloaded=
"no">
22292 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22294 <param name=
"self" type=
"p.PyObject" default=
""/>
22295 <param name=
"_class" type=
"p.PyObject" default=
""/>
22298 <method name=
"base_OnEnter" overloaded=
"no">
22299 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
22301 <param name=
"x" type=
"int" default=
""/>
22302 <param name=
"y" type=
"int" default=
""/>
22303 <param name=
"def" type=
"wxDragResult" default=
""/>
22306 <method name=
"base_OnDragOver" overloaded=
"no">
22307 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
22309 <param name=
"x" type=
"int" default=
""/>
22310 <param name=
"y" type=
"int" default=
""/>
22311 <param name=
"def" type=
"wxDragResult" default=
""/>
22314 <method name=
"base_OnLeave" overloaded=
"no">
22315 <autodoc>base_OnLeave()
</autodoc>
22317 <method name=
"base_OnDrop" overloaded=
"no">
22318 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
22320 <param name=
"x" type=
"int" default=
""/>
22321 <param name=
"y" type=
"int" default=
""/>
22324 <method name=
"base_OnData" overloaded=
"no">
22325 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
22327 <param name=
"x" type=
"int" default=
""/>
22328 <param name=
"y" type=
"int" default=
""/>
22329 <param name=
"def" type=
"wxDragResult" default=
""/>
22334 #---------------------------------------------------------------------------
22336 <class name=
"Clipboard" oldname=
"wxClipboard" module=
"misc">
22337 <baseclass name=
"wxObject"/>
22338 <constructor name=
"Clipboard" overloaded=
"no">
22339 <autodoc>__init__() -
> Clipboard
</autodoc>
22341 <destructor name=
"~wxClipboard">
22342 <autodoc>__del__()
</autodoc>
22344 <method name=
"Open" overloaded=
"no">
22345 <autodoc>Open() -
> bool
</autodoc>
22347 <method name=
"Close" overloaded=
"no">
22348 <autodoc>Close()
</autodoc>
22350 <method name=
"IsOpened" overloaded=
"no">
22351 <autodoc>IsOpened() -
> bool
</autodoc>
22353 <method name=
"AddData" overloaded=
"no">
22354 <autodoc>AddData(DataObject data) -
> bool
</autodoc>
22356 <param name=
"data" type=
"p.wxDataObject" default=
""/>
22359 <method name=
"SetData" overloaded=
"no">
22360 <autodoc>SetData(DataObject data) -
> bool
</autodoc>
22362 <param name=
"data" type=
"p.wxDataObject" default=
""/>
22365 <method name=
"IsSupported" overloaded=
"no">
22366 <autodoc>IsSupported(DataFormat format) -
> bool
</autodoc>
22368 <param name=
"format" type=
"r.q(const).wxDataFormat" default=
""/>
22371 <method name=
"GetData" overloaded=
"no">
22372 <autodoc>GetData(DataObject data) -
> bool
</autodoc>
22374 <param name=
"data" type=
"r.wxDataObject" default=
""/>
22377 <method name=
"Clear" overloaded=
"no">
22378 <autodoc>Clear()
</autodoc>
22380 <method name=
"Flush" overloaded=
"no">
22381 <autodoc>Flush() -
> bool
</autodoc>
22383 <method name=
"UsePrimarySelection" overloaded=
"no">
22384 <autodoc>UsePrimarySelection(bool primary=False)
</autodoc>
22386 <param name=
"primary" type=
"bool" default=
"False"/>
22390 <class name=
"ClipboardLocker" oldname=
"wxClipboardLocker" module=
"misc">
22391 <constructor name=
"ClipboardLocker" overloaded=
"no">
22392 <autodoc>__init__(Clipboard clipboard=None) -
> ClipboardLocker
</autodoc>
22394 <param name=
"clipboard" type=
"p.wxClipboard" default=
"NULL"/>
22397 <destructor name=
"~wxClipboardLocker">
22398 <autodoc>__del__()
</autodoc>
22400 <method name=
"__nonzero__" overloaded=
"no">
22401 <autodoc>__nonzero__() -
> bool
</autodoc>
22405 <module name=
"calendar">
22406 <pythoncode> wx = core
</pythoncode>
22407 <class name=
"CalendarDateAttr" oldname=
"wxCalendarDateAttr" module=
"calendar">
22408 <docstring>A set of customization attributes for a calendar date, which can be used to
22409 control the look of the Calendar object.
</docstring>
22410 <constructor name=
"CalendarDateAttr" overloaded=
"no">
22411 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
22412 Colour colBorder=wxNullColour, Font font=wxNullFont,
22413 int border=CAL_BORDER_NONE) -
> CalendarDateAttr
</autodoc>
22414 <docstring>Create a CalendarDateAttr.
</docstring>
22416 <param name=
"colText" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
22417 <param name=
"colBack" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
22418 <param name=
"colBorder" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
22419 <param name=
"font" type=
"r.q(const).wxFont" default=
"wxNullFont"/>
22420 <param name=
"border" type=
"wxCalendarDateBorder" default=
"wxCAL_BORDER_NONE"/>
22423 <method name=
"SetTextColour" overloaded=
"no">
22424 <autodoc>SetTextColour(Colour colText)
</autodoc>
22426 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
22429 <method name=
"SetBackgroundColour" overloaded=
"no">
22430 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
22432 <param name=
"colBack" type=
"r.q(const).wxColour" default=
""/>
22435 <method name=
"SetBorderColour" overloaded=
"no">
22436 <autodoc>SetBorderColour(Colour col)
</autodoc>
22438 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
22441 <method name=
"SetFont" overloaded=
"no">
22442 <autodoc>SetFont(Font font)
</autodoc>
22444 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
22447 <method name=
"SetBorder" overloaded=
"no">
22448 <autodoc>SetBorder(int border)
</autodoc>
22450 <param name=
"border" type=
"wxCalendarDateBorder" default=
""/>
22453 <method name=
"SetHoliday" overloaded=
"no">
22454 <autodoc>SetHoliday(bool holiday)
</autodoc>
22456 <param name=
"holiday" type=
"bool" default=
""/>
22459 <method name=
"HasTextColour" overloaded=
"no">
22460 <autodoc>HasTextColour() -
> bool
</autodoc>
22462 <method name=
"HasBackgroundColour" overloaded=
"no">
22463 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
22465 <method name=
"HasBorderColour" overloaded=
"no">
22466 <autodoc>HasBorderColour() -
> bool
</autodoc>
22468 <method name=
"HasFont" overloaded=
"no">
22469 <autodoc>HasFont() -
> bool
</autodoc>
22471 <method name=
"HasBorder" overloaded=
"no">
22472 <autodoc>HasBorder() -
> bool
</autodoc>
22474 <method name=
"IsHoliday" overloaded=
"no">
22475 <autodoc>IsHoliday() -
> bool
</autodoc>
22477 <method name=
"GetTextColour" overloaded=
"no">
22478 <autodoc>GetTextColour() -
> Colour
</autodoc>
22480 <method name=
"GetBackgroundColour" overloaded=
"no">
22481 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
22483 <method name=
"GetBorderColour" overloaded=
"no">
22484 <autodoc>GetBorderColour() -
> Colour
</autodoc>
22486 <method name=
"GetFont" overloaded=
"no">
22487 <autodoc>GetFont() -
> Font
</autodoc>
22489 <method name=
"GetBorder" overloaded=
"no">
22490 <autodoc>GetBorder() -
> int
</autodoc>
22493 <class name=
"CalendarEvent" oldname=
"wxCalendarEvent" module=
"calendar">
22494 <baseclass name=
"wxCommandEvent"/>
22495 <constructor name=
"CalendarEvent" overloaded=
"no">
22496 <autodoc>__init__(CalendarCtrl cal, wxEventType type) -
> CalendarEvent
</autodoc>
22498 <param name=
"cal" type=
"p.wxCalendarCtrl" default=
""/>
22499 <param name=
"type" type=
"wxEventType" default=
""/>
22502 <method name=
"GetDate" overloaded=
"no">
22503 <autodoc>GetDate() -
> DateTime
</autodoc>
22505 <method name=
"SetDate" overloaded=
"no">
22506 <autodoc>SetDate(DateTime date)
</autodoc>
22508 <param name=
"date" type=
"r.q(const).wxDateTime" default=
""/>
22511 <method name=
"SetWeekDay" overloaded=
"no">
22512 <autodoc>SetWeekDay(int wd)
</autodoc>
22514 <param name=
"wd" type=
"q(const).wxDateTime::WeekDay" default=
""/>
22517 <method name=
"GetWeekDay" overloaded=
"no">
22518 <autodoc>GetWeekDay() -
> int
</autodoc>
22522 EVT_CALENDAR = wx.PyEventBinder( wxEVT_CALENDAR_DOUBLECLICKED,
1)
22523 EVT_CALENDAR_SEL_CHANGED = wx.PyEventBinder( wxEVT_CALENDAR_SEL_CHANGED,
1)
22524 EVT_CALENDAR_DAY = wx.PyEventBinder( wxEVT_CALENDAR_DAY_CHANGED,
1)
22525 EVT_CALENDAR_MONTH = wx.PyEventBinder( wxEVT_CALENDAR_MONTH_CHANGED,
1)
22526 EVT_CALENDAR_YEAR = wx.PyEventBinder( wxEVT_CALENDAR_YEAR_CHANGED,
1)
22527 EVT_CALENDAR_WEEKDAY_CLICKED = wx.PyEventBinder( wxEVT_CALENDAR_WEEKDAY_CLICKED,
1)
22529 <class name=
"CalendarCtrl" oldname=
"wxCalendarCtrl" module=
"calendar">
22530 <docstring>The calendar control allows the user to pick a date interactively.
</docstring>
22531 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
22532 pick the month and the year at the top (either or both of them may be
22533 disabled) and a month area below them which shows all the days in the
22534 month. The user can move the current selection using the keyboard and select
22535 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
22538 It has advanced possibilities for the customization of its display. All global
22539 settings (such as colours and fonts used) can, of course, be changed. But
22540 also, the display style for each day in the month can be set independently
22541 using CalendarDateAttr class.
22543 An item without custom attributes is drawn with the default colours and font
22544 and without border, but setting custom attributes with SetAttr allows to
22545 modify its appearance. Just create a custom attribute object and set it for
22546 the day you want to be displayed specially A day may be marked as being a
22547 holiday, (even if it is not recognized as one by wx.DateTime) by using the
22550 As the attributes are specified for each day, they may change when the month
22551 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
22555 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
22556 CAL_MONDAY_FIRST: Show Monday as the first day in the week
22557 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
22558 CAL_NO_YEAR_CHANGE: Disable the year changing
22559 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
22560 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
22561 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
22563 The default calendar style is wxCAL_SHOW_HOLIDAYS.
22566 EVT_CALENDAR: A day was double clicked in the calendar.
22567 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
22568 EVT_CALENDAR_DAY: The selected day changed.
22569 EVT_CALENDAR_MONTH: The selected month changed.
22570 EVT_CALENDAR_YEAR: The selected year changed.
22571 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
22573 Note that changing the selected date will result in either of
22574 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
22577 <baseclass name=
"wxControl"/>
22578 <constructor name=
"CalendarCtrl" overloaded=
"no">
22579 <autodoc>__init__(Window parent, int id, DateTime date=DefaultDateTime,
22580 Point pos=DefaultPosition, Size size=DefaultSize,
22581 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
22582 String name=CalendarNameStr) -
> CalendarCtrl
</autodoc>
22583 <docstring>Create and show a calendar control.
</docstring>
22584 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
22585 pick the month and the year at the top (either or both of them may be
22586 disabled) and a month area below them which shows all the days in the
22587 month. The user can move the current selection using the keyboard and select
22588 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
22591 It has advanced possibilities for the customization of its display. All global
22592 settings (such as colours and fonts used) can, of course, be changed. But
22593 also, the display style for each day in the month can be set independently
22594 using CalendarDateAttr class.
22596 An item without custom attributes is drawn with the default colours and font
22597 and without border, but setting custom attributes with SetAttr allows to
22598 modify its appearance. Just create a custom attribute object and set it for
22599 the day you want to be displayed specially A day may be marked as being a
22600 holiday, (even if it is not recognized as one by wx.DateTime) by using the
22603 As the attributes are specified for each day, they may change when the month
22604 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
22608 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
22609 CAL_MONDAY_FIRST: Show Monday as the first day in the week
22610 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
22611 CAL_NO_YEAR_CHANGE: Disable the year changing
22612 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
22613 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
22614 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
22616 The default calendar style is wxCAL_SHOW_HOLIDAYS.
22619 EVT_CALENDAR: A day was double clicked in the calendar.
22620 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
22621 EVT_CALENDAR_DAY: The selected day changed.
22622 EVT_CALENDAR_MONTH: The selected month changed.
22623 EVT_CALENDAR_YEAR: The selected year changed.
22624 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
22626 Note that changing the selected date will result in either of
22627 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
22631 <param name=
"parent" type=
"p.wxWindow" default=
""/>
22632 <param name=
"id" type=
"int" default=
""/>
22633 <param name=
"date" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22634 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
22635 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
22636 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
22637 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyCalendarNameStr"/>
22640 <constructor name=
"PreCalendarCtrl" overloaded=
"no">
22641 <autodoc>PreCalendarCtrl() -
> CalendarCtrl
</autodoc>
22642 <docstring>Precreate a CalendarCtrl for
2-phase creation.
</docstring>
22643 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
22644 pick the month and the year at the top (either or both of them may be
22645 disabled) and a month area below them which shows all the days in the
22646 month. The user can move the current selection using the keyboard and select
22647 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
22650 It has advanced possibilities for the customization of its display. All global
22651 settings (such as colours and fonts used) can, of course, be changed. But
22652 also, the display style for each day in the month can be set independently
22653 using CalendarDateAttr class.
22655 An item without custom attributes is drawn with the default colours and font
22656 and without border, but setting custom attributes with SetAttr allows to
22657 modify its appearance. Just create a custom attribute object and set it for
22658 the day you want to be displayed specially A day may be marked as being a
22659 holiday, (even if it is not recognized as one by wx.DateTime) by using the
22662 As the attributes are specified for each day, they may change when the month
22663 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
22667 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
22668 CAL_MONDAY_FIRST: Show Monday as the first day in the week
22669 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
22670 CAL_NO_YEAR_CHANGE: Disable the year changing
22671 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
22672 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
22673 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
22675 The default calendar style is wxCAL_SHOW_HOLIDAYS.
22678 EVT_CALENDAR: A day was double clicked in the calendar.
22679 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
22680 EVT_CALENDAR_DAY: The selected day changed.
22681 EVT_CALENDAR_MONTH: The selected month changed.
22682 EVT_CALENDAR_YEAR: The selected year changed.
22683 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
22685 Note that changing the selected date will result in either of
22686 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
22690 <method name=
"Create" overloaded=
"no">
22691 <autodoc>Create(Window parent, int id, DateTime date=DefaultDateTime,
22692 Point pos=DefaultPosition, Size size=DefaultSize,
22693 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
22694 String name=CalendarNameStr) -
> bool
</autodoc>
22695 <docstring>Acutally create the GUI portion of the CalendarCtrl for
2-phase creation.
</docstring>
22697 <param name=
"parent" type=
"p.wxWindow" default=
""/>
22698 <param name=
"id" type=
"int" default=
""/>
22699 <param name=
"date" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22700 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
22701 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
22702 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
22703 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyCalendarNameStr"/>
22706 <method name=
"SetDate" overloaded=
"no">
22707 <autodoc>SetDate(DateTime date)
</autodoc>
22708 <docstring>Sets the current date.
</docstring>
22710 <param name=
"date" type=
"r.q(const).wxDateTime" default=
""/>
22713 <method name=
"GetDate" overloaded=
"no">
22714 <autodoc>GetDate() -
> DateTime
</autodoc>
22715 <docstring>Gets the currently selected date.
</docstring>
22717 <method name=
"SetLowerDateLimit" overloaded=
"no">
22718 <autodoc>SetLowerDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
22719 <docstring>set the range in which selection can occur
</docstring>
22721 <param name=
"date" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22724 <method name=
"SetUpperDateLimit" overloaded=
"no">
22725 <autodoc>SetUpperDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
22726 <docstring>set the range in which selection can occur
</docstring>
22728 <param name=
"date" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22731 <method name=
"GetLowerDateLimit" overloaded=
"no">
22732 <autodoc>GetLowerDateLimit() -
> DateTime
</autodoc>
22733 <docstring>get the range in which selection can occur
</docstring>
22735 <method name=
"GetUpperDateLimit" overloaded=
"no">
22736 <autodoc>GetUpperDateLimit() -
> DateTime
</autodoc>
22737 <docstring>get the range in which selection can occur
</docstring>
22739 <method name=
"SetDateRange" overloaded=
"no">
22740 <autodoc>SetDateRange(DateTime lowerdate=DefaultDateTime, DateTime upperdate=DefaultDateTime) -
> bool
</autodoc>
22741 <docstring>set the range in which selection can occur
</docstring>
22743 <param name=
"lowerdate" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22744 <param name=
"upperdate" type=
"r.q(const).wxDateTime" default=
"wxDefaultDateTime"/>
22747 <method name=
"EnableYearChange" overloaded=
"no">
22748 <autodoc>EnableYearChange(bool enable=True)
</autodoc>
22749 <docstring>This function should be used instead of changing CAL_NO_YEAR_CHANGE
22750 style bit directly. It allows or disallows the user to change the year
22751 interactively.
</docstring>
22753 <param name=
"enable" type=
"bool" default=
"True"/>
22756 <method name=
"EnableMonthChange" overloaded=
"no">
22757 <autodoc>EnableMonthChange(bool enable=True)
</autodoc>
22758 <docstring>This function should be used instead of changing CAL_NO_MONTH_CHANGE style
22759 bit. It allows or disallows the user to change the month interactively. Note
22760 that if the month can not be changed, the year can not be changed either.
</docstring>
22762 <param name=
"enable" type=
"bool" default=
"True"/>
22765 <method name=
"EnableHolidayDisplay" overloaded=
"no">
22766 <autodoc>EnableHolidayDisplay(bool display=True)
</autodoc>
22767 <docstring>This function should be used instead of changing CAL_SHOW_HOLIDAYS style
22768 bit directly. It enables or disables the special highlighting of the holidays.
</docstring>
22770 <param name=
"display" type=
"bool" default=
"True"/>
22773 <method name=
"SetHeaderColours" overloaded=
"no">
22774 <autodoc>SetHeaderColours(Colour colFg, Colour colBg)
</autodoc>
22775 <docstring>header colours are used for painting the weekdays at the top
</docstring>
22777 <param name=
"colFg" type=
"r.q(const).wxColour" default=
""/>
22778 <param name=
"colBg" type=
"r.q(const).wxColour" default=
""/>
22781 <method name=
"GetHeaderColourFg" overloaded=
"no">
22782 <autodoc>GetHeaderColourFg() -
> Colour
</autodoc>
22783 <docstring>header colours are used for painting the weekdays at the top
</docstring>
22785 <method name=
"GetHeaderColourBg" overloaded=
"no">
22786 <autodoc>GetHeaderColourBg() -
> Colour
</autodoc>
22787 <docstring>header colours are used for painting the weekdays at the top
</docstring>
22789 <method name=
"SetHighlightColours" overloaded=
"no">
22790 <autodoc>SetHighlightColours(Colour colFg, Colour colBg)
</autodoc>
22791 <docstring>highlight colour is used for the currently selected date
</docstring>
22793 <param name=
"colFg" type=
"r.q(const).wxColour" default=
""/>
22794 <param name=
"colBg" type=
"r.q(const).wxColour" default=
""/>
22797 <method name=
"GetHighlightColourFg" overloaded=
"no">
22798 <autodoc>GetHighlightColourFg() -
> Colour
</autodoc>
22799 <docstring>highlight colour is used for the currently selected date
</docstring>
22801 <method name=
"GetHighlightColourBg" overloaded=
"no">
22802 <autodoc>GetHighlightColourBg() -
> Colour
</autodoc>
22803 <docstring>highlight colour is used for the currently selected date
</docstring>
22805 <method name=
"SetHolidayColours" overloaded=
"no">
22806 <autodoc>SetHolidayColours(Colour colFg, Colour colBg)
</autodoc>
22807 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
22809 <param name=
"colFg" type=
"r.q(const).wxColour" default=
""/>
22810 <param name=
"colBg" type=
"r.q(const).wxColour" default=
""/>
22813 <method name=
"GetHolidayColourFg" overloaded=
"no">
22814 <autodoc>GetHolidayColourFg() -
> Colour
</autodoc>
22815 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
22817 <method name=
"GetHolidayColourBg" overloaded=
"no">
22818 <autodoc>GetHolidayColourBg() -
> Colour
</autodoc>
22819 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
22821 <method name=
"GetAttr" overloaded=
"no">
22822 <autodoc>GetAttr(size_t day) -
> CalendarDateAttr
</autodoc>
22823 <docstring>Returns the attribute for the given date (should be in the range
1..
.31).
22824 The returned value may be None
</docstring>
22826 <param name=
"day" type=
"size_t" default=
""/>
22829 <method name=
"SetAttr" overloaded=
"no">
22830 <autodoc>SetAttr(size_t day, CalendarDateAttr attr)
</autodoc>
22831 <docstring>Associates the attribute with the specified date (in the range
1..
.31).
22832 If the attribute passed is None, the items attribute is cleared.
</docstring>
22834 <param name=
"day" type=
"size_t" default=
""/>
22835 <param name=
"attr" type=
"p.wxCalendarDateAttr" default=
""/>
22838 <method name=
"SetHoliday" overloaded=
"no">
22839 <autodoc>SetHoliday(size_t day)
</autodoc>
22840 <docstring>Marks the specified day as being a holiday in the current month.
</docstring>
22842 <param name=
"day" type=
"size_t" default=
""/>
22845 <method name=
"ResetAttr" overloaded=
"no">
22846 <autodoc>ResetAttr(size_t day)
</autodoc>
22847 <docstring>Clears any attributes associated with the given day (in the range
1..
.31).
</docstring>
22849 <param name=
"day" type=
"size_t" default=
""/>
22852 <method name=
"HitTest" overloaded=
"no">
22853 <autodoc>HitTest(Point pos) -
> (result, date, weekday)
</autodoc>
22854 <docstring>Returns
3-tuple with information about the given position on the calendar
22855 control. The first value of the tuple is a result code and determines the
22856 validity of the remaining two values. The result codes are:
22858 CAL_HITTEST_NOWHERE: hit outside of anything
22859 CAL_HITTEST_HEADER: hit on the header, weekday is valid
22860 CAL_HITTEST_DAY: hit on a day in the calendar, date is set.
22863 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
22866 <method name=
"GetMonthControl" overloaded=
"no">
22867 <autodoc>GetMonthControl() -
> Control
</autodoc>
22868 <docstring>get the currently shown control for month
</docstring>
22870 <method name=
"GetYearControl" overloaded=
"no">
22871 <autodoc>GetYearControl() -
> Control
</autodoc>
22872 <docstring>get the currently shown control for year
</docstring>
22876 <module name=
"grid">
22877 <pythoncode> wx = core
</pythoncode>
22878 <class name=
"GridCellRenderer" oldname=
"wxGridCellRenderer" module=
"grid">
22879 <method name=
"_setOORInfo" overloaded=
"no">
22880 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
22882 <param name=
"_self" type=
"p.PyObject" default=
""/>
22885 <method name=
"SetParameters" overloaded=
"no">
22886 <autodoc>SetParameters(String params)
</autodoc>
22888 <param name=
"params" type=
"r.q(const).wxString" default=
""/>
22891 <method name=
"IncRef" overloaded=
"no">
22892 <autodoc>IncRef()
</autodoc>
22894 <method name=
"DecRef" overloaded=
"no">
22895 <autodoc>DecRef()
</autodoc>
22897 <method name=
"Draw" overloaded=
"no">
22898 <autodoc>Draw(Grid grid, GridCellAttr attr, DC dc, Rect rect, int row,
22899 int col, bool isSelected)
</autodoc>
22901 <param name=
"grid" type=
"r.wxGrid" default=
""/>
22902 <param name=
"attr" type=
"r.wxGridCellAttr" default=
""/>
22903 <param name=
"dc" type=
"r.wxDC" default=
""/>
22904 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
22905 <param name=
"row" type=
"int" default=
""/>
22906 <param name=
"col" type=
"int" default=
""/>
22907 <param name=
"isSelected" type=
"bool" default=
""/>
22910 <method name=
"GetBestSize" overloaded=
"no">
22911 <autodoc>GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col) -
> Size
</autodoc>
22913 <param name=
"grid" type=
"r.wxGrid" default=
""/>
22914 <param name=
"attr" type=
"r.wxGridCellAttr" default=
""/>
22915 <param name=
"dc" type=
"r.wxDC" default=
""/>
22916 <param name=
"row" type=
"int" default=
""/>
22917 <param name=
"col" type=
"int" default=
""/>
22920 <method name=
"Clone" overloaded=
"no">
22921 <autodoc>Clone() -
> GridCellRenderer
</autodoc>
22924 <class name=
"PyGridCellRenderer" oldname=
"wxPyGridCellRenderer" module=
"grid">
22925 <baseclass name=
"wxGridCellRenderer"/>
22926 <constructor name=
"PyGridCellRenderer" overloaded=
"no">
22927 <autodoc>__init__() -
> PyGridCellRenderer
</autodoc>
22929 <method name=
"_setCallbackInfo" overloaded=
"no">
22930 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
22932 <param name=
"self" type=
"p.PyObject" default=
""/>
22933 <param name=
"_class" type=
"p.PyObject" default=
""/>
22936 <method name=
"base_SetParameters" overloaded=
"no">
22937 <autodoc>base_SetParameters(String params)
</autodoc>
22939 <param name=
"params" type=
"r.q(const).wxString" default=
""/>
22943 <class name=
"GridCellStringRenderer" oldname=
"wxGridCellStringRenderer" module=
"grid">
22944 <baseclass name=
"wxGridCellRenderer"/>
22945 <constructor name=
"GridCellStringRenderer" overloaded=
"no">
22946 <autodoc>__init__() -
> GridCellStringRenderer
</autodoc>
22949 <class name=
"GridCellNumberRenderer" oldname=
"wxGridCellNumberRenderer" module=
"grid">
22950 <baseclass name=
"wxGridCellStringRenderer"/>
22951 <constructor name=
"GridCellNumberRenderer" overloaded=
"no">
22952 <autodoc>__init__() -
> GridCellNumberRenderer
</autodoc>
22955 <class name=
"GridCellFloatRenderer" oldname=
"wxGridCellFloatRenderer" module=
"grid">
22956 <baseclass name=
"wxGridCellStringRenderer"/>
22957 <constructor name=
"GridCellFloatRenderer" overloaded=
"no">
22958 <autodoc>__init__(int width=-
1, int precision=-
1) -
> GridCellFloatRenderer
</autodoc>
22960 <param name=
"width" type=
"int" default=
"-1"/>
22961 <param name=
"precision" type=
"int" default=
"-1"/>
22964 <method name=
"GetWidth" overloaded=
"no">
22965 <autodoc>GetWidth() -
> int
</autodoc>
22967 <method name=
"SetWidth" overloaded=
"no">
22968 <autodoc>SetWidth(int width)
</autodoc>
22970 <param name=
"width" type=
"int" default=
""/>
22973 <method name=
"GetPrecision" overloaded=
"no">
22974 <autodoc>GetPrecision() -
> int
</autodoc>
22976 <method name=
"SetPrecision" overloaded=
"no">
22977 <autodoc>SetPrecision(int precision)
</autodoc>
22979 <param name=
"precision" type=
"int" default=
""/>
22983 <class name=
"GridCellBoolRenderer" oldname=
"wxGridCellBoolRenderer" module=
"grid">
22984 <baseclass name=
"wxGridCellRenderer"/>
22985 <constructor name=
"GridCellBoolRenderer" overloaded=
"no">
22986 <autodoc>__init__() -
> GridCellBoolRenderer
</autodoc>
22989 <class name=
"GridCellDateTimeRenderer" oldname=
"wxGridCellDateTimeRenderer" module=
"grid">
22990 <baseclass name=
"wxGridCellStringRenderer"/>
22991 <constructor name=
"GridCellDateTimeRenderer" overloaded=
"no">
22992 <autodoc>__init__(String outformat=DateTimeFormatStr, String informat=DateTimeFormatStr) -
> GridCellDateTimeRenderer
</autodoc>
22994 <param name=
"outformat" type=
"wxString" default=
"wxPyDateTimeFormatStr"/>
22995 <param name=
"informat" type=
"wxString" default=
"wxPyDateTimeFormatStr"/>
22999 <class name=
"GridCellEnumRenderer" oldname=
"wxGridCellEnumRenderer" module=
"grid">
23000 <baseclass name=
"wxGridCellStringRenderer"/>
23001 <constructor name=
"GridCellEnumRenderer" overloaded=
"no">
23002 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumRenderer
</autodoc>
23004 <param name=
"choices" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
23008 <class name=
"GridCellAutoWrapStringRenderer" oldname=
"wxGridCellAutoWrapStringRenderer" module=
"grid">
23009 <baseclass name=
"wxGridCellStringRenderer"/>
23010 <constructor name=
"GridCellAutoWrapStringRenderer" overloaded=
"no">
23011 <autodoc>__init__() -
> GridCellAutoWrapStringRenderer
</autodoc>
23014 <class name=
"GridCellEditor" oldname=
"wxGridCellEditor" module=
"grid">
23015 <method name=
"_setOORInfo" overloaded=
"no">
23016 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
23018 <param name=
"_self" type=
"p.PyObject" default=
""/>
23021 <method name=
"IsCreated" overloaded=
"no">
23022 <autodoc>IsCreated() -
> bool
</autodoc>
23024 <method name=
"GetControl" overloaded=
"no">
23025 <autodoc>GetControl() -
> Control
</autodoc>
23027 <method name=
"SetControl" overloaded=
"no">
23028 <autodoc>SetControl(Control control)
</autodoc>
23030 <param name=
"control" type=
"p.wxControl" default=
""/>
23033 <method name=
"GetCellAttr" overloaded=
"no">
23034 <autodoc>GetCellAttr() -
> GridCellAttr
</autodoc>
23036 <method name=
"SetCellAttr" overloaded=
"no">
23037 <autodoc>SetCellAttr(GridCellAttr attr)
</autodoc>
23039 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23042 <method name=
"SetParameters" overloaded=
"no">
23043 <autodoc>SetParameters(String params)
</autodoc>
23045 <param name=
"params" type=
"r.q(const).wxString" default=
""/>
23048 <method name=
"IncRef" overloaded=
"no">
23049 <autodoc>IncRef()
</autodoc>
23051 <method name=
"DecRef" overloaded=
"no">
23052 <autodoc>DecRef()
</autodoc>
23054 <method name=
"Create" overloaded=
"no">
23055 <autodoc>Create(Window parent, int id, EvtHandler evtHandler)
</autodoc>
23057 <param name=
"parent" type=
"p.wxWindow" default=
""/>
23058 <param name=
"id" type=
"int" default=
""/>
23059 <param name=
"evtHandler" type=
"p.wxEvtHandler" default=
""/>
23062 <method name=
"BeginEdit" overloaded=
"no">
23063 <autodoc>BeginEdit(int row, int col, Grid grid)
</autodoc>
23065 <param name=
"row" type=
"int" default=
""/>
23066 <param name=
"col" type=
"int" default=
""/>
23067 <param name=
"grid" type=
"p.wxGrid" default=
""/>
23070 <method name=
"EndEdit" overloaded=
"no">
23071 <autodoc>EndEdit(int row, int col, Grid grid) -
> bool
</autodoc>
23073 <param name=
"row" type=
"int" default=
""/>
23074 <param name=
"col" type=
"int" default=
""/>
23075 <param name=
"grid" type=
"p.wxGrid" default=
""/>
23078 <method name=
"Reset" overloaded=
"no">
23079 <autodoc>Reset()
</autodoc>
23081 <method name=
"Clone" overloaded=
"no">
23082 <autodoc>Clone() -
> GridCellEditor
</autodoc>
23084 <method name=
"SetSize" overloaded=
"no">
23085 <autodoc>SetSize(Rect rect)
</autodoc>
23087 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
23090 <method name=
"Show" overloaded=
"no">
23091 <autodoc>Show(bool show, GridCellAttr attr=None)
</autodoc>
23093 <param name=
"show" type=
"bool" default=
""/>
23094 <param name=
"attr" type=
"p.wxGridCellAttr" default=
"NULL"/>
23097 <method name=
"PaintBackground" overloaded=
"no">
23098 <autodoc>PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
23100 <param name=
"rectCell" type=
"r.q(const).wxRect" default=
""/>
23101 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23104 <method name=
"IsAcceptedKey" overloaded=
"no">
23105 <autodoc>IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
23107 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23110 <method name=
"StartingKey" overloaded=
"no">
23111 <autodoc>StartingKey(KeyEvent event)
</autodoc>
23113 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23116 <method name=
"StartingClick" overloaded=
"no">
23117 <autodoc>StartingClick()
</autodoc>
23119 <method name=
"HandleReturn" overloaded=
"no">
23120 <autodoc>HandleReturn(KeyEvent event)
</autodoc>
23122 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23125 <method name=
"Destroy" overloaded=
"no">
23126 <autodoc>Destroy()
</autodoc>
23129 <class name=
"PyGridCellEditor" oldname=
"wxPyGridCellEditor" module=
"grid">
23130 <baseclass name=
"wxGridCellEditor"/>
23131 <constructor name=
"PyGridCellEditor" overloaded=
"no">
23132 <autodoc>__init__() -
> PyGridCellEditor
</autodoc>
23134 <method name=
"_setCallbackInfo" overloaded=
"no">
23135 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23137 <param name=
"self" type=
"p.PyObject" default=
""/>
23138 <param name=
"_class" type=
"p.PyObject" default=
""/>
23141 <method name=
"base_SetSize" overloaded=
"no">
23142 <autodoc>base_SetSize(Rect rect)
</autodoc>
23144 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
23147 <method name=
"base_Show" overloaded=
"no">
23148 <autodoc>base_Show(bool show, GridCellAttr attr=None)
</autodoc>
23150 <param name=
"show" type=
"bool" default=
""/>
23151 <param name=
"attr" type=
"p.wxGridCellAttr" default=
"NULL"/>
23154 <method name=
"base_PaintBackground" overloaded=
"no">
23155 <autodoc>base_PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
23157 <param name=
"rectCell" type=
"r.q(const).wxRect" default=
""/>
23158 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23161 <method name=
"base_IsAcceptedKey" overloaded=
"no">
23162 <autodoc>base_IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
23164 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23167 <method name=
"base_StartingKey" overloaded=
"no">
23168 <autodoc>base_StartingKey(KeyEvent event)
</autodoc>
23170 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23173 <method name=
"base_StartingClick" overloaded=
"no">
23174 <autodoc>base_StartingClick()
</autodoc>
23176 <method name=
"base_HandleReturn" overloaded=
"no">
23177 <autodoc>base_HandleReturn(KeyEvent event)
</autodoc>
23179 <param name=
"event" type=
"r.wxKeyEvent" default=
""/>
23182 <method name=
"base_Destroy" overloaded=
"no">
23183 <autodoc>base_Destroy()
</autodoc>
23185 <method name=
"base_SetParameters" overloaded=
"no">
23186 <autodoc>base_SetParameters(String params)
</autodoc>
23188 <param name=
"params" type=
"r.q(const).wxString" default=
""/>
23192 <class name=
"GridCellTextEditor" oldname=
"wxGridCellTextEditor" module=
"grid">
23193 <baseclass name=
"wxGridCellEditor"/>
23194 <constructor name=
"GridCellTextEditor" overloaded=
"no">
23195 <autodoc>__init__() -
> GridCellTextEditor
</autodoc>
23197 <method name=
"GetValue" overloaded=
"no">
23198 <autodoc>GetValue() -
> String
</autodoc>
23201 <class name=
"GridCellNumberEditor" oldname=
"wxGridCellNumberEditor" module=
"grid">
23202 <baseclass name=
"wxGridCellTextEditor"/>
23203 <constructor name=
"GridCellNumberEditor" overloaded=
"no">
23204 <autodoc>__init__(int min=-
1, int max=-
1) -
> GridCellNumberEditor
</autodoc>
23206 <param name=
"min" type=
"int" default=
"-1"/>
23207 <param name=
"max" type=
"int" default=
"-1"/>
23210 <method name=
"GetValue" overloaded=
"no">
23211 <autodoc>GetValue() -
> String
</autodoc>
23214 <class name=
"GridCellFloatEditor" oldname=
"wxGridCellFloatEditor" module=
"grid">
23215 <baseclass name=
"wxGridCellTextEditor"/>
23216 <constructor name=
"GridCellFloatEditor" overloaded=
"no">
23217 <autodoc>__init__() -
> GridCellFloatEditor
</autodoc>
23219 <method name=
"GetValue" overloaded=
"no">
23220 <autodoc>GetValue() -
> String
</autodoc>
23223 <class name=
"GridCellBoolEditor" oldname=
"wxGridCellBoolEditor" module=
"grid">
23224 <baseclass name=
"wxGridCellEditor"/>
23225 <constructor name=
"GridCellBoolEditor" overloaded=
"no">
23226 <autodoc>__init__() -
> GridCellBoolEditor
</autodoc>
23228 <method name=
"GetValue" overloaded=
"no">
23229 <autodoc>GetValue() -
> String
</autodoc>
23232 <class name=
"GridCellChoiceEditor" oldname=
"wxGridCellChoiceEditor" module=
"grid">
23233 <baseclass name=
"wxGridCellEditor"/>
23234 <constructor name=
"GridCellChoiceEditor" overloaded=
"no">
23235 <autodoc>__init__(int choices=
0, String choices_array=None, bool allowOthers=False) -
> GridCellChoiceEditor
</autodoc>
23237 <param name=
"choices" type=
"int" default=
"0"/>
23238 <param name=
"choices_array" type=
"p.q(const).wxString" default=
"NULL"/>
23239 <param name=
"allowOthers" type=
"bool" default=
"False"/>
23242 <method name=
"GetValue" overloaded=
"no">
23243 <autodoc>GetValue() -
> String
</autodoc>
23246 <class name=
"GridCellEnumEditor" oldname=
"wxGridCellEnumEditor" module=
"grid">
23247 <baseclass name=
"wxGridCellChoiceEditor"/>
23248 <constructor name=
"GridCellEnumEditor" overloaded=
"no">
23249 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumEditor
</autodoc>
23251 <param name=
"choices" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
23254 <method name=
"GetValue" overloaded=
"no">
23255 <autodoc>GetValue() -
> String
</autodoc>
23258 <class name=
"GridCellAutoWrapStringEditor" oldname=
"wxGridCellAutoWrapStringEditor" module=
"grid">
23259 <baseclass name=
"wxGridCellTextEditor"/>
23260 <constructor name=
"GridCellAutoWrapStringEditor" overloaded=
"no">
23261 <autodoc>__init__() -
> GridCellAutoWrapStringEditor
</autodoc>
23263 <method name=
"GetValue" overloaded=
"no">
23264 <autodoc>GetValue() -
> String
</autodoc>
23267 <class name=
"GridCellAttr" oldname=
"wxGridCellAttr" module=
"grid">
23268 <method name=
"_setOORInfo" overloaded=
"no">
23269 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
23271 <param name=
"_self" type=
"p.PyObject" default=
""/>
23274 <constructor name=
"GridCellAttr" overloaded=
"no">
23275 <autodoc>__init__(GridCellAttr attrDefault=None) -
> GridCellAttr
</autodoc>
23277 <param name=
"attrDefault" type=
"p.wxGridCellAttr" default=
"NULL"/>
23280 <method name=
"Clone" overloaded=
"no">
23281 <autodoc>Clone() -
> GridCellAttr
</autodoc>
23283 <method name=
"MergeWith" overloaded=
"no">
23284 <autodoc>MergeWith(GridCellAttr mergefrom)
</autodoc>
23286 <param name=
"mergefrom" type=
"p.wxGridCellAttr" default=
""/>
23289 <method name=
"IncRef" overloaded=
"no">
23290 <autodoc>IncRef()
</autodoc>
23292 <method name=
"DecRef" overloaded=
"no">
23293 <autodoc>DecRef()
</autodoc>
23295 <method name=
"SetTextColour" overloaded=
"no">
23296 <autodoc>SetTextColour(Colour colText)
</autodoc>
23298 <param name=
"colText" type=
"r.q(const).wxColour" default=
""/>
23301 <method name=
"SetBackgroundColour" overloaded=
"no">
23302 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
23304 <param name=
"colBack" type=
"r.q(const).wxColour" default=
""/>
23307 <method name=
"SetFont" overloaded=
"no">
23308 <autodoc>SetFont(Font font)
</autodoc>
23310 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
23313 <method name=
"SetAlignment" overloaded=
"no">
23314 <autodoc>SetAlignment(int hAlign, int vAlign)
</autodoc>
23316 <param name=
"hAlign" type=
"int" default=
""/>
23317 <param name=
"vAlign" type=
"int" default=
""/>
23320 <method name=
"SetSize" overloaded=
"no">
23321 <autodoc>SetSize(int num_rows, int num_cols)
</autodoc>
23323 <param name=
"num_rows" type=
"int" default=
""/>
23324 <param name=
"num_cols" type=
"int" default=
""/>
23327 <method name=
"SetOverflow" overloaded=
"no">
23328 <autodoc>SetOverflow(bool allow=True)
</autodoc>
23330 <param name=
"allow" type=
"bool" default=
"True"/>
23333 <method name=
"SetReadOnly" overloaded=
"no">
23334 <autodoc>SetReadOnly(bool isReadOnly=True)
</autodoc>
23336 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
23339 <method name=
"SetRenderer" overloaded=
"no">
23340 <autodoc>SetRenderer(GridCellRenderer renderer)
</autodoc>
23342 <param name=
"renderer" type=
"p.wxGridCellRenderer" default=
""/>
23345 <method name=
"SetEditor" overloaded=
"no">
23346 <autodoc>SetEditor(GridCellEditor editor)
</autodoc>
23348 <param name=
"editor" type=
"p.wxGridCellEditor" default=
""/>
23351 <method name=
"SetKind" overloaded=
"no">
23352 <autodoc>SetKind(int kind)
</autodoc>
23354 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
23357 <method name=
"HasTextColour" overloaded=
"no">
23358 <autodoc>HasTextColour() -
> bool
</autodoc>
23360 <method name=
"HasBackgroundColour" overloaded=
"no">
23361 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
23363 <method name=
"HasFont" overloaded=
"no">
23364 <autodoc>HasFont() -
> bool
</autodoc>
23366 <method name=
"HasAlignment" overloaded=
"no">
23367 <autodoc>HasAlignment() -
> bool
</autodoc>
23369 <method name=
"HasRenderer" overloaded=
"no">
23370 <autodoc>HasRenderer() -
> bool
</autodoc>
23372 <method name=
"HasEditor" overloaded=
"no">
23373 <autodoc>HasEditor() -
> bool
</autodoc>
23375 <method name=
"HasReadWriteMode" overloaded=
"no">
23376 <autodoc>HasReadWriteMode() -
> bool
</autodoc>
23378 <method name=
"HasOverflowMode" overloaded=
"no">
23379 <autodoc>HasOverflowMode() -
> bool
</autodoc>
23381 <method name=
"GetTextColour" overloaded=
"no">
23382 <autodoc>GetTextColour() -
> Colour
</autodoc>
23384 <method name=
"GetBackgroundColour" overloaded=
"no">
23385 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
23387 <method name=
"GetFont" overloaded=
"no">
23388 <autodoc>GetFont() -
> Font
</autodoc>
23390 <method name=
"GetAlignment" overloaded=
"no">
23391 <autodoc>GetAlignment() -
> (hAlign, vAlign)
</autodoc>
23393 <param name=
"OUTPUT" type=
"p.int" default=
""/>
23394 <param name=
"OUTPUT" type=
"p.int" default=
""/>
23397 <method name=
"GetSize" overloaded=
"no">
23398 <autodoc>GetSize() -
> (num_rows, num_cols)
</autodoc>
23400 <param name=
"OUTPUT" type=
"p.int" default=
""/>
23401 <param name=
"OUTPUT" type=
"p.int" default=
""/>
23404 <method name=
"GetOverflow" overloaded=
"no">
23405 <autodoc>GetOverflow() -
> bool
</autodoc>
23407 <method name=
"GetRenderer" overloaded=
"no">
23408 <autodoc>GetRenderer(Grid grid, int row, int col) -
> GridCellRenderer
</autodoc>
23410 <param name=
"grid" type=
"p.wxGrid" default=
""/>
23411 <param name=
"row" type=
"int" default=
""/>
23412 <param name=
"col" type=
"int" default=
""/>
23415 <method name=
"GetEditor" overloaded=
"no">
23416 <autodoc>GetEditor(Grid grid, int row, int col) -
> GridCellEditor
</autodoc>
23418 <param name=
"grid" type=
"p.wxGrid" default=
""/>
23419 <param name=
"row" type=
"int" default=
""/>
23420 <param name=
"col" type=
"int" default=
""/>
23423 <method name=
"IsReadOnly" overloaded=
"no">
23424 <autodoc>IsReadOnly() -
> bool
</autodoc>
23426 <method name=
"SetDefAttr" overloaded=
"no">
23427 <autodoc>SetDefAttr(GridCellAttr defAttr)
</autodoc>
23429 <param name=
"defAttr" type=
"p.wxGridCellAttr" default=
""/>
23433 <class name=
"GridCellAttrProvider" oldname=
"wxGridCellAttrProvider" module=
"grid">
23434 <constructor name=
"GridCellAttrProvider" overloaded=
"no">
23435 <autodoc>__init__() -
> GridCellAttrProvider
</autodoc>
23437 <method name=
"_setOORInfo" overloaded=
"no">
23438 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
23440 <param name=
"_self" type=
"p.PyObject" default=
""/>
23443 <method name=
"GetAttr" overloaded=
"no">
23444 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
23446 <param name=
"row" type=
"int" default=
""/>
23447 <param name=
"col" type=
"int" default=
""/>
23448 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
23451 <method name=
"SetAttr" overloaded=
"no">
23452 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
23454 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23455 <param name=
"row" type=
"int" default=
""/>
23456 <param name=
"col" type=
"int" default=
""/>
23459 <method name=
"SetRowAttr" overloaded=
"no">
23460 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
23462 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23463 <param name=
"row" type=
"int" default=
""/>
23466 <method name=
"SetColAttr" overloaded=
"no">
23467 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
23469 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23470 <param name=
"col" type=
"int" default=
""/>
23473 <method name=
"UpdateAttrRows" overloaded=
"no">
23474 <autodoc>UpdateAttrRows(size_t pos, int numRows)
</autodoc>
23476 <param name=
"pos" type=
"size_t" default=
""/>
23477 <param name=
"numRows" type=
"int" default=
""/>
23480 <method name=
"UpdateAttrCols" overloaded=
"no">
23481 <autodoc>UpdateAttrCols(size_t pos, int numCols)
</autodoc>
23483 <param name=
"pos" type=
"size_t" default=
""/>
23484 <param name=
"numCols" type=
"int" default=
""/>
23488 <class name=
"PyGridCellAttrProvider" oldname=
"wxPyGridCellAttrProvider" module=
"grid">
23489 <baseclass name=
"wxGridCellAttrProvider"/>
23490 <constructor name=
"PyGridCellAttrProvider" overloaded=
"no">
23491 <autodoc>__init__() -
> PyGridCellAttrProvider
</autodoc>
23493 <method name=
"_setCallbackInfo" overloaded=
"no">
23494 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23496 <param name=
"self" type=
"p.PyObject" default=
""/>
23497 <param name=
"_class" type=
"p.PyObject" default=
""/>
23500 <method name=
"base_GetAttr" overloaded=
"no">
23501 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
23503 <param name=
"row" type=
"int" default=
""/>
23504 <param name=
"col" type=
"int" default=
""/>
23505 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
23508 <method name=
"base_SetAttr" overloaded=
"no">
23509 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
23511 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23512 <param name=
"row" type=
"int" default=
""/>
23513 <param name=
"col" type=
"int" default=
""/>
23516 <method name=
"base_SetRowAttr" overloaded=
"no">
23517 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
23519 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23520 <param name=
"row" type=
"int" default=
""/>
23523 <method name=
"base_SetColAttr" overloaded=
"no">
23524 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
23526 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23527 <param name=
"col" type=
"int" default=
""/>
23531 <class name=
"GridTableBase" oldname=
"wxGridTableBase" module=
"grid">
23532 <baseclass name=
"wxObject"/>
23533 <method name=
"_setOORInfo" overloaded=
"no">
23534 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
23536 <param name=
"_self" type=
"p.PyObject" default=
""/>
23539 <method name=
"SetAttrProvider" overloaded=
"no">
23540 <autodoc>SetAttrProvider(GridCellAttrProvider attrProvider)
</autodoc>
23542 <param name=
"attrProvider" type=
"p.wxGridCellAttrProvider" default=
""/>
23545 <method name=
"GetAttrProvider" overloaded=
"no">
23546 <autodoc>GetAttrProvider() -
> GridCellAttrProvider
</autodoc>
23548 <method name=
"SetView" overloaded=
"no">
23549 <autodoc>SetView(Grid grid)
</autodoc>
23551 <param name=
"grid" type=
"p.wxGrid" default=
""/>
23554 <method name=
"GetView" overloaded=
"no">
23555 <autodoc>GetView() -
> Grid
</autodoc>
23557 <method name=
"GetNumberRows" overloaded=
"no">
23558 <autodoc>GetNumberRows() -
> int
</autodoc>
23560 <method name=
"GetNumberCols" overloaded=
"no">
23561 <autodoc>GetNumberCols() -
> int
</autodoc>
23563 <method name=
"IsEmptyCell" overloaded=
"no">
23564 <autodoc>IsEmptyCell(int row, int col) -
> bool
</autodoc>
23566 <param name=
"row" type=
"int" default=
""/>
23567 <param name=
"col" type=
"int" default=
""/>
23570 <method name=
"GetValue" overloaded=
"no">
23571 <autodoc>GetValue(int row, int col) -
> String
</autodoc>
23573 <param name=
"row" type=
"int" default=
""/>
23574 <param name=
"col" type=
"int" default=
""/>
23577 <method name=
"SetValue" overloaded=
"no">
23578 <autodoc>SetValue(int row, int col, String value)
</autodoc>
23580 <param name=
"row" type=
"int" default=
""/>
23581 <param name=
"col" type=
"int" default=
""/>
23582 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
23585 <method name=
"GetTypeName" overloaded=
"no">
23586 <autodoc>GetTypeName(int row, int col) -
> String
</autodoc>
23588 <param name=
"row" type=
"int" default=
""/>
23589 <param name=
"col" type=
"int" default=
""/>
23592 <method name=
"CanGetValueAs" overloaded=
"no">
23593 <autodoc>CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
23595 <param name=
"row" type=
"int" default=
""/>
23596 <param name=
"col" type=
"int" default=
""/>
23597 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
23600 <method name=
"CanSetValueAs" overloaded=
"no">
23601 <autodoc>CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
23603 <param name=
"row" type=
"int" default=
""/>
23604 <param name=
"col" type=
"int" default=
""/>
23605 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
23608 <method name=
"GetValueAsLong" overloaded=
"no">
23609 <autodoc>GetValueAsLong(int row, int col) -
> long
</autodoc>
23611 <param name=
"row" type=
"int" default=
""/>
23612 <param name=
"col" type=
"int" default=
""/>
23615 <method name=
"GetValueAsDouble" overloaded=
"no">
23616 <autodoc>GetValueAsDouble(int row, int col) -
> double
</autodoc>
23618 <param name=
"row" type=
"int" default=
""/>
23619 <param name=
"col" type=
"int" default=
""/>
23622 <method name=
"GetValueAsBool" overloaded=
"no">
23623 <autodoc>GetValueAsBool(int row, int col) -
> bool
</autodoc>
23625 <param name=
"row" type=
"int" default=
""/>
23626 <param name=
"col" type=
"int" default=
""/>
23629 <method name=
"SetValueAsLong" overloaded=
"no">
23630 <autodoc>SetValueAsLong(int row, int col, long value)
</autodoc>
23632 <param name=
"row" type=
"int" default=
""/>
23633 <param name=
"col" type=
"int" default=
""/>
23634 <param name=
"value" type=
"long" default=
""/>
23637 <method name=
"SetValueAsDouble" overloaded=
"no">
23638 <autodoc>SetValueAsDouble(int row, int col, double value)
</autodoc>
23640 <param name=
"row" type=
"int" default=
""/>
23641 <param name=
"col" type=
"int" default=
""/>
23642 <param name=
"value" type=
"double" default=
""/>
23645 <method name=
"SetValueAsBool" overloaded=
"no">
23646 <autodoc>SetValueAsBool(int row, int col, bool value)
</autodoc>
23648 <param name=
"row" type=
"int" default=
""/>
23649 <param name=
"col" type=
"int" default=
""/>
23650 <param name=
"value" type=
"bool" default=
""/>
23653 <method name=
"Clear" overloaded=
"no">
23654 <autodoc>Clear()
</autodoc>
23656 <method name=
"InsertRows" overloaded=
"no">
23657 <autodoc>InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
23659 <param name=
"pos" type=
"size_t" default=
"0"/>
23660 <param name=
"numRows" type=
"size_t" default=
"1"/>
23663 <method name=
"AppendRows" overloaded=
"no">
23664 <autodoc>AppendRows(size_t numRows=
1) -
> bool
</autodoc>
23666 <param name=
"numRows" type=
"size_t" default=
"1"/>
23669 <method name=
"DeleteRows" overloaded=
"no">
23670 <autodoc>DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
23672 <param name=
"pos" type=
"size_t" default=
"0"/>
23673 <param name=
"numRows" type=
"size_t" default=
"1"/>
23676 <method name=
"InsertCols" overloaded=
"no">
23677 <autodoc>InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
23679 <param name=
"pos" type=
"size_t" default=
"0"/>
23680 <param name=
"numCols" type=
"size_t" default=
"1"/>
23683 <method name=
"AppendCols" overloaded=
"no">
23684 <autodoc>AppendCols(size_t numCols=
1) -
> bool
</autodoc>
23686 <param name=
"numCols" type=
"size_t" default=
"1"/>
23689 <method name=
"DeleteCols" overloaded=
"no">
23690 <autodoc>DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
23692 <param name=
"pos" type=
"size_t" default=
"0"/>
23693 <param name=
"numCols" type=
"size_t" default=
"1"/>
23696 <method name=
"GetRowLabelValue" overloaded=
"no">
23697 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
23699 <param name=
"row" type=
"int" default=
""/>
23702 <method name=
"GetColLabelValue" overloaded=
"no">
23703 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
23705 <param name=
"col" type=
"int" default=
""/>
23708 <method name=
"SetRowLabelValue" overloaded=
"no">
23709 <autodoc>SetRowLabelValue(int row, String value)
</autodoc>
23711 <param name=
"row" type=
"int" default=
""/>
23712 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
23715 <method name=
"SetColLabelValue" overloaded=
"no">
23716 <autodoc>SetColLabelValue(int col, String value)
</autodoc>
23718 <param name=
"col" type=
"int" default=
""/>
23719 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
23722 <method name=
"CanHaveAttributes" overloaded=
"no">
23723 <autodoc>CanHaveAttributes() -
> bool
</autodoc>
23725 <method name=
"GetAttr" overloaded=
"no">
23726 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
23728 <param name=
"row" type=
"int" default=
""/>
23729 <param name=
"col" type=
"int" default=
""/>
23730 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
23733 <method name=
"SetAttr" overloaded=
"no">
23734 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
23736 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23737 <param name=
"row" type=
"int" default=
""/>
23738 <param name=
"col" type=
"int" default=
""/>
23741 <method name=
"SetRowAttr" overloaded=
"no">
23742 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
23744 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23745 <param name=
"row" type=
"int" default=
""/>
23748 <method name=
"SetColAttr" overloaded=
"no">
23749 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
23751 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23752 <param name=
"col" type=
"int" default=
""/>
23756 <class name=
"PyGridTableBase" oldname=
"wxPyGridTableBase" module=
"grid">
23757 <baseclass name=
"wxGridTableBase"/>
23758 <constructor name=
"PyGridTableBase" overloaded=
"no">
23759 <autodoc>__init__() -
> PyGridTableBase
</autodoc>
23761 <method name=
"_setCallbackInfo" overloaded=
"no">
23762 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23764 <param name=
"self" type=
"p.PyObject" default=
""/>
23765 <param name=
"_class" type=
"p.PyObject" default=
""/>
23768 <method name=
"Destroy" overloaded=
"no">
23769 <autodoc>Destroy()
</autodoc>
23770 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
23772 <method name=
"base_GetTypeName" overloaded=
"no">
23773 <autodoc>base_GetTypeName(int row, int col) -
> String
</autodoc>
23775 <param name=
"row" type=
"int" default=
""/>
23776 <param name=
"col" type=
"int" default=
""/>
23779 <method name=
"base_CanGetValueAs" overloaded=
"no">
23780 <autodoc>base_CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
23782 <param name=
"row" type=
"int" default=
""/>
23783 <param name=
"col" type=
"int" default=
""/>
23784 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
23787 <method name=
"base_CanSetValueAs" overloaded=
"no">
23788 <autodoc>base_CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
23790 <param name=
"row" type=
"int" default=
""/>
23791 <param name=
"col" type=
"int" default=
""/>
23792 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
23795 <method name=
"base_Clear" overloaded=
"no">
23796 <autodoc>base_Clear()
</autodoc>
23798 <method name=
"base_InsertRows" overloaded=
"no">
23799 <autodoc>base_InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
23801 <param name=
"pos" type=
"size_t" default=
"0"/>
23802 <param name=
"numRows" type=
"size_t" default=
"1"/>
23805 <method name=
"base_AppendRows" overloaded=
"no">
23806 <autodoc>base_AppendRows(size_t numRows=
1) -
> bool
</autodoc>
23808 <param name=
"numRows" type=
"size_t" default=
"1"/>
23811 <method name=
"base_DeleteRows" overloaded=
"no">
23812 <autodoc>base_DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
23814 <param name=
"pos" type=
"size_t" default=
"0"/>
23815 <param name=
"numRows" type=
"size_t" default=
"1"/>
23818 <method name=
"base_InsertCols" overloaded=
"no">
23819 <autodoc>base_InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
23821 <param name=
"pos" type=
"size_t" default=
"0"/>
23822 <param name=
"numCols" type=
"size_t" default=
"1"/>
23825 <method name=
"base_AppendCols" overloaded=
"no">
23826 <autodoc>base_AppendCols(size_t numCols=
1) -
> bool
</autodoc>
23828 <param name=
"numCols" type=
"size_t" default=
"1"/>
23831 <method name=
"base_DeleteCols" overloaded=
"no">
23832 <autodoc>base_DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
23834 <param name=
"pos" type=
"size_t" default=
"0"/>
23835 <param name=
"numCols" type=
"size_t" default=
"1"/>
23838 <method name=
"base_GetRowLabelValue" overloaded=
"no">
23839 <autodoc>base_GetRowLabelValue(int row) -
> String
</autodoc>
23841 <param name=
"row" type=
"int" default=
""/>
23844 <method name=
"base_GetColLabelValue" overloaded=
"no">
23845 <autodoc>base_GetColLabelValue(int col) -
> String
</autodoc>
23847 <param name=
"col" type=
"int" default=
""/>
23850 <method name=
"base_SetRowLabelValue" overloaded=
"no">
23851 <autodoc>base_SetRowLabelValue(int row, String value)
</autodoc>
23853 <param name=
"row" type=
"int" default=
""/>
23854 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
23857 <method name=
"base_SetColLabelValue" overloaded=
"no">
23858 <autodoc>base_SetColLabelValue(int col, String value)
</autodoc>
23860 <param name=
"col" type=
"int" default=
""/>
23861 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
23864 <method name=
"base_CanHaveAttributes" overloaded=
"no">
23865 <autodoc>base_CanHaveAttributes() -
> bool
</autodoc>
23867 <method name=
"base_GetAttr" overloaded=
"no">
23868 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
23870 <param name=
"row" type=
"int" default=
""/>
23871 <param name=
"col" type=
"int" default=
""/>
23872 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
23875 <method name=
"base_SetAttr" overloaded=
"no">
23876 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
23878 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23879 <param name=
"row" type=
"int" default=
""/>
23880 <param name=
"col" type=
"int" default=
""/>
23883 <method name=
"base_SetRowAttr" overloaded=
"no">
23884 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
23886 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23887 <param name=
"row" type=
"int" default=
""/>
23890 <method name=
"base_SetColAttr" overloaded=
"no">
23891 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
23893 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
23894 <param name=
"col" type=
"int" default=
""/>
23898 <class name=
"GridStringTable" oldname=
"wxGridStringTable" module=
"grid">
23899 <baseclass name=
"wxGridTableBase"/>
23900 <constructor name=
"GridStringTable" overloaded=
"no">
23901 <autodoc>__init__(int numRows=
0, int numCols=
0) -
> GridStringTable
</autodoc>
23903 <param name=
"numRows" type=
"int" default=
"0"/>
23904 <param name=
"numCols" type=
"int" default=
"0"/>
23908 <class name=
"GridTableMessage" oldname=
"wxGridTableMessage" module=
"grid">
23909 <constructor name=
"GridTableMessage" overloaded=
"no">
23910 <autodoc>__init__(GridTableBase table, int id, int comInt1=-
1, int comInt2=-
1) -
> GridTableMessage
</autodoc>
23912 <param name=
"table" type=
"p.wxGridTableBase" default=
""/>
23913 <param name=
"id" type=
"int" default=
""/>
23914 <param name=
"comInt1" type=
"int" default=
"-1"/>
23915 <param name=
"comInt2" type=
"int" default=
"-1"/>
23918 <destructor name=
"~wxGridTableMessage">
23919 <autodoc>__del__()
</autodoc>
23921 <method name=
"SetTableObject" overloaded=
"no">
23922 <autodoc>SetTableObject(GridTableBase table)
</autodoc>
23924 <param name=
"table" type=
"p.wxGridTableBase" default=
""/>
23927 <method name=
"GetTableObject" overloaded=
"no">
23928 <autodoc>GetTableObject() -
> GridTableBase
</autodoc>
23930 <method name=
"SetId" overloaded=
"no">
23931 <autodoc>SetId(int id)
</autodoc>
23933 <param name=
"id" type=
"int" default=
""/>
23936 <method name=
"GetId" overloaded=
"no">
23937 <autodoc>GetId() -
> int
</autodoc>
23939 <method name=
"SetCommandInt" overloaded=
"no">
23940 <autodoc>SetCommandInt(int comInt1)
</autodoc>
23942 <param name=
"comInt1" type=
"int" default=
""/>
23945 <method name=
"GetCommandInt" overloaded=
"no">
23946 <autodoc>GetCommandInt() -
> int
</autodoc>
23948 <method name=
"SetCommandInt2" overloaded=
"no">
23949 <autodoc>SetCommandInt2(int comInt2)
</autodoc>
23951 <param name=
"comInt2" type=
"int" default=
""/>
23954 <method name=
"GetCommandInt2" overloaded=
"no">
23955 <autodoc>GetCommandInt2() -
> int
</autodoc>
23958 <class name=
"GridCellCoords" oldname=
"wxGridCellCoords" module=
"grid">
23959 <constructor name=
"GridCellCoords" overloaded=
"no">
23960 <autodoc>__init__(int r=-
1, int c=-
1) -
> GridCellCoords
</autodoc>
23962 <param name=
"r" type=
"int" default=
"-1"/>
23963 <param name=
"c" type=
"int" default=
"-1"/>
23966 <destructor name=
"~wxGridCellCoords">
23967 <autodoc>__del__()
</autodoc>
23969 <method name=
"GetRow" overloaded=
"no">
23970 <autodoc>GetRow() -
> int
</autodoc>
23972 <method name=
"SetRow" overloaded=
"no">
23973 <autodoc>SetRow(int n)
</autodoc>
23975 <param name=
"n" type=
"int" default=
""/>
23978 <method name=
"GetCol" overloaded=
"no">
23979 <autodoc>GetCol() -
> int
</autodoc>
23981 <method name=
"SetCol" overloaded=
"no">
23982 <autodoc>SetCol(int n)
</autodoc>
23984 <param name=
"n" type=
"int" default=
""/>
23987 <method name=
"Set" overloaded=
"no">
23988 <autodoc>Set(int row, int col)
</autodoc>
23990 <param name=
"row" type=
"int" default=
""/>
23991 <param name=
"col" type=
"int" default=
""/>
23994 <method name=
"__eq__" overloaded=
"no">
23995 <autodoc>__eq__(GridCellCoords other) -
> bool
</autodoc>
23997 <param name=
"other" type=
"r.q(const).wxGridCellCoords" default=
""/>
24000 <method name=
"__ne__" overloaded=
"no">
24001 <autodoc>__ne__(GridCellCoords other) -
> bool
</autodoc>
24003 <param name=
"other" type=
"r.q(const).wxGridCellCoords" default=
""/>
24006 <method name=
"asTuple" overloaded=
"no">
24007 <autodoc>asTuple() -
> PyObject
</autodoc>
24010 def __str__(self): return str(self.asTuple())
24011 def __repr__(self): return 'wxGridCellCoords'+str(self.asTuple())
24012 def __len__(self): return len(self.asTuple())
24013 def __getitem__(self, index): return self.asTuple()[index]
24014 def __setitem__(self, index, val):
24015 if index ==
0: self.SetRow(val)
24016 elif index ==
1: self.SetCol(val)
24017 else: raise IndexError
24020 <class name=
"Grid" oldname=
"wxGrid" module=
"grid">
24021 <baseclass name=
"wxScrolledWindow"/>
24022 <constructor name=
"Grid" overloaded=
"no">
24023 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
24024 long style=WANTS_CHARS,
24025 String name=PanelNameStr) -
> Grid
</autodoc>
24027 <param name=
"parent" type=
"p.wxWindow" default=
""/>
24028 <param name=
"id" type=
"int" default=
""/>
24029 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
24030 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
24031 <param name=
"style" type=
"long" default=
"wxWANTS_CHARS"/>
24032 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyPanelNameStr"/>
24036 SelectCells = wxGridSelectCells
24037 SelectRows = wxGridSelectRows
24038 SelectColumns = wxGridSelectColumns,
24040 <method name=
"CreateGrid" overloaded=
"no">
24041 <autodoc>CreateGrid(int numRows, int numCols, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
24043 <param name=
"numRows" type=
"int" default=
""/>
24044 <param name=
"numCols" type=
"int" default=
""/>
24045 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
24048 <method name=
"SetSelectionMode" overloaded=
"no">
24049 <autodoc>SetSelectionMode(WXGRIDSELECTIONMODES selmode)
</autodoc>
24051 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
""/>
24054 <method name=
"GetSelectionMode" overloaded=
"no">
24055 <autodoc>GetSelectionMode() -
> WXGRIDSELECTIONMODES
</autodoc>
24057 <method name=
"GetNumberRows" overloaded=
"no">
24058 <autodoc>GetNumberRows() -
> int
</autodoc>
24060 <method name=
"GetNumberCols" overloaded=
"no">
24061 <autodoc>GetNumberCols() -
> int
</autodoc>
24063 <method name=
"ProcessTableMessage" overloaded=
"no">
24064 <autodoc>ProcessTableMessage(GridTableMessage ??) -
> bool
</autodoc>
24066 <param name=
"" type=
"r.wxGridTableMessage" default=
""/>
24069 <method name=
"GetTable" overloaded=
"no">
24070 <autodoc>GetTable() -
> GridTableBase
</autodoc>
24072 <method name=
"SetTable" overloaded=
"no">
24073 <autodoc>SetTable(GridTableBase table, bool takeOwnership=False, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
24075 <param name=
"table" type=
"p.wxGridTableBase" default=
""/>
24076 <param name=
"takeOwnership" type=
"bool" default=
"False"/>
24077 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
24080 <method name=
"ClearGrid" overloaded=
"no">
24081 <autodoc>ClearGrid()
</autodoc>
24083 <method name=
"InsertRows" overloaded=
"no">
24084 <autodoc>InsertRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
24086 <param name=
"pos" type=
"int" default=
"0"/>
24087 <param name=
"numRows" type=
"int" default=
"1"/>
24088 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24091 <method name=
"AppendRows" overloaded=
"no">
24092 <autodoc>AppendRows(int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
24094 <param name=
"numRows" type=
"int" default=
"1"/>
24095 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24098 <method name=
"DeleteRows" overloaded=
"no">
24099 <autodoc>DeleteRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
24101 <param name=
"pos" type=
"int" default=
"0"/>
24102 <param name=
"numRows" type=
"int" default=
"1"/>
24103 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24106 <method name=
"InsertCols" overloaded=
"no">
24107 <autodoc>InsertCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
24109 <param name=
"pos" type=
"int" default=
"0"/>
24110 <param name=
"numCols" type=
"int" default=
"1"/>
24111 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24114 <method name=
"AppendCols" overloaded=
"no">
24115 <autodoc>AppendCols(int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
24117 <param name=
"numCols" type=
"int" default=
"1"/>
24118 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24121 <method name=
"DeleteCols" overloaded=
"no">
24122 <autodoc>DeleteCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
24124 <param name=
"pos" type=
"int" default=
"0"/>
24125 <param name=
"numCols" type=
"int" default=
"1"/>
24126 <param name=
"updateLabels" type=
"bool" default=
"True"/>
24129 <method name=
"DrawCellHighlight" overloaded=
"no">
24130 <autodoc>DrawCellHighlight(DC dc, GridCellAttr attr)
</autodoc>
24132 <param name=
"dc" type=
"r.wxDC" default=
""/>
24133 <param name=
"attr" type=
"p.q(const).wxGridCellAttr" default=
""/>
24136 <method name=
"DrawTextRectangle" overloaded=
"no">
24137 <autodoc>DrawTextRectangle(DC dc, String ??, Rect ??, int horizontalAlignment=LEFT,
24138 int verticalAlignment=TOP, int textOrientation=HORIZONTAL)
</autodoc>
24140 <param name=
"dc" type=
"r.wxDC" default=
""/>
24141 <param name=
"" type=
"r.q(const).wxString" default=
""/>
24142 <param name=
"" type=
"r.q(const).wxRect" default=
""/>
24143 <param name=
"horizontalAlignment" type=
"int" default=
"wxLEFT"/>
24144 <param name=
"verticalAlignment" type=
"int" default=
"wxTOP"/>
24145 <param name=
"textOrientation" type=
"int" default=
"wxHORIZONTAL"/>
24148 <method name=
"GetTextBoxSize" overloaded=
"no">
24149 <autodoc>GetTextBoxSize(DC dc, list lines) -
> (width, height)
</autodoc>
24151 <param name=
"dc" type=
"r.wxDC" default=
""/>
24152 <param name=
"lines" type=
"r.wxArrayString" default=
""/>
24153 <param name=
"OUTPUT" type=
"p.long" default=
""/>
24154 <param name=
"OUTPUT" type=
"p.long" default=
""/>
24157 <method name=
"BeginBatch" overloaded=
"no">
24158 <autodoc>BeginBatch()
</autodoc>
24160 <method name=
"EndBatch" overloaded=
"no">
24161 <autodoc>EndBatch()
</autodoc>
24163 <method name=
"GetBatchCount" overloaded=
"no">
24164 <autodoc>GetBatchCount() -
> int
</autodoc>
24166 <method name=
"ForceRefresh" overloaded=
"no">
24167 <autodoc>ForceRefresh()
</autodoc>
24169 <method name=
"Refresh" overloaded=
"no">
24170 <autodoc>Refresh(bool eraseb=True, Rect rect=None)
</autodoc>
24172 <param name=
"eraseb" type=
"bool" default=
"True"/>
24173 <param name=
"rect" type=
"p.q(const).wxRect" default=
"NULL"/>
24176 <method name=
"IsEditable" overloaded=
"no">
24177 <autodoc>IsEditable() -
> bool
</autodoc>
24179 <method name=
"EnableEditing" overloaded=
"no">
24180 <autodoc>EnableEditing(bool edit)
</autodoc>
24182 <param name=
"edit" type=
"bool" default=
""/>
24185 <method name=
"EnableCellEditControl" overloaded=
"no">
24186 <autodoc>EnableCellEditControl(bool enable=True)
</autodoc>
24188 <param name=
"enable" type=
"bool" default=
"True"/>
24191 <method name=
"DisableCellEditControl" overloaded=
"no">
24192 <autodoc>DisableCellEditControl()
</autodoc>
24194 <method name=
"CanEnableCellControl" overloaded=
"no">
24195 <autodoc>CanEnableCellControl() -
> bool
</autodoc>
24197 <method name=
"IsCellEditControlEnabled" overloaded=
"no">
24198 <autodoc>IsCellEditControlEnabled() -
> bool
</autodoc>
24200 <method name=
"IsCellEditControlShown" overloaded=
"no">
24201 <autodoc>IsCellEditControlShown() -
> bool
</autodoc>
24203 <method name=
"IsCurrentCellReadOnly" overloaded=
"no">
24204 <autodoc>IsCurrentCellReadOnly() -
> bool
</autodoc>
24206 <method name=
"ShowCellEditControl" overloaded=
"no">
24207 <autodoc>ShowCellEditControl()
</autodoc>
24209 <method name=
"HideCellEditControl" overloaded=
"no">
24210 <autodoc>HideCellEditControl()
</autodoc>
24212 <method name=
"SaveEditControlValue" overloaded=
"no">
24213 <autodoc>SaveEditControlValue()
</autodoc>
24215 <method name=
"XYToCell" overloaded=
"no">
24216 <autodoc>XYToCell(int x, int y) -
> GridCellCoords
</autodoc>
24218 <param name=
"x" type=
"int" default=
""/>
24219 <param name=
"y" type=
"int" default=
""/>
24222 <method name=
"YToRow" overloaded=
"no">
24223 <autodoc>YToRow(int y) -
> int
</autodoc>
24225 <param name=
"y" type=
"int" default=
""/>
24228 <method name=
"XToCol" overloaded=
"no">
24229 <autodoc>XToCol(int x) -
> int
</autodoc>
24231 <param name=
"x" type=
"int" default=
""/>
24234 <method name=
"YToEdgeOfRow" overloaded=
"no">
24235 <autodoc>YToEdgeOfRow(int y) -
> int
</autodoc>
24237 <param name=
"y" type=
"int" default=
""/>
24240 <method name=
"XToEdgeOfCol" overloaded=
"no">
24241 <autodoc>XToEdgeOfCol(int x) -
> int
</autodoc>
24243 <param name=
"x" type=
"int" default=
""/>
24246 <method name=
"CellToRect" overloaded=
"no">
24247 <autodoc>CellToRect(int row, int col) -
> Rect
</autodoc>
24249 <param name=
"row" type=
"int" default=
""/>
24250 <param name=
"col" type=
"int" default=
""/>
24253 <method name=
"GetGridCursorRow" overloaded=
"no">
24254 <autodoc>GetGridCursorRow() -
> int
</autodoc>
24256 <method name=
"GetGridCursorCol" overloaded=
"no">
24257 <autodoc>GetGridCursorCol() -
> int
</autodoc>
24259 <method name=
"IsVisible" overloaded=
"no">
24260 <autodoc>IsVisible(int row, int col, bool wholeCellVisible=True) -
> bool
</autodoc>
24262 <param name=
"row" type=
"int" default=
""/>
24263 <param name=
"col" type=
"int" default=
""/>
24264 <param name=
"wholeCellVisible" type=
"bool" default=
"True"/>
24267 <method name=
"MakeCellVisible" overloaded=
"no">
24268 <autodoc>MakeCellVisible(int row, int col)
</autodoc>
24270 <param name=
"row" type=
"int" default=
""/>
24271 <param name=
"col" type=
"int" default=
""/>
24274 <method name=
"SetGridCursor" overloaded=
"no">
24275 <autodoc>SetGridCursor(int row, int col)
</autodoc>
24277 <param name=
"row" type=
"int" default=
""/>
24278 <param name=
"col" type=
"int" default=
""/>
24281 <method name=
"MoveCursorUp" overloaded=
"no">
24282 <autodoc>MoveCursorUp(bool expandSelection) -
> bool
</autodoc>
24284 <param name=
"expandSelection" type=
"bool" default=
""/>
24287 <method name=
"MoveCursorDown" overloaded=
"no">
24288 <autodoc>MoveCursorDown(bool expandSelection) -
> bool
</autodoc>
24290 <param name=
"expandSelection" type=
"bool" default=
""/>
24293 <method name=
"MoveCursorLeft" overloaded=
"no">
24294 <autodoc>MoveCursorLeft(bool expandSelection) -
> bool
</autodoc>
24296 <param name=
"expandSelection" type=
"bool" default=
""/>
24299 <method name=
"MoveCursorRight" overloaded=
"no">
24300 <autodoc>MoveCursorRight(bool expandSelection) -
> bool
</autodoc>
24302 <param name=
"expandSelection" type=
"bool" default=
""/>
24305 <method name=
"MovePageDown" overloaded=
"no">
24306 <autodoc>MovePageDown() -
> bool
</autodoc>
24308 <method name=
"MovePageUp" overloaded=
"no">
24309 <autodoc>MovePageUp() -
> bool
</autodoc>
24311 <method name=
"MoveCursorUpBlock" overloaded=
"no">
24312 <autodoc>MoveCursorUpBlock(bool expandSelection) -
> bool
</autodoc>
24314 <param name=
"expandSelection" type=
"bool" default=
""/>
24317 <method name=
"MoveCursorDownBlock" overloaded=
"no">
24318 <autodoc>MoveCursorDownBlock(bool expandSelection) -
> bool
</autodoc>
24320 <param name=
"expandSelection" type=
"bool" default=
""/>
24323 <method name=
"MoveCursorLeftBlock" overloaded=
"no">
24324 <autodoc>MoveCursorLeftBlock(bool expandSelection) -
> bool
</autodoc>
24326 <param name=
"expandSelection" type=
"bool" default=
""/>
24329 <method name=
"MoveCursorRightBlock" overloaded=
"no">
24330 <autodoc>MoveCursorRightBlock(bool expandSelection) -
> bool
</autodoc>
24332 <param name=
"expandSelection" type=
"bool" default=
""/>
24335 <method name=
"GetDefaultRowLabelSize" overloaded=
"no">
24336 <autodoc>GetDefaultRowLabelSize() -
> int
</autodoc>
24338 <method name=
"GetRowLabelSize" overloaded=
"no">
24339 <autodoc>GetRowLabelSize() -
> int
</autodoc>
24341 <method name=
"GetDefaultColLabelSize" overloaded=
"no">
24342 <autodoc>GetDefaultColLabelSize() -
> int
</autodoc>
24344 <method name=
"GetColLabelSize" overloaded=
"no">
24345 <autodoc>GetColLabelSize() -
> int
</autodoc>
24347 <method name=
"GetLabelBackgroundColour" overloaded=
"no">
24348 <autodoc>GetLabelBackgroundColour() -
> Colour
</autodoc>
24350 <method name=
"GetLabelTextColour" overloaded=
"no">
24351 <autodoc>GetLabelTextColour() -
> Colour
</autodoc>
24353 <method name=
"GetLabelFont" overloaded=
"no">
24354 <autodoc>GetLabelFont() -
> Font
</autodoc>
24356 <method name=
"GetRowLabelAlignment" overloaded=
"no">
24357 <autodoc>GetRowLabelAlignment() -
> (horiz, vert)
</autodoc>
24359 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24360 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24363 <method name=
"GetColLabelAlignment" overloaded=
"no">
24364 <autodoc>GetColLabelAlignment() -
> (horiz, vert)
</autodoc>
24366 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24367 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24370 <method name=
"GetColLabelTextOrientation" overloaded=
"no">
24371 <autodoc>GetColLabelTextOrientation() -
> int
</autodoc>
24373 <method name=
"GetRowLabelValue" overloaded=
"no">
24374 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
24376 <param name=
"row" type=
"int" default=
""/>
24379 <method name=
"GetColLabelValue" overloaded=
"no">
24380 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
24382 <param name=
"col" type=
"int" default=
""/>
24385 <method name=
"GetGridLineColour" overloaded=
"no">
24386 <autodoc>GetGridLineColour() -
> Colour
</autodoc>
24388 <method name=
"GetCellHighlightColour" overloaded=
"no">
24389 <autodoc>GetCellHighlightColour() -
> Colour
</autodoc>
24391 <method name=
"GetCellHighlightPenWidth" overloaded=
"no">
24392 <autodoc>GetCellHighlightPenWidth() -
> int
</autodoc>
24394 <method name=
"GetCellHighlightROPenWidth" overloaded=
"no">
24395 <autodoc>GetCellHighlightROPenWidth() -
> int
</autodoc>
24397 <method name=
"SetRowLabelSize" overloaded=
"no">
24398 <autodoc>SetRowLabelSize(int width)
</autodoc>
24400 <param name=
"width" type=
"int" default=
""/>
24403 <method name=
"SetColLabelSize" overloaded=
"no">
24404 <autodoc>SetColLabelSize(int height)
</autodoc>
24406 <param name=
"height" type=
"int" default=
""/>
24409 <method name=
"SetLabelBackgroundColour" overloaded=
"no">
24410 <autodoc>SetLabelBackgroundColour(Colour ??)
</autodoc>
24412 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24415 <method name=
"SetLabelTextColour" overloaded=
"no">
24416 <autodoc>SetLabelTextColour(Colour ??)
</autodoc>
24418 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24421 <method name=
"SetLabelFont" overloaded=
"no">
24422 <autodoc>SetLabelFont(Font ??)
</autodoc>
24424 <param name=
"" type=
"r.q(const).wxFont" default=
""/>
24427 <method name=
"SetRowLabelAlignment" overloaded=
"no">
24428 <autodoc>SetRowLabelAlignment(int horiz, int vert)
</autodoc>
24430 <param name=
"horiz" type=
"int" default=
""/>
24431 <param name=
"vert" type=
"int" default=
""/>
24434 <method name=
"SetColLabelAlignment" overloaded=
"no">
24435 <autodoc>SetColLabelAlignment(int horiz, int vert)
</autodoc>
24437 <param name=
"horiz" type=
"int" default=
""/>
24438 <param name=
"vert" type=
"int" default=
""/>
24441 <method name=
"SetColLabelTextOrientation" overloaded=
"no">
24442 <autodoc>SetColLabelTextOrientation(int textOrientation)
</autodoc>
24444 <param name=
"textOrientation" type=
"int" default=
""/>
24447 <method name=
"SetRowLabelValue" overloaded=
"no">
24448 <autodoc>SetRowLabelValue(int row, String ??)
</autodoc>
24450 <param name=
"row" type=
"int" default=
""/>
24451 <param name=
"" type=
"r.q(const).wxString" default=
""/>
24454 <method name=
"SetColLabelValue" overloaded=
"no">
24455 <autodoc>SetColLabelValue(int col, String ??)
</autodoc>
24457 <param name=
"col" type=
"int" default=
""/>
24458 <param name=
"" type=
"r.q(const).wxString" default=
""/>
24461 <method name=
"SetGridLineColour" overloaded=
"no">
24462 <autodoc>SetGridLineColour(Colour ??)
</autodoc>
24464 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24467 <method name=
"SetCellHighlightColour" overloaded=
"no">
24468 <autodoc>SetCellHighlightColour(Colour ??)
</autodoc>
24470 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24473 <method name=
"SetCellHighlightPenWidth" overloaded=
"no">
24474 <autodoc>SetCellHighlightPenWidth(int width)
</autodoc>
24476 <param name=
"width" type=
"int" default=
""/>
24479 <method name=
"SetCellHighlightROPenWidth" overloaded=
"no">
24480 <autodoc>SetCellHighlightROPenWidth(int width)
</autodoc>
24482 <param name=
"width" type=
"int" default=
""/>
24485 <method name=
"EnableDragRowSize" overloaded=
"no">
24486 <autodoc>EnableDragRowSize(bool enable=True)
</autodoc>
24488 <param name=
"enable" type=
"bool" default=
"True"/>
24491 <method name=
"DisableDragRowSize" overloaded=
"no">
24492 <autodoc>DisableDragRowSize()
</autodoc>
24494 <method name=
"CanDragRowSize" overloaded=
"no">
24495 <autodoc>CanDragRowSize() -
> bool
</autodoc>
24497 <method name=
"EnableDragColSize" overloaded=
"no">
24498 <autodoc>EnableDragColSize(bool enable=True)
</autodoc>
24500 <param name=
"enable" type=
"bool" default=
"True"/>
24503 <method name=
"DisableDragColSize" overloaded=
"no">
24504 <autodoc>DisableDragColSize()
</autodoc>
24506 <method name=
"CanDragColSize" overloaded=
"no">
24507 <autodoc>CanDragColSize() -
> bool
</autodoc>
24509 <method name=
"EnableDragGridSize" overloaded=
"no">
24510 <autodoc>EnableDragGridSize(bool enable=True)
</autodoc>
24512 <param name=
"enable" type=
"bool" default=
"True"/>
24515 <method name=
"DisableDragGridSize" overloaded=
"no">
24516 <autodoc>DisableDragGridSize()
</autodoc>
24518 <method name=
"CanDragGridSize" overloaded=
"no">
24519 <autodoc>CanDragGridSize() -
> bool
</autodoc>
24521 <method name=
"SetAttr" overloaded=
"no">
24522 <autodoc>SetAttr(int row, int col, GridCellAttr attr)
</autodoc>
24524 <param name=
"row" type=
"int" default=
""/>
24525 <param name=
"col" type=
"int" default=
""/>
24526 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
24529 <method name=
"SetRowAttr" overloaded=
"no">
24530 <autodoc>SetRowAttr(int row, GridCellAttr attr)
</autodoc>
24532 <param name=
"row" type=
"int" default=
""/>
24533 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
24536 <method name=
"SetColAttr" overloaded=
"no">
24537 <autodoc>SetColAttr(int col, GridCellAttr attr)
</autodoc>
24539 <param name=
"col" type=
"int" default=
""/>
24540 <param name=
"attr" type=
"p.wxGridCellAttr" default=
""/>
24543 <method name=
"SetColFormatBool" overloaded=
"no">
24544 <autodoc>SetColFormatBool(int col)
</autodoc>
24546 <param name=
"col" type=
"int" default=
""/>
24549 <method name=
"SetColFormatNumber" overloaded=
"no">
24550 <autodoc>SetColFormatNumber(int col)
</autodoc>
24552 <param name=
"col" type=
"int" default=
""/>
24555 <method name=
"SetColFormatFloat" overloaded=
"no">
24556 <autodoc>SetColFormatFloat(int col, int width=-
1, int precision=-
1)
</autodoc>
24558 <param name=
"col" type=
"int" default=
""/>
24559 <param name=
"width" type=
"int" default=
"-1"/>
24560 <param name=
"precision" type=
"int" default=
"-1"/>
24563 <method name=
"SetColFormatCustom" overloaded=
"no">
24564 <autodoc>SetColFormatCustom(int col, String typeName)
</autodoc>
24566 <param name=
"col" type=
"int" default=
""/>
24567 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
24570 <method name=
"EnableGridLines" overloaded=
"no">
24571 <autodoc>EnableGridLines(bool enable=True)
</autodoc>
24573 <param name=
"enable" type=
"bool" default=
"True"/>
24576 <method name=
"GridLinesEnabled" overloaded=
"no">
24577 <autodoc>GridLinesEnabled() -
> bool
</autodoc>
24579 <method name=
"GetDefaultRowSize" overloaded=
"no">
24580 <autodoc>GetDefaultRowSize() -
> int
</autodoc>
24582 <method name=
"GetRowSize" overloaded=
"no">
24583 <autodoc>GetRowSize(int row) -
> int
</autodoc>
24585 <param name=
"row" type=
"int" default=
""/>
24588 <method name=
"GetDefaultColSize" overloaded=
"no">
24589 <autodoc>GetDefaultColSize() -
> int
</autodoc>
24591 <method name=
"GetColSize" overloaded=
"no">
24592 <autodoc>GetColSize(int col) -
> int
</autodoc>
24594 <param name=
"col" type=
"int" default=
""/>
24597 <method name=
"GetDefaultCellBackgroundColour" overloaded=
"no">
24598 <autodoc>GetDefaultCellBackgroundColour() -
> Colour
</autodoc>
24600 <method name=
"GetCellBackgroundColour" overloaded=
"no">
24601 <autodoc>GetCellBackgroundColour(int row, int col) -
> Colour
</autodoc>
24603 <param name=
"row" type=
"int" default=
""/>
24604 <param name=
"col" type=
"int" default=
""/>
24607 <method name=
"GetDefaultCellTextColour" overloaded=
"no">
24608 <autodoc>GetDefaultCellTextColour() -
> Colour
</autodoc>
24610 <method name=
"GetCellTextColour" overloaded=
"no">
24611 <autodoc>GetCellTextColour(int row, int col) -
> Colour
</autodoc>
24613 <param name=
"row" type=
"int" default=
""/>
24614 <param name=
"col" type=
"int" default=
""/>
24617 <method name=
"GetDefaultCellFont" overloaded=
"no">
24618 <autodoc>GetDefaultCellFont() -
> Font
</autodoc>
24620 <method name=
"GetCellFont" overloaded=
"no">
24621 <autodoc>GetCellFont(int row, int col) -
> Font
</autodoc>
24623 <param name=
"row" type=
"int" default=
""/>
24624 <param name=
"col" type=
"int" default=
""/>
24627 <method name=
"GetDefaultCellAlignment" overloaded=
"no">
24628 <autodoc>GetDefaultCellAlignment() -
> (horiz, vert)
</autodoc>
24630 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24631 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24634 <method name=
"GetCellAlignment" overloaded=
"no">
24635 <autodoc>GetCellAlignment() -
> (horiz, vert)
</autodoc>
24637 <param name=
"row" type=
"int" default=
""/>
24638 <param name=
"col" type=
"int" default=
""/>
24639 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24640 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24643 <method name=
"GetDefaultCellOverflow" overloaded=
"no">
24644 <autodoc>GetDefaultCellOverflow() -
> bool
</autodoc>
24646 <method name=
"GetCellOverflow" overloaded=
"no">
24647 <autodoc>GetCellOverflow(int row, int col) -
> bool
</autodoc>
24649 <param name=
"row" type=
"int" default=
""/>
24650 <param name=
"col" type=
"int" default=
""/>
24653 <method name=
"GetCellSize" overloaded=
"no">
24654 <autodoc>GetCellSize(int row, int col) -
> (num_rows, num_cols)
</autodoc>
24656 <param name=
"row" type=
"int" default=
""/>
24657 <param name=
"col" type=
"int" default=
""/>
24658 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24659 <param name=
"OUTPUT" type=
"p.int" default=
""/>
24662 <method name=
"SetDefaultRowSize" overloaded=
"no">
24663 <autodoc>SetDefaultRowSize(int height, bool resizeExistingRows=False)
</autodoc>
24665 <param name=
"height" type=
"int" default=
""/>
24666 <param name=
"resizeExistingRows" type=
"bool" default=
"False"/>
24669 <method name=
"SetRowSize" overloaded=
"no">
24670 <autodoc>SetRowSize(int row, int height)
</autodoc>
24672 <param name=
"row" type=
"int" default=
""/>
24673 <param name=
"height" type=
"int" default=
""/>
24676 <method name=
"SetDefaultColSize" overloaded=
"no">
24677 <autodoc>SetDefaultColSize(int width, bool resizeExistingCols=False)
</autodoc>
24679 <param name=
"width" type=
"int" default=
""/>
24680 <param name=
"resizeExistingCols" type=
"bool" default=
"False"/>
24683 <method name=
"SetColSize" overloaded=
"no">
24684 <autodoc>SetColSize(int col, int width)
</autodoc>
24686 <param name=
"col" type=
"int" default=
""/>
24687 <param name=
"width" type=
"int" default=
""/>
24690 <method name=
"AutoSizeColumn" overloaded=
"no">
24691 <autodoc>AutoSizeColumn(int col, bool setAsMin=True)
</autodoc>
24693 <param name=
"col" type=
"int" default=
""/>
24694 <param name=
"setAsMin" type=
"bool" default=
"True"/>
24697 <method name=
"AutoSizeRow" overloaded=
"no">
24698 <autodoc>AutoSizeRow(int row, bool setAsMin=True)
</autodoc>
24700 <param name=
"row" type=
"int" default=
""/>
24701 <param name=
"setAsMin" type=
"bool" default=
"True"/>
24704 <method name=
"AutoSizeColumns" overloaded=
"no">
24705 <autodoc>AutoSizeColumns(bool setAsMin=True)
</autodoc>
24707 <param name=
"setAsMin" type=
"bool" default=
"True"/>
24710 <method name=
"AutoSizeRows" overloaded=
"no">
24711 <autodoc>AutoSizeRows(bool setAsMin=True)
</autodoc>
24713 <param name=
"setAsMin" type=
"bool" default=
"True"/>
24716 <method name=
"AutoSize" overloaded=
"no">
24717 <autodoc>AutoSize()
</autodoc>
24719 <method name=
"AutoSizeRowLabelSize" overloaded=
"no">
24720 <autodoc>AutoSizeRowLabelSize(int row)
</autodoc>
24722 <param name=
"row" type=
"int" default=
""/>
24725 <method name=
"AutoSizeColLabelSize" overloaded=
"no">
24726 <autodoc>AutoSizeColLabelSize(int col)
</autodoc>
24728 <param name=
"col" type=
"int" default=
""/>
24731 <method name=
"SetColMinimalWidth" overloaded=
"no">
24732 <autodoc>SetColMinimalWidth(int col, int width)
</autodoc>
24734 <param name=
"col" type=
"int" default=
""/>
24735 <param name=
"width" type=
"int" default=
""/>
24738 <method name=
"SetRowMinimalHeight" overloaded=
"no">
24739 <autodoc>SetRowMinimalHeight(int row, int width)
</autodoc>
24741 <param name=
"row" type=
"int" default=
""/>
24742 <param name=
"width" type=
"int" default=
""/>
24745 <method name=
"SetColMinimalAcceptableWidth" overloaded=
"no">
24746 <autodoc>SetColMinimalAcceptableWidth(int width)
</autodoc>
24748 <param name=
"width" type=
"int" default=
""/>
24751 <method name=
"SetRowMinimalAcceptableHeight" overloaded=
"no">
24752 <autodoc>SetRowMinimalAcceptableHeight(int width)
</autodoc>
24754 <param name=
"width" type=
"int" default=
""/>
24757 <method name=
"GetColMinimalAcceptableWidth" overloaded=
"no">
24758 <autodoc>GetColMinimalAcceptableWidth() -
> int
</autodoc>
24760 <method name=
"GetRowMinimalAcceptableHeight" overloaded=
"no">
24761 <autodoc>GetRowMinimalAcceptableHeight() -
> int
</autodoc>
24763 <method name=
"SetDefaultCellBackgroundColour" overloaded=
"no">
24764 <autodoc>SetDefaultCellBackgroundColour(Colour ??)
</autodoc>
24766 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24769 <method name=
"SetCellBackgroundColour" overloaded=
"no">
24770 <autodoc>SetCellBackgroundColour(int row, int col, Colour ??)
</autodoc>
24772 <param name=
"row" type=
"int" default=
""/>
24773 <param name=
"col" type=
"int" default=
""/>
24774 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24777 <method name=
"SetDefaultCellTextColour" overloaded=
"no">
24778 <autodoc>SetDefaultCellTextColour(Colour ??)
</autodoc>
24780 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24783 <method name=
"SetCellTextColour" overloaded=
"no">
24784 <autodoc>SetCellTextColour(int row, int col, Colour ??)
</autodoc>
24786 <param name=
"row" type=
"int" default=
""/>
24787 <param name=
"col" type=
"int" default=
""/>
24788 <param name=
"" type=
"r.q(const).wxColour" default=
""/>
24791 <method name=
"SetDefaultCellFont" overloaded=
"no">
24792 <autodoc>SetDefaultCellFont(Font ??)
</autodoc>
24794 <param name=
"" type=
"r.q(const).wxFont" default=
""/>
24797 <method name=
"SetCellFont" overloaded=
"no">
24798 <autodoc>SetCellFont(int row, int col, Font ??)
</autodoc>
24800 <param name=
"row" type=
"int" default=
""/>
24801 <param name=
"col" type=
"int" default=
""/>
24802 <param name=
"" type=
"r.q(const).wxFont" default=
""/>
24805 <method name=
"SetDefaultCellAlignment" overloaded=
"no">
24806 <autodoc>SetDefaultCellAlignment(int horiz, int vert)
</autodoc>
24808 <param name=
"horiz" type=
"int" default=
""/>
24809 <param name=
"vert" type=
"int" default=
""/>
24812 <method name=
"SetCellAlignment" overloaded=
"no">
24813 <autodoc>SetCellAlignment(int row, int col, int horiz, int vert)
</autodoc>
24815 <param name=
"row" type=
"int" default=
""/>
24816 <param name=
"col" type=
"int" default=
""/>
24817 <param name=
"horiz" type=
"int" default=
""/>
24818 <param name=
"vert" type=
"int" default=
""/>
24821 <method name=
"SetDefaultCellOverflow" overloaded=
"no">
24822 <autodoc>SetDefaultCellOverflow(bool allow)
</autodoc>
24824 <param name=
"allow" type=
"bool" default=
""/>
24827 <method name=
"SetCellOverflow" overloaded=
"no">
24828 <autodoc>SetCellOverflow(int row, int col, bool allow)
</autodoc>
24830 <param name=
"row" type=
"int" default=
""/>
24831 <param name=
"col" type=
"int" default=
""/>
24832 <param name=
"allow" type=
"bool" default=
""/>
24835 <method name=
"SetCellSize" overloaded=
"no">
24836 <autodoc>SetCellSize(int row, int col, int num_rows, int num_cols)
</autodoc>
24838 <param name=
"row" type=
"int" default=
""/>
24839 <param name=
"col" type=
"int" default=
""/>
24840 <param name=
"num_rows" type=
"int" default=
""/>
24841 <param name=
"num_cols" type=
"int" default=
""/>
24844 <method name=
"SetDefaultRenderer" overloaded=
"no">
24845 <autodoc>SetDefaultRenderer(GridCellRenderer renderer)
</autodoc>
24847 <param name=
"renderer" type=
"p.wxGridCellRenderer" default=
""/>
24850 <method name=
"SetCellRenderer" overloaded=
"no">
24851 <autodoc>SetCellRenderer(int row, int col, GridCellRenderer renderer)
</autodoc>
24853 <param name=
"row" type=
"int" default=
""/>
24854 <param name=
"col" type=
"int" default=
""/>
24855 <param name=
"renderer" type=
"p.wxGridCellRenderer" default=
""/>
24858 <method name=
"GetDefaultRenderer" overloaded=
"no">
24859 <autodoc>GetDefaultRenderer() -
> GridCellRenderer
</autodoc>
24861 <method name=
"GetCellRenderer" overloaded=
"no">
24862 <autodoc>GetCellRenderer(int row, int col) -
> GridCellRenderer
</autodoc>
24864 <param name=
"row" type=
"int" default=
""/>
24865 <param name=
"col" type=
"int" default=
""/>
24868 <method name=
"SetDefaultEditor" overloaded=
"no">
24869 <autodoc>SetDefaultEditor(GridCellEditor editor)
</autodoc>
24871 <param name=
"editor" type=
"p.wxGridCellEditor" default=
""/>
24874 <method name=
"SetCellEditor" overloaded=
"no">
24875 <autodoc>SetCellEditor(int row, int col, GridCellEditor editor)
</autodoc>
24877 <param name=
"row" type=
"int" default=
""/>
24878 <param name=
"col" type=
"int" default=
""/>
24879 <param name=
"editor" type=
"p.wxGridCellEditor" default=
""/>
24882 <method name=
"GetDefaultEditor" overloaded=
"no">
24883 <autodoc>GetDefaultEditor() -
> GridCellEditor
</autodoc>
24885 <method name=
"GetCellEditor" overloaded=
"no">
24886 <autodoc>GetCellEditor(int row, int col) -
> GridCellEditor
</autodoc>
24888 <param name=
"row" type=
"int" default=
""/>
24889 <param name=
"col" type=
"int" default=
""/>
24892 <method name=
"GetCellValue" overloaded=
"no">
24893 <autodoc>GetCellValue(int row, int col) -
> String
</autodoc>
24895 <param name=
"row" type=
"int" default=
""/>
24896 <param name=
"col" type=
"int" default=
""/>
24899 <method name=
"SetCellValue" overloaded=
"no">
24900 <autodoc>SetCellValue(int row, int col, String s)
</autodoc>
24902 <param name=
"row" type=
"int" default=
""/>
24903 <param name=
"col" type=
"int" default=
""/>
24904 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
24907 <method name=
"IsReadOnly" overloaded=
"no">
24908 <autodoc>IsReadOnly(int row, int col) -
> bool
</autodoc>
24910 <param name=
"row" type=
"int" default=
""/>
24911 <param name=
"col" type=
"int" default=
""/>
24914 <method name=
"SetReadOnly" overloaded=
"no">
24915 <autodoc>SetReadOnly(int row, int col, bool isReadOnly=True)
</autodoc>
24917 <param name=
"row" type=
"int" default=
""/>
24918 <param name=
"col" type=
"int" default=
""/>
24919 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
24922 <method name=
"SelectRow" overloaded=
"no">
24923 <autodoc>SelectRow(int row, bool addToSelected=False)
</autodoc>
24925 <param name=
"row" type=
"int" default=
""/>
24926 <param name=
"addToSelected" type=
"bool" default=
"False"/>
24929 <method name=
"SelectCol" overloaded=
"no">
24930 <autodoc>SelectCol(int col, bool addToSelected=False)
</autodoc>
24932 <param name=
"col" type=
"int" default=
""/>
24933 <param name=
"addToSelected" type=
"bool" default=
"False"/>
24936 <method name=
"SelectBlock" overloaded=
"no">
24937 <autodoc>SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol,
24938 bool addToSelected=False)
</autodoc>
24940 <param name=
"topRow" type=
"int" default=
""/>
24941 <param name=
"leftCol" type=
"int" default=
""/>
24942 <param name=
"bottomRow" type=
"int" default=
""/>
24943 <param name=
"rightCol" type=
"int" default=
""/>
24944 <param name=
"addToSelected" type=
"bool" default=
"False"/>
24947 <method name=
"SelectAll" overloaded=
"no">
24948 <autodoc>SelectAll()
</autodoc>
24950 <method name=
"IsSelection" overloaded=
"no">
24951 <autodoc>IsSelection() -
> bool
</autodoc>
24953 <method name=
"ClearSelection" overloaded=
"no">
24954 <autodoc>ClearSelection()
</autodoc>
24956 <method name=
"IsInSelection" overloaded=
"no">
24957 <autodoc>IsInSelection(int row, int col) -
> bool
</autodoc>
24959 <param name=
"row" type=
"int" default=
""/>
24960 <param name=
"col" type=
"int" default=
""/>
24963 <method name=
"GetSelectedCells" overloaded=
"no">
24964 <autodoc>GetSelectedCells() -
> wxGridCellCoordsArray
</autodoc>
24966 <method name=
"GetSelectionBlockTopLeft" overloaded=
"no">
24967 <autodoc>GetSelectionBlockTopLeft() -
> wxGridCellCoordsArray
</autodoc>
24969 <method name=
"GetSelectionBlockBottomRight" overloaded=
"no">
24970 <autodoc>GetSelectionBlockBottomRight() -
> wxGridCellCoordsArray
</autodoc>
24972 <method name=
"GetSelectedRows" overloaded=
"no">
24973 <autodoc>GetSelectedRows() -
> wxArrayInt
</autodoc>
24975 <method name=
"GetSelectedCols" overloaded=
"no">
24976 <autodoc>GetSelectedCols() -
> wxArrayInt
</autodoc>
24978 <method name=
"DeselectRow" overloaded=
"no">
24979 <autodoc>DeselectRow(int row)
</autodoc>
24981 <param name=
"row" type=
"int" default=
""/>
24984 <method name=
"DeselectCol" overloaded=
"no">
24985 <autodoc>DeselectCol(int col)
</autodoc>
24987 <param name=
"col" type=
"int" default=
""/>
24990 <method name=
"DeselectCell" overloaded=
"no">
24991 <autodoc>DeselectCell(int row, int col)
</autodoc>
24993 <param name=
"row" type=
"int" default=
""/>
24994 <param name=
"col" type=
"int" default=
""/>
24997 <method name=
"BlockToDeviceRect" overloaded=
"no">
24998 <autodoc>BlockToDeviceRect(GridCellCoords topLeft, GridCellCoords bottomRight) -
> Rect
</autodoc>
25000 <param name=
"topLeft" type=
"r.q(const).wxGridCellCoords" default=
""/>
25001 <param name=
"bottomRight" type=
"r.q(const).wxGridCellCoords" default=
""/>
25004 <method name=
"GetSelectionBackground" overloaded=
"no">
25005 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
25007 <method name=
"GetSelectionForeground" overloaded=
"no">
25008 <autodoc>GetSelectionForeground() -
> Colour
</autodoc>
25010 <method name=
"SetSelectionBackground" overloaded=
"no">
25011 <autodoc>SetSelectionBackground(Colour c)
</autodoc>
25013 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
25016 <method name=
"SetSelectionForeground" overloaded=
"no">
25017 <autodoc>SetSelectionForeground(Colour c)
</autodoc>
25019 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
25022 <method name=
"RegisterDataType" overloaded=
"no">
25023 <autodoc>RegisterDataType(String typeName, GridCellRenderer renderer, GridCellEditor editor)
</autodoc>
25025 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
25026 <param name=
"renderer" type=
"p.wxGridCellRenderer" default=
""/>
25027 <param name=
"editor" type=
"p.wxGridCellEditor" default=
""/>
25030 <method name=
"GetDefaultEditorForCell" overloaded=
"no">
25031 <autodoc>GetDefaultEditorForCell(int row, int col) -
> GridCellEditor
</autodoc>
25033 <param name=
"row" type=
"int" default=
""/>
25034 <param name=
"col" type=
"int" default=
""/>
25037 <method name=
"GetDefaultRendererForCell" overloaded=
"no">
25038 <autodoc>GetDefaultRendererForCell(int row, int col) -
> GridCellRenderer
</autodoc>
25040 <param name=
"row" type=
"int" default=
""/>
25041 <param name=
"col" type=
"int" default=
""/>
25044 <method name=
"GetDefaultEditorForType" overloaded=
"no">
25045 <autodoc>GetDefaultEditorForType(String typeName) -
> GridCellEditor
</autodoc>
25047 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
25050 <method name=
"GetDefaultRendererForType" overloaded=
"no">
25051 <autodoc>GetDefaultRendererForType(String typeName) -
> GridCellRenderer
</autodoc>
25053 <param name=
"typeName" type=
"r.q(const).wxString" default=
""/>
25056 <method name=
"SetMargins" overloaded=
"no">
25057 <autodoc>SetMargins(int extraWidth, int extraHeight)
</autodoc>
25059 <param name=
"extraWidth" type=
"int" default=
""/>
25060 <param name=
"extraHeight" type=
"int" default=
""/>
25063 <method name=
"GetGridWindow" overloaded=
"no">
25064 <autodoc>GetGridWindow() -
> Window
</autodoc>
25066 <method name=
"GetGridRowLabelWindow" overloaded=
"no">
25067 <autodoc>GetGridRowLabelWindow() -
> Window
</autodoc>
25069 <method name=
"GetGridColLabelWindow" overloaded=
"no">
25070 <autodoc>GetGridColLabelWindow() -
> Window
</autodoc>
25072 <method name=
"GetGridCornerLabelWindow" overloaded=
"no">
25073 <autodoc>GetGridCornerLabelWindow() -
> Window
</autodoc>
25076 <class name=
"GridEvent" oldname=
"wxGridEvent" module=
"grid">
25077 <baseclass name=
"wxNotifyEvent"/>
25078 <constructor name=
"GridEvent" overloaded=
"no">
25079 <autodoc>__init__(int id, wxEventType type, Grid obj, int row=-
1, int col=-
1,
25080 int x=-
1, int y=-
1, bool sel=True, bool control=False,
25081 bool shift=False, bool alt=False,
25082 bool meta=False) -
> GridEvent
</autodoc>
25084 <param name=
"id" type=
"int" default=
""/>
25085 <param name=
"type" type=
"wxEventType" default=
""/>
25086 <param name=
"obj" type=
"p.wxGrid" default=
""/>
25087 <param name=
"row" type=
"int" default=
"-1"/>
25088 <param name=
"col" type=
"int" default=
"-1"/>
25089 <param name=
"x" type=
"int" default=
"-1"/>
25090 <param name=
"y" type=
"int" default=
"-1"/>
25091 <param name=
"sel" type=
"bool" default=
"True"/>
25092 <param name=
"control" type=
"bool" default=
"False"/>
25093 <param name=
"shift" type=
"bool" default=
"False"/>
25094 <param name=
"alt" type=
"bool" default=
"False"/>
25095 <param name=
"meta" type=
"bool" default=
"False"/>
25098 <method name=
"GetRow" overloaded=
"no">
25099 <autodoc>GetRow() -
> int
</autodoc>
25101 <method name=
"GetCol" overloaded=
"no">
25102 <autodoc>GetCol() -
> int
</autodoc>
25104 <method name=
"GetPosition" overloaded=
"no">
25105 <autodoc>GetPosition() -
> Point
</autodoc>
25107 <method name=
"Selecting" overloaded=
"no">
25108 <autodoc>Selecting() -
> bool
</autodoc>
25110 <method name=
"ControlDown" overloaded=
"no">
25111 <autodoc>ControlDown() -
> bool
</autodoc>
25113 <method name=
"MetaDown" overloaded=
"no">
25114 <autodoc>MetaDown() -
> bool
</autodoc>
25116 <method name=
"ShiftDown" overloaded=
"no">
25117 <autodoc>ShiftDown() -
> bool
</autodoc>
25119 <method name=
"AltDown" overloaded=
"no">
25120 <autodoc>AltDown() -
> bool
</autodoc>
25123 <class name=
"GridSizeEvent" oldname=
"wxGridSizeEvent" module=
"grid">
25124 <baseclass name=
"wxNotifyEvent"/>
25125 <constructor name=
"GridSizeEvent" overloaded=
"no">
25126 <autodoc>__init__(int id, wxEventType type, Grid obj, int rowOrCol=-
1,
25127 int x=-
1, int y=-
1, bool control=False, bool shift=False,
25128 bool alt=False, bool meta=False) -
> GridSizeEvent
</autodoc>
25130 <param name=
"id" type=
"int" default=
""/>
25131 <param name=
"type" type=
"wxEventType" default=
""/>
25132 <param name=
"obj" type=
"p.wxGrid" default=
""/>
25133 <param name=
"rowOrCol" type=
"int" default=
"-1"/>
25134 <param name=
"x" type=
"int" default=
"-1"/>
25135 <param name=
"y" type=
"int" default=
"-1"/>
25136 <param name=
"control" type=
"bool" default=
"False"/>
25137 <param name=
"shift" type=
"bool" default=
"False"/>
25138 <param name=
"alt" type=
"bool" default=
"False"/>
25139 <param name=
"meta" type=
"bool" default=
"False"/>
25142 <method name=
"GetRowOrCol" overloaded=
"no">
25143 <autodoc>GetRowOrCol() -
> int
</autodoc>
25145 <method name=
"GetPosition" overloaded=
"no">
25146 <autodoc>GetPosition() -
> Point
</autodoc>
25148 <method name=
"ControlDown" overloaded=
"no">
25149 <autodoc>ControlDown() -
> bool
</autodoc>
25151 <method name=
"MetaDown" overloaded=
"no">
25152 <autodoc>MetaDown() -
> bool
</autodoc>
25154 <method name=
"ShiftDown" overloaded=
"no">
25155 <autodoc>ShiftDown() -
> bool
</autodoc>
25157 <method name=
"AltDown" overloaded=
"no">
25158 <autodoc>AltDown() -
> bool
</autodoc>
25161 <class name=
"GridRangeSelectEvent" oldname=
"wxGridRangeSelectEvent" module=
"grid">
25162 <baseclass name=
"wxNotifyEvent"/>
25163 <constructor name=
"GridRangeSelectEvent" overloaded=
"no">
25164 <autodoc>__init__(int id, wxEventType type, Grid obj, GridCellCoords topLeft,
25165 GridCellCoords bottomRight, bool sel=True,
25166 bool control=False, bool shift=False,
25167 bool alt=False, bool meta=False) -
> GridRangeSelectEvent
</autodoc>
25169 <param name=
"id" type=
"int" default=
""/>
25170 <param name=
"type" type=
"wxEventType" default=
""/>
25171 <param name=
"obj" type=
"p.wxGrid" default=
""/>
25172 <param name=
"topLeft" type=
"r.q(const).wxGridCellCoords" default=
""/>
25173 <param name=
"bottomRight" type=
"r.q(const).wxGridCellCoords" default=
""/>
25174 <param name=
"sel" type=
"bool" default=
"True"/>
25175 <param name=
"control" type=
"bool" default=
"False"/>
25176 <param name=
"shift" type=
"bool" default=
"False"/>
25177 <param name=
"alt" type=
"bool" default=
"False"/>
25178 <param name=
"meta" type=
"bool" default=
"False"/>
25181 <method name=
"GetTopLeftCoords" overloaded=
"no">
25182 <autodoc>GetTopLeftCoords() -
> GridCellCoords
</autodoc>
25184 <method name=
"GetBottomRightCoords" overloaded=
"no">
25185 <autodoc>GetBottomRightCoords() -
> GridCellCoords
</autodoc>
25187 <method name=
"GetTopRow" overloaded=
"no">
25188 <autodoc>GetTopRow() -
> int
</autodoc>
25190 <method name=
"GetBottomRow" overloaded=
"no">
25191 <autodoc>GetBottomRow() -
> int
</autodoc>
25193 <method name=
"GetLeftCol" overloaded=
"no">
25194 <autodoc>GetLeftCol() -
> int
</autodoc>
25196 <method name=
"GetRightCol" overloaded=
"no">
25197 <autodoc>GetRightCol() -
> int
</autodoc>
25199 <method name=
"Selecting" overloaded=
"no">
25200 <autodoc>Selecting() -
> bool
</autodoc>
25202 <method name=
"ControlDown" overloaded=
"no">
25203 <autodoc>ControlDown() -
> bool
</autodoc>
25205 <method name=
"MetaDown" overloaded=
"no">
25206 <autodoc>MetaDown() -
> bool
</autodoc>
25208 <method name=
"ShiftDown" overloaded=
"no">
25209 <autodoc>ShiftDown() -
> bool
</autodoc>
25211 <method name=
"AltDown" overloaded=
"no">
25212 <autodoc>AltDown() -
> bool
</autodoc>
25215 <class name=
"GridEditorCreatedEvent" oldname=
"wxGridEditorCreatedEvent" module=
"grid">
25216 <baseclass name=
"wxCommandEvent"/>
25217 <constructor name=
"GridEditorCreatedEvent" overloaded=
"no">
25218 <autodoc>__init__(int id, wxEventType type, Object obj, int row, int col,
25219 Control ctrl) -
> GridEditorCreatedEvent
</autodoc>
25221 <param name=
"id" type=
"int" default=
""/>
25222 <param name=
"type" type=
"wxEventType" default=
""/>
25223 <param name=
"obj" type=
"p.wxObject" default=
""/>
25224 <param name=
"row" type=
"int" default=
""/>
25225 <param name=
"col" type=
"int" default=
""/>
25226 <param name=
"ctrl" type=
"p.wxControl" default=
""/>
25229 <method name=
"GetRow" overloaded=
"no">
25230 <autodoc>GetRow() -
> int
</autodoc>
25232 <method name=
"GetCol" overloaded=
"no">
25233 <autodoc>GetCol() -
> int
</autodoc>
25235 <method name=
"GetControl" overloaded=
"no">
25236 <autodoc>GetControl() -
> Control
</autodoc>
25238 <method name=
"SetRow" overloaded=
"no">
25239 <autodoc>SetRow(int row)
</autodoc>
25241 <param name=
"row" type=
"int" default=
""/>
25244 <method name=
"SetCol" overloaded=
"no">
25245 <autodoc>SetCol(int col)
</autodoc>
25247 <param name=
"col" type=
"int" default=
""/>
25250 <method name=
"SetControl" overloaded=
"no">
25251 <autodoc>SetControl(Control ctrl)
</autodoc>
25253 <param name=
"ctrl" type=
"p.wxControl" default=
""/>
25258 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
25259 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
25260 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
25261 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
25262 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
25263 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
25264 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
25265 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
25266 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
25267 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
25268 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
25269 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
25270 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
25271 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
25272 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
25273 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
25276 <module name=
"html">
25277 <pythoncode> wx = core
</pythoncode>
25279 #---------------------------------------------------------------------------
25281 <class name=
"HtmlLinkInfo" oldname=
"wxHtmlLinkInfo" module=
"html">
25282 <baseclass name=
"wxObject"/>
25283 <constructor name=
"HtmlLinkInfo" overloaded=
"no">
25284 <autodoc>__init__(String href, String target=EmptyString) -
> HtmlLinkInfo
</autodoc>
25286 <param name=
"href" type=
"r.q(const).wxString" default=
""/>
25287 <param name=
"target" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
25290 <method name=
"GetHref" overloaded=
"no">
25291 <autodoc>GetHref() -
> String
</autodoc>
25293 <method name=
"GetTarget" overloaded=
"no">
25294 <autodoc>GetTarget() -
> String
</autodoc>
25296 <method name=
"GetEvent" overloaded=
"no">
25297 <autodoc>GetEvent() -
> MouseEvent
</autodoc>
25299 <method name=
"GetHtmlCell" overloaded=
"no">
25300 <autodoc>GetHtmlCell() -
> HtmlCell
</autodoc>
25302 <method name=
"SetEvent" overloaded=
"no">
25303 <autodoc>SetEvent(MouseEvent e)
</autodoc>
25305 <param name=
"e" type=
"p.q(const).wxMouseEvent" default=
""/>
25308 <method name=
"SetHtmlCell" overloaded=
"no">
25309 <autodoc>SetHtmlCell(HtmlCell e)
</autodoc>
25311 <param name=
"e" type=
"p.q(const).wxHtmlCell" default=
""/>
25315 <class name=
"HtmlTag" oldname=
"wxHtmlTag" module=
"html">
25316 <baseclass name=
"wxObject"/>
25317 <method name=
"GetName" overloaded=
"no">
25318 <autodoc>GetName() -
> String
</autodoc>
25320 <method name=
"HasParam" overloaded=
"no">
25321 <autodoc>HasParam(String par) -
> bool
</autodoc>
25323 <param name=
"par" type=
"r.q(const).wxString" default=
""/>
25326 <method name=
"GetParam" overloaded=
"no">
25327 <autodoc>GetParam(String par, int with_commas=False) -
> String
</autodoc>
25329 <param name=
"par" type=
"r.q(const).wxString" default=
""/>
25330 <param name=
"with_commas" type=
"int" default=
"False"/>
25333 <method name=
"GetAllParams" overloaded=
"no">
25334 <autodoc>GetAllParams() -
> String
</autodoc>
25336 <method name=
"HasEnding" overloaded=
"no">
25337 <autodoc>HasEnding() -
> bool
</autodoc>
25339 <method name=
"GetBeginPos" overloaded=
"no">
25340 <autodoc>GetBeginPos() -
> int
</autodoc>
25342 <method name=
"GetEndPos1" overloaded=
"no">
25343 <autodoc>GetEndPos1() -
> int
</autodoc>
25345 <method name=
"GetEndPos2" overloaded=
"no">
25346 <autodoc>GetEndPos2() -
> int
</autodoc>
25349 <class name=
"HtmlParser" oldname=
"wxHtmlParser" module=
"html">
25350 <baseclass name=
"wxObject"/>
25351 <method name=
"SetFS" overloaded=
"no">
25352 <autodoc>SetFS(FileSystem fs)
</autodoc>
25354 <param name=
"fs" type=
"p.wxFileSystem" default=
""/>
25357 <method name=
"GetFS" overloaded=
"no">
25358 <autodoc>GetFS() -
> FileSystem
</autodoc>
25360 <method name=
"Parse" overloaded=
"no">
25361 <autodoc>Parse(String source) -
> Object
</autodoc>
25363 <param name=
"source" type=
"r.q(const).wxString" default=
""/>
25366 <method name=
"InitParser" overloaded=
"no">
25367 <autodoc>InitParser(String source)
</autodoc>
25369 <param name=
"source" type=
"r.q(const).wxString" default=
""/>
25372 <method name=
"DoneParser" overloaded=
"no">
25373 <autodoc>DoneParser()
</autodoc>
25375 <method name=
"DoParsing" overloaded=
"no">
25376 <autodoc>DoParsing(int begin_pos, int end_pos)
</autodoc>
25378 <param name=
"begin_pos" type=
"int" default=
""/>
25379 <param name=
"end_pos" type=
"int" default=
""/>
25382 <method name=
"StopParsing" overloaded=
"no">
25383 <autodoc>StopParsing()
</autodoc>
25385 <method name=
"AddTagHandler" overloaded=
"no">
25386 <autodoc>AddTagHandler(HtmlTagHandler handler)
</autodoc>
25388 <param name=
"handler" type=
"p.wxHtmlTagHandler" default=
""/>
25391 <method name=
"GetSource" overloaded=
"no">
25392 <autodoc>GetSource() -
> String
</autodoc>
25394 <method name=
"PushTagHandler" overloaded=
"no">
25395 <autodoc>PushTagHandler(HtmlTagHandler handler, String tags)
</autodoc>
25397 <param name=
"handler" type=
"p.wxHtmlTagHandler" default=
""/>
25398 <param name=
"tags" type=
"wxString" default=
""/>
25401 <method name=
"PopTagHandler" overloaded=
"no">
25402 <autodoc>PopTagHandler()
</autodoc>
25405 <class name=
"HtmlWinParser" oldname=
"wxHtmlWinParser" module=
"html">
25406 <baseclass name=
"wxHtmlParser"/>
25407 <constructor name=
"HtmlWinParser" overloaded=
"no">
25408 <autodoc>__init__(HtmlWindow wnd=None) -
> HtmlWinParser
</autodoc>
25410 <param name=
"wnd" type=
"p.wxPyHtmlWindow" default=
"NULL"/>
25413 <method name=
"SetDC" overloaded=
"no">
25414 <autodoc>SetDC(DC dc)
</autodoc>
25416 <param name=
"dc" type=
"p.wxDC" default=
""/>
25419 <method name=
"GetDC" overloaded=
"no">
25420 <autodoc>GetDC() -
> DC
</autodoc>
25422 <method name=
"GetCharHeight" overloaded=
"no">
25423 <autodoc>GetCharHeight() -
> int
</autodoc>
25425 <method name=
"GetCharWidth" overloaded=
"no">
25426 <autodoc>GetCharWidth() -
> int
</autodoc>
25428 <method name=
"GetWindow" overloaded=
"no">
25429 <autodoc>GetWindow() -
> HtmlWindow
</autodoc>
25431 <method name=
"SetFonts" overloaded=
"no">
25432 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
25434 <param name=
"normal_face" type=
"wxString" default=
""/>
25435 <param name=
"fixed_face" type=
"wxString" default=
""/>
25436 <param name=
"sizes" type=
"p.PyObject" default=
"NULL"/>
25439 <method name=
"GetContainer" overloaded=
"no">
25440 <autodoc>GetContainer() -
> HtmlContainerCell
</autodoc>
25442 <method name=
"OpenContainer" overloaded=
"no">
25443 <autodoc>OpenContainer() -
> HtmlContainerCell
</autodoc>
25445 <method name=
"SetContainer" overloaded=
"no">
25446 <autodoc>SetContainer(HtmlContainerCell c) -
> HtmlContainerCell
</autodoc>
25448 <param name=
"c" type=
"p.wxHtmlContainerCell" default=
""/>
25451 <method name=
"CloseContainer" overloaded=
"no">
25452 <autodoc>CloseContainer() -
> HtmlContainerCell
</autodoc>
25454 <method name=
"GetFontSize" overloaded=
"no">
25455 <autodoc>GetFontSize() -
> int
</autodoc>
25457 <method name=
"SetFontSize" overloaded=
"no">
25458 <autodoc>SetFontSize(int s)
</autodoc>
25460 <param name=
"s" type=
"int" default=
""/>
25463 <method name=
"GetFontBold" overloaded=
"no">
25464 <autodoc>GetFontBold() -
> int
</autodoc>
25466 <method name=
"SetFontBold" overloaded=
"no">
25467 <autodoc>SetFontBold(int x)
</autodoc>
25469 <param name=
"x" type=
"int" default=
""/>
25472 <method name=
"GetFontItalic" overloaded=
"no">
25473 <autodoc>GetFontItalic() -
> int
</autodoc>
25475 <method name=
"SetFontItalic" overloaded=
"no">
25476 <autodoc>SetFontItalic(int x)
</autodoc>
25478 <param name=
"x" type=
"int" default=
""/>
25481 <method name=
"GetFontUnderlined" overloaded=
"no">
25482 <autodoc>GetFontUnderlined() -
> int
</autodoc>
25484 <method name=
"SetFontUnderlined" overloaded=
"no">
25485 <autodoc>SetFontUnderlined(int x)
</autodoc>
25487 <param name=
"x" type=
"int" default=
""/>
25490 <method name=
"GetFontFixed" overloaded=
"no">
25491 <autodoc>GetFontFixed() -
> int
</autodoc>
25493 <method name=
"SetFontFixed" overloaded=
"no">
25494 <autodoc>SetFontFixed(int x)
</autodoc>
25496 <param name=
"x" type=
"int" default=
""/>
25499 <method name=
"GetAlign" overloaded=
"no">
25500 <autodoc>GetAlign() -
> int
</autodoc>
25502 <method name=
"SetAlign" overloaded=
"no">
25503 <autodoc>SetAlign(int a)
</autodoc>
25505 <param name=
"a" type=
"int" default=
""/>
25508 <method name=
"GetLinkColor" overloaded=
"no">
25509 <autodoc>GetLinkColor() -
> Colour
</autodoc>
25511 <method name=
"SetLinkColor" overloaded=
"no">
25512 <autodoc>SetLinkColor(Colour clr)
</autodoc>
25514 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25517 <method name=
"GetActualColor" overloaded=
"no">
25518 <autodoc>GetActualColor() -
> Colour
</autodoc>
25520 <method name=
"SetActualColor" overloaded=
"no">
25521 <autodoc>SetActualColor(Colour clr)
</autodoc>
25523 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25526 <method name=
"SetLink" overloaded=
"no">
25527 <autodoc>SetLink(String link)
</autodoc>
25529 <param name=
"link" type=
"r.q(const).wxString" default=
""/>
25532 <method name=
"CreateCurrentFont" overloaded=
"no">
25533 <autodoc>CreateCurrentFont() -
> Font
</autodoc>
25535 <method name=
"GetLink" overloaded=
"no">
25536 <autodoc>GetLink() -
> HtmlLinkInfo
</autodoc>
25539 <class name=
"HtmlTagHandler" oldname=
"wxPyHtmlTagHandler" module=
"html">
25540 <baseclass name=
"wxObject"/>
25541 <constructor name=
"wxPyHtmlTagHandler" overloaded=
"no">
25542 <autodoc>__init__() -
> HtmlTagHandler
</autodoc>
25544 <method name=
"_setCallbackInfo" overloaded=
"no">
25545 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
25547 <param name=
"self" type=
"p.PyObject" default=
""/>
25548 <param name=
"_class" type=
"p.PyObject" default=
""/>
25551 <method name=
"SetParser" overloaded=
"no">
25552 <autodoc>SetParser(HtmlParser parser)
</autodoc>
25554 <param name=
"parser" type=
"p.wxHtmlParser" default=
""/>
25557 <method name=
"GetParser" overloaded=
"no">
25558 <autodoc>GetParser() -
> HtmlParser
</autodoc>
25560 <method name=
"ParseInner" overloaded=
"no">
25561 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
25563 <param name=
"tag" type=
"r.q(const).wxHtmlTag" default=
""/>
25567 <class name=
"HtmlWinTagHandler" oldname=
"wxPyHtmlWinTagHandler" module=
"html">
25568 <baseclass name=
"wxPyHtmlTagHandler"/>
25569 <constructor name=
"wxPyHtmlWinTagHandler" overloaded=
"no">
25570 <autodoc>__init__() -
> HtmlWinTagHandler
</autodoc>
25572 <method name=
"_setCallbackInfo" overloaded=
"no">
25573 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
25575 <param name=
"self" type=
"p.PyObject" default=
""/>
25576 <param name=
"_class" type=
"p.PyObject" default=
""/>
25579 <method name=
"SetParser" overloaded=
"no">
25580 <autodoc>SetParser(HtmlParser parser)
</autodoc>
25582 <param name=
"parser" type=
"p.wxHtmlParser" default=
""/>
25585 <method name=
"GetParser" overloaded=
"no">
25586 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
25588 <method name=
"ParseInner" overloaded=
"no">
25589 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
25591 <param name=
"tag" type=
"r.q(const).wxHtmlTag" default=
""/>
25595 <function oldname=
"wxHtmlWinParser_AddTagHandler" name=
"HtmlWinParser_AddTagHandler" overloaded=
"no">
25596 <autodoc>HtmlWinParser_AddTagHandler(PyObject tagHandlerClass)
</autodoc>
25598 <param name=
"tagHandlerClass" type=
"p.PyObject" default=
""/>
25602 #---------------------------------------------------------------------------
25604 <class name=
"HtmlSelection" oldname=
"wxHtmlSelection" module=
"html">
25605 <constructor name=
"HtmlSelection" overloaded=
"no">
25606 <autodoc>__init__() -
> HtmlSelection
</autodoc>
25608 <destructor name=
"~wxHtmlSelection">
25609 <autodoc>__del__()
</autodoc>
25611 <method name=
"Set" overloaded=
"no">
25612 <autodoc>Set(Point fromPos, HtmlCell fromCell, Point toPos, HtmlCell toCell)
</autodoc>
25614 <param name=
"fromPos" type=
"r.q(const).wxPoint" default=
""/>
25615 <param name=
"fromCell" type=
"p.q(const).wxHtmlCell" default=
""/>
25616 <param name=
"toPos" type=
"r.q(const).wxPoint" default=
""/>
25617 <param name=
"toCell" type=
"p.q(const).wxHtmlCell" default=
""/>
25620 <method name=
"SetCells" overloaded=
"no">
25621 <autodoc>SetCells(HtmlCell fromCell, HtmlCell toCell)
</autodoc>
25623 <param name=
"fromCell" type=
"p.q(const).wxHtmlCell" default=
""/>
25624 <param name=
"toCell" type=
"p.q(const).wxHtmlCell" default=
""/>
25627 <method name=
"GetFromCell" overloaded=
"no">
25628 <autodoc>GetFromCell() -
> HtmlCell
</autodoc>
25630 <method name=
"GetToCell" overloaded=
"no">
25631 <autodoc>GetToCell() -
> HtmlCell
</autodoc>
25633 <method name=
"GetFromPos" overloaded=
"no">
25634 <autodoc>GetFromPos() -
> Point
</autodoc>
25636 <method name=
"GetToPos" overloaded=
"no">
25637 <autodoc>GetToPos() -
> Point
</autodoc>
25639 <method name=
"GetFromPrivPos" overloaded=
"no">
25640 <autodoc>GetFromPrivPos() -
> Point
</autodoc>
25642 <method name=
"GetToPrivPos" overloaded=
"no">
25643 <autodoc>GetToPrivPos() -
> Point
</autodoc>
25645 <method name=
"SetFromPrivPos" overloaded=
"no">
25646 <autodoc>SetFromPrivPos(Point pos)
</autodoc>
25648 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
25651 <method name=
"SetToPrivPos" overloaded=
"no">
25652 <autodoc>SetToPrivPos(Point pos)
</autodoc>
25654 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
25657 <method name=
"ClearPrivPos" overloaded=
"no">
25658 <autodoc>ClearPrivPos()
</autodoc>
25660 <method name=
"IsEmpty" overloaded=
"no">
25661 <autodoc>IsEmpty() -
> bool
</autodoc>
25664 <class name=
"HtmlRenderingState" oldname=
"wxHtmlRenderingState" module=
"html">
25665 <constructor name=
"HtmlRenderingState" overloaded=
"no">
25666 <autodoc>__init__() -
> HtmlRenderingState
</autodoc>
25668 <destructor name=
"~wxHtmlRenderingState">
25669 <autodoc>__del__()
</autodoc>
25671 <method name=
"SetSelectionState" overloaded=
"no">
25672 <autodoc>SetSelectionState(int s)
</autodoc>
25674 <param name=
"s" type=
"wxHtmlSelectionState" default=
""/>
25677 <method name=
"GetSelectionState" overloaded=
"no">
25678 <autodoc>GetSelectionState() -
> int
</autodoc>
25680 <method name=
"SetFgColour" overloaded=
"no">
25681 <autodoc>SetFgColour(Colour c)
</autodoc>
25683 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
25686 <method name=
"GetFgColour" overloaded=
"no">
25687 <autodoc>GetFgColour() -
> Colour
</autodoc>
25689 <method name=
"SetBgColour" overloaded=
"no">
25690 <autodoc>SetBgColour(Colour c)
</autodoc>
25692 <param name=
"c" type=
"r.q(const).wxColour" default=
""/>
25695 <method name=
"GetBgColour" overloaded=
"no">
25696 <autodoc>GetBgColour() -
> Colour
</autodoc>
25699 <class name=
"HtmlRenderingStyle" oldname=
"wxHtmlRenderingStyle" module=
"html">
25700 <method name=
"GetSelectedTextColour" overloaded=
"no">
25701 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
25703 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25706 <method name=
"GetSelectedTextBgColour" overloaded=
"no">
25707 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
25709 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25713 <class name=
"DefaultHtmlRenderingStyle" oldname=
"wxDefaultHtmlRenderingStyle" module=
"html">
25714 <baseclass name=
"wxHtmlRenderingStyle"/>
25715 <method name=
"GetSelectedTextColour" overloaded=
"no">
25716 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
25718 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25721 <method name=
"GetSelectedTextBgColour" overloaded=
"no">
25722 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
25724 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
25728 <class name=
"HtmlRenderingInfo" oldname=
"wxHtmlRenderingInfo" module=
"html">
25729 <constructor name=
"HtmlRenderingInfo" overloaded=
"no">
25730 <autodoc>__init__() -
> HtmlRenderingInfo
</autodoc>
25732 <destructor name=
"~wxHtmlRenderingInfo">
25733 <autodoc>__del__()
</autodoc>
25735 <method name=
"SetSelection" overloaded=
"no">
25736 <autodoc>SetSelection(HtmlSelection s)
</autodoc>
25738 <param name=
"s" type=
"p.wxHtmlSelection" default=
""/>
25741 <method name=
"GetSelection" overloaded=
"no">
25742 <autodoc>GetSelection() -
> HtmlSelection
</autodoc>
25744 <method name=
"SetStyle" overloaded=
"no">
25745 <autodoc>SetStyle(HtmlRenderingStyle style)
</autodoc>
25747 <param name=
"style" type=
"p.wxHtmlRenderingStyle" default=
""/>
25750 <method name=
"GetStyle" overloaded=
"no">
25751 <autodoc>GetStyle() -
> HtmlRenderingStyle
</autodoc>
25753 <method name=
"GetState" overloaded=
"no">
25754 <autodoc>GetState() -
> HtmlRenderingState
</autodoc>
25758 #---------------------------------------------------------------------------
25760 <class name=
"HtmlCell" oldname=
"wxHtmlCell" module=
"html">
25761 <baseclass name=
"wxObject"/>
25762 <constructor name=
"HtmlCell" overloaded=
"no">
25763 <autodoc>__init__() -
> HtmlCell
</autodoc>
25765 <method name=
"GetPosX" overloaded=
"no">
25766 <autodoc>GetPosX() -
> int
</autodoc>
25768 <method name=
"GetPosY" overloaded=
"no">
25769 <autodoc>GetPosY() -
> int
</autodoc>
25771 <method name=
"GetWidth" overloaded=
"no">
25772 <autodoc>GetWidth() -
> int
</autodoc>
25774 <method name=
"GetHeight" overloaded=
"no">
25775 <autodoc>GetHeight() -
> int
</autodoc>
25777 <method name=
"GetDescent" overloaded=
"no">
25778 <autodoc>GetDescent() -
> int
</autodoc>
25780 <method name=
"GetId" overloaded=
"no">
25781 <autodoc>GetId() -
> String
</autodoc>
25783 <method name=
"SetId" overloaded=
"no">
25784 <autodoc>SetId(String id)
</autodoc>
25786 <param name=
"id" type=
"r.q(const).wxString" default=
""/>
25789 <method name=
"GetLink" overloaded=
"no">
25790 <autodoc>GetLink(int x=
0, int y=
0) -
> HtmlLinkInfo
</autodoc>
25792 <param name=
"x" type=
"int" default=
"0"/>
25793 <param name=
"y" type=
"int" default=
"0"/>
25796 <method name=
"GetNext" overloaded=
"no">
25797 <autodoc>GetNext() -
> HtmlCell
</autodoc>
25799 <method name=
"GetParent" overloaded=
"no">
25800 <autodoc>GetParent() -
> HtmlContainerCell
</autodoc>
25802 <method name=
"GetFirstChild" overloaded=
"no">
25803 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
25805 <method name=
"GetCursor" overloaded=
"no">
25806 <autodoc>GetCursor() -
> Cursor
</autodoc>
25808 <method name=
"IsFormattingCell" overloaded=
"no">
25809 <autodoc>IsFormattingCell() -
> bool
</autodoc>
25811 <method name=
"SetLink" overloaded=
"no">
25812 <autodoc>SetLink(HtmlLinkInfo link)
</autodoc>
25814 <param name=
"link" type=
"r.q(const).wxHtmlLinkInfo" default=
""/>
25817 <method name=
"SetNext" overloaded=
"no">
25818 <autodoc>SetNext(HtmlCell cell)
</autodoc>
25820 <param name=
"cell" type=
"p.wxHtmlCell" default=
""/>
25823 <method name=
"SetParent" overloaded=
"no">
25824 <autodoc>SetParent(HtmlContainerCell p)
</autodoc>
25826 <param name=
"p" type=
"p.wxHtmlContainerCell" default=
""/>
25829 <method name=
"SetPos" overloaded=
"no">
25830 <autodoc>SetPos(int x, int y)
</autodoc>
25832 <param name=
"x" type=
"int" default=
""/>
25833 <param name=
"y" type=
"int" default=
""/>
25836 <method name=
"Layout" overloaded=
"no">
25837 <autodoc>Layout(int w)
</autodoc>
25839 <param name=
"w" type=
"int" default=
""/>
25842 <method name=
"Draw" overloaded=
"no">
25843 <autodoc>Draw(DC dc, int x, int y, int view_y1, int view_y2, HtmlRenderingInfo info)
</autodoc>
25845 <param name=
"dc" type=
"r.wxDC" default=
""/>
25846 <param name=
"x" type=
"int" default=
""/>
25847 <param name=
"y" type=
"int" default=
""/>
25848 <param name=
"view_y1" type=
"int" default=
""/>
25849 <param name=
"view_y2" type=
"int" default=
""/>
25850 <param name=
"info" type=
"r.wxHtmlRenderingInfo" default=
""/>
25853 <method name=
"DrawInvisible" overloaded=
"no">
25854 <autodoc>DrawInvisible(DC dc, int x, int y, HtmlRenderingInfo info)
</autodoc>
25856 <param name=
"dc" type=
"r.wxDC" default=
""/>
25857 <param name=
"x" type=
"int" default=
""/>
25858 <param name=
"y" type=
"int" default=
""/>
25859 <param name=
"info" type=
"r.wxHtmlRenderingInfo" default=
""/>
25862 <method name=
"Find" overloaded=
"no">
25863 <autodoc>Find(int condition, void param) -
> HtmlCell
</autodoc>
25865 <param name=
"condition" type=
"int" default=
""/>
25866 <param name=
"param" type=
"p.q(const).void" default=
""/>
25869 <method name=
"AdjustPagebreak" overloaded=
"no">
25870 <autodoc>AdjustPagebreak(int INOUT) -
> bool
</autodoc>
25872 <param name=
"INOUT" type=
"p.int" default=
""/>
25875 <method name=
"SetCanLiveOnPagebreak" overloaded=
"no">
25876 <autodoc>SetCanLiveOnPagebreak(bool can)
</autodoc>
25878 <param name=
"can" type=
"bool" default=
""/>
25881 <method name=
"IsLinebreakAllowed" overloaded=
"no">
25882 <autodoc>IsLinebreakAllowed() -
> bool
</autodoc>
25884 <method name=
"IsTerminalCell" overloaded=
"no">
25885 <autodoc>IsTerminalCell() -
> bool
</autodoc>
25887 <method name=
"FindCellByPos" overloaded=
"no">
25888 <autodoc>FindCellByPos(int x, int y, unsigned int flags=HTML_FIND_EXACT) -
> HtmlCell
</autodoc>
25890 <param name=
"x" type=
"int" default=
""/>
25891 <param name=
"y" type=
"int" default=
""/>
25892 <param name=
"flags" type=
"unsigned int" default=
"wxHTML_FIND_EXACT"/>
25895 <method name=
"GetAbsPos" overloaded=
"no">
25896 <autodoc>GetAbsPos() -
> Point
</autodoc>
25898 <method name=
"GetFirstTerminal" overloaded=
"no">
25899 <autodoc>GetFirstTerminal() -
> HtmlCell
</autodoc>
25901 <method name=
"GetLastTerminal" overloaded=
"no">
25902 <autodoc>GetLastTerminal() -
> HtmlCell
</autodoc>
25904 <method name=
"GetDepth" overloaded=
"no">
25905 <autodoc>GetDepth() -
> unsigned int
</autodoc>
25907 <method name=
"IsBefore" overloaded=
"no">
25908 <autodoc>IsBefore(HtmlCell cell) -
> bool
</autodoc>
25910 <param name=
"cell" type=
"p.wxHtmlCell" default=
""/>
25913 <method name=
"ConvertToText" overloaded=
"no">
25914 <autodoc>ConvertToText(HtmlSelection sel) -
> String
</autodoc>
25916 <param name=
"sel" type=
"p.wxHtmlSelection" default=
""/>
25920 <class name=
"HtmlWordCell" oldname=
"wxHtmlWordCell" module=
"html">
25921 <baseclass name=
"wxHtmlCell"/>
25922 <constructor name=
"HtmlWordCell" overloaded=
"no">
25923 <autodoc>__init__(String word, DC dc) -
> HtmlWordCell
</autodoc>
25925 <param name=
"word" type=
"r.q(const).wxString" default=
""/>
25926 <param name=
"dc" type=
"r.wxDC" default=
""/>
25930 <class name=
"HtmlContainerCell" oldname=
"wxHtmlContainerCell" module=
"html">
25931 <baseclass name=
"wxHtmlCell"/>
25932 <constructor name=
"HtmlContainerCell" overloaded=
"no">
25933 <autodoc>__init__(HtmlContainerCell parent) -
> HtmlContainerCell
</autodoc>
25935 <param name=
"parent" type=
"p.wxHtmlContainerCell" default=
""/>
25938 <method name=
"InsertCell" overloaded=
"no">
25939 <autodoc>InsertCell(HtmlCell cell)
</autodoc>
25941 <param name=
"cell" type=
"p.wxHtmlCell" default=
""/>
25944 <method name=
"SetAlignHor" overloaded=
"no">
25945 <autodoc>SetAlignHor(int al)
</autodoc>
25947 <param name=
"al" type=
"int" default=
""/>
25950 <method name=
"GetAlignHor" overloaded=
"no">
25951 <autodoc>GetAlignHor() -
> int
</autodoc>
25953 <method name=
"SetAlignVer" overloaded=
"no">
25954 <autodoc>SetAlignVer(int al)
</autodoc>
25956 <param name=
"al" type=
"int" default=
""/>
25959 <method name=
"GetAlignVer" overloaded=
"no">
25960 <autodoc>GetAlignVer() -
> int
</autodoc>
25962 <method name=
"SetIndent" overloaded=
"no">
25963 <autodoc>SetIndent(int i, int what, int units=HTML_UNITS_PIXELS)
</autodoc>
25965 <param name=
"i" type=
"int" default=
""/>
25966 <param name=
"what" type=
"int" default=
""/>
25967 <param name=
"units" type=
"int" default=
"wxHTML_UNITS_PIXELS"/>
25970 <method name=
"GetIndent" overloaded=
"no">
25971 <autodoc>GetIndent(int ind) -
> int
</autodoc>
25973 <param name=
"ind" type=
"int" default=
""/>
25976 <method name=
"GetIndentUnits" overloaded=
"no">
25977 <autodoc>GetIndentUnits(int ind) -
> int
</autodoc>
25979 <param name=
"ind" type=
"int" default=
""/>
25982 <method name=
"SetAlign" overloaded=
"no">
25983 <autodoc>SetAlign(HtmlTag tag)
</autodoc>
25985 <param name=
"tag" type=
"r.q(const).wxHtmlTag" default=
""/>
25988 <method name=
"SetWidthFloat" overloaded=
"no">
25989 <autodoc>SetWidthFloat(int w, int units)
</autodoc>
25991 <param name=
"w" type=
"int" default=
""/>
25992 <param name=
"units" type=
"int" default=
""/>
25995 <method name=
"SetWidthFloatFromTag" overloaded=
"no">
25996 <autodoc>SetWidthFloatFromTag(HtmlTag tag)
</autodoc>
25998 <param name=
"tag" type=
"r.q(const).wxHtmlTag" default=
""/>
26001 <method name=
"SetMinHeight" overloaded=
"no">
26002 <autodoc>SetMinHeight(int h, int align=HTML_ALIGN_TOP)
</autodoc>
26004 <param name=
"h" type=
"int" default=
""/>
26005 <param name=
"align" type=
"int" default=
"wxHTML_ALIGN_TOP"/>
26008 <method name=
"SetBackgroundColour" overloaded=
"no">
26009 <autodoc>SetBackgroundColour(Colour clr)
</autodoc>
26011 <param name=
"clr" type=
"r.q(const).wxColour" default=
""/>
26014 <method name=
"GetBackgroundColour" overloaded=
"no">
26015 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
26017 <method name=
"SetBorder" overloaded=
"no">
26018 <autodoc>SetBorder(Colour clr1, Colour clr2)
</autodoc>
26020 <param name=
"clr1" type=
"r.q(const).wxColour" default=
""/>
26021 <param name=
"clr2" type=
"r.q(const).wxColour" default=
""/>
26024 <method name=
"GetFirstChild" overloaded=
"no">
26025 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
26028 <class name=
"HtmlColourCell" oldname=
"wxHtmlColourCell" module=
"html">
26029 <baseclass name=
"wxHtmlCell"/>
26030 <constructor name=
"HtmlColourCell" overloaded=
"no">
26031 <autodoc>__init__(Colour clr, int flags=HTML_CLR_FOREGROUND) -
> HtmlColourCell
</autodoc>
26033 <param name=
"clr" type=
"wxColour" default=
""/>
26034 <param name=
"flags" type=
"int" default=
"wxHTML_CLR_FOREGROUND"/>
26038 <class name=
"HtmlFontCell" oldname=
"wxHtmlFontCell" module=
"html">
26039 <baseclass name=
"wxHtmlCell"/>
26040 <constructor name=
"HtmlFontCell" overloaded=
"no">
26041 <autodoc>__init__(Font font) -
> HtmlFontCell
</autodoc>
26043 <param name=
"font" type=
"p.wxFont" default=
""/>
26047 <class name=
"HtmlWidgetCell" oldname=
"wxHtmlWidgetCell" module=
"html">
26048 <baseclass name=
"wxHtmlCell"/>
26049 <constructor name=
"HtmlWidgetCell" overloaded=
"no">
26050 <autodoc>__init__(Window wnd, int w=
0) -
> HtmlWidgetCell
</autodoc>
26052 <param name=
"wnd" type=
"p.wxWindow" default=
""/>
26053 <param name=
"w" type=
"int" default=
"0"/>
26058 #---------------------------------------------------------------------------
26060 <class name=
"HtmlFilter" oldname=
"wxPyHtmlFilter" module=
"html">
26061 <baseclass name=
"wxObject"/>
26062 <constructor name=
"wxPyHtmlFilter" overloaded=
"no">
26063 <autodoc>__init__() -
> HtmlFilter
</autodoc>
26065 <method name=
"_setCallbackInfo" overloaded=
"no">
26066 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
26068 <param name=
"self" type=
"p.PyObject" default=
""/>
26069 <param name=
"_class" type=
"p.PyObject" default=
""/>
26074 #---------------------------------------------------------------------------
26076 <class name=
"HtmlWindow" oldname=
"wxPyHtmlWindow" module=
"html">
26077 <baseclass name=
"wxScrolledWindow"/>
26078 <constructor name=
"wxPyHtmlWindow" overloaded=
"no">
26079 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
26080 Size size=DefaultSize, int style=HW_DEFAULT_STYLE,
26081 String name=HtmlWindowNameStr) -
> HtmlWindow
</autodoc>
26083 <param name=
"parent" type=
"p.wxWindow" default=
""/>
26084 <param name=
"id" type=
"int" default=
"-1"/>
26085 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
26086 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
26087 <param name=
"style" type=
"int" default=
"wxHW_DEFAULT_STYLE"/>
26088 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyHtmlWindowNameStr"/>
26091 <constructor name=
"PreHtmlWindow" overloaded=
"no">
26092 <autodoc>PreHtmlWindow() -
> HtmlWindow
</autodoc>
26094 <method name=
"Create" overloaded=
"no">
26095 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
26096 Size size=DefaultSize, int style=HW_SCROLLBAR_AUTO,
26097 String name=HtmlWindowNameStr) -
> bool
</autodoc>
26099 <param name=
"parent" type=
"p.wxWindow" default=
""/>
26100 <param name=
"id" type=
"int" default=
"-1"/>
26101 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
26102 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
26103 <param name=
"style" type=
"int" default=
"wxHW_SCROLLBAR_AUTO"/>
26104 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyHtmlWindowNameStr"/>
26107 <method name=
"_setCallbackInfo" overloaded=
"no">
26108 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
26110 <param name=
"self" type=
"p.PyObject" default=
""/>
26111 <param name=
"_class" type=
"p.PyObject" default=
""/>
26114 <method name=
"SetPage" overloaded=
"no">
26115 <autodoc>SetPage(String source) -
> bool
</autodoc>
26117 <param name=
"source" type=
"r.q(const).wxString" default=
""/>
26120 <method name=
"LoadPage" overloaded=
"no">
26121 <autodoc>LoadPage(String location) -
> bool
</autodoc>
26123 <param name=
"location" type=
"r.q(const).wxString" default=
""/>
26126 <method name=
"LoadFile" overloaded=
"no">
26127 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
26129 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
26132 <method name=
"AppendToPage" overloaded=
"no">
26133 <autodoc>AppendToPage(String source) -
> bool
</autodoc>
26135 <param name=
"source" type=
"r.q(const).wxString" default=
""/>
26138 <method name=
"GetOpenedPage" overloaded=
"no">
26139 <autodoc>GetOpenedPage() -
> String
</autodoc>
26141 <method name=
"GetOpenedAnchor" overloaded=
"no">
26142 <autodoc>GetOpenedAnchor() -
> String
</autodoc>
26144 <method name=
"GetOpenedPageTitle" overloaded=
"no">
26145 <autodoc>GetOpenedPageTitle() -
> String
</autodoc>
26147 <method name=
"SetRelatedFrame" overloaded=
"no">
26148 <autodoc>SetRelatedFrame(Frame frame, String format)
</autodoc>
26150 <param name=
"frame" type=
"p.wxFrame" default=
""/>
26151 <param name=
"format" type=
"r.q(const).wxString" default=
""/>
26154 <method name=
"GetRelatedFrame" overloaded=
"no">
26155 <autodoc>GetRelatedFrame() -
> Frame
</autodoc>
26157 <method name=
"SetRelatedStatusBar" overloaded=
"no">
26158 <autodoc>SetRelatedStatusBar(int bar)
</autodoc>
26160 <param name=
"bar" type=
"int" default=
""/>
26163 <method name=
"SetFonts" overloaded=
"no">
26164 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
26166 <param name=
"normal_face" type=
"wxString" default=
""/>
26167 <param name=
"fixed_face" type=
"wxString" default=
""/>
26168 <param name=
"sizes" type=
"p.PyObject" default=
"NULL"/>
26171 <method name=
"SetTitle" overloaded=
"no">
26172 <autodoc>SetTitle(String title)
</autodoc>
26174 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
26177 <method name=
"SetBorders" overloaded=
"no">
26178 <autodoc>SetBorders(int b)
</autodoc>
26180 <param name=
"b" type=
"int" default=
""/>
26183 <method name=
"ReadCustomization" overloaded=
"no">
26184 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26186 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26187 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26190 <method name=
"WriteCustomization" overloaded=
"no">
26191 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26193 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26194 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26197 <method name=
"HistoryBack" overloaded=
"no">
26198 <autodoc>HistoryBack() -
> bool
</autodoc>
26200 <method name=
"HistoryForward" overloaded=
"no">
26201 <autodoc>HistoryForward() -
> bool
</autodoc>
26203 <method name=
"HistoryCanBack" overloaded=
"no">
26204 <autodoc>HistoryCanBack() -
> bool
</autodoc>
26206 <method name=
"HistoryCanForward" overloaded=
"no">
26207 <autodoc>HistoryCanForward() -
> bool
</autodoc>
26209 <method name=
"HistoryClear" overloaded=
"no">
26210 <autodoc>HistoryClear()
</autodoc>
26212 <method name=
"GetInternalRepresentation" overloaded=
"no">
26213 <autodoc>GetInternalRepresentation() -
> HtmlContainerCell
</autodoc>
26215 <method name=
"GetParser" overloaded=
"no">
26216 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
26218 <method name=
"ScrollToAnchor" overloaded=
"no">
26219 <autodoc>ScrollToAnchor(String anchor) -
> bool
</autodoc>
26221 <param name=
"anchor" type=
"r.q(const).wxString" default=
""/>
26224 <method name=
"HasAnchor" overloaded=
"no">
26225 <autodoc>HasAnchor(String anchor) -
> bool
</autodoc>
26227 <param name=
"anchor" type=
"r.q(const).wxString" default=
""/>
26230 <staticmethod name=
"AddFilter" overloaded=
"no">
26231 <autodoc>AddFilter(HtmlFilter filter)
</autodoc>
26233 <param name=
"filter" type=
"p.wxPyHtmlFilter" default=
""/>
26236 <method name=
"SelectWord" overloaded=
"no">
26237 <autodoc>SelectWord(Point pos)
</autodoc>
26239 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
26242 <method name=
"SelectLine" overloaded=
"no">
26243 <autodoc>SelectLine(Point pos)
</autodoc>
26245 <param name=
"pos" type=
"r.q(const).wxPoint" default=
""/>
26248 <method name=
"SelectAll" overloaded=
"no">
26249 <autodoc>SelectAll()
</autodoc>
26251 <method name=
"base_OnLinkClicked" overloaded=
"no">
26252 <autodoc>base_OnLinkClicked(HtmlLinkInfo link)
</autodoc>
26254 <param name=
"link" type=
"r.q(const).wxHtmlLinkInfo" default=
""/>
26257 <method name=
"base_OnSetTitle" overloaded=
"no">
26258 <autodoc>base_OnSetTitle(String title)
</autodoc>
26260 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
26263 <method name=
"base_OnCellMouseHover" overloaded=
"no">
26264 <autodoc>base_OnCellMouseHover(HtmlCell cell, int x, int y)
</autodoc>
26266 <param name=
"cell" type=
"p.wxHtmlCell" default=
""/>
26267 <param name=
"x" type=
"int" default=
""/>
26268 <param name=
"y" type=
"int" default=
""/>
26271 <method name=
"base_OnCellClicked" overloaded=
"no">
26272 <autodoc>base_OnCellClicked(HtmlCell cell, int x, int y, MouseEvent event)
</autodoc>
26274 <param name=
"cell" type=
"p.wxHtmlCell" default=
""/>
26275 <param name=
"x" type=
"int" default=
""/>
26276 <param name=
"y" type=
"int" default=
""/>
26277 <param name=
"event" type=
"r.q(const).wxMouseEvent" default=
""/>
26282 #---------------------------------------------------------------------------
26284 <class name=
"HtmlDCRenderer" oldname=
"wxHtmlDCRenderer" module=
"html">
26285 <baseclass name=
"wxObject"/>
26286 <constructor name=
"HtmlDCRenderer" overloaded=
"no">
26287 <autodoc>__init__() -
> HtmlDCRenderer
</autodoc>
26289 <destructor name=
"~wxHtmlDCRenderer">
26290 <autodoc>__del__()
</autodoc>
26292 <method name=
"SetDC" overloaded=
"no">
26293 <autodoc>SetDC(DC dc, int maxwidth)
</autodoc>
26295 <param name=
"dc" type=
"p.wxDC" default=
""/>
26296 <param name=
"maxwidth" type=
"int" default=
""/>
26299 <method name=
"SetSize" overloaded=
"no">
26300 <autodoc>SetSize(int width, int height)
</autodoc>
26302 <param name=
"width" type=
"int" default=
""/>
26303 <param name=
"height" type=
"int" default=
""/>
26306 <method name=
"SetHtmlText" overloaded=
"no">
26307 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
26309 <param name=
"html" type=
"r.q(const).wxString" default=
""/>
26310 <param name=
"basepath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26311 <param name=
"isdir" type=
"bool" default=
"True"/>
26314 <method name=
"SetFonts" overloaded=
"no">
26315 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
26317 <param name=
"normal_face" type=
"wxString" default=
""/>
26318 <param name=
"fixed_face" type=
"wxString" default=
""/>
26319 <param name=
"sizes" type=
"p.PyObject" default=
"NULL"/>
26322 <method name=
"Render" overloaded=
"no">
26323 <autodoc>Render(int x, int y, int from=
0, int dont_render=False, int to=INT_MAX,
26324 int choices=None, int LCOUNT=
0) -
> int
</autodoc>
26326 <param name=
"x" type=
"int" default=
""/>
26327 <param name=
"y" type=
"int" default=
""/>
26328 <param name=
"from" type=
"int" default=
"0"/>
26329 <param name=
"dont_render" type=
"int" default=
"False"/>
26330 <param name=
"to" type=
"int" default=
"INT_MAX"/>
26331 <param name=
"choices" type=
"p.int" default=
"NULL"/>
26332 <param name=
"LCOUNT" type=
"int" default=
"0"/>
26335 <method name=
"GetTotalHeight" overloaded=
"no">
26336 <autodoc>GetTotalHeight() -
> int
</autodoc>
26339 <class name=
"HtmlPrintout" oldname=
"wxHtmlPrintout" module=
"html">
26340 <baseclass name=
"wxPyPrintout"/>
26341 <constructor name=
"HtmlPrintout" overloaded=
"no">
26342 <autodoc>__init__(String title=HtmlPrintoutTitleStr) -
> HtmlPrintout
</autodoc>
26344 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyHtmlPrintoutTitleStr"/>
26347 <method name=
"SetHtmlText" overloaded=
"no">
26348 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
26350 <param name=
"html" type=
"r.q(const).wxString" default=
""/>
26351 <param name=
"basepath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26352 <param name=
"isdir" type=
"bool" default=
"True"/>
26355 <method name=
"SetHtmlFile" overloaded=
"no">
26356 <autodoc>SetHtmlFile(String htmlfile)
</autodoc>
26358 <param name=
"htmlfile" type=
"r.q(const).wxString" default=
""/>
26361 <method name=
"SetHeader" overloaded=
"no">
26362 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
26364 <param name=
"header" type=
"r.q(const).wxString" default=
""/>
26365 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
26368 <method name=
"SetFooter" overloaded=
"no">
26369 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
26371 <param name=
"footer" type=
"r.q(const).wxString" default=
""/>
26372 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
26375 <method name=
"SetFonts" overloaded=
"no">
26376 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
26378 <param name=
"normal_face" type=
"wxString" default=
""/>
26379 <param name=
"fixed_face" type=
"wxString" default=
""/>
26380 <param name=
"sizes" type=
"p.PyObject" default=
"NULL"/>
26383 <method name=
"SetMargins" overloaded=
"no">
26384 <autodoc>SetMargins(float top=
25.2, float bottom=
25.2, float left=
25.2,
26385 float right=
25.2, float spaces=
5)
</autodoc>
26387 <param name=
"top" type=
"float" default=
"25.2"/>
26388 <param name=
"bottom" type=
"float" default=
"25.2"/>
26389 <param name=
"left" type=
"float" default=
"25.2"/>
26390 <param name=
"right" type=
"float" default=
"25.2"/>
26391 <param name=
"spaces" type=
"float" default=
"5"/>
26394 <staticmethod name=
"AddFilter" overloaded=
"no">
26395 <autodoc>AddFilter(wxHtmlFilter filter)
</autodoc>
26397 <param name=
"filter" type=
"p.wxHtmlFilter" default=
""/>
26400 <staticmethod name=
"CleanUpStatics" overloaded=
"no">
26401 <autodoc>CleanUpStatics()
</autodoc>
26404 <class name=
"HtmlEasyPrinting" oldname=
"wxHtmlEasyPrinting" module=
"html">
26405 <baseclass name=
"wxObject"/>
26406 <constructor name=
"HtmlEasyPrinting" overloaded=
"no">
26407 <autodoc>__init__(String name=HtmlPrintingTitleStr, Window parentWindow=None) -
> HtmlEasyPrinting
</autodoc>
26409 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyHtmlPrintingTitleStr"/>
26410 <param name=
"parentWindow" type=
"p.wxWindow" default=
"NULL"/>
26413 <destructor name=
"~wxHtmlEasyPrinting">
26414 <autodoc>__del__()
</autodoc>
26416 <method name=
"PreviewFile" overloaded=
"no">
26417 <autodoc>PreviewFile(String htmlfile)
</autodoc>
26419 <param name=
"htmlfile" type=
"r.q(const).wxString" default=
""/>
26422 <method name=
"PreviewText" overloaded=
"no">
26423 <autodoc>PreviewText(String htmltext, String basepath=EmptyString)
</autodoc>
26425 <param name=
"htmltext" type=
"r.q(const).wxString" default=
""/>
26426 <param name=
"basepath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26429 <method name=
"PrintFile" overloaded=
"no">
26430 <autodoc>PrintFile(String htmlfile)
</autodoc>
26432 <param name=
"htmlfile" type=
"r.q(const).wxString" default=
""/>
26435 <method name=
"PrintText" overloaded=
"no">
26436 <autodoc>PrintText(String htmltext, String basepath=EmptyString)
</autodoc>
26438 <param name=
"htmltext" type=
"r.q(const).wxString" default=
""/>
26439 <param name=
"basepath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26442 <method name=
"PrinterSetup" overloaded=
"no">
26443 <autodoc>PrinterSetup()
</autodoc>
26445 <method name=
"PageSetup" overloaded=
"no">
26446 <autodoc>PageSetup()
</autodoc>
26448 <method name=
"SetHeader" overloaded=
"no">
26449 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
26451 <param name=
"header" type=
"r.q(const).wxString" default=
""/>
26452 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
26455 <method name=
"SetFooter" overloaded=
"no">
26456 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
26458 <param name=
"footer" type=
"r.q(const).wxString" default=
""/>
26459 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
26462 <method name=
"SetFonts" overloaded=
"no">
26463 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
26465 <param name=
"normal_face" type=
"wxString" default=
""/>
26466 <param name=
"fixed_face" type=
"wxString" default=
""/>
26467 <param name=
"sizes" type=
"p.PyObject" default=
"NULL"/>
26470 <method name=
"GetPrintData" overloaded=
"no">
26471 <autodoc>GetPrintData() -
> PrintData
</autodoc>
26473 <method name=
"GetPageSetupData" overloaded=
"no">
26474 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
26478 #---------------------------------------------------------------------------
26480 <class name=
"HtmlBookRecord" oldname=
"wxHtmlBookRecord" module=
"html">
26481 <constructor name=
"HtmlBookRecord" overloaded=
"no">
26482 <autodoc>__init__(String bookfile, String basepath, String title, String start) -
> HtmlBookRecord
</autodoc>
26484 <param name=
"bookfile" type=
"r.q(const).wxString" default=
""/>
26485 <param name=
"basepath" type=
"r.q(const).wxString" default=
""/>
26486 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
26487 <param name=
"start" type=
"r.q(const).wxString" default=
""/>
26490 <method name=
"GetBookFile" overloaded=
"no">
26491 <autodoc>GetBookFile() -
> String
</autodoc>
26493 <method name=
"GetTitle" overloaded=
"no">
26494 <autodoc>GetTitle() -
> String
</autodoc>
26496 <method name=
"GetStart" overloaded=
"no">
26497 <autodoc>GetStart() -
> String
</autodoc>
26499 <method name=
"GetBasePath" overloaded=
"no">
26500 <autodoc>GetBasePath() -
> String
</autodoc>
26502 <method name=
"SetContentsRange" overloaded=
"no">
26503 <autodoc>SetContentsRange(int start, int end)
</autodoc>
26505 <param name=
"start" type=
"int" default=
""/>
26506 <param name=
"end" type=
"int" default=
""/>
26509 <method name=
"GetContentsStart" overloaded=
"no">
26510 <autodoc>GetContentsStart() -
> int
</autodoc>
26512 <method name=
"GetContentsEnd" overloaded=
"no">
26513 <autodoc>GetContentsEnd() -
> int
</autodoc>
26515 <method name=
"SetTitle" overloaded=
"no">
26516 <autodoc>SetTitle(String title)
</autodoc>
26518 <param name=
"title" type=
"r.q(const).wxString" default=
""/>
26521 <method name=
"SetBasePath" overloaded=
"no">
26522 <autodoc>SetBasePath(String path)
</autodoc>
26524 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
26527 <method name=
"SetStart" overloaded=
"no">
26528 <autodoc>SetStart(String start)
</autodoc>
26530 <param name=
"start" type=
"r.q(const).wxString" default=
""/>
26533 <method name=
"GetFullPath" overloaded=
"no">
26534 <autodoc>GetFullPath(String page) -
> String
</autodoc>
26536 <param name=
"page" type=
"r.q(const).wxString" default=
""/>
26540 <class name=
"HtmlContentsItem" oldname=
"wxHtmlContentsItem" module=
"html">
26541 <method name=
"GetLevel" overloaded=
"no">
26542 <autodoc>GetLevel() -
> int
</autodoc>
26544 <method name=
"GetID" overloaded=
"no">
26545 <autodoc>GetID() -
> int
</autodoc>
26547 <method name=
"GetName" overloaded=
"no">
26548 <autodoc>GetName() -
> String
</autodoc>
26550 <method name=
"GetPage" overloaded=
"no">
26551 <autodoc>GetPage() -
> String
</autodoc>
26553 <method name=
"GetBook" overloaded=
"no">
26554 <autodoc>GetBook() -
> HtmlBookRecord
</autodoc>
26557 <class name=
"HtmlSearchStatus" oldname=
"wxHtmlSearchStatus" module=
"html">
26558 <method name=
"Search" overloaded=
"no">
26559 <autodoc>Search() -
> bool
</autodoc>
26561 <method name=
"IsActive" overloaded=
"no">
26562 <autodoc>IsActive() -
> bool
</autodoc>
26564 <method name=
"GetCurIndex" overloaded=
"no">
26565 <autodoc>GetCurIndex() -
> int
</autodoc>
26567 <method name=
"GetMaxIndex" overloaded=
"no">
26568 <autodoc>GetMaxIndex() -
> int
</autodoc>
26570 <method name=
"GetName" overloaded=
"no">
26571 <autodoc>GetName() -
> String
</autodoc>
26573 <method name=
"GetContentsItem" overloaded=
"no">
26574 <autodoc>GetContentsItem() -
> HtmlContentsItem
</autodoc>
26577 <class name=
"HtmlHelpData" oldname=
"wxHtmlHelpData" module=
"html">
26578 <constructor name=
"HtmlHelpData" overloaded=
"no">
26579 <autodoc>__init__() -
> HtmlHelpData
</autodoc>
26581 <destructor name=
"~wxHtmlHelpData">
26582 <autodoc>__del__()
</autodoc>
26584 <method name=
"SetTempDir" overloaded=
"no">
26585 <autodoc>SetTempDir(String path)
</autodoc>
26587 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
26590 <method name=
"AddBook" overloaded=
"no">
26591 <autodoc>AddBook(String book) -
> bool
</autodoc>
26593 <param name=
"book" type=
"r.q(const).wxString" default=
""/>
26596 <method name=
"FindPageByName" overloaded=
"no">
26597 <autodoc>FindPageByName(String page) -
> String
</autodoc>
26599 <param name=
"page" type=
"r.q(const).wxString" default=
""/>
26602 <method name=
"FindPageById" overloaded=
"no">
26603 <autodoc>FindPageById(int id) -
> String
</autodoc>
26605 <param name=
"id" type=
"int" default=
""/>
26608 <method name=
"GetBookRecArray" overloaded=
"no">
26609 <autodoc>GetBookRecArray() -
> wxHtmlBookRecArray
</autodoc>
26611 <method name=
"GetContents" overloaded=
"no">
26612 <autodoc>GetContents() -
> HtmlContentsItem
</autodoc>
26614 <method name=
"GetContentsCnt" overloaded=
"no">
26615 <autodoc>GetContentsCnt() -
> int
</autodoc>
26617 <method name=
"GetIndex" overloaded=
"no">
26618 <autodoc>GetIndex() -
> HtmlContentsItem
</autodoc>
26620 <method name=
"GetIndexCnt" overloaded=
"no">
26621 <autodoc>GetIndexCnt() -
> int
</autodoc>
26624 <class name=
"HtmlHelpFrame" oldname=
"wxHtmlHelpFrame" module=
"html">
26625 <baseclass name=
"wxFrame"/>
26626 <constructor name=
"HtmlHelpFrame" overloaded=
"no">
26627 <autodoc>__init__(Window parent, int ??, String title=EmptyString, int style=HF_DEFAULTSTYLE,
26628 HtmlHelpData data=None) -
> HtmlHelpFrame
</autodoc>
26630 <param name=
"parent" type=
"p.wxWindow" default=
""/>
26631 <param name=
"" type=
"int" default=
""/>
26632 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26633 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
26634 <param name=
"data" type=
"p.wxHtmlHelpData" default=
"NULL"/>
26637 <method name=
"GetData" overloaded=
"no">
26638 <autodoc>GetData() -
> HtmlHelpData
</autodoc>
26640 <method name=
"SetTitleFormat" overloaded=
"no">
26641 <autodoc>SetTitleFormat(String format)
</autodoc>
26643 <param name=
"format" type=
"r.q(const).wxString" default=
""/>
26646 <method name=
"Display" overloaded=
"no">
26647 <autodoc>Display(String x)
</autodoc>
26649 <param name=
"x" type=
"r.q(const).wxString" default=
""/>
26652 <method name=
"DisplayID" overloaded=
"no">
26653 <autodoc>DisplayID(int id)
</autodoc>
26655 <param name=
"id" type=
"int" default=
""/>
26658 <method name=
"DisplayContents" overloaded=
"no">
26659 <autodoc>DisplayContents()
</autodoc>
26661 <method name=
"DisplayIndex" overloaded=
"no">
26662 <autodoc>DisplayIndex()
</autodoc>
26664 <method name=
"KeywordSearch" overloaded=
"no">
26665 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
26667 <param name=
"keyword" type=
"r.q(const).wxString" default=
""/>
26670 <method name=
"UseConfig" overloaded=
"no">
26671 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
26673 <param name=
"config" type=
"p.wxConfigBase" default=
""/>
26674 <param name=
"rootpath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26677 <method name=
"ReadCustomization" overloaded=
"no">
26678 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26680 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26681 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26684 <method name=
"WriteCustomization" overloaded=
"no">
26685 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26687 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26688 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26692 <class name=
"HtmlHelpController" oldname=
"wxHtmlHelpController" module=
"html">
26693 <baseclass name=
"wxEvtHandler"/>
26694 <constructor name=
"HtmlHelpController" overloaded=
"no">
26695 <autodoc>__init__(int style=HF_DEFAULTSTYLE) -
> HtmlHelpController
</autodoc>
26697 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
26700 <destructor name=
"~wxHtmlHelpController">
26701 <autodoc>__del__()
</autodoc>
26703 <method name=
"SetTitleFormat" overloaded=
"no">
26704 <autodoc>SetTitleFormat(String format)
</autodoc>
26706 <param name=
"format" type=
"r.q(const).wxString" default=
""/>
26709 <method name=
"SetTempDir" overloaded=
"no">
26710 <autodoc>SetTempDir(String path)
</autodoc>
26712 <param name=
"path" type=
"r.q(const).wxString" default=
""/>
26715 <method name=
"AddBook" overloaded=
"no">
26716 <autodoc>AddBook(String book, int show_wait_msg=False) -
> bool
</autodoc>
26718 <param name=
"book" type=
"r.q(const).wxString" default=
""/>
26719 <param name=
"show_wait_msg" type=
"int" default=
"False"/>
26722 <method name=
"Display" overloaded=
"no">
26723 <autodoc>Display(String x)
</autodoc>
26725 <param name=
"x" type=
"r.q(const).wxString" default=
""/>
26728 <method name=
"DisplayID" overloaded=
"no">
26729 <autodoc>DisplayID(int id)
</autodoc>
26731 <param name=
"id" type=
"int" default=
""/>
26734 <method name=
"DisplayContents" overloaded=
"no">
26735 <autodoc>DisplayContents()
</autodoc>
26737 <method name=
"DisplayIndex" overloaded=
"no">
26738 <autodoc>DisplayIndex()
</autodoc>
26740 <method name=
"KeywordSearch" overloaded=
"no">
26741 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
26743 <param name=
"keyword" type=
"r.q(const).wxString" default=
""/>
26746 <method name=
"UseConfig" overloaded=
"no">
26747 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
26749 <param name=
"config" type=
"p.wxConfigBase" default=
""/>
26750 <param name=
"rootpath" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26753 <method name=
"ReadCustomization" overloaded=
"no">
26754 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26756 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26757 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26760 <method name=
"WriteCustomization" overloaded=
"no">
26761 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
26763 <param name=
"cfg" type=
"p.wxConfigBase" default=
""/>
26764 <param name=
"path" type=
"wxString" default=
"wxPyEmptyString"/>
26767 <method name=
"GetFrame" overloaded=
"no">
26768 <autodoc>GetFrame() -
> HtmlHelpFrame
</autodoc>
26772 <module name=
"wizard">
26773 <pythoncode> wx = core
</pythoncode>
26775 EVT_WIZARD_PAGE_CHANGED = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED,
1)
26776 EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING,
1)
26777 EVT_WIZARD_CANCEL = wx.PyEventBinder( wxEVT_WIZARD_CANCEL,
1)
26778 EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP,
1)
26779 EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED,
1)
26781 <class name=
"WizardEvent" oldname=
"wxWizardEvent" module=
"wizard">
26782 <baseclass name=
"wxNotifyEvent"/>
26783 <constructor name=
"WizardEvent" overloaded=
"no">
26784 <autodoc>__init__(wxEventType type=wxEVT_NULL, int id=-
1, bool direction=True,
26785 WizardPage page=None) -
> WizardEvent
</autodoc>
26787 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
26788 <param name=
"id" type=
"int" default=
"-1"/>
26789 <param name=
"direction" type=
"bool" default=
"True"/>
26790 <param name=
"page" type=
"p.wxWizardPage" default=
"NULL"/>
26793 <method name=
"GetDirection" overloaded=
"no">
26794 <autodoc>GetDirection() -
> bool
</autodoc>
26796 <method name=
"GetPage" overloaded=
"no">
26797 <autodoc>GetPage() -
> WizardPage
</autodoc>
26800 <class name=
"WizardPage" oldname=
"wxWizardPage" module=
"wizard">
26801 <baseclass name=
"wxPanel"/>
26802 <method name=
"Create" overloaded=
"no">
26803 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
26805 <param name=
"parent" type=
"p.wxWizard" default=
""/>
26806 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
26807 <param name=
"resource" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26810 <method name=
"GetPrev" overloaded=
"no">
26811 <autodoc>GetPrev() -
> WizardPage
</autodoc>
26813 <method name=
"GetNext" overloaded=
"no">
26814 <autodoc>GetNext() -
> WizardPage
</autodoc>
26816 <method name=
"GetBitmap" overloaded=
"no">
26817 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
26820 <class name=
"PyWizardPage" oldname=
"wxPyWizardPage" module=
"wizard">
26821 <baseclass name=
"wxWizardPage"/>
26822 <constructor name=
"PyWizardPage" overloaded=
"no">
26823 <autodoc>__init__(Wizard parent, Bitmap bitmap=
&wxNullBitmap, String resource=
&wxPyEmptyString) -
> PyWizardPage
</autodoc>
26825 <param name=
"parent" type=
"p.wxWizard" default=
""/>
26826 <param name=
"bitmap" type=
"p.q(const).wxBitmap" default=
"&wxNullBitmap"/>
26827 <param name=
"resource" type=
"p.q(const).wxString" default=
"&wxPyEmptyString"/>
26830 <constructor name=
"PrePyWizardPage" overloaded=
"no">
26831 <autodoc>PrePyWizardPage() -
> PyWizardPage
</autodoc>
26833 <method name=
"Create" overloaded=
"no">
26834 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
26836 <param name=
"parent" type=
"p.wxWizard" default=
""/>
26837 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
26838 <param name=
"resource" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26841 <method name=
"_setCallbackInfo" overloaded=
"no">
26842 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
26844 <param name=
"self" type=
"p.PyObject" default=
""/>
26845 <param name=
"_class" type=
"p.PyObject" default=
""/>
26848 <method name=
"base_DoMoveWindow" overloaded=
"no">
26849 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
26851 <param name=
"x" type=
"int" default=
""/>
26852 <param name=
"y" type=
"int" default=
""/>
26853 <param name=
"width" type=
"int" default=
""/>
26854 <param name=
"height" type=
"int" default=
""/>
26857 <method name=
"base_DoSetSize" overloaded=
"no">
26858 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
26860 <param name=
"x" type=
"int" default=
""/>
26861 <param name=
"y" type=
"int" default=
""/>
26862 <param name=
"width" type=
"int" default=
""/>
26863 <param name=
"height" type=
"int" default=
""/>
26864 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
26867 <method name=
"base_DoSetClientSize" overloaded=
"no">
26868 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
26870 <param name=
"width" type=
"int" default=
""/>
26871 <param name=
"height" type=
"int" default=
""/>
26874 <method name=
"base_DoSetVirtualSize" overloaded=
"no">
26875 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
26877 <param name=
"x" type=
"int" default=
""/>
26878 <param name=
"y" type=
"int" default=
""/>
26881 <method name=
"base_DoGetSize" overloaded=
"no">
26882 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
26884 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26885 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26888 <method name=
"base_DoGetClientSize" overloaded=
"no">
26889 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
26891 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26892 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26895 <method name=
"base_DoGetPosition" overloaded=
"no">
26896 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
26898 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26899 <param name=
"OUTPUT" type=
"p.int" default=
""/>
26902 <method name=
"base_DoGetVirtualSize" overloaded=
"no">
26903 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
26905 <method name=
"base_DoGetBestSize" overloaded=
"no">
26906 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
26908 <method name=
"base_InitDialog" overloaded=
"no">
26909 <autodoc>base_InitDialog()
</autodoc>
26911 <method name=
"base_TransferDataToWindow" overloaded=
"no">
26912 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
26914 <method name=
"base_TransferDataFromWindow" overloaded=
"no">
26915 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
26917 <method name=
"base_Validate" overloaded=
"no">
26918 <autodoc>base_Validate() -
> bool
</autodoc>
26920 <method name=
"base_AcceptsFocus" overloaded=
"no">
26921 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
26923 <method name=
"base_AcceptsFocusFromKeyboard" overloaded=
"no">
26924 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
26926 <method name=
"base_GetMaxSize" overloaded=
"no">
26927 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
26929 <method name=
"base_AddChild" overloaded=
"no">
26930 <autodoc>base_AddChild(Window child)
</autodoc>
26932 <param name=
"child" type=
"p.wxWindow" default=
""/>
26935 <method name=
"base_RemoveChild" overloaded=
"no">
26936 <autodoc>base_RemoveChild(Window child)
</autodoc>
26938 <param name=
"child" type=
"p.wxWindow" default=
""/>
26942 <class name=
"WizardPageSimple" oldname=
"wxWizardPageSimple" module=
"wizard">
26943 <baseclass name=
"wxWizardPage"/>
26944 <constructor name=
"WizardPageSimple" overloaded=
"no">
26945 <autodoc>__init__(Wizard parent, WizardPage prev=None, WizardPage next=None,
26946 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> WizardPageSimple
</autodoc>
26948 <param name=
"parent" type=
"p.wxWizard" default=
""/>
26949 <param name=
"prev" type=
"p.wxWizardPage" default=
"NULL"/>
26950 <param name=
"next" type=
"p.wxWizardPage" default=
"NULL"/>
26951 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
26952 <param name=
"resource" type=
"p.q(const).wxChar" default=
"NULL"/>
26955 <constructor name=
"PreWizardPageSimple" overloaded=
"no">
26956 <autodoc>PreWizardPageSimple() -
> WizardPageSimple
</autodoc>
26958 <method name=
"Create" overloaded=
"no">
26959 <autodoc>Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None,
26960 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> bool
</autodoc>
26962 <param name=
"parent" type=
"p.wxWizard" default=
"NULL"/>
26963 <param name=
"prev" type=
"p.wxWizardPage" default=
"NULL"/>
26964 <param name=
"next" type=
"p.wxWizardPage" default=
"NULL"/>
26965 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
26966 <param name=
"resource" type=
"p.q(const).wxChar" default=
"NULL"/>
26969 <method name=
"SetPrev" overloaded=
"no">
26970 <autodoc>SetPrev(WizardPage prev)
</autodoc>
26972 <param name=
"prev" type=
"p.wxWizardPage" default=
""/>
26975 <method name=
"SetNext" overloaded=
"no">
26976 <autodoc>SetNext(WizardPage next)
</autodoc>
26978 <param name=
"next" type=
"p.wxWizardPage" default=
""/>
26981 <staticmethod name=
"Chain" overloaded=
"no">
26982 <autodoc>Chain(WizardPageSimple first, WizardPageSimple second)
</autodoc>
26984 <param name=
"first" type=
"p.wxWizardPageSimple" default=
""/>
26985 <param name=
"second" type=
"p.wxWizardPageSimple" default=
""/>
26989 <class name=
"Wizard" oldname=
"wxWizard" module=
"wizard">
26990 <baseclass name=
"wxDialog"/>
26991 <constructor name=
"Wizard" overloaded=
"no">
26992 <autodoc>__init__(Window parent, int id=-
1, String title=EmptyString,
26993 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition,
26994 long style=DEFAULT_DIALOG_STYLE) -
> Wizard
</autodoc>
26996 <param name=
"parent" type=
"p.wxWindow" default=
""/>
26997 <param name=
"id" type=
"int" default=
"-1"/>
26998 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
26999 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
27000 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
27001 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
27004 <constructor name=
"PreWizard" overloaded=
"no">
27005 <autodoc>PreWizard() -
> Wizard
</autodoc>
27007 <method name=
"Create" overloaded=
"no">
27008 <autodoc>Create(Window parent, int id=-
1, String title=EmptyString,
27009 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -
> bool
</autodoc>
27011 <param name=
"parent" type=
"p.wxWindow" default=
""/>
27012 <param name=
"id" type=
"int" default=
"-1"/>
27013 <param name=
"title" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
27014 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
"wxNullBitmap"/>
27015 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
27018 <method name=
"Init" overloaded=
"no">
27019 <autodoc>Init()
</autodoc>
27021 <method name=
"RunWizard" overloaded=
"no">
27022 <autodoc>RunWizard(WizardPage firstPage) -
> bool
</autodoc>
27024 <param name=
"firstPage" type=
"p.wxWizardPage" default=
""/>
27027 <method name=
"GetCurrentPage" overloaded=
"no">
27028 <autodoc>GetCurrentPage() -
> WizardPage
</autodoc>
27030 <method name=
"SetPageSize" overloaded=
"no">
27031 <autodoc>SetPageSize(Size size)
</autodoc>
27033 <param name=
"size" type=
"r.q(const).wxSize" default=
""/>
27036 <method name=
"GetPageSize" overloaded=
"no">
27037 <autodoc>GetPageSize() -
> Size
</autodoc>
27039 <method name=
"FitToPage" overloaded=
"no">
27040 <autodoc>FitToPage(WizardPage firstPage)
</autodoc>
27042 <param name=
"firstPage" type=
"p.q(const).wxWizardPage" default=
""/>
27045 <method name=
"GetPageAreaSizer" overloaded=
"no">
27046 <autodoc>GetPageAreaSizer() -
> Sizer
</autodoc>
27048 <method name=
"SetBorder" overloaded=
"no">
27049 <autodoc>SetBorder(int border)
</autodoc>
27051 <param name=
"border" type=
"int" default=
""/>
27054 <method name=
"IsRunning" overloaded=
"no">
27055 <autodoc>IsRunning() -
> bool
</autodoc>
27057 <method name=
"ShowPage" overloaded=
"no">
27058 <autodoc>ShowPage(WizardPage page, bool goingForward=True) -
> bool
</autodoc>
27060 <param name=
"page" type=
"p.wxWizardPage" default=
""/>
27061 <param name=
"goingForward" type=
"bool" default=
"True"/>
27064 <method name=
"HasNextPage" overloaded=
"no">
27065 <autodoc>HasNextPage(WizardPage page) -
> bool
</autodoc>
27067 <param name=
"page" type=
"p.wxWizardPage" default=
""/>
27070 <method name=
"HasPrevPage" overloaded=
"no">
27071 <autodoc>HasPrevPage(WizardPage page) -
> bool
</autodoc>
27073 <param name=
"page" type=
"p.wxWizardPage" default=
""/>
27078 <module name=
"glcanvas">
27079 <pythoncode> wx = core
</pythoncode>
27080 <class name=
"GLContext" oldname=
"wxGLContext" module=
"glcanvas">
27081 <baseclass name=
"wxObject"/>
27082 <constructor name=
"GLContext" overloaded=
"no">
27083 <autodoc>__init__(bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette,
27084 GLContext other=None) -
> GLContext
</autodoc>
27086 <param name=
"isRGB" type=
"bool" default=
""/>
27087 <param name=
"win" type=
"p.wxGLCanvas" default=
""/>
27088 <param name=
"palette" type=
"r.q(const).wxPalette" default=
"wxNullPalette"/>
27089 <param name=
"other" type=
"p.q(const).wxGLContext" default=
"NULL"/>
27092 <destructor name=
"~wxGLContext">
27093 <autodoc>__del__()
</autodoc>
27095 <method name=
"SetCurrent" overloaded=
"no">
27096 <autodoc>SetCurrent()
</autodoc>
27098 <method name=
"SetColour" overloaded=
"no">
27099 <autodoc>SetColour(String colour)
</autodoc>
27101 <param name=
"colour" type=
"r.q(const).wxString" default=
""/>
27104 <method name=
"SwapBuffers" overloaded=
"no">
27105 <autodoc>SwapBuffers()
</autodoc>
27107 <method name=
"SetupPixelFormat" overloaded=
"no">
27108 <autodoc>SetupPixelFormat()
</autodoc>
27110 <method name=
"SetupPalette" overloaded=
"no">
27111 <autodoc>SetupPalette(wxPalette palette)
</autodoc>
27113 <param name=
"palette" type=
"r.q(const).wxPalette" default=
""/>
27116 <method name=
"CreateDefaultPalette" overloaded=
"no">
27117 <autodoc>CreateDefaultPalette() -
> wxPalette
</autodoc>
27119 <method name=
"GetPalette" overloaded=
"no">
27120 <autodoc>GetPalette() -
> wxPalette
</autodoc>
27122 <method name=
"GetWindow" overloaded=
"no">
27123 <autodoc>GetWindow() -
> Window
</autodoc>
27126 <class name=
"GLCanvas" oldname=
"wxGLCanvas" module=
"glcanvas">
27127 <baseclass name=
"wxWindow"/>
27128 <constructor name=
"GLCanvas" overloaded=
"no">
27129 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
27130 Size size=DefaultSize, long style=
0, String name=GLCanvasNameStr,
27131 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
27133 <param name=
"parent" type=
"p.wxWindow" default=
""/>
27134 <param name=
"id" type=
"int" default=
"-1"/>
27135 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
27136 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
27137 <param name=
"style" type=
"long" default=
"0"/>
27138 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyGLCanvasNameStr"/>
27139 <param name=
"attribList" type=
"p.int" default=
"NULL"/>
27140 <param name=
"palette" type=
"r.q(const).wxPalette" default=
"wxNullPalette"/>
27143 <constructor name=
"GLCanvasWithContext" overloaded=
"no">
27144 <autodoc>GLCanvasWithContext(Window parent, GLContext shared=None, int id=-
1, Point pos=DefaultPosition,
27145 Size size=DefaultSize,
27146 long style=
0, String name=GLCanvasNameStr,
27147 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
27149 <param name=
"parent" type=
"p.wxWindow" default=
""/>
27150 <param name=
"shared" type=
"p.q(const).wxGLContext" default=
"NULL"/>
27151 <param name=
"id" type=
"int" default=
"-1"/>
27152 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
27153 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
27154 <param name=
"style" type=
"long" default=
"0"/>
27155 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyGLCanvasNameStr"/>
27156 <param name=
"attribList" type=
"p.int" default=
"NULL"/>
27157 <param name=
"palette" type=
"r.q(const).wxPalette" default=
"wxNullPalette"/>
27160 <method name=
"SetCurrent" overloaded=
"no">
27161 <autodoc>SetCurrent()
</autodoc>
27163 <method name=
"SetColour" overloaded=
"no">
27164 <autodoc>SetColour(String colour)
</autodoc>
27166 <param name=
"colour" type=
"r.q(const).wxString" default=
""/>
27169 <method name=
"SwapBuffers" overloaded=
"no">
27170 <autodoc>SwapBuffers()
</autodoc>
27172 <method name=
"GetContext" overloaded=
"no">
27173 <autodoc>GetContext() -
> GLContext
</autodoc>
27177 <module name=
"ogl">
27178 <pythoncode> wx = core
</pythoncode>
27180 #---------------------------------------------------------------------------
27182 <class name=
"ShapeRegion" oldname=
"wxShapeRegion" module=
"ogl">
27183 <baseclass name=
"wxObject"/>
27184 <constructor name=
"ShapeRegion" overloaded=
"no">
27185 <autodoc>__init__() -
> ShapeRegion
</autodoc>
27187 <method name=
"SetText" overloaded=
"no">
27188 <autodoc>SetText(String s)
</autodoc>
27190 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
27193 <method name=
"SetFont" overloaded=
"no">
27194 <autodoc>SetFont(Font f)
</autodoc>
27196 <param name=
"f" type=
"p.wxFont" default=
""/>
27199 <method name=
"SetMinSize" overloaded=
"no">
27200 <autodoc>SetMinSize(double w, double h)
</autodoc>
27202 <param name=
"w" type=
"double" default=
""/>
27203 <param name=
"h" type=
"double" default=
""/>
27206 <method name=
"SetSize" overloaded=
"no">
27207 <autodoc>SetSize(double w, double h)
</autodoc>
27209 <param name=
"w" type=
"double" default=
""/>
27210 <param name=
"h" type=
"double" default=
""/>
27213 <method name=
"SetPosition" overloaded=
"no">
27214 <autodoc>SetPosition(double x, double y)
</autodoc>
27216 <param name=
"x" type=
"double" default=
""/>
27217 <param name=
"y" type=
"double" default=
""/>
27220 <method name=
"SetProportions" overloaded=
"no">
27221 <autodoc>SetProportions(double x, double y)
</autodoc>
27223 <param name=
"x" type=
"double" default=
""/>
27224 <param name=
"y" type=
"double" default=
""/>
27227 <method name=
"SetFormatMode" overloaded=
"no">
27228 <autodoc>SetFormatMode(int mode)
</autodoc>
27230 <param name=
"mode" type=
"int" default=
""/>
27233 <method name=
"SetName" overloaded=
"no">
27234 <autodoc>SetName(String s)
</autodoc>
27236 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
27239 <method name=
"SetColour" overloaded=
"no">
27240 <autodoc>SetColour(String col)
</autodoc>
27242 <param name=
"col" type=
"r.q(const).wxString" default=
""/>
27245 <method name=
"GetText" overloaded=
"no">
27246 <autodoc>GetText() -
> String
</autodoc>
27248 <method name=
"GetFont" overloaded=
"no">
27249 <autodoc>GetFont() -
> Font
</autodoc>
27251 <method name=
"GetMinSize" overloaded=
"no">
27252 <autodoc>GetMinSize(double OUTPUT, double OUTPUT)
</autodoc>
27254 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27255 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27258 <method name=
"GetProportion" overloaded=
"no">
27259 <autodoc>GetProportion(double OUTPUT, double OUTPUT)
</autodoc>
27261 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27262 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27265 <method name=
"GetSize" overloaded=
"no">
27266 <autodoc>GetSize(double OUTPUT, double OUTPUT)
</autodoc>
27268 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27269 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27272 <method name=
"GetPosition" overloaded=
"no">
27273 <autodoc>GetPosition(double OUTPUT, double OUTPUT)
</autodoc>
27275 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27276 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27279 <method name=
"GetFormatMode" overloaded=
"no">
27280 <autodoc>GetFormatMode() -
> int
</autodoc>
27282 <method name=
"GetName" overloaded=
"no">
27283 <autodoc>GetName() -
> String
</autodoc>
27285 <method name=
"GetColour" overloaded=
"no">
27286 <autodoc>GetColour() -
> String
</autodoc>
27288 <method name=
"GetActualColourObject" overloaded=
"no">
27289 <autodoc>GetActualColourObject() -
> Colour
</autodoc>
27291 <method name=
"GetFormattedText" overloaded=
"no">
27292 <autodoc>GetFormattedText() -
> wxList
</autodoc>
27294 <method name=
"GetPenColour" overloaded=
"no">
27295 <autodoc>GetPenColour() -
> String
</autodoc>
27297 <method name=
"GetPenStyle" overloaded=
"no">
27298 <autodoc>GetPenStyle() -
> int
</autodoc>
27300 <method name=
"SetPenStyle" overloaded=
"no">
27301 <autodoc>SetPenStyle(int style)
</autodoc>
27303 <param name=
"style" type=
"int" default=
""/>
27306 <method name=
"SetPenColour" overloaded=
"no">
27307 <autodoc>SetPenColour(String col)
</autodoc>
27309 <param name=
"col" type=
"r.q(const).wxString" default=
""/>
27312 <method name=
"GetActualPen" overloaded=
"no">
27313 <autodoc>GetActualPen() -
> wxPen
</autodoc>
27315 <method name=
"GetWidth" overloaded=
"no">
27316 <autodoc>GetWidth() -
> double
</autodoc>
27318 <method name=
"GetHeight" overloaded=
"no">
27319 <autodoc>GetHeight() -
> double
</autodoc>
27321 <method name=
"ClearText" overloaded=
"no">
27322 <autodoc>ClearText()
</autodoc>
27325 <class name=
"AttachmentPoint" oldname=
"wxAttachmentPoint" module=
"ogl">
27326 <baseclass name=
"wxObject"/>
27327 <constructor name=
"AttachmentPoint" overloaded=
"no">
27328 <autodoc>__init__(int id=
0, double x=
0.0, double y=
0.0) -
> AttachmentPoint
</autodoc>
27330 <param name=
"id" type=
"int" default=
"0"/>
27331 <param name=
"x" type=
"double" default=
"0.0"/>
27332 <param name=
"y" type=
"double" default=
"0.0"/>
27335 <property name=
"m_id" type=
"int" readonly=
"no"/>
27336 <property name=
"m_x" type=
"double" readonly=
"no"/>
27337 <property name=
"m_y" type=
"double" readonly=
"no"/>
27339 <class name=
"PyShapeEvtHandler" oldname=
"wxPyShapeEvtHandler" module=
"ogl">
27340 <baseclass name=
"wxObject"/>
27341 <constructor name=
"PyShapeEvtHandler" overloaded=
"no">
27342 <autodoc>__init__(PyShapeEvtHandler prev=None, PyShape shape=None) -
> PyShapeEvtHandler
</autodoc>
27344 <param name=
"prev" type=
"p.wxPyShapeEvtHandler" default=
"NULL"/>
27345 <param name=
"shape" type=
"p.wxPyShape" default=
"NULL"/>
27348 <method name=
"_setCallbackInfo" overloaded=
"no">
27349 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27351 <param name=
"self" type=
"p.PyObject" default=
""/>
27352 <param name=
"_class" type=
"p.PyObject" default=
""/>
27355 <method name=
"_setOORInfo" overloaded=
"no">
27356 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
27358 <param name=
"_self" type=
"p.PyObject" default=
""/>
27362 def _setOORandCallbackInfo(self, _class):
27363 self._setOORInfo(self)
27364 self._setCallbackInfo(self, _class)
27366 <method name=
"SetShape" overloaded=
"no">
27367 <autodoc>SetShape(PyShape sh)
</autodoc>
27369 <param name=
"sh" type=
"p.wxPyShape" default=
""/>
27372 <method name=
"GetShape" overloaded=
"no">
27373 <autodoc>GetShape() -
> PyShape
</autodoc>
27375 <method name=
"SetPreviousHandler" overloaded=
"no">
27376 <autodoc>SetPreviousHandler(PyShapeEvtHandler handler)
</autodoc>
27378 <param name=
"handler" type=
"p.wxPyShapeEvtHandler" default=
""/>
27381 <method name=
"GetPreviousHandler" overloaded=
"no">
27382 <autodoc>GetPreviousHandler() -
> PyShapeEvtHandler
</autodoc>
27384 <method name=
"CreateNewCopy" overloaded=
"no">
27385 <autodoc>CreateNewCopy() -
> PyShapeEvtHandler
</autodoc>
27387 <method name=
"base_OnDelete" overloaded=
"no">
27388 <autodoc>base_OnDelete()
</autodoc>
27390 <method name=
"base_OnDraw" overloaded=
"no">
27391 <autodoc>base_OnDraw(DC dc)
</autodoc>
27393 <param name=
"dc" type=
"r.wxDC" default=
""/>
27396 <method name=
"base_OnDrawContents" overloaded=
"no">
27397 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
27399 <param name=
"dc" type=
"r.wxDC" default=
""/>
27402 <method name=
"base_OnDrawBranches" overloaded=
"no">
27403 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
27405 <param name=
"dc" type=
"r.wxDC" default=
""/>
27406 <param name=
"erase" type=
"bool" default=
"False"/>
27409 <method name=
"base_OnMoveLinks" overloaded=
"no">
27410 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
27412 <param name=
"dc" type=
"r.wxDC" default=
""/>
27415 <method name=
"base_OnErase" overloaded=
"no">
27416 <autodoc>base_OnErase(DC dc)
</autodoc>
27418 <param name=
"dc" type=
"r.wxDC" default=
""/>
27421 <method name=
"base_OnEraseContents" overloaded=
"no">
27422 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
27424 <param name=
"dc" type=
"r.wxDC" default=
""/>
27427 <method name=
"base_OnHighlight" overloaded=
"no">
27428 <autodoc>base_OnHighlight(DC dc)
</autodoc>
27430 <param name=
"dc" type=
"r.wxDC" default=
""/>
27433 <method name=
"base_OnLeftClick" overloaded=
"no">
27434 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27436 <param name=
"x" type=
"double" default=
""/>
27437 <param name=
"y" type=
"double" default=
""/>
27438 <param name=
"keys" type=
"int" default=
"0"/>
27439 <param name=
"attachment" type=
"int" default=
"0"/>
27442 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
27443 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27445 <param name=
"x" type=
"double" default=
""/>
27446 <param name=
"y" type=
"double" default=
""/>
27447 <param name=
"keys" type=
"int" default=
"0"/>
27448 <param name=
"attachment" type=
"int" default=
"0"/>
27451 <method name=
"base_OnRightClick" overloaded=
"no">
27452 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27454 <param name=
"x" type=
"double" default=
""/>
27455 <param name=
"y" type=
"double" default=
""/>
27456 <param name=
"keys" type=
"int" default=
"0"/>
27457 <param name=
"attachment" type=
"int" default=
"0"/>
27460 <method name=
"base_OnSize" overloaded=
"no">
27461 <autodoc>base_OnSize(double x, double y)
</autodoc>
27463 <param name=
"x" type=
"double" default=
""/>
27464 <param name=
"y" type=
"double" default=
""/>
27467 <method name=
"base_OnMovePre" overloaded=
"no">
27468 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
27469 bool display=True) -
> bool
</autodoc>
27471 <param name=
"dc" type=
"r.wxDC" default=
""/>
27472 <param name=
"x" type=
"double" default=
""/>
27473 <param name=
"y" type=
"double" default=
""/>
27474 <param name=
"old_x" type=
"double" default=
""/>
27475 <param name=
"old_y" type=
"double" default=
""/>
27476 <param name=
"display" type=
"bool" default=
"True"/>
27479 <method name=
"base_OnMovePost" overloaded=
"no">
27480 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
27481 bool display=True)
</autodoc>
27483 <param name=
"dc" type=
"r.wxDC" default=
""/>
27484 <param name=
"x" type=
"double" default=
""/>
27485 <param name=
"y" type=
"double" default=
""/>
27486 <param name=
"old_x" type=
"double" default=
""/>
27487 <param name=
"old_y" type=
"double" default=
""/>
27488 <param name=
"display" type=
"bool" default=
"True"/>
27491 <method name=
"base_OnDragLeft" overloaded=
"no">
27492 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27494 <param name=
"draw" type=
"bool" default=
""/>
27495 <param name=
"x" type=
"double" default=
""/>
27496 <param name=
"y" type=
"double" default=
""/>
27497 <param name=
"keys" type=
"int" default=
"0"/>
27498 <param name=
"attachment" type=
"int" default=
"0"/>
27501 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
27502 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27504 <param name=
"x" type=
"double" default=
""/>
27505 <param name=
"y" type=
"double" default=
""/>
27506 <param name=
"keys" type=
"int" default=
"0"/>
27507 <param name=
"attachment" type=
"int" default=
"0"/>
27510 <method name=
"base_OnEndDragLeft" overloaded=
"no">
27511 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27513 <param name=
"x" type=
"double" default=
""/>
27514 <param name=
"y" type=
"double" default=
""/>
27515 <param name=
"keys" type=
"int" default=
"0"/>
27516 <param name=
"attachment" type=
"int" default=
"0"/>
27519 <method name=
"base_OnDragRight" overloaded=
"no">
27520 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27522 <param name=
"draw" type=
"bool" default=
""/>
27523 <param name=
"x" type=
"double" default=
""/>
27524 <param name=
"y" type=
"double" default=
""/>
27525 <param name=
"keys" type=
"int" default=
"0"/>
27526 <param name=
"attachment" type=
"int" default=
"0"/>
27529 <method name=
"base_OnBeginDragRight" overloaded=
"no">
27530 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27532 <param name=
"x" type=
"double" default=
""/>
27533 <param name=
"y" type=
"double" default=
""/>
27534 <param name=
"keys" type=
"int" default=
"0"/>
27535 <param name=
"attachment" type=
"int" default=
"0"/>
27538 <method name=
"base_OnEndDragRight" overloaded=
"no">
27539 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
27541 <param name=
"x" type=
"double" default=
""/>
27542 <param name=
"y" type=
"double" default=
""/>
27543 <param name=
"keys" type=
"int" default=
"0"/>
27544 <param name=
"attachment" type=
"int" default=
"0"/>
27547 <method name=
"base_OnDrawOutline" overloaded=
"no">
27548 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
27550 <param name=
"dc" type=
"r.wxDC" default=
""/>
27551 <param name=
"x" type=
"double" default=
""/>
27552 <param name=
"y" type=
"double" default=
""/>
27553 <param name=
"w" type=
"double" default=
""/>
27554 <param name=
"h" type=
"double" default=
""/>
27557 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
27558 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
27560 <param name=
"dc" type=
"r.wxDC" default=
""/>
27563 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
27564 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
27566 <param name=
"dc" type=
"r.wxDC" default=
""/>
27569 <method name=
"base_OnMoveLink" overloaded=
"no">
27570 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
27572 <param name=
"dc" type=
"r.wxDC" default=
""/>
27573 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
27576 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
27577 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
27578 int attachment=
0)
</autodoc>
27580 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
27581 <param name=
"draw" type=
"bool" default=
""/>
27582 <param name=
"x" type=
"double" default=
""/>
27583 <param name=
"y" type=
"double" default=
""/>
27584 <param name=
"keys" type=
"int" default=
"0"/>
27585 <param name=
"attachment" type=
"int" default=
"0"/>
27588 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
27589 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
27590 int attachment=
0)
</autodoc>
27592 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
27593 <param name=
"x" type=
"double" default=
""/>
27594 <param name=
"y" type=
"double" default=
""/>
27595 <param name=
"keys" type=
"int" default=
"0"/>
27596 <param name=
"attachment" type=
"int" default=
"0"/>
27599 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
27600 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
27601 int attachment=
0)
</autodoc>
27603 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
27604 <param name=
"x" type=
"double" default=
""/>
27605 <param name=
"y" type=
"double" default=
""/>
27606 <param name=
"keys" type=
"int" default=
"0"/>
27607 <param name=
"attachment" type=
"int" default=
"0"/>
27610 <method name=
"base_OnBeginSize" overloaded=
"no">
27611 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
27613 <param name=
"w" type=
"double" default=
""/>
27614 <param name=
"h" type=
"double" default=
""/>
27617 <method name=
"base_OnEndSize" overloaded=
"no">
27618 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
27620 <param name=
"w" type=
"double" default=
""/>
27621 <param name=
"h" type=
"double" default=
""/>
27625 <class name=
"PyShape" oldname=
"wxPyShape" module=
"ogl">
27626 <baseclass name=
"wxPyShapeEvtHandler"/>
27627 <constructor name=
"PyShape" overloaded=
"no">
27628 <autodoc>__init__(PyShapeCanvas can=None) -
> PyShape
</autodoc>
27630 <param name=
"can" type=
"p.wxPyShapeCanvas" default=
"NULL"/>
27633 <method name=
"_setCallbackInfo" overloaded=
"no">
27634 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27636 <param name=
"self" type=
"p.PyObject" default=
""/>
27637 <param name=
"_class" type=
"p.PyObject" default=
""/>
27640 <method name=
"GetBoundingBoxMax" overloaded=
"no">
27641 <autodoc>GetBoundingBoxMax(double OUTPUT, double OUTPUT)
</autodoc>
27643 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27644 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27647 <method name=
"GetBoundingBoxMin" overloaded=
"no">
27648 <autodoc>GetBoundingBoxMin(double OUTPUT, double OUTPUT)
</autodoc>
27650 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27651 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27654 <method name=
"GetPerimeterPoint" overloaded=
"no">
27655 <autodoc>GetPerimeterPoint(double x1, double y1, double x2, double y2, double OUTPUT,
27656 double OUTPUT) -
> bool
</autodoc>
27658 <param name=
"x1" type=
"double" default=
""/>
27659 <param name=
"y1" type=
"double" default=
""/>
27660 <param name=
"x2" type=
"double" default=
""/>
27661 <param name=
"y2" type=
"double" default=
""/>
27662 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27663 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27666 <method name=
"GetCanvas" overloaded=
"no">
27667 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
27669 <method name=
"SetCanvas" overloaded=
"no">
27670 <autodoc>SetCanvas(PyShapeCanvas the_canvas)
</autodoc>
27672 <param name=
"the_canvas" type=
"p.wxPyShapeCanvas" default=
""/>
27675 <method name=
"AddToCanvas" overloaded=
"no">
27676 <autodoc>AddToCanvas(PyShapeCanvas the_canvas, PyShape addAfter=None)
</autodoc>
27678 <param name=
"the_canvas" type=
"p.wxPyShapeCanvas" default=
""/>
27679 <param name=
"addAfter" type=
"p.wxPyShape" default=
"NULL"/>
27682 <method name=
"InsertInCanvas" overloaded=
"no">
27683 <autodoc>InsertInCanvas(PyShapeCanvas the_canvas)
</autodoc>
27685 <param name=
"the_canvas" type=
"p.wxPyShapeCanvas" default=
""/>
27688 <method name=
"RemoveFromCanvas" overloaded=
"no">
27689 <autodoc>RemoveFromCanvas(PyShapeCanvas the_canvas)
</autodoc>
27691 <param name=
"the_canvas" type=
"p.wxPyShapeCanvas" default=
""/>
27694 <method name=
"GetX" overloaded=
"no">
27695 <autodoc>GetX() -
> double
</autodoc>
27697 <method name=
"GetY" overloaded=
"no">
27698 <autodoc>GetY() -
> double
</autodoc>
27700 <method name=
"SetX" overloaded=
"no">
27701 <autodoc>SetX(double x)
</autodoc>
27703 <param name=
"x" type=
"double" default=
""/>
27706 <method name=
"SetY" overloaded=
"no">
27707 <autodoc>SetY(double y)
</autodoc>
27709 <param name=
"y" type=
"double" default=
""/>
27712 <method name=
"GetParent" overloaded=
"no">
27713 <autodoc>GetParent() -
> PyShape
</autodoc>
27715 <method name=
"SetParent" overloaded=
"no">
27716 <autodoc>SetParent(PyShape p)
</autodoc>
27718 <param name=
"p" type=
"p.wxPyShape" default=
""/>
27721 <method name=
"GetTopAncestor" overloaded=
"no">
27722 <autodoc>GetTopAncestor() -
> PyShape
</autodoc>
27724 <method name=
"GetChildren" overloaded=
"no">
27725 <autodoc>GetChildren() -
> PyObject
</autodoc>
27727 <method name=
"Unlink" overloaded=
"no">
27728 <autodoc>Unlink()
</autodoc>
27730 <method name=
"SetDrawHandles" overloaded=
"no">
27731 <autodoc>SetDrawHandles(bool drawH)
</autodoc>
27733 <param name=
"drawH" type=
"bool" default=
""/>
27736 <method name=
"GetDrawHandles" overloaded=
"no">
27737 <autodoc>GetDrawHandles() -
> bool
</autodoc>
27739 <method name=
"MakeControlPoints" overloaded=
"no">
27740 <autodoc>MakeControlPoints()
</autodoc>
27742 <method name=
"DeleteControlPoints" overloaded=
"no">
27743 <autodoc>DeleteControlPoints(DC dc=None)
</autodoc>
27745 <param name=
"dc" type=
"p.wxDC" default=
"NULL"/>
27748 <method name=
"ResetControlPoints" overloaded=
"no">
27749 <autodoc>ResetControlPoints()
</autodoc>
27751 <method name=
"GetEventHandler" overloaded=
"no">
27752 <autodoc>GetEventHandler() -
> PyShapeEvtHandler
</autodoc>
27754 <method name=
"SetEventHandler" overloaded=
"no">
27755 <autodoc>SetEventHandler(PyShapeEvtHandler handler)
</autodoc>
27757 <param name=
"handler" type=
"p.wxPyShapeEvtHandler" default=
""/>
27760 <method name=
"MakeMandatoryControlPoints" overloaded=
"no">
27761 <autodoc>MakeMandatoryControlPoints()
</autodoc>
27763 <method name=
"ResetMandatoryControlPoints" overloaded=
"no">
27764 <autodoc>ResetMandatoryControlPoints()
</autodoc>
27766 <method name=
"Recompute" overloaded=
"no">
27767 <autodoc>Recompute() -
> bool
</autodoc>
27769 <method name=
"CalculateSize" overloaded=
"no">
27770 <autodoc>CalculateSize()
</autodoc>
27772 <method name=
"Select" overloaded=
"no">
27773 <autodoc>Select(bool select=True, DC dc=None)
</autodoc>
27775 <param name=
"select" type=
"bool" default=
"True"/>
27776 <param name=
"dc" type=
"p.wxDC" default=
"NULL"/>
27779 <method name=
"SetHighlight" overloaded=
"no">
27780 <autodoc>SetHighlight(bool hi=True, bool recurse=False)
</autodoc>
27782 <param name=
"hi" type=
"bool" default=
"True"/>
27783 <param name=
"recurse" type=
"bool" default=
"False"/>
27786 <method name=
"IsHighlighted" overloaded=
"no">
27787 <autodoc>IsHighlighted() -
> bool
</autodoc>
27789 <method name=
"Selected" overloaded=
"no">
27790 <autodoc>Selected() -
> bool
</autodoc>
27792 <method name=
"AncestorSelected" overloaded=
"no">
27793 <autodoc>AncestorSelected() -
> bool
</autodoc>
27795 <method name=
"SetSensitivityFilter" overloaded=
"no">
27796 <autodoc>SetSensitivityFilter(int sens=OP_ALL, bool recursive=False)
</autodoc>
27798 <param name=
"sens" type=
"int" default=
"OP_ALL"/>
27799 <param name=
"recursive" type=
"bool" default=
"False"/>
27802 <method name=
"GetSensitivityFilter" overloaded=
"no">
27803 <autodoc>GetSensitivityFilter() -
> int
</autodoc>
27805 <method name=
"SetDraggable" overloaded=
"no">
27806 <autodoc>SetDraggable(bool drag, bool recursive=False)
</autodoc>
27808 <param name=
"drag" type=
"bool" default=
""/>
27809 <param name=
"recursive" type=
"bool" default=
"False"/>
27812 <method name=
"SetFixedSize" overloaded=
"no">
27813 <autodoc>SetFixedSize(bool x, bool y)
</autodoc>
27815 <param name=
"x" type=
"bool" default=
""/>
27816 <param name=
"y" type=
"bool" default=
""/>
27819 <method name=
"GetFixedSize" overloaded=
"no">
27820 <autodoc>GetFixedSize(bool OUTPUT, bool OUTPUT)
</autodoc>
27822 <param name=
"OUTPUT" type=
"p.bool" default=
""/>
27823 <param name=
"OUTPUT" type=
"p.bool" default=
""/>
27826 <method name=
"GetFixedWidth" overloaded=
"no">
27827 <autodoc>GetFixedWidth() -
> bool
</autodoc>
27829 <method name=
"GetFixedHeight" overloaded=
"no">
27830 <autodoc>GetFixedHeight() -
> bool
</autodoc>
27832 <method name=
"SetSpaceAttachments" overloaded=
"no">
27833 <autodoc>SetSpaceAttachments(bool sp)
</autodoc>
27835 <param name=
"sp" type=
"bool" default=
""/>
27838 <method name=
"GetSpaceAttachments" overloaded=
"no">
27839 <autodoc>GetSpaceAttachments() -
> bool
</autodoc>
27841 <method name=
"SetShadowMode" overloaded=
"no">
27842 <autodoc>SetShadowMode(int mode, bool redraw=False)
</autodoc>
27844 <param name=
"mode" type=
"int" default=
""/>
27845 <param name=
"redraw" type=
"bool" default=
"False"/>
27848 <method name=
"GetShadowMode" overloaded=
"no">
27849 <autodoc>GetShadowMode() -
> int
</autodoc>
27851 <method name=
"HitTest" overloaded=
"no">
27852 <autodoc>HitTest(double x, double y, int OUTPUT, double OUTPUT) -
> bool
</autodoc>
27854 <param name=
"x" type=
"double" default=
""/>
27855 <param name=
"y" type=
"double" default=
""/>
27856 <param name=
"OUTPUT" type=
"p.int" default=
""/>
27857 <param name=
"OUTPUT" type=
"p.double" default=
""/>
27860 <method name=
"SetCentreResize" overloaded=
"no">
27861 <autodoc>SetCentreResize(bool cr)
</autodoc>
27863 <param name=
"cr" type=
"bool" default=
""/>
27866 <method name=
"GetCentreResize" overloaded=
"no">
27867 <autodoc>GetCentreResize() -
> bool
</autodoc>
27869 <method name=
"SetMaintainAspectRatio" overloaded=
"no">
27870 <autodoc>SetMaintainAspectRatio(bool ar)
</autodoc>
27872 <param name=
"ar" type=
"bool" default=
""/>
27875 <method name=
"GetMaintainAspectRatio" overloaded=
"no">
27876 <autodoc>GetMaintainAspectRatio() -
> bool
</autodoc>
27878 <method name=
"GetLines" overloaded=
"no">
27879 <autodoc>GetLines() -
> PyObject
</autodoc>
27881 <method name=
"SetDisableLabel" overloaded=
"no">
27882 <autodoc>SetDisableLabel(bool flag)
</autodoc>
27884 <param name=
"flag" type=
"bool" default=
""/>
27887 <method name=
"GetDisableLabel" overloaded=
"no">
27888 <autodoc>GetDisableLabel() -
> bool
</autodoc>
27890 <method name=
"SetAttachmentMode" overloaded=
"no">
27891 <autodoc>SetAttachmentMode(int mode)
</autodoc>
27893 <param name=
"mode" type=
"int" default=
""/>
27896 <method name=
"GetAttachmentMode" overloaded=
"no">
27897 <autodoc>GetAttachmentMode() -
> int
</autodoc>
27899 <method name=
"SetId" overloaded=
"no">
27900 <autodoc>SetId(long i)
</autodoc>
27902 <param name=
"i" type=
"long" default=
""/>
27905 <method name=
"GetId" overloaded=
"no">
27906 <autodoc>GetId() -
> long
</autodoc>
27908 <method name=
"SetPen" overloaded=
"no">
27909 <autodoc>SetPen(wxPen pen)
</autodoc>
27911 <param name=
"pen" type=
"p.wxPen" default=
""/>
27914 <method name=
"SetBrush" overloaded=
"no">
27915 <autodoc>SetBrush(wxBrush brush)
</autodoc>
27917 <param name=
"brush" type=
"p.wxBrush" default=
""/>
27921 def SetClientData(self, data):
27922 self.clientData = data
27923 def GetClientData(self):
27924 if hasattr(self, 'clientData'):
27925 return self.clientData
27929 <method name=
"Show" overloaded=
"no">
27930 <autodoc>Show(bool show)
</autodoc>
27932 <param name=
"show" type=
"bool" default=
""/>
27935 <method name=
"IsShown" overloaded=
"no">
27936 <autodoc>IsShown() -
> bool
</autodoc>
27938 <method name=
"Move" overloaded=
"no">
27939 <autodoc>Move(DC dc, double x1, double y1, bool display=True)
</autodoc>
27941 <param name=
"dc" type=
"r.wxDC" default=
""/>
27942 <param name=
"x1" type=
"double" default=
""/>
27943 <param name=
"y1" type=
"double" default=
""/>
27944 <param name=
"display" type=
"bool" default=
"True"/>
27947 <method name=
"Erase" overloaded=
"no">
27948 <autodoc>Erase(DC dc)
</autodoc>
27950 <param name=
"dc" type=
"r.wxDC" default=
""/>
27953 <method name=
"EraseContents" overloaded=
"no">
27954 <autodoc>EraseContents(DC dc)
</autodoc>
27956 <param name=
"dc" type=
"r.wxDC" default=
""/>
27959 <method name=
"Draw" overloaded=
"no">
27960 <autodoc>Draw(DC dc)
</autodoc>
27962 <param name=
"dc" type=
"r.wxDC" default=
""/>
27965 <method name=
"Flash" overloaded=
"no">
27966 <autodoc>Flash()
</autodoc>
27968 <method name=
"MoveLinks" overloaded=
"no">
27969 <autodoc>MoveLinks(DC dc)
</autodoc>
27971 <param name=
"dc" type=
"r.wxDC" default=
""/>
27974 <method name=
"DrawContents" overloaded=
"no">
27975 <autodoc>DrawContents(DC dc)
</autodoc>
27977 <param name=
"dc" type=
"r.wxDC" default=
""/>
27980 <method name=
"SetSize" overloaded=
"no">
27981 <autodoc>SetSize(double x, double y, bool recursive=True)
</autodoc>
27983 <param name=
"x" type=
"double" default=
""/>
27984 <param name=
"y" type=
"double" default=
""/>
27985 <param name=
"recursive" type=
"bool" default=
"True"/>
27988 <method name=
"SetAttachmentSize" overloaded=
"no">
27989 <autodoc>SetAttachmentSize(double x, double y)
</autodoc>
27991 <param name=
"x" type=
"double" default=
""/>
27992 <param name=
"y" type=
"double" default=
""/>
27995 <method name=
"Attach" overloaded=
"no">
27996 <autodoc>Attach(PyShapeCanvas can)
</autodoc>
27998 <param name=
"can" type=
"p.wxPyShapeCanvas" default=
""/>
28001 <method name=
"Detach" overloaded=
"no">
28002 <autodoc>Detach()
</autodoc>
28004 <method name=
"Constrain" overloaded=
"no">
28005 <autodoc>Constrain() -
> bool
</autodoc>
28007 <method name=
"AddLine" overloaded=
"no">
28008 <autodoc>AddLine(PyLineShape line, PyShape other, int attachFrom=
0,
28009 int attachTo=
0, int positionFrom=-
1, int positionTo=-
1)
</autodoc>
28011 <param name=
"line" type=
"p.wxPyLineShape" default=
""/>
28012 <param name=
"other" type=
"p.wxPyShape" default=
""/>
28013 <param name=
"attachFrom" type=
"int" default=
"0"/>
28014 <param name=
"attachTo" type=
"int" default=
"0"/>
28015 <param name=
"positionFrom" type=
"int" default=
"-1"/>
28016 <param name=
"positionTo" type=
"int" default=
"-1"/>
28019 <method name=
"GetLinePosition" overloaded=
"no">
28020 <autodoc>GetLinePosition(PyLineShape line) -
> int
</autodoc>
28022 <param name=
"line" type=
"p.wxPyLineShape" default=
""/>
28025 <method name=
"AddText" overloaded=
"no">
28026 <autodoc>AddText(String string)
</autodoc>
28028 <param name=
"string" type=
"r.q(const).wxString" default=
""/>
28031 <method name=
"GetPen" overloaded=
"no">
28032 <autodoc>GetPen() -
> wxPen
</autodoc>
28034 <method name=
"GetBrush" overloaded=
"no">
28035 <autodoc>GetBrush() -
> wxBrush
</autodoc>
28037 <method name=
"SetDefaultRegionSize" overloaded=
"no">
28038 <autodoc>SetDefaultRegionSize()
</autodoc>
28040 <method name=
"FormatText" overloaded=
"no">
28041 <autodoc>FormatText(DC dc, String s, int regionId=
0)
</autodoc>
28043 <param name=
"dc" type=
"r.wxDC" default=
""/>
28044 <param name=
"s" type=
"r.q(const).wxString" default=
""/>
28045 <param name=
"regionId" type=
"int" default=
"0"/>
28048 <method name=
"SetFormatMode" overloaded=
"no">
28049 <autodoc>SetFormatMode(int mode, int regionId=
0)
</autodoc>
28051 <param name=
"mode" type=
"int" default=
""/>
28052 <param name=
"regionId" type=
"int" default=
"0"/>
28055 <method name=
"GetFormatMode" overloaded=
"no">
28056 <autodoc>GetFormatMode(int regionId=
0) -
> int
</autodoc>
28058 <param name=
"regionId" type=
"int" default=
"0"/>
28061 <method name=
"SetFont" overloaded=
"no">
28062 <autodoc>SetFont(Font font, int regionId=
0)
</autodoc>
28064 <param name=
"font" type=
"p.wxFont" default=
""/>
28065 <param name=
"regionId" type=
"int" default=
"0"/>
28068 <method name=
"GetFont" overloaded=
"no">
28069 <autodoc>GetFont(int regionId=
0) -
> Font
</autodoc>
28071 <param name=
"regionId" type=
"int" default=
"0"/>
28074 <method name=
"SetTextColour" overloaded=
"no">
28075 <autodoc>SetTextColour(String colour, int regionId=
0)
</autodoc>
28077 <param name=
"colour" type=
"r.q(const).wxString" default=
""/>
28078 <param name=
"regionId" type=
"int" default=
"0"/>
28081 <method name=
"GetTextColour" overloaded=
"no">
28082 <autodoc>GetTextColour(int regionId=
0) -
> String
</autodoc>
28084 <param name=
"regionId" type=
"int" default=
"0"/>
28087 <method name=
"GetNumberOfTextRegions" overloaded=
"no">
28088 <autodoc>GetNumberOfTextRegions() -
> int
</autodoc>
28090 <method name=
"SetRegionName" overloaded=
"no">
28091 <autodoc>SetRegionName(String name, int regionId=
0)
</autodoc>
28093 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
28094 <param name=
"regionId" type=
"int" default=
"0"/>
28097 <method name=
"GetRegionName" overloaded=
"no">
28098 <autodoc>GetRegionName(int regionId) -
> String
</autodoc>
28100 <param name=
"regionId" type=
"int" default=
""/>
28103 <method name=
"GetRegionId" overloaded=
"no">
28104 <autodoc>GetRegionId(String name) -
> int
</autodoc>
28106 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
28109 <method name=
"NameRegions" overloaded=
"no">
28110 <autodoc>NameRegions(String parentName=EmptyString)
</autodoc>
28112 <param name=
"parentName" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
28115 <method name=
"GetRegions" overloaded=
"no">
28116 <autodoc>GetRegions() -
> PyObject
</autodoc>
28118 <method name=
"AddRegion" overloaded=
"no">
28119 <autodoc>AddRegion(ShapeRegion region)
</autodoc>
28121 <param name=
"region" type=
"p.wxShapeRegion" default=
""/>
28124 <method name=
"ClearRegions" overloaded=
"no">
28125 <autodoc>ClearRegions()
</autodoc>
28127 <method name=
"AssignNewIds" overloaded=
"no">
28128 <autodoc>AssignNewIds()
</autodoc>
28130 <method name=
"FindRegion" overloaded=
"no">
28131 <autodoc>FindRegion(String regionName, int OUTPUT) -
> PyShape
</autodoc>
28133 <param name=
"regionName" type=
"r.q(const).wxString" default=
""/>
28134 <param name=
"OUTPUT" type=
"p.int" default=
""/>
28137 <method name=
"FindRegionNames" overloaded=
"no">
28138 <autodoc>FindRegionNames(wxStringList list)
</autodoc>
28140 <param name=
"list" type=
"r.wxStringList" default=
""/>
28143 <method name=
"ClearText" overloaded=
"no">
28144 <autodoc>ClearText(int regionId=
0)
</autodoc>
28146 <param name=
"regionId" type=
"int" default=
"0"/>
28149 <method name=
"RemoveLine" overloaded=
"no">
28150 <autodoc>RemoveLine(PyLineShape line)
</autodoc>
28152 <param name=
"line" type=
"p.wxPyLineShape" default=
""/>
28155 <method name=
"GetAttachmentPosition" overloaded=
"no">
28156 <autodoc>GetAttachmentPosition(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
28157 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
28159 <param name=
"attachment" type=
"int" default=
""/>
28160 <param name=
"OUTPUT" type=
"p.double" default=
""/>
28161 <param name=
"OUTPUT" type=
"p.double" default=
""/>
28162 <param name=
"nth" type=
"int" default=
"0"/>
28163 <param name=
"no_arcs" type=
"int" default=
"1"/>
28164 <param name=
"line" type=
"p.wxPyLineShape" default=
"NULL"/>
28167 <method name=
"GetNumberOfAttachments" overloaded=
"no">
28168 <autodoc>GetNumberOfAttachments() -
> int
</autodoc>
28170 <method name=
"AttachmentIsValid" overloaded=
"no">
28171 <autodoc>AttachmentIsValid(int attachment) -
> bool
</autodoc>
28173 <param name=
"attachment" type=
"int" default=
""/>
28176 <method name=
"GetAttachments" overloaded=
"no">
28177 <autodoc>GetAttachments() -
> PyObject
</autodoc>
28179 <method name=
"GetAttachmentPositionEdge" overloaded=
"no">
28180 <autodoc>GetAttachmentPositionEdge(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
28181 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
28183 <param name=
"attachment" type=
"int" default=
""/>
28184 <param name=
"OUTPUT" type=
"p.double" default=
""/>
28185 <param name=
"OUTPUT" type=
"p.double" default=
""/>
28186 <param name=
"nth" type=
"int" default=
"0"/>
28187 <param name=
"no_arcs" type=
"int" default=
"1"/>
28188 <param name=
"line" type=
"p.wxPyLineShape" default=
"NULL"/>
28191 <method name=
"CalcSimpleAttachment" overloaded=
"no">
28192 <autodoc>CalcSimpleAttachment(RealPoint pt1, RealPoint pt2, int nth, int noArcs,
28193 PyLineShape line) -
> RealPoint
</autodoc>
28195 <param name=
"pt1" type=
"r.q(const).wxRealPoint" default=
""/>
28196 <param name=
"pt2" type=
"r.q(const).wxRealPoint" default=
""/>
28197 <param name=
"nth" type=
"int" default=
""/>
28198 <param name=
"noArcs" type=
"int" default=
""/>
28199 <param name=
"line" type=
"p.wxPyLineShape" default=
""/>
28202 <method name=
"AttachmentSortTest" overloaded=
"no">
28203 <autodoc>AttachmentSortTest(int attachmentPoint, RealPoint pt1, RealPoint pt2) -
> bool
</autodoc>
28205 <param name=
"attachmentPoint" type=
"int" default=
""/>
28206 <param name=
"pt1" type=
"r.q(const).wxRealPoint" default=
""/>
28207 <param name=
"pt2" type=
"r.q(const).wxRealPoint" default=
""/>
28210 <method name=
"EraseLinks" overloaded=
"no">
28211 <autodoc>EraseLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
28213 <param name=
"dc" type=
"r.wxDC" default=
""/>
28214 <param name=
"attachment" type=
"int" default=
"-1"/>
28215 <param name=
"recurse" type=
"bool" default=
"False"/>
28218 <method name=
"DrawLinks" overloaded=
"no">
28219 <autodoc>DrawLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
28221 <param name=
"dc" type=
"r.wxDC" default=
""/>
28222 <param name=
"attachment" type=
"int" default=
"-1"/>
28223 <param name=
"recurse" type=
"bool" default=
"False"/>
28226 <method name=
"MoveLineToNewAttachment" overloaded=
"no">
28227 <autodoc>MoveLineToNewAttachment(DC dc, PyLineShape to_move, double x, double y) -
> bool
</autodoc>
28229 <param name=
"dc" type=
"r.wxDC" default=
""/>
28230 <param name=
"to_move" type=
"p.wxPyLineShape" default=
""/>
28231 <param name=
"x" type=
"double" default=
""/>
28232 <param name=
"y" type=
"double" default=
""/>
28235 <method name=
"ApplyAttachmentOrdering" overloaded=
"no">
28236 <autodoc>ApplyAttachmentOrdering(PyObject linesToSort)
</autodoc>
28238 <param name=
"linesToSort" type=
"p.PyObject" default=
""/>
28241 <method name=
"GetBranchingAttachmentRoot" overloaded=
"no">
28242 <autodoc>GetBranchingAttachmentRoot(int attachment) -
> RealPoint
</autodoc>
28244 <param name=
"attachment" type=
"int" default=
""/>
28247 <method name=
"GetBranchingAttachmentInfo" overloaded=
"no">
28248 <autodoc>GetBranchingAttachmentInfo(int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1,
28249 RealPoint shoulder2) -
> bool
</autodoc>
28251 <param name=
"attachment" type=
"int" default=
""/>
28252 <param name=
"root" type=
"r.wxRealPoint" default=
""/>
28253 <param name=
"neck" type=
"r.wxRealPoint" default=
""/>
28254 <param name=
"shoulder1" type=
"r.wxRealPoint" default=
""/>
28255 <param name=
"shoulder2" type=
"r.wxRealPoint" default=
""/>
28258 <method name=
"GetBranchingAttachmentPoint" overloaded=
"no">
28259 <autodoc>GetBranchingAttachmentPoint(int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -
> bool
</autodoc>
28261 <param name=
"attachment" type=
"int" default=
""/>
28262 <param name=
"n" type=
"int" default=
""/>
28263 <param name=
"attachmentPoint" type=
"r.wxRealPoint" default=
""/>
28264 <param name=
"stemPoint" type=
"r.wxRealPoint" default=
""/>
28267 <method name=
"GetAttachmentLineCount" overloaded=
"no">
28268 <autodoc>GetAttachmentLineCount(int attachment) -
> int
</autodoc>
28270 <param name=
"attachment" type=
"int" default=
""/>
28273 <method name=
"SetBranchNeckLength" overloaded=
"no">
28274 <autodoc>SetBranchNeckLength(int len)
</autodoc>
28276 <param name=
"len" type=
"int" default=
""/>
28279 <method name=
"GetBranchNeckLength" overloaded=
"no">
28280 <autodoc>GetBranchNeckLength() -
> int
</autodoc>
28282 <method name=
"SetBranchStemLength" overloaded=
"no">
28283 <autodoc>SetBranchStemLength(int len)
</autodoc>
28285 <param name=
"len" type=
"int" default=
""/>
28288 <method name=
"GetBranchStemLength" overloaded=
"no">
28289 <autodoc>GetBranchStemLength() -
> int
</autodoc>
28291 <method name=
"SetBranchSpacing" overloaded=
"no">
28292 <autodoc>SetBranchSpacing(int len)
</autodoc>
28294 <param name=
"len" type=
"int" default=
""/>
28297 <method name=
"GetBranchSpacing" overloaded=
"no">
28298 <autodoc>GetBranchSpacing() -
> int
</autodoc>
28300 <method name=
"SetBranchStyle" overloaded=
"no">
28301 <autodoc>SetBranchStyle(long style)
</autodoc>
28303 <param name=
"style" type=
"long" default=
""/>
28306 <method name=
"GetBranchStyle" overloaded=
"no">
28307 <autodoc>GetBranchStyle() -
> long
</autodoc>
28309 <method name=
"PhysicalToLogicalAttachment" overloaded=
"no">
28310 <autodoc>PhysicalToLogicalAttachment(int physicalAttachment) -
> int
</autodoc>
28312 <param name=
"physicalAttachment" type=
"int" default=
""/>
28315 <method name=
"LogicalToPhysicalAttachment" overloaded=
"no">
28316 <autodoc>LogicalToPhysicalAttachment(int logicalAttachment) -
> int
</autodoc>
28318 <param name=
"logicalAttachment" type=
"int" default=
""/>
28321 <method name=
"Draggable" overloaded=
"no">
28322 <autodoc>Draggable() -
> bool
</autodoc>
28324 <method name=
"HasDescendant" overloaded=
"no">
28325 <autodoc>HasDescendant(PyShape image) -
> bool
</autodoc>
28327 <param name=
"image" type=
"p.wxPyShape" default=
""/>
28330 <method name=
"CreateNewCopy" overloaded=
"no">
28331 <autodoc>CreateNewCopy(bool resetMapping=True, bool recompute=True) -
> PyShape
</autodoc>
28333 <param name=
"resetMapping" type=
"bool" default=
"True"/>
28334 <param name=
"recompute" type=
"bool" default=
"True"/>
28337 <method name=
"Copy" overloaded=
"no">
28338 <autodoc>Copy(PyShape copy)
</autodoc>
28340 <param name=
"copy" type=
"r.wxPyShape" default=
""/>
28343 <method name=
"CopyWithHandler" overloaded=
"no">
28344 <autodoc>CopyWithHandler(PyShape copy)
</autodoc>
28346 <param name=
"copy" type=
"r.wxPyShape" default=
""/>
28349 <method name=
"Rotate" overloaded=
"no">
28350 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
28352 <param name=
"x" type=
"double" default=
""/>
28353 <param name=
"y" type=
"double" default=
""/>
28354 <param name=
"theta" type=
"double" default=
""/>
28357 <method name=
"GetRotation" overloaded=
"no">
28358 <autodoc>GetRotation() -
> double
</autodoc>
28360 <method name=
"SetRotation" overloaded=
"no">
28361 <autodoc>SetRotation(double rotation)
</autodoc>
28363 <param name=
"rotation" type=
"double" default=
""/>
28366 <method name=
"ClearAttachments" overloaded=
"no">
28367 <autodoc>ClearAttachments()
</autodoc>
28369 <method name=
"Recentre" overloaded=
"no">
28370 <autodoc>Recentre(DC dc)
</autodoc>
28372 <param name=
"dc" type=
"r.wxDC" default=
""/>
28375 <method name=
"ClearPointList" overloaded=
"no">
28376 <autodoc>ClearPointList(wxList list)
</autodoc>
28378 <param name=
"list" type=
"r.wxList" default=
""/>
28381 <method name=
"GetBackgroundPen" overloaded=
"no">
28382 <autodoc>GetBackgroundPen() -
> wxPen
</autodoc>
28384 <method name=
"GetBackgroundBrush" overloaded=
"no">
28385 <autodoc>GetBackgroundBrush() -
> wxBrush
</autodoc>
28387 <method name=
"base_OnDelete" overloaded=
"no">
28388 <autodoc>base_OnDelete()
</autodoc>
28390 <method name=
"base_OnDraw" overloaded=
"no">
28391 <autodoc>base_OnDraw(DC dc)
</autodoc>
28393 <param name=
"dc" type=
"r.wxDC" default=
""/>
28396 <method name=
"base_OnDrawContents" overloaded=
"no">
28397 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
28399 <param name=
"dc" type=
"r.wxDC" default=
""/>
28402 <method name=
"base_OnDrawBranches" overloaded=
"no">
28403 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
28405 <param name=
"dc" type=
"r.wxDC" default=
""/>
28406 <param name=
"erase" type=
"bool" default=
"False"/>
28409 <method name=
"base_OnMoveLinks" overloaded=
"no">
28410 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
28412 <param name=
"dc" type=
"r.wxDC" default=
""/>
28415 <method name=
"base_OnErase" overloaded=
"no">
28416 <autodoc>base_OnErase(DC dc)
</autodoc>
28418 <param name=
"dc" type=
"r.wxDC" default=
""/>
28421 <method name=
"base_OnEraseContents" overloaded=
"no">
28422 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
28424 <param name=
"dc" type=
"r.wxDC" default=
""/>
28427 <method name=
"base_OnHighlight" overloaded=
"no">
28428 <autodoc>base_OnHighlight(DC dc)
</autodoc>
28430 <param name=
"dc" type=
"r.wxDC" default=
""/>
28433 <method name=
"base_OnLeftClick" overloaded=
"no">
28434 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28436 <param name=
"x" type=
"double" default=
""/>
28437 <param name=
"y" type=
"double" default=
""/>
28438 <param name=
"keys" type=
"int" default=
"0"/>
28439 <param name=
"attachment" type=
"int" default=
"0"/>
28442 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
28443 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28445 <param name=
"x" type=
"double" default=
""/>
28446 <param name=
"y" type=
"double" default=
""/>
28447 <param name=
"keys" type=
"int" default=
"0"/>
28448 <param name=
"attachment" type=
"int" default=
"0"/>
28451 <method name=
"base_OnRightClick" overloaded=
"no">
28452 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28454 <param name=
"x" type=
"double" default=
""/>
28455 <param name=
"y" type=
"double" default=
""/>
28456 <param name=
"keys" type=
"int" default=
"0"/>
28457 <param name=
"attachment" type=
"int" default=
"0"/>
28460 <method name=
"base_OnSize" overloaded=
"no">
28461 <autodoc>base_OnSize(double x, double y)
</autodoc>
28463 <param name=
"x" type=
"double" default=
""/>
28464 <param name=
"y" type=
"double" default=
""/>
28467 <method name=
"base_OnMovePre" overloaded=
"no">
28468 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
28469 bool display=True) -
> bool
</autodoc>
28471 <param name=
"dc" type=
"r.wxDC" default=
""/>
28472 <param name=
"x" type=
"double" default=
""/>
28473 <param name=
"y" type=
"double" default=
""/>
28474 <param name=
"old_x" type=
"double" default=
""/>
28475 <param name=
"old_y" type=
"double" default=
""/>
28476 <param name=
"display" type=
"bool" default=
"True"/>
28479 <method name=
"base_OnMovePost" overloaded=
"no">
28480 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
28481 bool display=True)
</autodoc>
28483 <param name=
"dc" type=
"r.wxDC" default=
""/>
28484 <param name=
"x" type=
"double" default=
""/>
28485 <param name=
"y" type=
"double" default=
""/>
28486 <param name=
"old_x" type=
"double" default=
""/>
28487 <param name=
"old_y" type=
"double" default=
""/>
28488 <param name=
"display" type=
"bool" default=
"True"/>
28491 <method name=
"base_OnDragLeft" overloaded=
"no">
28492 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28494 <param name=
"draw" type=
"bool" default=
""/>
28495 <param name=
"x" type=
"double" default=
""/>
28496 <param name=
"y" type=
"double" default=
""/>
28497 <param name=
"keys" type=
"int" default=
"0"/>
28498 <param name=
"attachment" type=
"int" default=
"0"/>
28501 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
28502 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28504 <param name=
"x" type=
"double" default=
""/>
28505 <param name=
"y" type=
"double" default=
""/>
28506 <param name=
"keys" type=
"int" default=
"0"/>
28507 <param name=
"attachment" type=
"int" default=
"0"/>
28510 <method name=
"base_OnEndDragLeft" overloaded=
"no">
28511 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28513 <param name=
"x" type=
"double" default=
""/>
28514 <param name=
"y" type=
"double" default=
""/>
28515 <param name=
"keys" type=
"int" default=
"0"/>
28516 <param name=
"attachment" type=
"int" default=
"0"/>
28519 <method name=
"base_OnDragRight" overloaded=
"no">
28520 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28522 <param name=
"draw" type=
"bool" default=
""/>
28523 <param name=
"x" type=
"double" default=
""/>
28524 <param name=
"y" type=
"double" default=
""/>
28525 <param name=
"keys" type=
"int" default=
"0"/>
28526 <param name=
"attachment" type=
"int" default=
"0"/>
28529 <method name=
"base_OnBeginDragRight" overloaded=
"no">
28530 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28532 <param name=
"x" type=
"double" default=
""/>
28533 <param name=
"y" type=
"double" default=
""/>
28534 <param name=
"keys" type=
"int" default=
"0"/>
28535 <param name=
"attachment" type=
"int" default=
"0"/>
28538 <method name=
"base_OnEndDragRight" overloaded=
"no">
28539 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28541 <param name=
"x" type=
"double" default=
""/>
28542 <param name=
"y" type=
"double" default=
""/>
28543 <param name=
"keys" type=
"int" default=
"0"/>
28544 <param name=
"attachment" type=
"int" default=
"0"/>
28547 <method name=
"base_OnDrawOutline" overloaded=
"no">
28548 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
28550 <param name=
"dc" type=
"r.wxDC" default=
""/>
28551 <param name=
"x" type=
"double" default=
""/>
28552 <param name=
"y" type=
"double" default=
""/>
28553 <param name=
"w" type=
"double" default=
""/>
28554 <param name=
"h" type=
"double" default=
""/>
28557 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
28558 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
28560 <param name=
"dc" type=
"r.wxDC" default=
""/>
28563 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
28564 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
28566 <param name=
"dc" type=
"r.wxDC" default=
""/>
28569 <method name=
"base_OnMoveLink" overloaded=
"no">
28570 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
28572 <param name=
"dc" type=
"r.wxDC" default=
""/>
28573 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
28576 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
28577 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
28578 int attachment=
0)
</autodoc>
28580 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
28581 <param name=
"draw" type=
"bool" default=
""/>
28582 <param name=
"x" type=
"double" default=
""/>
28583 <param name=
"y" type=
"double" default=
""/>
28584 <param name=
"keys" type=
"int" default=
"0"/>
28585 <param name=
"attachment" type=
"int" default=
"0"/>
28588 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
28589 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
28590 int attachment=
0)
</autodoc>
28592 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
28593 <param name=
"x" type=
"double" default=
""/>
28594 <param name=
"y" type=
"double" default=
""/>
28595 <param name=
"keys" type=
"int" default=
"0"/>
28596 <param name=
"attachment" type=
"int" default=
"0"/>
28599 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
28600 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
28601 int attachment=
0)
</autodoc>
28603 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
28604 <param name=
"x" type=
"double" default=
""/>
28605 <param name=
"y" type=
"double" default=
""/>
28606 <param name=
"keys" type=
"int" default=
"0"/>
28607 <param name=
"attachment" type=
"int" default=
"0"/>
28610 <method name=
"base_OnBeginSize" overloaded=
"no">
28611 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
28613 <param name=
"w" type=
"double" default=
""/>
28614 <param name=
"h" type=
"double" default=
""/>
28617 <method name=
"base_OnEndSize" overloaded=
"no">
28618 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
28620 <param name=
"w" type=
"double" default=
""/>
28621 <param name=
"h" type=
"double" default=
""/>
28625 <class name=
"PseudoMetaFile" oldname=
"wxPseudoMetaFile" module=
"ogl">
28626 <baseclass name=
"wxObject"/>
28627 <constructor name=
"PseudoMetaFile" overloaded=
"no">
28628 <autodoc>__init__() -
> PseudoMetaFile
</autodoc>
28630 <destructor name=
"~wxPseudoMetaFile">
28631 <autodoc>__del__()
</autodoc>
28633 <method name=
"Draw" overloaded=
"no">
28634 <autodoc>Draw(DC dc, double xoffset, double yoffset)
</autodoc>
28636 <param name=
"dc" type=
"r.wxDC" default=
""/>
28637 <param name=
"xoffset" type=
"double" default=
""/>
28638 <param name=
"yoffset" type=
"double" default=
""/>
28641 <method name=
"Clear" overloaded=
"no">
28642 <autodoc>Clear()
</autodoc>
28644 <method name=
"Copy" overloaded=
"no">
28645 <autodoc>Copy(PseudoMetaFile copy)
</autodoc>
28647 <param name=
"copy" type=
"r.wxPseudoMetaFile" default=
""/>
28650 <method name=
"Scale" overloaded=
"no">
28651 <autodoc>Scale(double sx, double sy)
</autodoc>
28653 <param name=
"sx" type=
"double" default=
""/>
28654 <param name=
"sy" type=
"double" default=
""/>
28657 <method name=
"ScaleTo" overloaded=
"no">
28658 <autodoc>ScaleTo(double w, double h)
</autodoc>
28660 <param name=
"w" type=
"double" default=
""/>
28661 <param name=
"h" type=
"double" default=
""/>
28664 <method name=
"Translate" overloaded=
"no">
28665 <autodoc>Translate(double x, double y)
</autodoc>
28667 <param name=
"x" type=
"double" default=
""/>
28668 <param name=
"y" type=
"double" default=
""/>
28671 <method name=
"Rotate" overloaded=
"no">
28672 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
28674 <param name=
"x" type=
"double" default=
""/>
28675 <param name=
"y" type=
"double" default=
""/>
28676 <param name=
"theta" type=
"double" default=
""/>
28679 <method name=
"LoadFromMetaFile" overloaded=
"no">
28680 <autodoc>LoadFromMetaFile(String filename, double width, double height) -
> bool
</autodoc>
28682 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
28683 <param name=
"width" type=
"p.double" default=
""/>
28684 <param name=
"height" type=
"p.double" default=
""/>
28687 <method name=
"GetBounds" overloaded=
"no">
28688 <autodoc>GetBounds(double minX, double minY, double maxX, double maxY)
</autodoc>
28690 <param name=
"minX" type=
"p.double" default=
""/>
28691 <param name=
"minY" type=
"p.double" default=
""/>
28692 <param name=
"maxX" type=
"p.double" default=
""/>
28693 <param name=
"maxY" type=
"p.double" default=
""/>
28696 <method name=
"CalculateSize" overloaded=
"no">
28697 <autodoc>CalculateSize(PyDrawnShape shape)
</autodoc>
28699 <param name=
"shape" type=
"p.wxPyDrawnShape" default=
""/>
28702 <method name=
"SetRotateable" overloaded=
"no">
28703 <autodoc>SetRotateable(bool rot)
</autodoc>
28705 <param name=
"rot" type=
"bool" default=
""/>
28708 <method name=
"GetRotateable" overloaded=
"no">
28709 <autodoc>GetRotateable() -
> bool
</autodoc>
28711 <method name=
"SetSize" overloaded=
"no">
28712 <autodoc>SetSize(double w, double h)
</autodoc>
28714 <param name=
"w" type=
"double" default=
""/>
28715 <param name=
"h" type=
"double" default=
""/>
28718 <method name=
"SetFillBrush" overloaded=
"no">
28719 <autodoc>SetFillBrush(wxBrush brush)
</autodoc>
28721 <param name=
"brush" type=
"p.wxBrush" default=
""/>
28724 <method name=
"GetFillBrush" overloaded=
"no">
28725 <autodoc>GetFillBrush() -
> wxBrush
</autodoc>
28727 <method name=
"SetOutlinePen" overloaded=
"no">
28728 <autodoc>SetOutlinePen(wxPen pen)
</autodoc>
28730 <param name=
"pen" type=
"p.wxPen" default=
""/>
28733 <method name=
"GetOutlinePen" overloaded=
"no">
28734 <autodoc>GetOutlinePen() -
> wxPen
</autodoc>
28736 <method name=
"SetOutlineOp" overloaded=
"no">
28737 <autodoc>SetOutlineOp(int op)
</autodoc>
28739 <param name=
"op" type=
"int" default=
""/>
28742 <method name=
"GetOutlineOp" overloaded=
"no">
28743 <autodoc>GetOutlineOp() -
> int
</autodoc>
28745 <method name=
"IsValid" overloaded=
"no">
28746 <autodoc>IsValid() -
> bool
</autodoc>
28748 <method name=
"DrawLine" overloaded=
"no">
28749 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
28751 <param name=
"pt1" type=
"r.q(const).wxPoint" default=
""/>
28752 <param name=
"pt2" type=
"r.q(const).wxPoint" default=
""/>
28755 <method name=
"DrawRectangle" overloaded=
"no">
28756 <autodoc>DrawRectangle(Rect rect)
</autodoc>
28758 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
28761 <method name=
"DrawRoundedRectangle" overloaded=
"no">
28762 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
28764 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
28765 <param name=
"radius" type=
"double" default=
""/>
28768 <method name=
"DrawArc" overloaded=
"no">
28769 <autodoc>DrawArc(Point centrePt, Point startPt, Point endPt)
</autodoc>
28771 <param name=
"centrePt" type=
"r.q(const).wxPoint" default=
""/>
28772 <param name=
"startPt" type=
"r.q(const).wxPoint" default=
""/>
28773 <param name=
"endPt" type=
"r.q(const).wxPoint" default=
""/>
28776 <method name=
"DrawEllipticArc" overloaded=
"no">
28777 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
28779 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
28780 <param name=
"startAngle" type=
"double" default=
""/>
28781 <param name=
"endAngle" type=
"double" default=
""/>
28784 <method name=
"DrawEllipse" overloaded=
"no">
28785 <autodoc>DrawEllipse(Rect rect)
</autodoc>
28787 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
28790 <method name=
"DrawPoint" overloaded=
"no">
28791 <autodoc>DrawPoint(Point pt)
</autodoc>
28793 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
28796 <method name=
"DrawText" overloaded=
"no">
28797 <autodoc>DrawText(String text, Point pt)
</autodoc>
28799 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
28800 <param name=
"pt" type=
"r.q(const).wxPoint" default=
""/>
28803 <method name=
"DrawLines" overloaded=
"no">
28804 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
28806 <param name=
"PCOUNT" type=
"int" default=
""/>
28807 <param name=
"points" type=
"p.wxPoint" default=
""/>
28810 <method name=
"DrawPolygon" overloaded=
"no">
28811 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
28813 <param name=
"PCOUNT" type=
"int" default=
""/>
28814 <param name=
"points" type=
"p.wxPoint" default=
""/>
28815 <param name=
"flags" type=
"int" default=
"0"/>
28818 <method name=
"DrawSpline" overloaded=
"no">
28819 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
28821 <param name=
"PCOUNT" type=
"int" default=
""/>
28822 <param name=
"points" type=
"p.wxPoint" default=
""/>
28825 <method name=
"SetClippingRect" overloaded=
"no">
28826 <autodoc>SetClippingRect(Rect rect)
</autodoc>
28828 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
28831 <method name=
"DestroyClippingRect" overloaded=
"no">
28832 <autodoc>DestroyClippingRect()
</autodoc>
28834 <method name=
"SetPen" overloaded=
"no">
28835 <autodoc>SetPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
28837 <param name=
"pen" type=
"p.wxPen" default=
""/>
28838 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
28841 <method name=
"SetBrush" overloaded=
"no">
28842 <autodoc>SetBrush(wxBrush brush, bool isFill=FALSE)
</autodoc>
28844 <param name=
"brush" type=
"p.wxBrush" default=
""/>
28845 <param name=
"isFill" type=
"bool" default=
"FALSE"/>
28848 <method name=
"SetFont" overloaded=
"no">
28849 <autodoc>SetFont(Font font)
</autodoc>
28851 <param name=
"font" type=
"p.wxFont" default=
""/>
28854 <method name=
"SetTextColour" overloaded=
"no">
28855 <autodoc>SetTextColour(Colour colour)
</autodoc>
28857 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
28860 <method name=
"SetBackgroundColour" overloaded=
"no">
28861 <autodoc>SetBackgroundColour(Colour colour)
</autodoc>
28863 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
28866 <method name=
"SetBackgroundMode" overloaded=
"no">
28867 <autodoc>SetBackgroundMode(int mode)
</autodoc>
28869 <param name=
"mode" type=
"int" default=
""/>
28873 <class name=
"PyRectangleShape" oldname=
"wxPyRectangleShape" module=
"ogl">
28874 <baseclass name=
"wxPyShape"/>
28875 <constructor name=
"PyRectangleShape" overloaded=
"no">
28876 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyRectangleShape
</autodoc>
28878 <param name=
"width" type=
"double" default=
"0.0"/>
28879 <param name=
"height" type=
"double" default=
"0.0"/>
28882 <method name=
"_setCallbackInfo" overloaded=
"no">
28883 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
28885 <param name=
"self" type=
"p.PyObject" default=
""/>
28886 <param name=
"_class" type=
"p.PyObject" default=
""/>
28889 <method name=
"SetCornerRadius" overloaded=
"no">
28890 <autodoc>SetCornerRadius(double radius)
</autodoc>
28892 <param name=
"radius" type=
"double" default=
""/>
28895 <method name=
"GetCornerRadius" overloaded=
"no">
28896 <autodoc>GetCornerRadius() -
> double
</autodoc>
28898 <method name=
"base_OnDelete" overloaded=
"no">
28899 <autodoc>base_OnDelete()
</autodoc>
28901 <method name=
"base_OnDraw" overloaded=
"no">
28902 <autodoc>base_OnDraw(DC dc)
</autodoc>
28904 <param name=
"dc" type=
"r.wxDC" default=
""/>
28907 <method name=
"base_OnDrawContents" overloaded=
"no">
28908 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
28910 <param name=
"dc" type=
"r.wxDC" default=
""/>
28913 <method name=
"base_OnDrawBranches" overloaded=
"no">
28914 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
28916 <param name=
"dc" type=
"r.wxDC" default=
""/>
28917 <param name=
"erase" type=
"bool" default=
"FALSE"/>
28920 <method name=
"base_OnMoveLinks" overloaded=
"no">
28921 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
28923 <param name=
"dc" type=
"r.wxDC" default=
""/>
28926 <method name=
"base_OnErase" overloaded=
"no">
28927 <autodoc>base_OnErase(DC dc)
</autodoc>
28929 <param name=
"dc" type=
"r.wxDC" default=
""/>
28932 <method name=
"base_OnEraseContents" overloaded=
"no">
28933 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
28935 <param name=
"dc" type=
"r.wxDC" default=
""/>
28938 <method name=
"base_OnHighlight" overloaded=
"no">
28939 <autodoc>base_OnHighlight(DC dc)
</autodoc>
28941 <param name=
"dc" type=
"r.wxDC" default=
""/>
28944 <method name=
"base_OnLeftClick" overloaded=
"no">
28945 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28947 <param name=
"x" type=
"double" default=
""/>
28948 <param name=
"y" type=
"double" default=
""/>
28949 <param name=
"keys" type=
"int" default=
"0"/>
28950 <param name=
"attachment" type=
"int" default=
"0"/>
28953 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
28954 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28956 <param name=
"x" type=
"double" default=
""/>
28957 <param name=
"y" type=
"double" default=
""/>
28958 <param name=
"keys" type=
"int" default=
"0"/>
28959 <param name=
"attachment" type=
"int" default=
"0"/>
28962 <method name=
"base_OnRightClick" overloaded=
"no">
28963 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28965 <param name=
"x" type=
"double" default=
""/>
28966 <param name=
"y" type=
"double" default=
""/>
28967 <param name=
"keys" type=
"int" default=
"0"/>
28968 <param name=
"attachment" type=
"int" default=
"0"/>
28971 <method name=
"base_OnSize" overloaded=
"no">
28972 <autodoc>base_OnSize(double x, double y)
</autodoc>
28974 <param name=
"x" type=
"double" default=
""/>
28975 <param name=
"y" type=
"double" default=
""/>
28978 <method name=
"base_OnMovePre" overloaded=
"no">
28979 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
28980 bool display=True) -
> bool
</autodoc>
28982 <param name=
"dc" type=
"r.wxDC" default=
""/>
28983 <param name=
"x" type=
"double" default=
""/>
28984 <param name=
"y" type=
"double" default=
""/>
28985 <param name=
"old_x" type=
"double" default=
""/>
28986 <param name=
"old_y" type=
"double" default=
""/>
28987 <param name=
"display" type=
"bool" default=
"True"/>
28990 <method name=
"base_OnMovePost" overloaded=
"no">
28991 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
28992 bool display=True)
</autodoc>
28994 <param name=
"dc" type=
"r.wxDC" default=
""/>
28995 <param name=
"x" type=
"double" default=
""/>
28996 <param name=
"y" type=
"double" default=
""/>
28997 <param name=
"old_x" type=
"double" default=
""/>
28998 <param name=
"old_y" type=
"double" default=
""/>
28999 <param name=
"display" type=
"bool" default=
"True"/>
29002 <method name=
"base_OnDragLeft" overloaded=
"no">
29003 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29005 <param name=
"draw" type=
"bool" default=
""/>
29006 <param name=
"x" type=
"double" default=
""/>
29007 <param name=
"y" type=
"double" default=
""/>
29008 <param name=
"keys" type=
"int" default=
"0"/>
29009 <param name=
"attachment" type=
"int" default=
"0"/>
29012 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
29013 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29015 <param name=
"x" type=
"double" default=
""/>
29016 <param name=
"y" type=
"double" default=
""/>
29017 <param name=
"keys" type=
"int" default=
"0"/>
29018 <param name=
"attachment" type=
"int" default=
"0"/>
29021 <method name=
"base_OnEndDragLeft" overloaded=
"no">
29022 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29024 <param name=
"x" type=
"double" default=
""/>
29025 <param name=
"y" type=
"double" default=
""/>
29026 <param name=
"keys" type=
"int" default=
"0"/>
29027 <param name=
"attachment" type=
"int" default=
"0"/>
29030 <method name=
"base_OnDragRight" overloaded=
"no">
29031 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29033 <param name=
"draw" type=
"bool" default=
""/>
29034 <param name=
"x" type=
"double" default=
""/>
29035 <param name=
"y" type=
"double" default=
""/>
29036 <param name=
"keys" type=
"int" default=
"0"/>
29037 <param name=
"attachment" type=
"int" default=
"0"/>
29040 <method name=
"base_OnBeginDragRight" overloaded=
"no">
29041 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29043 <param name=
"x" type=
"double" default=
""/>
29044 <param name=
"y" type=
"double" default=
""/>
29045 <param name=
"keys" type=
"int" default=
"0"/>
29046 <param name=
"attachment" type=
"int" default=
"0"/>
29049 <method name=
"base_OnEndDragRight" overloaded=
"no">
29050 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29052 <param name=
"x" type=
"double" default=
""/>
29053 <param name=
"y" type=
"double" default=
""/>
29054 <param name=
"keys" type=
"int" default=
"0"/>
29055 <param name=
"attachment" type=
"int" default=
"0"/>
29058 <method name=
"base_OnDrawOutline" overloaded=
"no">
29059 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
29061 <param name=
"dc" type=
"r.wxDC" default=
""/>
29062 <param name=
"x" type=
"double" default=
""/>
29063 <param name=
"y" type=
"double" default=
""/>
29064 <param name=
"w" type=
"double" default=
""/>
29065 <param name=
"h" type=
"double" default=
""/>
29068 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
29069 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
29071 <param name=
"dc" type=
"r.wxDC" default=
""/>
29074 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
29075 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
29077 <param name=
"dc" type=
"r.wxDC" default=
""/>
29080 <method name=
"base_OnMoveLink" overloaded=
"no">
29081 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
29083 <param name=
"dc" type=
"r.wxDC" default=
""/>
29084 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
29087 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
29088 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
29089 int attachment=
0)
</autodoc>
29091 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29092 <param name=
"draw" type=
"bool" default=
""/>
29093 <param name=
"x" type=
"double" default=
""/>
29094 <param name=
"y" type=
"double" default=
""/>
29095 <param name=
"keys" type=
"int" default=
"0"/>
29096 <param name=
"attachment" type=
"int" default=
"0"/>
29099 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
29100 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29101 int attachment=
0)
</autodoc>
29103 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29104 <param name=
"x" type=
"double" default=
""/>
29105 <param name=
"y" type=
"double" default=
""/>
29106 <param name=
"keys" type=
"int" default=
"0"/>
29107 <param name=
"attachment" type=
"int" default=
"0"/>
29110 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
29111 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29112 int attachment=
0)
</autodoc>
29114 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29115 <param name=
"x" type=
"double" default=
""/>
29116 <param name=
"y" type=
"double" default=
""/>
29117 <param name=
"keys" type=
"int" default=
"0"/>
29118 <param name=
"attachment" type=
"int" default=
"0"/>
29121 <method name=
"base_OnBeginSize" overloaded=
"no">
29122 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
29124 <param name=
"w" type=
"double" default=
""/>
29125 <param name=
"h" type=
"double" default=
""/>
29128 <method name=
"base_OnEndSize" overloaded=
"no">
29129 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29131 <param name=
"w" type=
"double" default=
""/>
29132 <param name=
"h" type=
"double" default=
""/>
29136 <class name=
"PyControlPoint" oldname=
"wxPyControlPoint" module=
"ogl">
29137 <baseclass name=
"wxPyRectangleShape"/>
29138 <constructor name=
"PyControlPoint" overloaded=
"no">
29139 <autodoc>__init__(PyShapeCanvas the_canvas=None, PyShape object=None,
29140 double size=
0.0, double the_xoffset=
0.0, double the_yoffset=
0.0,
29141 int the_type=
0) -
> PyControlPoint
</autodoc>
29143 <param name=
"the_canvas" type=
"p.wxPyShapeCanvas" default=
"NULL"/>
29144 <param name=
"object" type=
"p.wxPyShape" default=
"NULL"/>
29145 <param name=
"size" type=
"double" default=
"0.0"/>
29146 <param name=
"the_xoffset" type=
"double" default=
"0.0"/>
29147 <param name=
"the_yoffset" type=
"double" default=
"0.0"/>
29148 <param name=
"the_type" type=
"int" default=
"0"/>
29151 <method name=
"_setCallbackInfo" overloaded=
"no">
29152 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
29154 <param name=
"self" type=
"p.PyObject" default=
""/>
29155 <param name=
"_class" type=
"p.PyObject" default=
""/>
29158 <method name=
"SetCornerRadius" overloaded=
"no">
29159 <autodoc>SetCornerRadius(double radius)
</autodoc>
29161 <param name=
"radius" type=
"double" default=
""/>
29164 <method name=
"base_OnDelete" overloaded=
"no">
29165 <autodoc>base_OnDelete()
</autodoc>
29167 <method name=
"base_OnDraw" overloaded=
"no">
29168 <autodoc>base_OnDraw(DC dc)
</autodoc>
29170 <param name=
"dc" type=
"r.wxDC" default=
""/>
29173 <method name=
"base_OnDrawContents" overloaded=
"no">
29174 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
29176 <param name=
"dc" type=
"r.wxDC" default=
""/>
29179 <method name=
"base_OnDrawBranches" overloaded=
"no">
29180 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
29182 <param name=
"dc" type=
"r.wxDC" default=
""/>
29183 <param name=
"erase" type=
"bool" default=
"FALSE"/>
29186 <method name=
"base_OnMoveLinks" overloaded=
"no">
29187 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
29189 <param name=
"dc" type=
"r.wxDC" default=
""/>
29192 <method name=
"base_OnErase" overloaded=
"no">
29193 <autodoc>base_OnErase(DC dc)
</autodoc>
29195 <param name=
"dc" type=
"r.wxDC" default=
""/>
29198 <method name=
"base_OnEraseContents" overloaded=
"no">
29199 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29201 <param name=
"dc" type=
"r.wxDC" default=
""/>
29204 <method name=
"base_OnHighlight" overloaded=
"no">
29205 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29207 <param name=
"dc" type=
"r.wxDC" default=
""/>
29210 <method name=
"base_OnLeftClick" overloaded=
"no">
29211 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29213 <param name=
"x" type=
"double" default=
""/>
29214 <param name=
"y" type=
"double" default=
""/>
29215 <param name=
"keys" type=
"int" default=
"0"/>
29216 <param name=
"attachment" type=
"int" default=
"0"/>
29219 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
29220 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29222 <param name=
"x" type=
"double" default=
""/>
29223 <param name=
"y" type=
"double" default=
""/>
29224 <param name=
"keys" type=
"int" default=
"0"/>
29225 <param name=
"attachment" type=
"int" default=
"0"/>
29228 <method name=
"base_OnRightClick" overloaded=
"no">
29229 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29231 <param name=
"x" type=
"double" default=
""/>
29232 <param name=
"y" type=
"double" default=
""/>
29233 <param name=
"keys" type=
"int" default=
"0"/>
29234 <param name=
"attachment" type=
"int" default=
"0"/>
29237 <method name=
"base_OnSize" overloaded=
"no">
29238 <autodoc>base_OnSize(double x, double y)
</autodoc>
29240 <param name=
"x" type=
"double" default=
""/>
29241 <param name=
"y" type=
"double" default=
""/>
29244 <method name=
"base_OnMovePre" overloaded=
"no">
29245 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
29246 bool display=True) -
> bool
</autodoc>
29248 <param name=
"dc" type=
"r.wxDC" default=
""/>
29249 <param name=
"x" type=
"double" default=
""/>
29250 <param name=
"y" type=
"double" default=
""/>
29251 <param name=
"old_x" type=
"double" default=
""/>
29252 <param name=
"old_y" type=
"double" default=
""/>
29253 <param name=
"display" type=
"bool" default=
"True"/>
29256 <method name=
"base_OnMovePost" overloaded=
"no">
29257 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
29258 bool display=True)
</autodoc>
29260 <param name=
"dc" type=
"r.wxDC" default=
""/>
29261 <param name=
"x" type=
"double" default=
""/>
29262 <param name=
"y" type=
"double" default=
""/>
29263 <param name=
"old_x" type=
"double" default=
""/>
29264 <param name=
"old_y" type=
"double" default=
""/>
29265 <param name=
"display" type=
"bool" default=
"True"/>
29268 <method name=
"base_OnDragLeft" overloaded=
"no">
29269 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29271 <param name=
"draw" type=
"bool" default=
""/>
29272 <param name=
"x" type=
"double" default=
""/>
29273 <param name=
"y" type=
"double" default=
""/>
29274 <param name=
"keys" type=
"int" default=
"0"/>
29275 <param name=
"attachment" type=
"int" default=
"0"/>
29278 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
29279 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29281 <param name=
"x" type=
"double" default=
""/>
29282 <param name=
"y" type=
"double" default=
""/>
29283 <param name=
"keys" type=
"int" default=
"0"/>
29284 <param name=
"attachment" type=
"int" default=
"0"/>
29287 <method name=
"base_OnEndDragLeft" overloaded=
"no">
29288 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29290 <param name=
"x" type=
"double" default=
""/>
29291 <param name=
"y" type=
"double" default=
""/>
29292 <param name=
"keys" type=
"int" default=
"0"/>
29293 <param name=
"attachment" type=
"int" default=
"0"/>
29296 <method name=
"base_OnDragRight" overloaded=
"no">
29297 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29299 <param name=
"draw" type=
"bool" default=
""/>
29300 <param name=
"x" type=
"double" default=
""/>
29301 <param name=
"y" type=
"double" default=
""/>
29302 <param name=
"keys" type=
"int" default=
"0"/>
29303 <param name=
"attachment" type=
"int" default=
"0"/>
29306 <method name=
"base_OnBeginDragRight" overloaded=
"no">
29307 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29309 <param name=
"x" type=
"double" default=
""/>
29310 <param name=
"y" type=
"double" default=
""/>
29311 <param name=
"keys" type=
"int" default=
"0"/>
29312 <param name=
"attachment" type=
"int" default=
"0"/>
29315 <method name=
"base_OnEndDragRight" overloaded=
"no">
29316 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29318 <param name=
"x" type=
"double" default=
""/>
29319 <param name=
"y" type=
"double" default=
""/>
29320 <param name=
"keys" type=
"int" default=
"0"/>
29321 <param name=
"attachment" type=
"int" default=
"0"/>
29324 <method name=
"base_OnDrawOutline" overloaded=
"no">
29325 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
29327 <param name=
"dc" type=
"r.wxDC" default=
""/>
29328 <param name=
"x" type=
"double" default=
""/>
29329 <param name=
"y" type=
"double" default=
""/>
29330 <param name=
"w" type=
"double" default=
""/>
29331 <param name=
"h" type=
"double" default=
""/>
29334 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
29335 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
29337 <param name=
"dc" type=
"r.wxDC" default=
""/>
29340 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
29341 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
29343 <param name=
"dc" type=
"r.wxDC" default=
""/>
29346 <method name=
"base_OnMoveLink" overloaded=
"no">
29347 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
29349 <param name=
"dc" type=
"r.wxDC" default=
""/>
29350 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
29353 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
29354 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
29355 int attachment=
0)
</autodoc>
29357 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29358 <param name=
"draw" type=
"bool" default=
""/>
29359 <param name=
"x" type=
"double" default=
""/>
29360 <param name=
"y" type=
"double" default=
""/>
29361 <param name=
"keys" type=
"int" default=
"0"/>
29362 <param name=
"attachment" type=
"int" default=
"0"/>
29365 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
29366 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29367 int attachment=
0)
</autodoc>
29369 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29370 <param name=
"x" type=
"double" default=
""/>
29371 <param name=
"y" type=
"double" default=
""/>
29372 <param name=
"keys" type=
"int" default=
"0"/>
29373 <param name=
"attachment" type=
"int" default=
"0"/>
29376 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
29377 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29378 int attachment=
0)
</autodoc>
29380 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29381 <param name=
"x" type=
"double" default=
""/>
29382 <param name=
"y" type=
"double" default=
""/>
29383 <param name=
"keys" type=
"int" default=
"0"/>
29384 <param name=
"attachment" type=
"int" default=
"0"/>
29387 <method name=
"base_OnBeginSize" overloaded=
"no">
29388 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
29390 <param name=
"w" type=
"double" default=
""/>
29391 <param name=
"h" type=
"double" default=
""/>
29394 <method name=
"base_OnEndSize" overloaded=
"no">
29395 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29397 <param name=
"w" type=
"double" default=
""/>
29398 <param name=
"h" type=
"double" default=
""/>
29402 <class name=
"PyBitmapShape" oldname=
"wxPyBitmapShape" module=
"ogl">
29403 <baseclass name=
"wxPyRectangleShape"/>
29404 <constructor name=
"PyBitmapShape" overloaded=
"no">
29405 <autodoc>__init__() -
> PyBitmapShape
</autodoc>
29407 <method name=
"_setCallbackInfo" overloaded=
"no">
29408 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
29410 <param name=
"self" type=
"p.PyObject" default=
""/>
29411 <param name=
"_class" type=
"p.PyObject" default=
""/>
29414 <method name=
"GetBitmap" overloaded=
"no">
29415 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
29417 <method name=
"GetFilename" overloaded=
"no">
29418 <autodoc>GetFilename() -
> String
</autodoc>
29420 <method name=
"SetBitmap" overloaded=
"no">
29421 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
29423 <param name=
"bitmap" type=
"r.q(const).wxBitmap" default=
""/>
29426 <method name=
"SetFilename" overloaded=
"no">
29427 <autodoc>SetFilename(String filename)
</autodoc>
29429 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
29432 <method name=
"base_OnDelete" overloaded=
"no">
29433 <autodoc>base_OnDelete()
</autodoc>
29435 <method name=
"base_OnDraw" overloaded=
"no">
29436 <autodoc>base_OnDraw(DC dc)
</autodoc>
29438 <param name=
"dc" type=
"r.wxDC" default=
""/>
29441 <method name=
"base_OnDrawContents" overloaded=
"no">
29442 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
29444 <param name=
"dc" type=
"r.wxDC" default=
""/>
29447 <method name=
"base_OnDrawBranches" overloaded=
"no">
29448 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
29450 <param name=
"dc" type=
"r.wxDC" default=
""/>
29451 <param name=
"erase" type=
"bool" default=
"FALSE"/>
29454 <method name=
"base_OnMoveLinks" overloaded=
"no">
29455 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
29457 <param name=
"dc" type=
"r.wxDC" default=
""/>
29460 <method name=
"base_OnErase" overloaded=
"no">
29461 <autodoc>base_OnErase(DC dc)
</autodoc>
29463 <param name=
"dc" type=
"r.wxDC" default=
""/>
29466 <method name=
"base_OnEraseContents" overloaded=
"no">
29467 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29469 <param name=
"dc" type=
"r.wxDC" default=
""/>
29472 <method name=
"base_OnHighlight" overloaded=
"no">
29473 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29475 <param name=
"dc" type=
"r.wxDC" default=
""/>
29478 <method name=
"base_OnLeftClick" overloaded=
"no">
29479 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29481 <param name=
"x" type=
"double" default=
""/>
29482 <param name=
"y" type=
"double" default=
""/>
29483 <param name=
"keys" type=
"int" default=
"0"/>
29484 <param name=
"attachment" type=
"int" default=
"0"/>
29487 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
29488 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29490 <param name=
"x" type=
"double" default=
""/>
29491 <param name=
"y" type=
"double" default=
""/>
29492 <param name=
"keys" type=
"int" default=
"0"/>
29493 <param name=
"attachment" type=
"int" default=
"0"/>
29496 <method name=
"base_OnRightClick" overloaded=
"no">
29497 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29499 <param name=
"x" type=
"double" default=
""/>
29500 <param name=
"y" type=
"double" default=
""/>
29501 <param name=
"keys" type=
"int" default=
"0"/>
29502 <param name=
"attachment" type=
"int" default=
"0"/>
29505 <method name=
"base_OnSize" overloaded=
"no">
29506 <autodoc>base_OnSize(double x, double y)
</autodoc>
29508 <param name=
"x" type=
"double" default=
""/>
29509 <param name=
"y" type=
"double" default=
""/>
29512 <method name=
"base_OnMovePre" overloaded=
"no">
29513 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
29514 bool display=True) -
> bool
</autodoc>
29516 <param name=
"dc" type=
"r.wxDC" default=
""/>
29517 <param name=
"x" type=
"double" default=
""/>
29518 <param name=
"y" type=
"double" default=
""/>
29519 <param name=
"old_x" type=
"double" default=
""/>
29520 <param name=
"old_y" type=
"double" default=
""/>
29521 <param name=
"display" type=
"bool" default=
"True"/>
29524 <method name=
"base_OnMovePost" overloaded=
"no">
29525 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
29526 bool display=True)
</autodoc>
29528 <param name=
"dc" type=
"r.wxDC" default=
""/>
29529 <param name=
"x" type=
"double" default=
""/>
29530 <param name=
"y" type=
"double" default=
""/>
29531 <param name=
"old_x" type=
"double" default=
""/>
29532 <param name=
"old_y" type=
"double" default=
""/>
29533 <param name=
"display" type=
"bool" default=
"True"/>
29536 <method name=
"base_OnDragLeft" overloaded=
"no">
29537 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29539 <param name=
"draw" type=
"bool" default=
""/>
29540 <param name=
"x" type=
"double" default=
""/>
29541 <param name=
"y" type=
"double" default=
""/>
29542 <param name=
"keys" type=
"int" default=
"0"/>
29543 <param name=
"attachment" type=
"int" default=
"0"/>
29546 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
29547 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29549 <param name=
"x" type=
"double" default=
""/>
29550 <param name=
"y" type=
"double" default=
""/>
29551 <param name=
"keys" type=
"int" default=
"0"/>
29552 <param name=
"attachment" type=
"int" default=
"0"/>
29555 <method name=
"base_OnEndDragLeft" overloaded=
"no">
29556 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29558 <param name=
"x" type=
"double" default=
""/>
29559 <param name=
"y" type=
"double" default=
""/>
29560 <param name=
"keys" type=
"int" default=
"0"/>
29561 <param name=
"attachment" type=
"int" default=
"0"/>
29564 <method name=
"base_OnDragRight" overloaded=
"no">
29565 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29567 <param name=
"draw" type=
"bool" default=
""/>
29568 <param name=
"x" type=
"double" default=
""/>
29569 <param name=
"y" type=
"double" default=
""/>
29570 <param name=
"keys" type=
"int" default=
"0"/>
29571 <param name=
"attachment" type=
"int" default=
"0"/>
29574 <method name=
"base_OnBeginDragRight" overloaded=
"no">
29575 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29577 <param name=
"x" type=
"double" default=
""/>
29578 <param name=
"y" type=
"double" default=
""/>
29579 <param name=
"keys" type=
"int" default=
"0"/>
29580 <param name=
"attachment" type=
"int" default=
"0"/>
29583 <method name=
"base_OnEndDragRight" overloaded=
"no">
29584 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29586 <param name=
"x" type=
"double" default=
""/>
29587 <param name=
"y" type=
"double" default=
""/>
29588 <param name=
"keys" type=
"int" default=
"0"/>
29589 <param name=
"attachment" type=
"int" default=
"0"/>
29592 <method name=
"base_OnDrawOutline" overloaded=
"no">
29593 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
29595 <param name=
"dc" type=
"r.wxDC" default=
""/>
29596 <param name=
"x" type=
"double" default=
""/>
29597 <param name=
"y" type=
"double" default=
""/>
29598 <param name=
"w" type=
"double" default=
""/>
29599 <param name=
"h" type=
"double" default=
""/>
29602 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
29603 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
29605 <param name=
"dc" type=
"r.wxDC" default=
""/>
29608 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
29609 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
29611 <param name=
"dc" type=
"r.wxDC" default=
""/>
29614 <method name=
"base_OnMoveLink" overloaded=
"no">
29615 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
29617 <param name=
"dc" type=
"r.wxDC" default=
""/>
29618 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
29621 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
29622 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
29623 int attachment=
0)
</autodoc>
29625 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29626 <param name=
"draw" type=
"bool" default=
""/>
29627 <param name=
"x" type=
"double" default=
""/>
29628 <param name=
"y" type=
"double" default=
""/>
29629 <param name=
"keys" type=
"int" default=
"0"/>
29630 <param name=
"attachment" type=
"int" default=
"0"/>
29633 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
29634 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29635 int attachment=
0)
</autodoc>
29637 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29638 <param name=
"x" type=
"double" default=
""/>
29639 <param name=
"y" type=
"double" default=
""/>
29640 <param name=
"keys" type=
"int" default=
"0"/>
29641 <param name=
"attachment" type=
"int" default=
"0"/>
29644 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
29645 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29646 int attachment=
0)
</autodoc>
29648 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
29649 <param name=
"x" type=
"double" default=
""/>
29650 <param name=
"y" type=
"double" default=
""/>
29651 <param name=
"keys" type=
"int" default=
"0"/>
29652 <param name=
"attachment" type=
"int" default=
"0"/>
29655 <method name=
"base_OnBeginSize" overloaded=
"no">
29656 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
29658 <param name=
"w" type=
"double" default=
""/>
29659 <param name=
"h" type=
"double" default=
""/>
29662 <method name=
"base_OnEndSize" overloaded=
"no">
29663 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29665 <param name=
"w" type=
"double" default=
""/>
29666 <param name=
"h" type=
"double" default=
""/>
29670 <class name=
"PyDrawnShape" oldname=
"wxPyDrawnShape" module=
"ogl">
29671 <baseclass name=
"wxPyRectangleShape"/>
29672 <constructor name=
"PyDrawnShape" overloaded=
"no">
29673 <autodoc>__init__() -
> PyDrawnShape
</autodoc>
29675 <method name=
"_setCallbackInfo" overloaded=
"no">
29676 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
29678 <param name=
"self" type=
"p.PyObject" default=
""/>
29679 <param name=
"_class" type=
"p.PyObject" default=
""/>
29682 <method name=
"CalculateSize" overloaded=
"no">
29683 <autodoc>CalculateSize()
</autodoc>
29685 <method name=
"DestroyClippingRect" overloaded=
"no">
29686 <autodoc>DestroyClippingRect()
</autodoc>
29688 <method name=
"DrawArc" overloaded=
"no">
29689 <autodoc>DrawArc(Point centrePoint, Point startPoint, Point endPoint)
</autodoc>
29691 <param name=
"centrePoint" type=
"r.q(const).wxPoint" default=
""/>
29692 <param name=
"startPoint" type=
"r.q(const).wxPoint" default=
""/>
29693 <param name=
"endPoint" type=
"r.q(const).wxPoint" default=
""/>
29696 <method name=
"DrawAtAngle" overloaded=
"no">
29697 <autodoc>DrawAtAngle(int angle)
</autodoc>
29699 <param name=
"angle" type=
"int" default=
""/>
29702 <method name=
"DrawEllipticArc" overloaded=
"no">
29703 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
29705 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
29706 <param name=
"startAngle" type=
"double" default=
""/>
29707 <param name=
"endAngle" type=
"double" default=
""/>
29710 <method name=
"DrawLine" overloaded=
"no">
29711 <autodoc>DrawLine(Point point1, Point point2)
</autodoc>
29713 <param name=
"point1" type=
"r.q(const).wxPoint" default=
""/>
29714 <param name=
"point2" type=
"r.q(const).wxPoint" default=
""/>
29717 <method name=
"DrawLines" overloaded=
"no">
29718 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
29720 <param name=
"PCOUNT" type=
"int" default=
""/>
29721 <param name=
"points" type=
"p.wxPoint" default=
""/>
29724 <method name=
"DrawPoint" overloaded=
"no">
29725 <autodoc>DrawPoint(Point point)
</autodoc>
29727 <param name=
"point" type=
"r.q(const).wxPoint" default=
""/>
29730 <method name=
"DrawPolygon" overloaded=
"no">
29731 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
29733 <param name=
"PCOUNT" type=
"int" default=
""/>
29734 <param name=
"points" type=
"p.wxPoint" default=
""/>
29735 <param name=
"flags" type=
"int" default=
"0"/>
29738 <method name=
"DrawRectangle" overloaded=
"no">
29739 <autodoc>DrawRectangle(Rect rect)
</autodoc>
29741 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
29744 <method name=
"DrawRoundedRectangle" overloaded=
"no">
29745 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
29747 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
29748 <param name=
"radius" type=
"double" default=
""/>
29751 <method name=
"DrawSpline" overloaded=
"no">
29752 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
29754 <param name=
"PCOUNT" type=
"int" default=
""/>
29755 <param name=
"points" type=
"p.wxPoint" default=
""/>
29758 <method name=
"DrawText" overloaded=
"no">
29759 <autodoc>DrawText(String text, Point point)
</autodoc>
29761 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
29762 <param name=
"point" type=
"r.q(const).wxPoint" default=
""/>
29765 <method name=
"GetAngle" overloaded=
"no">
29766 <autodoc>GetAngle() -
> int
</autodoc>
29768 <method name=
"GetMetaFile" overloaded=
"no">
29769 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
29771 <method name=
"GetRotation" overloaded=
"no">
29772 <autodoc>GetRotation() -
> double
</autodoc>
29774 <method name=
"LoadFromMetaFile" overloaded=
"no">
29775 <autodoc>LoadFromMetaFile(String filename) -
> bool
</autodoc>
29777 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
29780 <method name=
"Rotate" overloaded=
"no">
29781 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
29783 <param name=
"x" type=
"double" default=
""/>
29784 <param name=
"y" type=
"double" default=
""/>
29785 <param name=
"theta" type=
"double" default=
""/>
29788 <method name=
"SetClippingRect" overloaded=
"no">
29789 <autodoc>SetClippingRect(Rect rect)
</autodoc>
29791 <param name=
"rect" type=
"r.q(const).wxRect" default=
""/>
29794 <method name=
"SetDrawnBackgroundColour" overloaded=
"no">
29795 <autodoc>SetDrawnBackgroundColour(Colour colour)
</autodoc>
29797 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
29800 <method name=
"SetDrawnBackgroundMode" overloaded=
"no">
29801 <autodoc>SetDrawnBackgroundMode(int mode)
</autodoc>
29803 <param name=
"mode" type=
"int" default=
""/>
29806 <method name=
"SetDrawnBrush" overloaded=
"no">
29807 <autodoc>SetDrawnBrush(wxBrush pen, bool isOutline=FALSE)
</autodoc>
29809 <param name=
"pen" type=
"p.wxBrush" default=
""/>
29810 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
29813 <method name=
"SetDrawnFont" overloaded=
"no">
29814 <autodoc>SetDrawnFont(Font font)
</autodoc>
29816 <param name=
"font" type=
"p.wxFont" default=
""/>
29819 <method name=
"SetDrawnPen" overloaded=
"no">
29820 <autodoc>SetDrawnPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
29822 <param name=
"pen" type=
"p.wxPen" default=
""/>
29823 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
29826 <method name=
"SetDrawnTextColour" overloaded=
"no">
29827 <autodoc>SetDrawnTextColour(Colour colour)
</autodoc>
29829 <param name=
"colour" type=
"r.q(const).wxColour" default=
""/>
29832 <method name=
"Scale" overloaded=
"no">
29833 <autodoc>Scale(double sx, double sy)
</autodoc>
29835 <param name=
"sx" type=
"double" default=
""/>
29836 <param name=
"sy" type=
"double" default=
""/>
29839 <method name=
"SetSaveToFile" overloaded=
"no">
29840 <autodoc>SetSaveToFile(bool save)
</autodoc>
29842 <param name=
"save" type=
"bool" default=
""/>
29845 <method name=
"Translate" overloaded=
"no">
29846 <autodoc>Translate(double x, double y)
</autodoc>
29848 <param name=
"x" type=
"double" default=
""/>
29849 <param name=
"y" type=
"double" default=
""/>
29852 <method name=
"base_OnDelete" overloaded=
"no">
29853 <autodoc>base_OnDelete()
</autodoc>
29855 <method name=
"base_OnDraw" overloaded=
"no">
29856 <autodoc>base_OnDraw(DC dc)
</autodoc>
29858 <param name=
"dc" type=
"r.wxDC" default=
""/>
29861 <method name=
"base_OnDrawContents" overloaded=
"no">
29862 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
29864 <param name=
"dc" type=
"r.wxDC" default=
""/>
29867 <method name=
"base_OnDrawBranches" overloaded=
"no">
29868 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
29870 <param name=
"dc" type=
"r.wxDC" default=
""/>
29871 <param name=
"erase" type=
"bool" default=
"FALSE"/>
29874 <method name=
"base_OnMoveLinks" overloaded=
"no">
29875 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
29877 <param name=
"dc" type=
"r.wxDC" default=
""/>
29880 <method name=
"base_OnErase" overloaded=
"no">
29881 <autodoc>base_OnErase(DC dc)
</autodoc>
29883 <param name=
"dc" type=
"r.wxDC" default=
""/>
29886 <method name=
"base_OnEraseContents" overloaded=
"no">
29887 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29889 <param name=
"dc" type=
"r.wxDC" default=
""/>
29892 <method name=
"base_OnHighlight" overloaded=
"no">
29893 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29895 <param name=
"dc" type=
"r.wxDC" default=
""/>
29898 <method name=
"base_OnLeftClick" overloaded=
"no">
29899 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29901 <param name=
"x" type=
"double" default=
""/>
29902 <param name=
"y" type=
"double" default=
""/>
29903 <param name=
"keys" type=
"int" default=
"0"/>
29904 <param name=
"attachment" type=
"int" default=
"0"/>
29907 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
29908 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29910 <param name=
"x" type=
"double" default=
""/>
29911 <param name=
"y" type=
"double" default=
""/>
29912 <param name=
"keys" type=
"int" default=
"0"/>
29913 <param name=
"attachment" type=
"int" default=
"0"/>
29916 <method name=
"base_OnRightClick" overloaded=
"no">
29917 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29919 <param name=
"x" type=
"double" default=
""/>
29920 <param name=
"y" type=
"double" default=
""/>
29921 <param name=
"keys" type=
"int" default=
"0"/>
29922 <param name=
"attachment" type=
"int" default=
"0"/>
29925 <method name=
"base_OnSize" overloaded=
"no">
29926 <autodoc>base_OnSize(double x, double y)
</autodoc>
29928 <param name=
"x" type=
"double" default=
""/>
29929 <param name=
"y" type=
"double" default=
""/>
29932 <method name=
"base_OnMovePre" overloaded=
"no">
29933 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
29934 bool display=True) -
> bool
</autodoc>
29936 <param name=
"dc" type=
"r.wxDC" default=
""/>
29937 <param name=
"x" type=
"double" default=
""/>
29938 <param name=
"y" type=
"double" default=
""/>
29939 <param name=
"old_x" type=
"double" default=
""/>
29940 <param name=
"old_y" type=
"double" default=
""/>
29941 <param name=
"display" type=
"bool" default=
"True"/>
29944 <method name=
"base_OnMovePost" overloaded=
"no">
29945 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
29946 bool display=True)
</autodoc>
29948 <param name=
"dc" type=
"r.wxDC" default=
""/>
29949 <param name=
"x" type=
"double" default=
""/>
29950 <param name=
"y" type=
"double" default=
""/>
29951 <param name=
"old_x" type=
"double" default=
""/>
29952 <param name=
"old_y" type=
"double" default=
""/>
29953 <param name=
"display" type=
"bool" default=
"True"/>
29956 <method name=
"base_OnDragLeft" overloaded=
"no">
29957 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29959 <param name=
"draw" type=
"bool" default=
""/>
29960 <param name=
"x" type=
"double" default=
""/>
29961 <param name=
"y" type=
"double" default=
""/>
29962 <param name=
"keys" type=
"int" default=
"0"/>
29963 <param name=
"attachment" type=
"int" default=
"0"/>
29966 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
29967 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29969 <param name=
"x" type=
"double" default=
""/>
29970 <param name=
"y" type=
"double" default=
""/>
29971 <param name=
"keys" type=
"int" default=
"0"/>
29972 <param name=
"attachment" type=
"int" default=
"0"/>
29975 <method name=
"base_OnEndDragLeft" overloaded=
"no">
29976 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29978 <param name=
"x" type=
"double" default=
""/>
29979 <param name=
"y" type=
"double" default=
""/>
29980 <param name=
"keys" type=
"int" default=
"0"/>
29981 <param name=
"attachment" type=
"int" default=
"0"/>
29984 <method name=
"base_OnDragRight" overloaded=
"no">
29985 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29987 <param name=
"draw" type=
"bool" default=
""/>
29988 <param name=
"x" type=
"double" default=
""/>
29989 <param name=
"y" type=
"double" default=
""/>
29990 <param name=
"keys" type=
"int" default=
"0"/>
29991 <param name=
"attachment" type=
"int" default=
"0"/>
29994 <method name=
"base_OnBeginDragRight" overloaded=
"no">
29995 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29997 <param name=
"x" type=
"double" default=
""/>
29998 <param name=
"y" type=
"double" default=
""/>
29999 <param name=
"keys" type=
"int" default=
"0"/>
30000 <param name=
"attachment" type=
"int" default=
"0"/>
30003 <method name=
"base_OnEndDragRight" overloaded=
"no">
30004 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30006 <param name=
"x" type=
"double" default=
""/>
30007 <param name=
"y" type=
"double" default=
""/>
30008 <param name=
"keys" type=
"int" default=
"0"/>
30009 <param name=
"attachment" type=
"int" default=
"0"/>
30012 <method name=
"base_OnDrawOutline" overloaded=
"no">
30013 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30015 <param name=
"dc" type=
"r.wxDC" default=
""/>
30016 <param name=
"x" type=
"double" default=
""/>
30017 <param name=
"y" type=
"double" default=
""/>
30018 <param name=
"w" type=
"double" default=
""/>
30019 <param name=
"h" type=
"double" default=
""/>
30022 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
30023 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30025 <param name=
"dc" type=
"r.wxDC" default=
""/>
30028 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
30029 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30031 <param name=
"dc" type=
"r.wxDC" default=
""/>
30034 <method name=
"base_OnMoveLink" overloaded=
"no">
30035 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30037 <param name=
"dc" type=
"r.wxDC" default=
""/>
30038 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30041 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
30042 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30043 int attachment=
0)
</autodoc>
30045 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30046 <param name=
"draw" type=
"bool" default=
""/>
30047 <param name=
"x" type=
"double" default=
""/>
30048 <param name=
"y" type=
"double" default=
""/>
30049 <param name=
"keys" type=
"int" default=
"0"/>
30050 <param name=
"attachment" type=
"int" default=
"0"/>
30053 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
30054 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30055 int attachment=
0)
</autodoc>
30057 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30058 <param name=
"x" type=
"double" default=
""/>
30059 <param name=
"y" type=
"double" default=
""/>
30060 <param name=
"keys" type=
"int" default=
"0"/>
30061 <param name=
"attachment" type=
"int" default=
"0"/>
30064 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
30065 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30066 int attachment=
0)
</autodoc>
30068 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30069 <param name=
"x" type=
"double" default=
""/>
30070 <param name=
"y" type=
"double" default=
""/>
30071 <param name=
"keys" type=
"int" default=
"0"/>
30072 <param name=
"attachment" type=
"int" default=
"0"/>
30075 <method name=
"base_OnBeginSize" overloaded=
"no">
30076 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30078 <param name=
"w" type=
"double" default=
""/>
30079 <param name=
"h" type=
"double" default=
""/>
30082 <method name=
"base_OnEndSize" overloaded=
"no">
30083 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30085 <param name=
"w" type=
"double" default=
""/>
30086 <param name=
"h" type=
"double" default=
""/>
30090 <class name=
"OGLConstraint" oldname=
"wxOGLConstraint" module=
"ogl">
30091 <baseclass name=
"wxObject"/>
30092 <constructor name=
"OGLConstraint" overloaded=
"no">
30093 <autodoc>__init__(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
30095 <param name=
"type" type=
"int" default=
""/>
30096 <param name=
"constraining" type=
"p.wxPyShape" default=
""/>
30097 <param name=
"constrained" type=
"p.PyObject" default=
""/>
30100 <method name=
"Evaluate" overloaded=
"no">
30101 <autodoc>Evaluate() -
> bool
</autodoc>
30103 <method name=
"SetSpacing" overloaded=
"no">
30104 <autodoc>SetSpacing(double x, double y)
</autodoc>
30106 <param name=
"x" type=
"double" default=
""/>
30107 <param name=
"y" type=
"double" default=
""/>
30110 <method name=
"Equals" overloaded=
"no">
30111 <autodoc>Equals(double a, double b) -
> bool
</autodoc>
30113 <param name=
"a" type=
"double" default=
""/>
30114 <param name=
"b" type=
"double" default=
""/>
30118 <class name=
"PyCompositeShape" oldname=
"wxPyCompositeShape" module=
"ogl">
30119 <baseclass name=
"wxPyRectangleShape"/>
30120 <constructor name=
"PyCompositeShape" overloaded=
"no">
30121 <autodoc>__init__() -
> PyCompositeShape
</autodoc>
30123 <method name=
"_setCallbackInfo" overloaded=
"no">
30124 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30126 <param name=
"self" type=
"p.PyObject" default=
""/>
30127 <param name=
"_class" type=
"p.PyObject" default=
""/>
30130 <method name=
"AddChild" overloaded=
"no">
30131 <autodoc>AddChild(PyShape child, PyShape addAfter=None)
</autodoc>
30133 <param name=
"child" type=
"p.wxPyShape" default=
""/>
30134 <param name=
"addAfter" type=
"p.wxPyShape" default=
"NULL"/>
30137 <method name=
"AddConstraint" overloaded=
"no">
30138 <autodoc>AddConstraint(OGLConstraint constraint) -
> OGLConstraint
</autodoc>
30140 <param name=
"constraint" type=
"p.wxOGLConstraint" default=
""/>
30143 <method name=
"AddConstrainedShapes" overloaded=
"no">
30144 <autodoc>AddConstrainedShapes(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
30146 <param name=
"type" type=
"int" default=
""/>
30147 <param name=
"constraining" type=
"p.wxPyShape" default=
""/>
30148 <param name=
"constrained" type=
"p.PyObject" default=
""/>
30151 <method name=
"AddSimpleConstraint" overloaded=
"no">
30152 <autodoc>AddSimpleConstraint(int type, PyShape constraining, PyShape constrained) -
> OGLConstraint
</autodoc>
30154 <param name=
"type" type=
"int" default=
""/>
30155 <param name=
"constraining" type=
"p.wxPyShape" default=
""/>
30156 <param name=
"constrained" type=
"p.wxPyShape" default=
""/>
30159 <method name=
"CalculateSize" overloaded=
"no">
30160 <autodoc>CalculateSize()
</autodoc>
30162 <method name=
"ContainsDivision" overloaded=
"no">
30163 <autodoc>ContainsDivision(PyDivisionShape division) -
> bool
</autodoc>
30165 <param name=
"division" type=
"p.wxPyDivisionShape" default=
""/>
30168 <method name=
"DeleteConstraint" overloaded=
"no">
30169 <autodoc>DeleteConstraint(OGLConstraint constraint)
</autodoc>
30171 <param name=
"constraint" type=
"p.wxOGLConstraint" default=
""/>
30174 <method name=
"DeleteConstraintsInvolvingChild" overloaded=
"no">
30175 <autodoc>DeleteConstraintsInvolvingChild(PyShape child)
</autodoc>
30177 <param name=
"child" type=
"p.wxPyShape" default=
""/>
30180 <method name=
"FindContainerImage" overloaded=
"no">
30181 <autodoc>FindContainerImage() -
> PyShape
</autodoc>
30183 <method name=
"GetConstraints" overloaded=
"no">
30184 <autodoc>GetConstraints() -
> PyObject
</autodoc>
30186 <method name=
"GetDivisions" overloaded=
"no">
30187 <autodoc>GetDivisions() -
> PyObject
</autodoc>
30189 <method name=
"MakeContainer" overloaded=
"no">
30190 <autodoc>MakeContainer()
</autodoc>
30192 <method name=
"Recompute" overloaded=
"no">
30193 <autodoc>Recompute() -
> bool
</autodoc>
30195 <method name=
"RemoveChild" overloaded=
"no">
30196 <autodoc>RemoveChild(PyShape child)
</autodoc>
30198 <param name=
"child" type=
"p.wxPyShape" default=
""/>
30201 <method name=
"base_OnDelete" overloaded=
"no">
30202 <autodoc>base_OnDelete()
</autodoc>
30204 <method name=
"base_OnDraw" overloaded=
"no">
30205 <autodoc>base_OnDraw(DC dc)
</autodoc>
30207 <param name=
"dc" type=
"r.wxDC" default=
""/>
30210 <method name=
"base_OnDrawContents" overloaded=
"no">
30211 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30213 <param name=
"dc" type=
"r.wxDC" default=
""/>
30216 <method name=
"base_OnDrawBranches" overloaded=
"no">
30217 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30219 <param name=
"dc" type=
"r.wxDC" default=
""/>
30220 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30223 <method name=
"base_OnMoveLinks" overloaded=
"no">
30224 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30226 <param name=
"dc" type=
"r.wxDC" default=
""/>
30229 <method name=
"base_OnErase" overloaded=
"no">
30230 <autodoc>base_OnErase(DC dc)
</autodoc>
30232 <param name=
"dc" type=
"r.wxDC" default=
""/>
30235 <method name=
"base_OnEraseContents" overloaded=
"no">
30236 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30238 <param name=
"dc" type=
"r.wxDC" default=
""/>
30241 <method name=
"base_OnHighlight" overloaded=
"no">
30242 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30244 <param name=
"dc" type=
"r.wxDC" default=
""/>
30247 <method name=
"base_OnLeftClick" overloaded=
"no">
30248 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30250 <param name=
"x" type=
"double" default=
""/>
30251 <param name=
"y" type=
"double" default=
""/>
30252 <param name=
"keys" type=
"int" default=
"0"/>
30253 <param name=
"attachment" type=
"int" default=
"0"/>
30256 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
30257 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30259 <param name=
"x" type=
"double" default=
""/>
30260 <param name=
"y" type=
"double" default=
""/>
30261 <param name=
"keys" type=
"int" default=
"0"/>
30262 <param name=
"attachment" type=
"int" default=
"0"/>
30265 <method name=
"base_OnRightClick" overloaded=
"no">
30266 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30268 <param name=
"x" type=
"double" default=
""/>
30269 <param name=
"y" type=
"double" default=
""/>
30270 <param name=
"keys" type=
"int" default=
"0"/>
30271 <param name=
"attachment" type=
"int" default=
"0"/>
30274 <method name=
"base_OnSize" overloaded=
"no">
30275 <autodoc>base_OnSize(double x, double y)
</autodoc>
30277 <param name=
"x" type=
"double" default=
""/>
30278 <param name=
"y" type=
"double" default=
""/>
30281 <method name=
"base_OnMovePre" overloaded=
"no">
30282 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30283 bool display=True) -
> bool
</autodoc>
30285 <param name=
"dc" type=
"r.wxDC" default=
""/>
30286 <param name=
"x" type=
"double" default=
""/>
30287 <param name=
"y" type=
"double" default=
""/>
30288 <param name=
"old_x" type=
"double" default=
""/>
30289 <param name=
"old_y" type=
"double" default=
""/>
30290 <param name=
"display" type=
"bool" default=
"True"/>
30293 <method name=
"base_OnMovePost" overloaded=
"no">
30294 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30295 bool display=True)
</autodoc>
30297 <param name=
"dc" type=
"r.wxDC" default=
""/>
30298 <param name=
"x" type=
"double" default=
""/>
30299 <param name=
"y" type=
"double" default=
""/>
30300 <param name=
"old_x" type=
"double" default=
""/>
30301 <param name=
"old_y" type=
"double" default=
""/>
30302 <param name=
"display" type=
"bool" default=
"True"/>
30305 <method name=
"base_OnDragLeft" overloaded=
"no">
30306 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30308 <param name=
"draw" type=
"bool" default=
""/>
30309 <param name=
"x" type=
"double" default=
""/>
30310 <param name=
"y" type=
"double" default=
""/>
30311 <param name=
"keys" type=
"int" default=
"0"/>
30312 <param name=
"attachment" type=
"int" default=
"0"/>
30315 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
30316 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30318 <param name=
"x" type=
"double" default=
""/>
30319 <param name=
"y" type=
"double" default=
""/>
30320 <param name=
"keys" type=
"int" default=
"0"/>
30321 <param name=
"attachment" type=
"int" default=
"0"/>
30324 <method name=
"base_OnEndDragLeft" overloaded=
"no">
30325 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30327 <param name=
"x" type=
"double" default=
""/>
30328 <param name=
"y" type=
"double" default=
""/>
30329 <param name=
"keys" type=
"int" default=
"0"/>
30330 <param name=
"attachment" type=
"int" default=
"0"/>
30333 <method name=
"base_OnDragRight" overloaded=
"no">
30334 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30336 <param name=
"draw" type=
"bool" default=
""/>
30337 <param name=
"x" type=
"double" default=
""/>
30338 <param name=
"y" type=
"double" default=
""/>
30339 <param name=
"keys" type=
"int" default=
"0"/>
30340 <param name=
"attachment" type=
"int" default=
"0"/>
30343 <method name=
"base_OnBeginDragRight" overloaded=
"no">
30344 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30346 <param name=
"x" type=
"double" default=
""/>
30347 <param name=
"y" type=
"double" default=
""/>
30348 <param name=
"keys" type=
"int" default=
"0"/>
30349 <param name=
"attachment" type=
"int" default=
"0"/>
30352 <method name=
"base_OnEndDragRight" overloaded=
"no">
30353 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30355 <param name=
"x" type=
"double" default=
""/>
30356 <param name=
"y" type=
"double" default=
""/>
30357 <param name=
"keys" type=
"int" default=
"0"/>
30358 <param name=
"attachment" type=
"int" default=
"0"/>
30361 <method name=
"base_OnDrawOutline" overloaded=
"no">
30362 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30364 <param name=
"dc" type=
"r.wxDC" default=
""/>
30365 <param name=
"x" type=
"double" default=
""/>
30366 <param name=
"y" type=
"double" default=
""/>
30367 <param name=
"w" type=
"double" default=
""/>
30368 <param name=
"h" type=
"double" default=
""/>
30371 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
30372 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30374 <param name=
"dc" type=
"r.wxDC" default=
""/>
30377 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
30378 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30380 <param name=
"dc" type=
"r.wxDC" default=
""/>
30383 <method name=
"base_OnMoveLink" overloaded=
"no">
30384 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30386 <param name=
"dc" type=
"r.wxDC" default=
""/>
30387 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30390 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
30391 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30392 int attachment=
0)
</autodoc>
30394 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30395 <param name=
"draw" type=
"bool" default=
""/>
30396 <param name=
"x" type=
"double" default=
""/>
30397 <param name=
"y" type=
"double" default=
""/>
30398 <param name=
"keys" type=
"int" default=
"0"/>
30399 <param name=
"attachment" type=
"int" default=
"0"/>
30402 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
30403 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30404 int attachment=
0)
</autodoc>
30406 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30407 <param name=
"x" type=
"double" default=
""/>
30408 <param name=
"y" type=
"double" default=
""/>
30409 <param name=
"keys" type=
"int" default=
"0"/>
30410 <param name=
"attachment" type=
"int" default=
"0"/>
30413 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
30414 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30415 int attachment=
0)
</autodoc>
30417 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30418 <param name=
"x" type=
"double" default=
""/>
30419 <param name=
"y" type=
"double" default=
""/>
30420 <param name=
"keys" type=
"int" default=
"0"/>
30421 <param name=
"attachment" type=
"int" default=
"0"/>
30424 <method name=
"base_OnBeginSize" overloaded=
"no">
30425 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30427 <param name=
"w" type=
"double" default=
""/>
30428 <param name=
"h" type=
"double" default=
""/>
30431 <method name=
"base_OnEndSize" overloaded=
"no">
30432 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30434 <param name=
"w" type=
"double" default=
""/>
30435 <param name=
"h" type=
"double" default=
""/>
30439 <class name=
"PyDividedShape" oldname=
"wxPyDividedShape" module=
"ogl">
30440 <baseclass name=
"wxPyRectangleShape"/>
30441 <constructor name=
"PyDividedShape" overloaded=
"no">
30442 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyDividedShape
</autodoc>
30444 <param name=
"width" type=
"double" default=
"0.0"/>
30445 <param name=
"height" type=
"double" default=
"0.0"/>
30448 <method name=
"_setCallbackInfo" overloaded=
"no">
30449 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30451 <param name=
"self" type=
"p.PyObject" default=
""/>
30452 <param name=
"_class" type=
"p.PyObject" default=
""/>
30455 <method name=
"EditRegions" overloaded=
"no">
30456 <autodoc>EditRegions()
</autodoc>
30458 <method name=
"SetRegionSizes" overloaded=
"no">
30459 <autodoc>SetRegionSizes()
</autodoc>
30461 <method name=
"base_OnDelete" overloaded=
"no">
30462 <autodoc>base_OnDelete()
</autodoc>
30464 <method name=
"base_OnDraw" overloaded=
"no">
30465 <autodoc>base_OnDraw(DC dc)
</autodoc>
30467 <param name=
"dc" type=
"r.wxDC" default=
""/>
30470 <method name=
"base_OnDrawContents" overloaded=
"no">
30471 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30473 <param name=
"dc" type=
"r.wxDC" default=
""/>
30476 <method name=
"base_OnDrawBranches" overloaded=
"no">
30477 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30479 <param name=
"dc" type=
"r.wxDC" default=
""/>
30480 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30483 <method name=
"base_OnMoveLinks" overloaded=
"no">
30484 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30486 <param name=
"dc" type=
"r.wxDC" default=
""/>
30489 <method name=
"base_OnErase" overloaded=
"no">
30490 <autodoc>base_OnErase(DC dc)
</autodoc>
30492 <param name=
"dc" type=
"r.wxDC" default=
""/>
30495 <method name=
"base_OnEraseContents" overloaded=
"no">
30496 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30498 <param name=
"dc" type=
"r.wxDC" default=
""/>
30501 <method name=
"base_OnHighlight" overloaded=
"no">
30502 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30504 <param name=
"dc" type=
"r.wxDC" default=
""/>
30507 <method name=
"base_OnLeftClick" overloaded=
"no">
30508 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30510 <param name=
"x" type=
"double" default=
""/>
30511 <param name=
"y" type=
"double" default=
""/>
30512 <param name=
"keys" type=
"int" default=
"0"/>
30513 <param name=
"attachment" type=
"int" default=
"0"/>
30516 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
30517 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30519 <param name=
"x" type=
"double" default=
""/>
30520 <param name=
"y" type=
"double" default=
""/>
30521 <param name=
"keys" type=
"int" default=
"0"/>
30522 <param name=
"attachment" type=
"int" default=
"0"/>
30525 <method name=
"base_OnRightClick" overloaded=
"no">
30526 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30528 <param name=
"x" type=
"double" default=
""/>
30529 <param name=
"y" type=
"double" default=
""/>
30530 <param name=
"keys" type=
"int" default=
"0"/>
30531 <param name=
"attachment" type=
"int" default=
"0"/>
30534 <method name=
"base_OnSize" overloaded=
"no">
30535 <autodoc>base_OnSize(double x, double y)
</autodoc>
30537 <param name=
"x" type=
"double" default=
""/>
30538 <param name=
"y" type=
"double" default=
""/>
30541 <method name=
"base_OnMovePre" overloaded=
"no">
30542 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30543 bool display=True) -
> bool
</autodoc>
30545 <param name=
"dc" type=
"r.wxDC" default=
""/>
30546 <param name=
"x" type=
"double" default=
""/>
30547 <param name=
"y" type=
"double" default=
""/>
30548 <param name=
"old_x" type=
"double" default=
""/>
30549 <param name=
"old_y" type=
"double" default=
""/>
30550 <param name=
"display" type=
"bool" default=
"True"/>
30553 <method name=
"base_OnMovePost" overloaded=
"no">
30554 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30555 bool display=True)
</autodoc>
30557 <param name=
"dc" type=
"r.wxDC" default=
""/>
30558 <param name=
"x" type=
"double" default=
""/>
30559 <param name=
"y" type=
"double" default=
""/>
30560 <param name=
"old_x" type=
"double" default=
""/>
30561 <param name=
"old_y" type=
"double" default=
""/>
30562 <param name=
"display" type=
"bool" default=
"True"/>
30565 <method name=
"base_OnDragLeft" overloaded=
"no">
30566 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30568 <param name=
"draw" type=
"bool" default=
""/>
30569 <param name=
"x" type=
"double" default=
""/>
30570 <param name=
"y" type=
"double" default=
""/>
30571 <param name=
"keys" type=
"int" default=
"0"/>
30572 <param name=
"attachment" type=
"int" default=
"0"/>
30575 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
30576 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30578 <param name=
"x" type=
"double" default=
""/>
30579 <param name=
"y" type=
"double" default=
""/>
30580 <param name=
"keys" type=
"int" default=
"0"/>
30581 <param name=
"attachment" type=
"int" default=
"0"/>
30584 <method name=
"base_OnEndDragLeft" overloaded=
"no">
30585 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30587 <param name=
"x" type=
"double" default=
""/>
30588 <param name=
"y" type=
"double" default=
""/>
30589 <param name=
"keys" type=
"int" default=
"0"/>
30590 <param name=
"attachment" type=
"int" default=
"0"/>
30593 <method name=
"base_OnDragRight" overloaded=
"no">
30594 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30596 <param name=
"draw" type=
"bool" default=
""/>
30597 <param name=
"x" type=
"double" default=
""/>
30598 <param name=
"y" type=
"double" default=
""/>
30599 <param name=
"keys" type=
"int" default=
"0"/>
30600 <param name=
"attachment" type=
"int" default=
"0"/>
30603 <method name=
"base_OnBeginDragRight" overloaded=
"no">
30604 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30606 <param name=
"x" type=
"double" default=
""/>
30607 <param name=
"y" type=
"double" default=
""/>
30608 <param name=
"keys" type=
"int" default=
"0"/>
30609 <param name=
"attachment" type=
"int" default=
"0"/>
30612 <method name=
"base_OnEndDragRight" overloaded=
"no">
30613 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30615 <param name=
"x" type=
"double" default=
""/>
30616 <param name=
"y" type=
"double" default=
""/>
30617 <param name=
"keys" type=
"int" default=
"0"/>
30618 <param name=
"attachment" type=
"int" default=
"0"/>
30621 <method name=
"base_OnDrawOutline" overloaded=
"no">
30622 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30624 <param name=
"dc" type=
"r.wxDC" default=
""/>
30625 <param name=
"x" type=
"double" default=
""/>
30626 <param name=
"y" type=
"double" default=
""/>
30627 <param name=
"w" type=
"double" default=
""/>
30628 <param name=
"h" type=
"double" default=
""/>
30631 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
30632 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30634 <param name=
"dc" type=
"r.wxDC" default=
""/>
30637 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
30638 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30640 <param name=
"dc" type=
"r.wxDC" default=
""/>
30643 <method name=
"base_OnMoveLink" overloaded=
"no">
30644 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30646 <param name=
"dc" type=
"r.wxDC" default=
""/>
30647 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30650 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
30651 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30652 int attachment=
0)
</autodoc>
30654 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30655 <param name=
"draw" type=
"bool" default=
""/>
30656 <param name=
"x" type=
"double" default=
""/>
30657 <param name=
"y" type=
"double" default=
""/>
30658 <param name=
"keys" type=
"int" default=
"0"/>
30659 <param name=
"attachment" type=
"int" default=
"0"/>
30662 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
30663 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30664 int attachment=
0)
</autodoc>
30666 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30667 <param name=
"x" type=
"double" default=
""/>
30668 <param name=
"y" type=
"double" default=
""/>
30669 <param name=
"keys" type=
"int" default=
"0"/>
30670 <param name=
"attachment" type=
"int" default=
"0"/>
30673 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
30674 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30675 int attachment=
0)
</autodoc>
30677 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
30678 <param name=
"x" type=
"double" default=
""/>
30679 <param name=
"y" type=
"double" default=
""/>
30680 <param name=
"keys" type=
"int" default=
"0"/>
30681 <param name=
"attachment" type=
"int" default=
"0"/>
30684 <method name=
"base_OnBeginSize" overloaded=
"no">
30685 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30687 <param name=
"w" type=
"double" default=
""/>
30688 <param name=
"h" type=
"double" default=
""/>
30691 <method name=
"base_OnEndSize" overloaded=
"no">
30692 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30694 <param name=
"w" type=
"double" default=
""/>
30695 <param name=
"h" type=
"double" default=
""/>
30699 <class name=
"PyDivisionShape" oldname=
"wxPyDivisionShape" module=
"ogl">
30700 <baseclass name=
"wxPyCompositeShape"/>
30701 <constructor name=
"PyDivisionShape" overloaded=
"no">
30702 <autodoc>__init__() -
> PyDivisionShape
</autodoc>
30704 <method name=
"_setCallbackInfo" overloaded=
"no">
30705 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30707 <param name=
"self" type=
"p.PyObject" default=
""/>
30708 <param name=
"_class" type=
"p.PyObject" default=
""/>
30711 <method name=
"AdjustBottom" overloaded=
"no">
30712 <autodoc>AdjustBottom(double bottom, bool test)
</autodoc>
30714 <param name=
"bottom" type=
"double" default=
""/>
30715 <param name=
"test" type=
"bool" default=
""/>
30718 <method name=
"AdjustLeft" overloaded=
"no">
30719 <autodoc>AdjustLeft(double left, bool test)
</autodoc>
30721 <param name=
"left" type=
"double" default=
""/>
30722 <param name=
"test" type=
"bool" default=
""/>
30725 <method name=
"AdjustRight" overloaded=
"no">
30726 <autodoc>AdjustRight(double right, bool test)
</autodoc>
30728 <param name=
"right" type=
"double" default=
""/>
30729 <param name=
"test" type=
"bool" default=
""/>
30732 <method name=
"AdjustTop" overloaded=
"no">
30733 <autodoc>AdjustTop(double top, bool test)
</autodoc>
30735 <param name=
"top" type=
"double" default=
""/>
30736 <param name=
"test" type=
"bool" default=
""/>
30739 <method name=
"Divide" overloaded=
"no">
30740 <autodoc>Divide(int direction)
</autodoc>
30742 <param name=
"direction" type=
"int" default=
""/>
30745 <method name=
"EditEdge" overloaded=
"no">
30746 <autodoc>EditEdge(int side)
</autodoc>
30748 <param name=
"side" type=
"int" default=
""/>
30751 <method name=
"GetBottomSide" overloaded=
"no">
30752 <autodoc>GetBottomSide() -
> PyDivisionShape
</autodoc>
30754 <method name=
"GetHandleSide" overloaded=
"no">
30755 <autodoc>GetHandleSide() -
> int
</autodoc>
30757 <method name=
"GetLeftSide" overloaded=
"no">
30758 <autodoc>GetLeftSide() -
> PyDivisionShape
</autodoc>
30760 <method name=
"GetLeftSideColour" overloaded=
"no">
30761 <autodoc>GetLeftSideColour() -
> String
</autodoc>
30763 <method name=
"GetLeftSidePen" overloaded=
"no">
30764 <autodoc>GetLeftSidePen() -
> wxPen
</autodoc>
30766 <method name=
"GetRightSide" overloaded=
"no">
30767 <autodoc>GetRightSide() -
> PyDivisionShape
</autodoc>
30769 <method name=
"GetTopSide" overloaded=
"no">
30770 <autodoc>GetTopSide() -
> PyDivisionShape
</autodoc>
30772 <method name=
"GetTopSidePen" overloaded=
"no">
30773 <autodoc>GetTopSidePen() -
> wxPen
</autodoc>
30775 <method name=
"ResizeAdjoining" overloaded=
"no">
30776 <autodoc>ResizeAdjoining(int side, double newPos, bool test)
</autodoc>
30778 <param name=
"side" type=
"int" default=
""/>
30779 <param name=
"newPos" type=
"double" default=
""/>
30780 <param name=
"test" type=
"bool" default=
""/>
30783 <method name=
"PopupMenu" overloaded=
"no">
30784 <autodoc>PopupMenu(double x, double y)
</autodoc>
30786 <param name=
"x" type=
"double" default=
""/>
30787 <param name=
"y" type=
"double" default=
""/>
30790 <method name=
"SetBottomSide" overloaded=
"no">
30791 <autodoc>SetBottomSide(PyDivisionShape shape)
</autodoc>
30793 <param name=
"shape" type=
"p.wxPyDivisionShape" default=
""/>
30796 <method name=
"SetHandleSide" overloaded=
"no">
30797 <autodoc>SetHandleSide(int side)
</autodoc>
30799 <param name=
"side" type=
"int" default=
""/>
30802 <method name=
"SetLeftSide" overloaded=
"no">
30803 <autodoc>SetLeftSide(PyDivisionShape shape)
</autodoc>
30805 <param name=
"shape" type=
"p.wxPyDivisionShape" default=
""/>
30808 <method name=
"SetLeftSideColour" overloaded=
"no">
30809 <autodoc>SetLeftSideColour(String colour)
</autodoc>
30811 <param name=
"colour" type=
"r.q(const).wxString" default=
""/>
30814 <method name=
"SetLeftSidePen" overloaded=
"no">
30815 <autodoc>SetLeftSidePen(wxPen pen)
</autodoc>
30817 <param name=
"pen" type=
"p.wxPen" default=
""/>
30820 <method name=
"SetRightSide" overloaded=
"no">
30821 <autodoc>SetRightSide(PyDivisionShape shape)
</autodoc>
30823 <param name=
"shape" type=
"p.wxPyDivisionShape" default=
""/>
30826 <method name=
"SetTopSide" overloaded=
"no">
30827 <autodoc>SetTopSide(PyDivisionShape shape)
</autodoc>
30829 <param name=
"shape" type=
"p.wxPyDivisionShape" default=
""/>
30832 <method name=
"SetTopSideColour" overloaded=
"no">
30833 <autodoc>SetTopSideColour(String colour)
</autodoc>
30835 <param name=
"colour" type=
"r.q(const).wxString" default=
""/>
30838 <method name=
"SetTopSidePen" overloaded=
"no">
30839 <autodoc>SetTopSidePen(wxPen pen)
</autodoc>
30841 <param name=
"pen" type=
"p.wxPen" default=
""/>
30844 <method name=
"base_OnDelete" overloaded=
"no">
30845 <autodoc>base_OnDelete()
</autodoc>
30847 <method name=
"base_OnDraw" overloaded=
"no">
30848 <autodoc>base_OnDraw(DC dc)
</autodoc>
30850 <param name=
"dc" type=
"r.wxDC" default=
""/>
30853 <method name=
"base_OnDrawContents" overloaded=
"no">
30854 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30856 <param name=
"dc" type=
"r.wxDC" default=
""/>
30859 <method name=
"base_OnDrawBranches" overloaded=
"no">
30860 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30862 <param name=
"dc" type=
"r.wxDC" default=
""/>
30863 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30866 <method name=
"base_OnMoveLinks" overloaded=
"no">
30867 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30869 <param name=
"dc" type=
"r.wxDC" default=
""/>
30872 <method name=
"base_OnErase" overloaded=
"no">
30873 <autodoc>base_OnErase(DC dc)
</autodoc>
30875 <param name=
"dc" type=
"r.wxDC" default=
""/>
30878 <method name=
"base_OnEraseContents" overloaded=
"no">
30879 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30881 <param name=
"dc" type=
"r.wxDC" default=
""/>
30884 <method name=
"base_OnHighlight" overloaded=
"no">
30885 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30887 <param name=
"dc" type=
"r.wxDC" default=
""/>
30890 <method name=
"base_OnLeftClick" overloaded=
"no">
30891 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30893 <param name=
"x" type=
"double" default=
""/>
30894 <param name=
"y" type=
"double" default=
""/>
30895 <param name=
"keys" type=
"int" default=
"0"/>
30896 <param name=
"attachment" type=
"int" default=
"0"/>
30899 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
30900 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30902 <param name=
"x" type=
"double" default=
""/>
30903 <param name=
"y" type=
"double" default=
""/>
30904 <param name=
"keys" type=
"int" default=
"0"/>
30905 <param name=
"attachment" type=
"int" default=
"0"/>
30908 <method name=
"base_OnRightClick" overloaded=
"no">
30909 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30911 <param name=
"x" type=
"double" default=
""/>
30912 <param name=
"y" type=
"double" default=
""/>
30913 <param name=
"keys" type=
"int" default=
"0"/>
30914 <param name=
"attachment" type=
"int" default=
"0"/>
30917 <method name=
"base_OnSize" overloaded=
"no">
30918 <autodoc>base_OnSize(double x, double y)
</autodoc>
30920 <param name=
"x" type=
"double" default=
""/>
30921 <param name=
"y" type=
"double" default=
""/>
30924 <method name=
"base_OnMovePre" overloaded=
"no">
30925 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30926 bool display=True) -
> bool
</autodoc>
30928 <param name=
"dc" type=
"r.wxDC" default=
""/>
30929 <param name=
"x" type=
"double" default=
""/>
30930 <param name=
"y" type=
"double" default=
""/>
30931 <param name=
"old_x" type=
"double" default=
""/>
30932 <param name=
"old_y" type=
"double" default=
""/>
30933 <param name=
"display" type=
"bool" default=
"True"/>
30936 <method name=
"base_OnMovePost" overloaded=
"no">
30937 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30938 bool display=True)
</autodoc>
30940 <param name=
"dc" type=
"r.wxDC" default=
""/>
30941 <param name=
"x" type=
"double" default=
""/>
30942 <param name=
"y" type=
"double" default=
""/>
30943 <param name=
"old_x" type=
"double" default=
""/>
30944 <param name=
"old_y" type=
"double" default=
""/>
30945 <param name=
"display" type=
"bool" default=
"True"/>
30948 <method name=
"base_OnDragLeft" overloaded=
"no">
30949 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30951 <param name=
"draw" type=
"bool" default=
""/>
30952 <param name=
"x" type=
"double" default=
""/>
30953 <param name=
"y" type=
"double" default=
""/>
30954 <param name=
"keys" type=
"int" default=
"0"/>
30955 <param name=
"attachment" type=
"int" default=
"0"/>
30958 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
30959 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30961 <param name=
"x" type=
"double" default=
""/>
30962 <param name=
"y" type=
"double" default=
""/>
30963 <param name=
"keys" type=
"int" default=
"0"/>
30964 <param name=
"attachment" type=
"int" default=
"0"/>
30967 <method name=
"base_OnEndDragLeft" overloaded=
"no">
30968 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30970 <param name=
"x" type=
"double" default=
""/>
30971 <param name=
"y" type=
"double" default=
""/>
30972 <param name=
"keys" type=
"int" default=
"0"/>
30973 <param name=
"attachment" type=
"int" default=
"0"/>
30976 <method name=
"base_OnDragRight" overloaded=
"no">
30977 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30979 <param name=
"draw" type=
"bool" default=
""/>
30980 <param name=
"x" type=
"double" default=
""/>
30981 <param name=
"y" type=
"double" default=
""/>
30982 <param name=
"keys" type=
"int" default=
"0"/>
30983 <param name=
"attachment" type=
"int" default=
"0"/>
30986 <method name=
"base_OnBeginDragRight" overloaded=
"no">
30987 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30989 <param name=
"x" type=
"double" default=
""/>
30990 <param name=
"y" type=
"double" default=
""/>
30991 <param name=
"keys" type=
"int" default=
"0"/>
30992 <param name=
"attachment" type=
"int" default=
"0"/>
30995 <method name=
"base_OnEndDragRight" overloaded=
"no">
30996 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30998 <param name=
"x" type=
"double" default=
""/>
30999 <param name=
"y" type=
"double" default=
""/>
31000 <param name=
"keys" type=
"int" default=
"0"/>
31001 <param name=
"attachment" type=
"int" default=
"0"/>
31004 <method name=
"base_OnDrawOutline" overloaded=
"no">
31005 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31007 <param name=
"dc" type=
"r.wxDC" default=
""/>
31008 <param name=
"x" type=
"double" default=
""/>
31009 <param name=
"y" type=
"double" default=
""/>
31010 <param name=
"w" type=
"double" default=
""/>
31011 <param name=
"h" type=
"double" default=
""/>
31014 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
31015 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31017 <param name=
"dc" type=
"r.wxDC" default=
""/>
31020 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
31021 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31023 <param name=
"dc" type=
"r.wxDC" default=
""/>
31026 <method name=
"base_OnMoveLink" overloaded=
"no">
31027 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31029 <param name=
"dc" type=
"r.wxDC" default=
""/>
31030 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31033 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
31034 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31035 int attachment=
0)
</autodoc>
31037 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31038 <param name=
"draw" type=
"bool" default=
""/>
31039 <param name=
"x" type=
"double" default=
""/>
31040 <param name=
"y" type=
"double" default=
""/>
31041 <param name=
"keys" type=
"int" default=
"0"/>
31042 <param name=
"attachment" type=
"int" default=
"0"/>
31045 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
31046 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31047 int attachment=
0)
</autodoc>
31049 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31050 <param name=
"x" type=
"double" default=
""/>
31051 <param name=
"y" type=
"double" default=
""/>
31052 <param name=
"keys" type=
"int" default=
"0"/>
31053 <param name=
"attachment" type=
"int" default=
"0"/>
31056 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
31057 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31058 int attachment=
0)
</autodoc>
31060 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31061 <param name=
"x" type=
"double" default=
""/>
31062 <param name=
"y" type=
"double" default=
""/>
31063 <param name=
"keys" type=
"int" default=
"0"/>
31064 <param name=
"attachment" type=
"int" default=
"0"/>
31067 <method name=
"base_OnBeginSize" overloaded=
"no">
31068 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31070 <param name=
"w" type=
"double" default=
""/>
31071 <param name=
"h" type=
"double" default=
""/>
31074 <method name=
"base_OnEndSize" overloaded=
"no">
31075 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31077 <param name=
"w" type=
"double" default=
""/>
31078 <param name=
"h" type=
"double" default=
""/>
31082 <class name=
"PyEllipseShape" oldname=
"wxPyEllipseShape" module=
"ogl">
31083 <baseclass name=
"wxPyShape"/>
31084 <constructor name=
"PyEllipseShape" overloaded=
"no">
31085 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyEllipseShape
</autodoc>
31087 <param name=
"width" type=
"double" default=
"0.0"/>
31088 <param name=
"height" type=
"double" default=
"0.0"/>
31091 <method name=
"_setCallbackInfo" overloaded=
"no">
31092 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31094 <param name=
"self" type=
"p.PyObject" default=
""/>
31095 <param name=
"_class" type=
"p.PyObject" default=
""/>
31098 <method name=
"base_OnDraw" overloaded=
"no">
31099 <autodoc>base_OnDraw(DC dc)
</autodoc>
31101 <param name=
"dc" type=
"r.wxDC" default=
""/>
31104 <method name=
"base_OnDrawContents" overloaded=
"no">
31105 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31107 <param name=
"dc" type=
"r.wxDC" default=
""/>
31110 <method name=
"base_OnDrawBranches" overloaded=
"no">
31111 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31113 <param name=
"dc" type=
"r.wxDC" default=
""/>
31114 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31117 <method name=
"base_OnMoveLinks" overloaded=
"no">
31118 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31120 <param name=
"dc" type=
"r.wxDC" default=
""/>
31123 <method name=
"base_OnErase" overloaded=
"no">
31124 <autodoc>base_OnErase(DC dc)
</autodoc>
31126 <param name=
"dc" type=
"r.wxDC" default=
""/>
31129 <method name=
"base_OnEraseContents" overloaded=
"no">
31130 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31132 <param name=
"dc" type=
"r.wxDC" default=
""/>
31135 <method name=
"base_OnHighlight" overloaded=
"no">
31136 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31138 <param name=
"dc" type=
"r.wxDC" default=
""/>
31141 <method name=
"base_OnLeftClick" overloaded=
"no">
31142 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31144 <param name=
"x" type=
"double" default=
""/>
31145 <param name=
"y" type=
"double" default=
""/>
31146 <param name=
"keys" type=
"int" default=
"0"/>
31147 <param name=
"attachment" type=
"int" default=
"0"/>
31150 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
31151 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31153 <param name=
"x" type=
"double" default=
""/>
31154 <param name=
"y" type=
"double" default=
""/>
31155 <param name=
"keys" type=
"int" default=
"0"/>
31156 <param name=
"attachment" type=
"int" default=
"0"/>
31159 <method name=
"base_OnRightClick" overloaded=
"no">
31160 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31162 <param name=
"x" type=
"double" default=
""/>
31163 <param name=
"y" type=
"double" default=
""/>
31164 <param name=
"keys" type=
"int" default=
"0"/>
31165 <param name=
"attachment" type=
"int" default=
"0"/>
31168 <method name=
"base_OnSize" overloaded=
"no">
31169 <autodoc>base_OnSize(double x, double y)
</autodoc>
31171 <param name=
"x" type=
"double" default=
""/>
31172 <param name=
"y" type=
"double" default=
""/>
31175 <method name=
"base_OnMovePre" overloaded=
"no">
31176 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31177 bool display=True) -
> bool
</autodoc>
31179 <param name=
"dc" type=
"r.wxDC" default=
""/>
31180 <param name=
"x" type=
"double" default=
""/>
31181 <param name=
"y" type=
"double" default=
""/>
31182 <param name=
"old_x" type=
"double" default=
""/>
31183 <param name=
"old_y" type=
"double" default=
""/>
31184 <param name=
"display" type=
"bool" default=
"True"/>
31187 <method name=
"base_OnMovePost" overloaded=
"no">
31188 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31189 bool display=True)
</autodoc>
31191 <param name=
"dc" type=
"r.wxDC" default=
""/>
31192 <param name=
"x" type=
"double" default=
""/>
31193 <param name=
"y" type=
"double" default=
""/>
31194 <param name=
"old_x" type=
"double" default=
""/>
31195 <param name=
"old_y" type=
"double" default=
""/>
31196 <param name=
"display" type=
"bool" default=
"True"/>
31199 <method name=
"base_OnDragLeft" overloaded=
"no">
31200 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31202 <param name=
"draw" type=
"bool" default=
""/>
31203 <param name=
"x" type=
"double" default=
""/>
31204 <param name=
"y" type=
"double" default=
""/>
31205 <param name=
"keys" type=
"int" default=
"0"/>
31206 <param name=
"attachment" type=
"int" default=
"0"/>
31209 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
31210 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31212 <param name=
"x" type=
"double" default=
""/>
31213 <param name=
"y" type=
"double" default=
""/>
31214 <param name=
"keys" type=
"int" default=
"0"/>
31215 <param name=
"attachment" type=
"int" default=
"0"/>
31218 <method name=
"base_OnEndDragLeft" overloaded=
"no">
31219 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31221 <param name=
"x" type=
"double" default=
""/>
31222 <param name=
"y" type=
"double" default=
""/>
31223 <param name=
"keys" type=
"int" default=
"0"/>
31224 <param name=
"attachment" type=
"int" default=
"0"/>
31227 <method name=
"base_OnDragRight" overloaded=
"no">
31228 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31230 <param name=
"draw" type=
"bool" default=
""/>
31231 <param name=
"x" type=
"double" default=
""/>
31232 <param name=
"y" type=
"double" default=
""/>
31233 <param name=
"keys" type=
"int" default=
"0"/>
31234 <param name=
"attachment" type=
"int" default=
"0"/>
31237 <method name=
"base_OnBeginDragRight" overloaded=
"no">
31238 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31240 <param name=
"x" type=
"double" default=
""/>
31241 <param name=
"y" type=
"double" default=
""/>
31242 <param name=
"keys" type=
"int" default=
"0"/>
31243 <param name=
"attachment" type=
"int" default=
"0"/>
31246 <method name=
"base_OnEndDragRight" overloaded=
"no">
31247 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31249 <param name=
"x" type=
"double" default=
""/>
31250 <param name=
"y" type=
"double" default=
""/>
31251 <param name=
"keys" type=
"int" default=
"0"/>
31252 <param name=
"attachment" type=
"int" default=
"0"/>
31255 <method name=
"base_OnDrawOutline" overloaded=
"no">
31256 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31258 <param name=
"dc" type=
"r.wxDC" default=
""/>
31259 <param name=
"x" type=
"double" default=
""/>
31260 <param name=
"y" type=
"double" default=
""/>
31261 <param name=
"w" type=
"double" default=
""/>
31262 <param name=
"h" type=
"double" default=
""/>
31265 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
31266 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31268 <param name=
"dc" type=
"r.wxDC" default=
""/>
31271 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
31272 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31274 <param name=
"dc" type=
"r.wxDC" default=
""/>
31277 <method name=
"base_OnMoveLink" overloaded=
"no">
31278 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31280 <param name=
"dc" type=
"r.wxDC" default=
""/>
31281 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31284 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
31285 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31286 int attachment=
0)
</autodoc>
31288 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31289 <param name=
"draw" type=
"bool" default=
""/>
31290 <param name=
"x" type=
"double" default=
""/>
31291 <param name=
"y" type=
"double" default=
""/>
31292 <param name=
"keys" type=
"int" default=
"0"/>
31293 <param name=
"attachment" type=
"int" default=
"0"/>
31296 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
31297 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31298 int attachment=
0)
</autodoc>
31300 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31301 <param name=
"x" type=
"double" default=
""/>
31302 <param name=
"y" type=
"double" default=
""/>
31303 <param name=
"keys" type=
"int" default=
"0"/>
31304 <param name=
"attachment" type=
"int" default=
"0"/>
31307 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
31308 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31309 int attachment=
0)
</autodoc>
31311 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31312 <param name=
"x" type=
"double" default=
""/>
31313 <param name=
"y" type=
"double" default=
""/>
31314 <param name=
"keys" type=
"int" default=
"0"/>
31315 <param name=
"attachment" type=
"int" default=
"0"/>
31318 <method name=
"base_OnBeginSize" overloaded=
"no">
31319 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31321 <param name=
"w" type=
"double" default=
""/>
31322 <param name=
"h" type=
"double" default=
""/>
31325 <method name=
"base_OnEndSize" overloaded=
"no">
31326 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31328 <param name=
"w" type=
"double" default=
""/>
31329 <param name=
"h" type=
"double" default=
""/>
31333 <class name=
"PyCircleShape" oldname=
"wxPyCircleShape" module=
"ogl">
31334 <baseclass name=
"wxPyEllipseShape"/>
31335 <constructor name=
"PyCircleShape" overloaded=
"no">
31336 <autodoc>__init__(double width=
0.0) -
> PyCircleShape
</autodoc>
31338 <param name=
"width" type=
"double" default=
"0.0"/>
31341 <method name=
"_setCallbackInfo" overloaded=
"no">
31342 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31344 <param name=
"self" type=
"p.PyObject" default=
""/>
31345 <param name=
"_class" type=
"p.PyObject" default=
""/>
31348 <method name=
"base_OnDraw" overloaded=
"no">
31349 <autodoc>base_OnDraw(DC dc)
</autodoc>
31351 <param name=
"dc" type=
"r.wxDC" default=
""/>
31354 <method name=
"base_OnDrawContents" overloaded=
"no">
31355 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31357 <param name=
"dc" type=
"r.wxDC" default=
""/>
31360 <method name=
"base_OnDrawBranches" overloaded=
"no">
31361 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31363 <param name=
"dc" type=
"r.wxDC" default=
""/>
31364 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31367 <method name=
"base_OnMoveLinks" overloaded=
"no">
31368 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31370 <param name=
"dc" type=
"r.wxDC" default=
""/>
31373 <method name=
"base_OnErase" overloaded=
"no">
31374 <autodoc>base_OnErase(DC dc)
</autodoc>
31376 <param name=
"dc" type=
"r.wxDC" default=
""/>
31379 <method name=
"base_OnEraseContents" overloaded=
"no">
31380 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31382 <param name=
"dc" type=
"r.wxDC" default=
""/>
31385 <method name=
"base_OnHighlight" overloaded=
"no">
31386 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31388 <param name=
"dc" type=
"r.wxDC" default=
""/>
31391 <method name=
"base_OnLeftClick" overloaded=
"no">
31392 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31394 <param name=
"x" type=
"double" default=
""/>
31395 <param name=
"y" type=
"double" default=
""/>
31396 <param name=
"keys" type=
"int" default=
"0"/>
31397 <param name=
"attachment" type=
"int" default=
"0"/>
31400 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
31401 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31403 <param name=
"x" type=
"double" default=
""/>
31404 <param name=
"y" type=
"double" default=
""/>
31405 <param name=
"keys" type=
"int" default=
"0"/>
31406 <param name=
"attachment" type=
"int" default=
"0"/>
31409 <method name=
"base_OnRightClick" overloaded=
"no">
31410 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31412 <param name=
"x" type=
"double" default=
""/>
31413 <param name=
"y" type=
"double" default=
""/>
31414 <param name=
"keys" type=
"int" default=
"0"/>
31415 <param name=
"attachment" type=
"int" default=
"0"/>
31418 <method name=
"base_OnSize" overloaded=
"no">
31419 <autodoc>base_OnSize(double x, double y)
</autodoc>
31421 <param name=
"x" type=
"double" default=
""/>
31422 <param name=
"y" type=
"double" default=
""/>
31425 <method name=
"base_OnMovePre" overloaded=
"no">
31426 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31427 bool display=True) -
> bool
</autodoc>
31429 <param name=
"dc" type=
"r.wxDC" default=
""/>
31430 <param name=
"x" type=
"double" default=
""/>
31431 <param name=
"y" type=
"double" default=
""/>
31432 <param name=
"old_x" type=
"double" default=
""/>
31433 <param name=
"old_y" type=
"double" default=
""/>
31434 <param name=
"display" type=
"bool" default=
"True"/>
31437 <method name=
"base_OnMovePost" overloaded=
"no">
31438 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31439 bool display=True)
</autodoc>
31441 <param name=
"dc" type=
"r.wxDC" default=
""/>
31442 <param name=
"x" type=
"double" default=
""/>
31443 <param name=
"y" type=
"double" default=
""/>
31444 <param name=
"old_x" type=
"double" default=
""/>
31445 <param name=
"old_y" type=
"double" default=
""/>
31446 <param name=
"display" type=
"bool" default=
"True"/>
31449 <method name=
"base_OnDragLeft" overloaded=
"no">
31450 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31452 <param name=
"draw" type=
"bool" default=
""/>
31453 <param name=
"x" type=
"double" default=
""/>
31454 <param name=
"y" type=
"double" default=
""/>
31455 <param name=
"keys" type=
"int" default=
"0"/>
31456 <param name=
"attachment" type=
"int" default=
"0"/>
31459 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
31460 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31462 <param name=
"x" type=
"double" default=
""/>
31463 <param name=
"y" type=
"double" default=
""/>
31464 <param name=
"keys" type=
"int" default=
"0"/>
31465 <param name=
"attachment" type=
"int" default=
"0"/>
31468 <method name=
"base_OnEndDragLeft" overloaded=
"no">
31469 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31471 <param name=
"x" type=
"double" default=
""/>
31472 <param name=
"y" type=
"double" default=
""/>
31473 <param name=
"keys" type=
"int" default=
"0"/>
31474 <param name=
"attachment" type=
"int" default=
"0"/>
31477 <method name=
"base_OnDragRight" overloaded=
"no">
31478 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31480 <param name=
"draw" type=
"bool" default=
""/>
31481 <param name=
"x" type=
"double" default=
""/>
31482 <param name=
"y" type=
"double" default=
""/>
31483 <param name=
"keys" type=
"int" default=
"0"/>
31484 <param name=
"attachment" type=
"int" default=
"0"/>
31487 <method name=
"base_OnBeginDragRight" overloaded=
"no">
31488 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31490 <param name=
"x" type=
"double" default=
""/>
31491 <param name=
"y" type=
"double" default=
""/>
31492 <param name=
"keys" type=
"int" default=
"0"/>
31493 <param name=
"attachment" type=
"int" default=
"0"/>
31496 <method name=
"base_OnEndDragRight" overloaded=
"no">
31497 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31499 <param name=
"x" type=
"double" default=
""/>
31500 <param name=
"y" type=
"double" default=
""/>
31501 <param name=
"keys" type=
"int" default=
"0"/>
31502 <param name=
"attachment" type=
"int" default=
"0"/>
31505 <method name=
"base_OnDrawOutline" overloaded=
"no">
31506 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31508 <param name=
"dc" type=
"r.wxDC" default=
""/>
31509 <param name=
"x" type=
"double" default=
""/>
31510 <param name=
"y" type=
"double" default=
""/>
31511 <param name=
"w" type=
"double" default=
""/>
31512 <param name=
"h" type=
"double" default=
""/>
31515 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
31516 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31518 <param name=
"dc" type=
"r.wxDC" default=
""/>
31521 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
31522 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31524 <param name=
"dc" type=
"r.wxDC" default=
""/>
31527 <method name=
"base_OnMoveLink" overloaded=
"no">
31528 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31530 <param name=
"dc" type=
"r.wxDC" default=
""/>
31531 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31534 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
31535 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31536 int attachment=
0)
</autodoc>
31538 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31539 <param name=
"draw" type=
"bool" default=
""/>
31540 <param name=
"x" type=
"double" default=
""/>
31541 <param name=
"y" type=
"double" default=
""/>
31542 <param name=
"keys" type=
"int" default=
"0"/>
31543 <param name=
"attachment" type=
"int" default=
"0"/>
31546 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
31547 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31548 int attachment=
0)
</autodoc>
31550 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31551 <param name=
"x" type=
"double" default=
""/>
31552 <param name=
"y" type=
"double" default=
""/>
31553 <param name=
"keys" type=
"int" default=
"0"/>
31554 <param name=
"attachment" type=
"int" default=
"0"/>
31557 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
31558 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31559 int attachment=
0)
</autodoc>
31561 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
31562 <param name=
"x" type=
"double" default=
""/>
31563 <param name=
"y" type=
"double" default=
""/>
31564 <param name=
"keys" type=
"int" default=
"0"/>
31565 <param name=
"attachment" type=
"int" default=
"0"/>
31568 <method name=
"base_OnBeginSize" overloaded=
"no">
31569 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31571 <param name=
"w" type=
"double" default=
""/>
31572 <param name=
"h" type=
"double" default=
""/>
31575 <method name=
"base_OnEndSize" overloaded=
"no">
31576 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31578 <param name=
"w" type=
"double" default=
""/>
31579 <param name=
"h" type=
"double" default=
""/>
31583 <class name=
"ArrowHead" oldname=
"wxArrowHead" module=
"ogl">
31584 <baseclass name=
"wxObject"/>
31585 <constructor name=
"ArrowHead" overloaded=
"no">
31586 <autodoc>__init__(int type=
0, int end=
0, double size=
0.0, double dist=
0.0,
31587 String name=EmptyString, PseudoMetaFile mf=None,
31588 long arrowId=-
1) -
> ArrowHead
</autodoc>
31590 <param name=
"type" type=
"int" default=
"0"/>
31591 <param name=
"end" type=
"int" default=
"0"/>
31592 <param name=
"size" type=
"double" default=
"0.0"/>
31593 <param name=
"dist" type=
"double" default=
"0.0"/>
31594 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
31595 <param name=
"mf" type=
"p.wxPseudoMetaFile" default=
"NULL"/>
31596 <param name=
"arrowId" type=
"long" default=
"-1"/>
31599 <destructor name=
"~wxArrowHead">
31600 <autodoc>__del__()
</autodoc>
31602 <method name=
"_GetType" overloaded=
"no">
31603 <autodoc>_GetType() -
> int
</autodoc>
31605 <method name=
"GetPosition" overloaded=
"no">
31606 <autodoc>GetPosition() -
> int
</autodoc>
31608 <method name=
"SetPosition" overloaded=
"no">
31609 <autodoc>SetPosition(int pos)
</autodoc>
31611 <param name=
"pos" type=
"int" default=
""/>
31614 <method name=
"GetXOffset" overloaded=
"no">
31615 <autodoc>GetXOffset() -
> double
</autodoc>
31617 <method name=
"GetYOffset" overloaded=
"no">
31618 <autodoc>GetYOffset() -
> double
</autodoc>
31620 <method name=
"GetSpacing" overloaded=
"no">
31621 <autodoc>GetSpacing() -
> double
</autodoc>
31623 <method name=
"GetSize" overloaded=
"no">
31624 <autodoc>GetSize() -
> double
</autodoc>
31626 <method name=
"GetName" overloaded=
"no">
31627 <autodoc>GetName() -
> String
</autodoc>
31629 <method name=
"SetXOffset" overloaded=
"no">
31630 <autodoc>SetXOffset(double x)
</autodoc>
31632 <param name=
"x" type=
"double" default=
""/>
31635 <method name=
"SetYOffset" overloaded=
"no">
31636 <autodoc>SetYOffset(double y)
</autodoc>
31638 <param name=
"y" type=
"double" default=
""/>
31641 <method name=
"GetMetaFile" overloaded=
"no">
31642 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
31644 <method name=
"GetId" overloaded=
"no">
31645 <autodoc>GetId() -
> long
</autodoc>
31647 <method name=
"GetArrowEnd" overloaded=
"no">
31648 <autodoc>GetArrowEnd() -
> int
</autodoc>
31650 <method name=
"GetArrowSize" overloaded=
"no">
31651 <autodoc>GetArrowSize() -
> double
</autodoc>
31653 <method name=
"SetSize" overloaded=
"no">
31654 <autodoc>SetSize(double size)
</autodoc>
31656 <param name=
"size" type=
"double" default=
""/>
31659 <method name=
"SetSpacing" overloaded=
"no">
31660 <autodoc>SetSpacing(double sp)
</autodoc>
31662 <param name=
"sp" type=
"double" default=
""/>
31666 <class name=
"PyLineShape" oldname=
"wxPyLineShape" module=
"ogl">
31667 <baseclass name=
"wxPyShape"/>
31668 <constructor name=
"PyLineShape" overloaded=
"no">
31669 <autodoc>__init__() -
> PyLineShape
</autodoc>
31671 <method name=
"_setCallbackInfo" overloaded=
"no">
31672 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31674 <param name=
"self" type=
"p.PyObject" default=
""/>
31675 <param name=
"_class" type=
"p.PyObject" default=
""/>
31678 <method name=
"AddArrow" overloaded=
"no">
31679 <autodoc>AddArrow(int type, int end=ARROW_POSITION_END, double arrowSize=
10.0,
31680 double xOffset=
0.0, String name=EmptyString,
31681 PseudoMetaFile mf=None, long arrowId=-
1)
</autodoc>
31683 <param name=
"type" type=
"int" default=
""/>
31684 <param name=
"end" type=
"int" default=
"ARROW_POSITION_END"/>
31685 <param name=
"arrowSize" type=
"double" default=
"10.0"/>
31686 <param name=
"xOffset" type=
"double" default=
"0.0"/>
31687 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
31688 <param name=
"mf" type=
"p.wxPseudoMetaFile" default=
"NULL"/>
31689 <param name=
"arrowId" type=
"long" default=
"-1"/>
31692 <method name=
"AddArrowOrdered" overloaded=
"no">
31693 <autodoc>AddArrowOrdered(ArrowHead arrow, PyObject referenceList, int end)
</autodoc>
31695 <param name=
"arrow" type=
"p.wxArrowHead" default=
""/>
31696 <param name=
"referenceList" type=
"p.PyObject" default=
""/>
31697 <param name=
"end" type=
"int" default=
""/>
31700 <method name=
"ClearArrow" overloaded=
"no">
31701 <autodoc>ClearArrow(String name) -
> bool
</autodoc>
31703 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
31706 <method name=
"ClearArrowsAtPosition" overloaded=
"no">
31707 <autodoc>ClearArrowsAtPosition(int position=-
1)
</autodoc>
31709 <param name=
"position" type=
"int" default=
"-1"/>
31712 <method name=
"DrawArrow" overloaded=
"no">
31713 <autodoc>DrawArrow(DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)
</autodoc>
31715 <param name=
"dc" type=
"r.wxDC" default=
""/>
31716 <param name=
"arrow" type=
"p.wxArrowHead" default=
""/>
31717 <param name=
"xOffset" type=
"double" default=
""/>
31718 <param name=
"proportionalOffset" type=
"bool" default=
""/>
31721 <method name=
"DeleteArrowHeadId" overloaded=
"no">
31722 <autodoc>DeleteArrowHeadId(long arrowId) -
> bool
</autodoc>
31724 <param name=
"arrowId" type=
"long" default=
""/>
31727 <method name=
"DeleteArrowHead" overloaded=
"no">
31728 <autodoc>DeleteArrowHead(int position, String name) -
> bool
</autodoc>
31730 <param name=
"position" type=
"int" default=
""/>
31731 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
31734 <method name=
"DeleteLineControlPoint" overloaded=
"no">
31735 <autodoc>DeleteLineControlPoint() -
> bool
</autodoc>
31737 <method name=
"DrawArrows" overloaded=
"no">
31738 <autodoc>DrawArrows(DC dc)
</autodoc>
31740 <param name=
"dc" type=
"r.wxDC" default=
""/>
31743 <method name=
"DrawRegion" overloaded=
"no">
31744 <autodoc>DrawRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
31746 <param name=
"dc" type=
"r.wxDC" default=
""/>
31747 <param name=
"region" type=
"p.wxShapeRegion" default=
""/>
31748 <param name=
"x" type=
"double" default=
""/>
31749 <param name=
"y" type=
"double" default=
""/>
31752 <method name=
"EraseRegion" overloaded=
"no">
31753 <autodoc>EraseRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
31755 <param name=
"dc" type=
"r.wxDC" default=
""/>
31756 <param name=
"region" type=
"p.wxShapeRegion" default=
""/>
31757 <param name=
"x" type=
"double" default=
""/>
31758 <param name=
"y" type=
"double" default=
""/>
31761 <method name=
"FindArrowHeadId" overloaded=
"no">
31762 <autodoc>FindArrowHeadId(long arrowId) -
> ArrowHead
</autodoc>
31764 <param name=
"arrowId" type=
"long" default=
""/>
31767 <method name=
"FindArrowHead" overloaded=
"no">
31768 <autodoc>FindArrowHead(int position, String name) -
> ArrowHead
</autodoc>
31770 <param name=
"position" type=
"int" default=
""/>
31771 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
31774 <method name=
"FindLineEndPoints" overloaded=
"no">
31775 <autodoc>FindLineEndPoints(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
31777 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31778 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31779 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31780 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31783 <method name=
"FindLinePosition" overloaded=
"no">
31784 <autodoc>FindLinePosition(double x, double y) -
> int
</autodoc>
31786 <param name=
"x" type=
"double" default=
""/>
31787 <param name=
"y" type=
"double" default=
""/>
31790 <method name=
"FindMinimumWidth" overloaded=
"no">
31791 <autodoc>FindMinimumWidth() -
> double
</autodoc>
31793 <method name=
"FindNth" overloaded=
"no">
31794 <autodoc>FindNth(PyShape image, int OUTPUT, int OUTPUT, bool incoming)
</autodoc>
31796 <param name=
"image" type=
"p.wxPyShape" default=
""/>
31797 <param name=
"OUTPUT" type=
"p.int" default=
""/>
31798 <param name=
"OUTPUT" type=
"p.int" default=
""/>
31799 <param name=
"incoming" type=
"bool" default=
""/>
31802 <method name=
"GetAttachmentFrom" overloaded=
"no">
31803 <autodoc>GetAttachmentFrom() -
> int
</autodoc>
31805 <method name=
"GetAttachmentTo" overloaded=
"no">
31806 <autodoc>GetAttachmentTo() -
> int
</autodoc>
31808 <method name=
"GetEnds" overloaded=
"no">
31809 <autodoc>GetEnds(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
31811 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31812 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31813 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31814 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31817 <method name=
"GetFrom" overloaded=
"no">
31818 <autodoc>GetFrom() -
> PyShape
</autodoc>
31820 <method name=
"GetLabelPosition" overloaded=
"no">
31821 <autodoc>GetLabelPosition(int position, double OUTPUT, double OUTPUT)
</autodoc>
31823 <param name=
"position" type=
"int" default=
""/>
31824 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31825 <param name=
"OUTPUT" type=
"p.double" default=
""/>
31828 <method name=
"GetNextControlPoint" overloaded=
"no">
31829 <autodoc>GetNextControlPoint(PyShape shape) -
> RealPoint
</autodoc>
31831 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
31834 <method name=
"GetTo" overloaded=
"no">
31835 <autodoc>GetTo() -
> PyShape
</autodoc>
31837 <method name=
"Initialise" overloaded=
"no">
31838 <autodoc>Initialise()
</autodoc>
31840 <method name=
"InsertLineControlPoint" overloaded=
"no">
31841 <autodoc>InsertLineControlPoint(DC dc)
</autodoc>
31843 <param name=
"dc" type=
"p.wxDC" default=
""/>
31846 <method name=
"IsEnd" overloaded=
"no">
31847 <autodoc>IsEnd(PyShape shape) -
> bool
</autodoc>
31849 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
31852 <method name=
"IsSpline" overloaded=
"no">
31853 <autodoc>IsSpline() -
> bool
</autodoc>
31855 <method name=
"MakeLineControlPoints" overloaded=
"no">
31856 <autodoc>MakeLineControlPoints(int n)
</autodoc>
31858 <param name=
"n" type=
"int" default=
""/>
31861 <method name=
"GetLineControlPoints" overloaded=
"no">
31862 <autodoc>GetLineControlPoints() -
> PyObject
</autodoc>
31864 <method name=
"SetAttachmentFrom" overloaded=
"no">
31865 <autodoc>SetAttachmentFrom(int fromAttach)
</autodoc>
31867 <param name=
"fromAttach" type=
"int" default=
""/>
31870 <method name=
"SetAttachments" overloaded=
"no">
31871 <autodoc>SetAttachments(int fromAttach, int toAttach)
</autodoc>
31873 <param name=
"fromAttach" type=
"int" default=
""/>
31874 <param name=
"toAttach" type=
"int" default=
""/>
31877 <method name=
"SetAttachmentTo" overloaded=
"no">
31878 <autodoc>SetAttachmentTo(int toAttach)
</autodoc>
31880 <param name=
"toAttach" type=
"int" default=
""/>
31883 <method name=
"SetEnds" overloaded=
"no">
31884 <autodoc>SetEnds(double x1, double y1, double x2, double y2)
</autodoc>
31886 <param name=
"x1" type=
"double" default=
""/>
31887 <param name=
"y1" type=
"double" default=
""/>
31888 <param name=
"x2" type=
"double" default=
""/>
31889 <param name=
"y2" type=
"double" default=
""/>
31892 <method name=
"SetFrom" overloaded=
"no">
31893 <autodoc>SetFrom(PyShape object)
</autodoc>
31895 <param name=
"object" type=
"p.wxPyShape" default=
""/>
31898 <method name=
"SetIgnoreOffsets" overloaded=
"no">
31899 <autodoc>SetIgnoreOffsets(bool ignore)
</autodoc>
31901 <param name=
"ignore" type=
"bool" default=
""/>
31904 <method name=
"SetSpline" overloaded=
"no">
31905 <autodoc>SetSpline(bool spline)
</autodoc>
31907 <param name=
"spline" type=
"bool" default=
""/>
31910 <method name=
"SetTo" overloaded=
"no">
31911 <autodoc>SetTo(PyShape object)
</autodoc>
31913 <param name=
"object" type=
"p.wxPyShape" default=
""/>
31916 <method name=
"Straighten" overloaded=
"no">
31917 <autodoc>Straighten(DC dc=None)
</autodoc>
31919 <param name=
"dc" type=
"p.wxDC" default=
"NULL"/>
31922 <method name=
"Unlink" overloaded=
"no">
31923 <autodoc>Unlink()
</autodoc>
31925 <method name=
"SetAlignmentOrientation" overloaded=
"no">
31926 <autodoc>SetAlignmentOrientation(bool isEnd, bool isHoriz)
</autodoc>
31928 <param name=
"isEnd" type=
"bool" default=
""/>
31929 <param name=
"isHoriz" type=
"bool" default=
""/>
31932 <method name=
"SetAlignmentType" overloaded=
"no">
31933 <autodoc>SetAlignmentType(bool isEnd, int alignType)
</autodoc>
31935 <param name=
"isEnd" type=
"bool" default=
""/>
31936 <param name=
"alignType" type=
"int" default=
""/>
31939 <method name=
"GetAlignmentOrientation" overloaded=
"no">
31940 <autodoc>GetAlignmentOrientation(bool isEnd) -
> bool
</autodoc>
31942 <param name=
"isEnd" type=
"bool" default=
""/>
31945 <method name=
"GetAlignmentType" overloaded=
"no">
31946 <autodoc>GetAlignmentType(bool isEnd) -
> int
</autodoc>
31948 <param name=
"isEnd" type=
"bool" default=
""/>
31951 <method name=
"GetAlignmentStart" overloaded=
"no">
31952 <autodoc>GetAlignmentStart() -
> int
</autodoc>
31954 <method name=
"GetAlignmentEnd" overloaded=
"no">
31955 <autodoc>GetAlignmentEnd() -
> int
</autodoc>
31957 <method name=
"base_OnDraw" overloaded=
"no">
31958 <autodoc>base_OnDraw(DC dc)
</autodoc>
31960 <param name=
"dc" type=
"r.wxDC" default=
""/>
31963 <method name=
"base_OnDrawContents" overloaded=
"no">
31964 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31966 <param name=
"dc" type=
"r.wxDC" default=
""/>
31969 <method name=
"base_OnDrawBranches" overloaded=
"no">
31970 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31972 <param name=
"dc" type=
"r.wxDC" default=
""/>
31973 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31976 <method name=
"base_OnMoveLinks" overloaded=
"no">
31977 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31979 <param name=
"dc" type=
"r.wxDC" default=
""/>
31982 <method name=
"base_OnErase" overloaded=
"no">
31983 <autodoc>base_OnErase(DC dc)
</autodoc>
31985 <param name=
"dc" type=
"r.wxDC" default=
""/>
31988 <method name=
"base_OnEraseContents" overloaded=
"no">
31989 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31991 <param name=
"dc" type=
"r.wxDC" default=
""/>
31994 <method name=
"base_OnHighlight" overloaded=
"no">
31995 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31997 <param name=
"dc" type=
"r.wxDC" default=
""/>
32000 <method name=
"base_OnLeftClick" overloaded=
"no">
32001 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32003 <param name=
"x" type=
"double" default=
""/>
32004 <param name=
"y" type=
"double" default=
""/>
32005 <param name=
"keys" type=
"int" default=
"0"/>
32006 <param name=
"attachment" type=
"int" default=
"0"/>
32009 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
32010 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32012 <param name=
"x" type=
"double" default=
""/>
32013 <param name=
"y" type=
"double" default=
""/>
32014 <param name=
"keys" type=
"int" default=
"0"/>
32015 <param name=
"attachment" type=
"int" default=
"0"/>
32018 <method name=
"base_OnRightClick" overloaded=
"no">
32019 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32021 <param name=
"x" type=
"double" default=
""/>
32022 <param name=
"y" type=
"double" default=
""/>
32023 <param name=
"keys" type=
"int" default=
"0"/>
32024 <param name=
"attachment" type=
"int" default=
"0"/>
32027 <method name=
"base_OnSize" overloaded=
"no">
32028 <autodoc>base_OnSize(double x, double y)
</autodoc>
32030 <param name=
"x" type=
"double" default=
""/>
32031 <param name=
"y" type=
"double" default=
""/>
32034 <method name=
"base_OnMovePre" overloaded=
"no">
32035 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32036 bool display=True) -
> bool
</autodoc>
32038 <param name=
"dc" type=
"r.wxDC" default=
""/>
32039 <param name=
"x" type=
"double" default=
""/>
32040 <param name=
"y" type=
"double" default=
""/>
32041 <param name=
"old_x" type=
"double" default=
""/>
32042 <param name=
"old_y" type=
"double" default=
""/>
32043 <param name=
"display" type=
"bool" default=
"True"/>
32046 <method name=
"base_OnMovePost" overloaded=
"no">
32047 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32048 bool display=True)
</autodoc>
32050 <param name=
"dc" type=
"r.wxDC" default=
""/>
32051 <param name=
"x" type=
"double" default=
""/>
32052 <param name=
"y" type=
"double" default=
""/>
32053 <param name=
"old_x" type=
"double" default=
""/>
32054 <param name=
"old_y" type=
"double" default=
""/>
32055 <param name=
"display" type=
"bool" default=
"True"/>
32058 <method name=
"base_OnDragLeft" overloaded=
"no">
32059 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32061 <param name=
"draw" type=
"bool" default=
""/>
32062 <param name=
"x" type=
"double" default=
""/>
32063 <param name=
"y" type=
"double" default=
""/>
32064 <param name=
"keys" type=
"int" default=
"0"/>
32065 <param name=
"attachment" type=
"int" default=
"0"/>
32068 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
32069 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32071 <param name=
"x" type=
"double" default=
""/>
32072 <param name=
"y" type=
"double" default=
""/>
32073 <param name=
"keys" type=
"int" default=
"0"/>
32074 <param name=
"attachment" type=
"int" default=
"0"/>
32077 <method name=
"base_OnEndDragLeft" overloaded=
"no">
32078 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32080 <param name=
"x" type=
"double" default=
""/>
32081 <param name=
"y" type=
"double" default=
""/>
32082 <param name=
"keys" type=
"int" default=
"0"/>
32083 <param name=
"attachment" type=
"int" default=
"0"/>
32086 <method name=
"base_OnDragRight" overloaded=
"no">
32087 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32089 <param name=
"draw" type=
"bool" default=
""/>
32090 <param name=
"x" type=
"double" default=
""/>
32091 <param name=
"y" type=
"double" default=
""/>
32092 <param name=
"keys" type=
"int" default=
"0"/>
32093 <param name=
"attachment" type=
"int" default=
"0"/>
32096 <method name=
"base_OnBeginDragRight" overloaded=
"no">
32097 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32099 <param name=
"x" type=
"double" default=
""/>
32100 <param name=
"y" type=
"double" default=
""/>
32101 <param name=
"keys" type=
"int" default=
"0"/>
32102 <param name=
"attachment" type=
"int" default=
"0"/>
32105 <method name=
"base_OnEndDragRight" overloaded=
"no">
32106 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32108 <param name=
"x" type=
"double" default=
""/>
32109 <param name=
"y" type=
"double" default=
""/>
32110 <param name=
"keys" type=
"int" default=
"0"/>
32111 <param name=
"attachment" type=
"int" default=
"0"/>
32114 <method name=
"base_OnDrawOutline" overloaded=
"no">
32115 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32117 <param name=
"dc" type=
"r.wxDC" default=
""/>
32118 <param name=
"x" type=
"double" default=
""/>
32119 <param name=
"y" type=
"double" default=
""/>
32120 <param name=
"w" type=
"double" default=
""/>
32121 <param name=
"h" type=
"double" default=
""/>
32124 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
32125 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32127 <param name=
"dc" type=
"r.wxDC" default=
""/>
32130 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
32131 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32133 <param name=
"dc" type=
"r.wxDC" default=
""/>
32136 <method name=
"base_OnMoveLink" overloaded=
"no">
32137 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32139 <param name=
"dc" type=
"r.wxDC" default=
""/>
32140 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32143 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
32144 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32145 int attachment=
0)
</autodoc>
32147 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32148 <param name=
"draw" type=
"bool" default=
""/>
32149 <param name=
"x" type=
"double" default=
""/>
32150 <param name=
"y" type=
"double" default=
""/>
32151 <param name=
"keys" type=
"int" default=
"0"/>
32152 <param name=
"attachment" type=
"int" default=
"0"/>
32155 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
32156 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32157 int attachment=
0)
</autodoc>
32159 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32160 <param name=
"x" type=
"double" default=
""/>
32161 <param name=
"y" type=
"double" default=
""/>
32162 <param name=
"keys" type=
"int" default=
"0"/>
32163 <param name=
"attachment" type=
"int" default=
"0"/>
32166 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
32167 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32168 int attachment=
0)
</autodoc>
32170 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32171 <param name=
"x" type=
"double" default=
""/>
32172 <param name=
"y" type=
"double" default=
""/>
32173 <param name=
"keys" type=
"int" default=
"0"/>
32174 <param name=
"attachment" type=
"int" default=
"0"/>
32177 <method name=
"base_OnBeginSize" overloaded=
"no">
32178 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32180 <param name=
"w" type=
"double" default=
""/>
32181 <param name=
"h" type=
"double" default=
""/>
32184 <method name=
"base_OnEndSize" overloaded=
"no">
32185 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32187 <param name=
"w" type=
"double" default=
""/>
32188 <param name=
"h" type=
"double" default=
""/>
32192 <class name=
"PyPolygonShape" oldname=
"wxPyPolygonShape" module=
"ogl">
32193 <baseclass name=
"wxPyShape"/>
32194 <constructor name=
"PyPolygonShape" overloaded=
"no">
32195 <autodoc>__init__() -
> PyPolygonShape
</autodoc>
32197 <method name=
"_setCallbackInfo" overloaded=
"no">
32198 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32200 <param name=
"self" type=
"p.PyObject" default=
""/>
32201 <param name=
"_class" type=
"p.PyObject" default=
""/>
32204 <method name=
"Create" overloaded=
"no">
32205 <autodoc>Create(PyObject points) -
> PyObject
</autodoc>
32207 <param name=
"points" type=
"p.PyObject" default=
""/>
32210 <method name=
"AddPolygonPoint" overloaded=
"no">
32211 <autodoc>AddPolygonPoint(int pos=
0)
</autodoc>
32213 <param name=
"pos" type=
"int" default=
"0"/>
32216 <method name=
"CalculatePolygonCentre" overloaded=
"no">
32217 <autodoc>CalculatePolygonCentre()
</autodoc>
32219 <method name=
"DeletePolygonPoint" overloaded=
"no">
32220 <autodoc>DeletePolygonPoint(int pos=
0)
</autodoc>
32222 <param name=
"pos" type=
"int" default=
"0"/>
32225 <method name=
"GetPoints" overloaded=
"no">
32226 <autodoc>GetPoints() -
> PyObject
</autodoc>
32228 <method name=
"GetOriginalPoints" overloaded=
"no">
32229 <autodoc>GetOriginalPoints() -
> PyObject
</autodoc>
32231 <method name=
"GetOriginalWidth" overloaded=
"no">
32232 <autodoc>GetOriginalWidth() -
> double
</autodoc>
32234 <method name=
"GetOriginalHeight" overloaded=
"no">
32235 <autodoc>GetOriginalHeight() -
> double
</autodoc>
32237 <method name=
"SetOriginalWidth" overloaded=
"no">
32238 <autodoc>SetOriginalWidth(double w)
</autodoc>
32240 <param name=
"w" type=
"double" default=
""/>
32243 <method name=
"SetOriginalHeight" overloaded=
"no">
32244 <autodoc>SetOriginalHeight(double h)
</autodoc>
32246 <param name=
"h" type=
"double" default=
""/>
32249 <method name=
"UpdateOriginalPoints" overloaded=
"no">
32250 <autodoc>UpdateOriginalPoints()
</autodoc>
32252 <method name=
"base_OnDraw" overloaded=
"no">
32253 <autodoc>base_OnDraw(DC dc)
</autodoc>
32255 <param name=
"dc" type=
"r.wxDC" default=
""/>
32258 <method name=
"base_OnDrawContents" overloaded=
"no">
32259 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32261 <param name=
"dc" type=
"r.wxDC" default=
""/>
32264 <method name=
"base_OnDrawBranches" overloaded=
"no">
32265 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32267 <param name=
"dc" type=
"r.wxDC" default=
""/>
32268 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32271 <method name=
"base_OnMoveLinks" overloaded=
"no">
32272 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32274 <param name=
"dc" type=
"r.wxDC" default=
""/>
32277 <method name=
"base_OnErase" overloaded=
"no">
32278 <autodoc>base_OnErase(DC dc)
</autodoc>
32280 <param name=
"dc" type=
"r.wxDC" default=
""/>
32283 <method name=
"base_OnEraseContents" overloaded=
"no">
32284 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32286 <param name=
"dc" type=
"r.wxDC" default=
""/>
32289 <method name=
"base_OnHighlight" overloaded=
"no">
32290 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32292 <param name=
"dc" type=
"r.wxDC" default=
""/>
32295 <method name=
"base_OnLeftClick" overloaded=
"no">
32296 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32298 <param name=
"x" type=
"double" default=
""/>
32299 <param name=
"y" type=
"double" default=
""/>
32300 <param name=
"keys" type=
"int" default=
"0"/>
32301 <param name=
"attachment" type=
"int" default=
"0"/>
32304 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
32305 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32307 <param name=
"x" type=
"double" default=
""/>
32308 <param name=
"y" type=
"double" default=
""/>
32309 <param name=
"keys" type=
"int" default=
"0"/>
32310 <param name=
"attachment" type=
"int" default=
"0"/>
32313 <method name=
"base_OnRightClick" overloaded=
"no">
32314 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32316 <param name=
"x" type=
"double" default=
""/>
32317 <param name=
"y" type=
"double" default=
""/>
32318 <param name=
"keys" type=
"int" default=
"0"/>
32319 <param name=
"attachment" type=
"int" default=
"0"/>
32322 <method name=
"base_OnSize" overloaded=
"no">
32323 <autodoc>base_OnSize(double x, double y)
</autodoc>
32325 <param name=
"x" type=
"double" default=
""/>
32326 <param name=
"y" type=
"double" default=
""/>
32329 <method name=
"base_OnMovePre" overloaded=
"no">
32330 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32331 bool display=True) -
> bool
</autodoc>
32333 <param name=
"dc" type=
"r.wxDC" default=
""/>
32334 <param name=
"x" type=
"double" default=
""/>
32335 <param name=
"y" type=
"double" default=
""/>
32336 <param name=
"old_x" type=
"double" default=
""/>
32337 <param name=
"old_y" type=
"double" default=
""/>
32338 <param name=
"display" type=
"bool" default=
"True"/>
32341 <method name=
"base_OnMovePost" overloaded=
"no">
32342 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32343 bool display=True)
</autodoc>
32345 <param name=
"dc" type=
"r.wxDC" default=
""/>
32346 <param name=
"x" type=
"double" default=
""/>
32347 <param name=
"y" type=
"double" default=
""/>
32348 <param name=
"old_x" type=
"double" default=
""/>
32349 <param name=
"old_y" type=
"double" default=
""/>
32350 <param name=
"display" type=
"bool" default=
"True"/>
32353 <method name=
"base_OnDragLeft" overloaded=
"no">
32354 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32356 <param name=
"draw" type=
"bool" default=
""/>
32357 <param name=
"x" type=
"double" default=
""/>
32358 <param name=
"y" type=
"double" default=
""/>
32359 <param name=
"keys" type=
"int" default=
"0"/>
32360 <param name=
"attachment" type=
"int" default=
"0"/>
32363 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
32364 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32366 <param name=
"x" type=
"double" default=
""/>
32367 <param name=
"y" type=
"double" default=
""/>
32368 <param name=
"keys" type=
"int" default=
"0"/>
32369 <param name=
"attachment" type=
"int" default=
"0"/>
32372 <method name=
"base_OnEndDragLeft" overloaded=
"no">
32373 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32375 <param name=
"x" type=
"double" default=
""/>
32376 <param name=
"y" type=
"double" default=
""/>
32377 <param name=
"keys" type=
"int" default=
"0"/>
32378 <param name=
"attachment" type=
"int" default=
"0"/>
32381 <method name=
"base_OnDragRight" overloaded=
"no">
32382 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32384 <param name=
"draw" type=
"bool" default=
""/>
32385 <param name=
"x" type=
"double" default=
""/>
32386 <param name=
"y" type=
"double" default=
""/>
32387 <param name=
"keys" type=
"int" default=
"0"/>
32388 <param name=
"attachment" type=
"int" default=
"0"/>
32391 <method name=
"base_OnBeginDragRight" overloaded=
"no">
32392 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32394 <param name=
"x" type=
"double" default=
""/>
32395 <param name=
"y" type=
"double" default=
""/>
32396 <param name=
"keys" type=
"int" default=
"0"/>
32397 <param name=
"attachment" type=
"int" default=
"0"/>
32400 <method name=
"base_OnEndDragRight" overloaded=
"no">
32401 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32403 <param name=
"x" type=
"double" default=
""/>
32404 <param name=
"y" type=
"double" default=
""/>
32405 <param name=
"keys" type=
"int" default=
"0"/>
32406 <param name=
"attachment" type=
"int" default=
"0"/>
32409 <method name=
"base_OnDrawOutline" overloaded=
"no">
32410 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32412 <param name=
"dc" type=
"r.wxDC" default=
""/>
32413 <param name=
"x" type=
"double" default=
""/>
32414 <param name=
"y" type=
"double" default=
""/>
32415 <param name=
"w" type=
"double" default=
""/>
32416 <param name=
"h" type=
"double" default=
""/>
32419 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
32420 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32422 <param name=
"dc" type=
"r.wxDC" default=
""/>
32425 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
32426 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32428 <param name=
"dc" type=
"r.wxDC" default=
""/>
32431 <method name=
"base_OnMoveLink" overloaded=
"no">
32432 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32434 <param name=
"dc" type=
"r.wxDC" default=
""/>
32435 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32438 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
32439 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32440 int attachment=
0)
</autodoc>
32442 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32443 <param name=
"draw" type=
"bool" default=
""/>
32444 <param name=
"x" type=
"double" default=
""/>
32445 <param name=
"y" type=
"double" default=
""/>
32446 <param name=
"keys" type=
"int" default=
"0"/>
32447 <param name=
"attachment" type=
"int" default=
"0"/>
32450 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
32451 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32452 int attachment=
0)
</autodoc>
32454 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32455 <param name=
"x" type=
"double" default=
""/>
32456 <param name=
"y" type=
"double" default=
""/>
32457 <param name=
"keys" type=
"int" default=
"0"/>
32458 <param name=
"attachment" type=
"int" default=
"0"/>
32461 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
32462 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32463 int attachment=
0)
</autodoc>
32465 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32466 <param name=
"x" type=
"double" default=
""/>
32467 <param name=
"y" type=
"double" default=
""/>
32468 <param name=
"keys" type=
"int" default=
"0"/>
32469 <param name=
"attachment" type=
"int" default=
"0"/>
32472 <method name=
"base_OnBeginSize" overloaded=
"no">
32473 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32475 <param name=
"w" type=
"double" default=
""/>
32476 <param name=
"h" type=
"double" default=
""/>
32479 <method name=
"base_OnEndSize" overloaded=
"no">
32480 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32482 <param name=
"w" type=
"double" default=
""/>
32483 <param name=
"h" type=
"double" default=
""/>
32487 <class name=
"PyTextShape" oldname=
"wxPyTextShape" module=
"ogl">
32488 <baseclass name=
"wxPyRectangleShape"/>
32489 <constructor name=
"PyTextShape" overloaded=
"no">
32490 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyTextShape
</autodoc>
32492 <param name=
"width" type=
"double" default=
"0.0"/>
32493 <param name=
"height" type=
"double" default=
"0.0"/>
32496 <method name=
"_setCallbackInfo" overloaded=
"no">
32497 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32499 <param name=
"self" type=
"p.PyObject" default=
""/>
32500 <param name=
"_class" type=
"p.PyObject" default=
""/>
32503 <method name=
"base_OnDelete" overloaded=
"no">
32504 <autodoc>base_OnDelete()
</autodoc>
32506 <method name=
"base_OnDraw" overloaded=
"no">
32507 <autodoc>base_OnDraw(DC dc)
</autodoc>
32509 <param name=
"dc" type=
"r.wxDC" default=
""/>
32512 <method name=
"base_OnDrawContents" overloaded=
"no">
32513 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32515 <param name=
"dc" type=
"r.wxDC" default=
""/>
32518 <method name=
"base_OnDrawBranches" overloaded=
"no">
32519 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32521 <param name=
"dc" type=
"r.wxDC" default=
""/>
32522 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32525 <method name=
"base_OnMoveLinks" overloaded=
"no">
32526 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32528 <param name=
"dc" type=
"r.wxDC" default=
""/>
32531 <method name=
"base_OnErase" overloaded=
"no">
32532 <autodoc>base_OnErase(DC dc)
</autodoc>
32534 <param name=
"dc" type=
"r.wxDC" default=
""/>
32537 <method name=
"base_OnEraseContents" overloaded=
"no">
32538 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32540 <param name=
"dc" type=
"r.wxDC" default=
""/>
32543 <method name=
"base_OnHighlight" overloaded=
"no">
32544 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32546 <param name=
"dc" type=
"r.wxDC" default=
""/>
32549 <method name=
"base_OnLeftClick" overloaded=
"no">
32550 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32552 <param name=
"x" type=
"double" default=
""/>
32553 <param name=
"y" type=
"double" default=
""/>
32554 <param name=
"keys" type=
"int" default=
"0"/>
32555 <param name=
"attachment" type=
"int" default=
"0"/>
32558 <method name=
"base_OnLeftDoubleClick" overloaded=
"no">
32559 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32561 <param name=
"x" type=
"double" default=
""/>
32562 <param name=
"y" type=
"double" default=
""/>
32563 <param name=
"keys" type=
"int" default=
"0"/>
32564 <param name=
"attachment" type=
"int" default=
"0"/>
32567 <method name=
"base_OnRightClick" overloaded=
"no">
32568 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32570 <param name=
"x" type=
"double" default=
""/>
32571 <param name=
"y" type=
"double" default=
""/>
32572 <param name=
"keys" type=
"int" default=
"0"/>
32573 <param name=
"attachment" type=
"int" default=
"0"/>
32576 <method name=
"base_OnSize" overloaded=
"no">
32577 <autodoc>base_OnSize(double x, double y)
</autodoc>
32579 <param name=
"x" type=
"double" default=
""/>
32580 <param name=
"y" type=
"double" default=
""/>
32583 <method name=
"base_OnMovePre" overloaded=
"no">
32584 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32585 bool display=True) -
> bool
</autodoc>
32587 <param name=
"dc" type=
"r.wxDC" default=
""/>
32588 <param name=
"x" type=
"double" default=
""/>
32589 <param name=
"y" type=
"double" default=
""/>
32590 <param name=
"old_x" type=
"double" default=
""/>
32591 <param name=
"old_y" type=
"double" default=
""/>
32592 <param name=
"display" type=
"bool" default=
"True"/>
32595 <method name=
"base_OnMovePost" overloaded=
"no">
32596 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32597 bool display=True)
</autodoc>
32599 <param name=
"dc" type=
"r.wxDC" default=
""/>
32600 <param name=
"x" type=
"double" default=
""/>
32601 <param name=
"y" type=
"double" default=
""/>
32602 <param name=
"old_x" type=
"double" default=
""/>
32603 <param name=
"old_y" type=
"double" default=
""/>
32604 <param name=
"display" type=
"bool" default=
"True"/>
32607 <method name=
"base_OnDragLeft" overloaded=
"no">
32608 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32610 <param name=
"draw" type=
"bool" default=
""/>
32611 <param name=
"x" type=
"double" default=
""/>
32612 <param name=
"y" type=
"double" default=
""/>
32613 <param name=
"keys" type=
"int" default=
"0"/>
32614 <param name=
"attachment" type=
"int" default=
"0"/>
32617 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
32618 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32620 <param name=
"x" type=
"double" default=
""/>
32621 <param name=
"y" type=
"double" default=
""/>
32622 <param name=
"keys" type=
"int" default=
"0"/>
32623 <param name=
"attachment" type=
"int" default=
"0"/>
32626 <method name=
"base_OnEndDragLeft" overloaded=
"no">
32627 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32629 <param name=
"x" type=
"double" default=
""/>
32630 <param name=
"y" type=
"double" default=
""/>
32631 <param name=
"keys" type=
"int" default=
"0"/>
32632 <param name=
"attachment" type=
"int" default=
"0"/>
32635 <method name=
"base_OnDragRight" overloaded=
"no">
32636 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32638 <param name=
"draw" type=
"bool" default=
""/>
32639 <param name=
"x" type=
"double" default=
""/>
32640 <param name=
"y" type=
"double" default=
""/>
32641 <param name=
"keys" type=
"int" default=
"0"/>
32642 <param name=
"attachment" type=
"int" default=
"0"/>
32645 <method name=
"base_OnBeginDragRight" overloaded=
"no">
32646 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32648 <param name=
"x" type=
"double" default=
""/>
32649 <param name=
"y" type=
"double" default=
""/>
32650 <param name=
"keys" type=
"int" default=
"0"/>
32651 <param name=
"attachment" type=
"int" default=
"0"/>
32654 <method name=
"base_OnEndDragRight" overloaded=
"no">
32655 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32657 <param name=
"x" type=
"double" default=
""/>
32658 <param name=
"y" type=
"double" default=
""/>
32659 <param name=
"keys" type=
"int" default=
"0"/>
32660 <param name=
"attachment" type=
"int" default=
"0"/>
32663 <method name=
"base_OnDrawOutline" overloaded=
"no">
32664 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32666 <param name=
"dc" type=
"r.wxDC" default=
""/>
32667 <param name=
"x" type=
"double" default=
""/>
32668 <param name=
"y" type=
"double" default=
""/>
32669 <param name=
"w" type=
"double" default=
""/>
32670 <param name=
"h" type=
"double" default=
""/>
32673 <method name=
"base_OnDrawControlPoints" overloaded=
"no">
32674 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32676 <param name=
"dc" type=
"r.wxDC" default=
""/>
32679 <method name=
"base_OnEraseControlPoints" overloaded=
"no">
32680 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32682 <param name=
"dc" type=
"r.wxDC" default=
""/>
32685 <method name=
"base_OnMoveLink" overloaded=
"no">
32686 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32688 <param name=
"dc" type=
"r.wxDC" default=
""/>
32689 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32692 <method name=
"base_OnSizingDragLeft" overloaded=
"no">
32693 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32694 int attachment=
0)
</autodoc>
32696 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32697 <param name=
"draw" type=
"bool" default=
""/>
32698 <param name=
"x" type=
"double" default=
""/>
32699 <param name=
"y" type=
"double" default=
""/>
32700 <param name=
"keys" type=
"int" default=
"0"/>
32701 <param name=
"attachment" type=
"int" default=
"0"/>
32704 <method name=
"base_OnSizingBeginDragLeft" overloaded=
"no">
32705 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32706 int attachment=
0)
</autodoc>
32708 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32709 <param name=
"x" type=
"double" default=
""/>
32710 <param name=
"y" type=
"double" default=
""/>
32711 <param name=
"keys" type=
"int" default=
"0"/>
32712 <param name=
"attachment" type=
"int" default=
"0"/>
32715 <method name=
"base_OnSizingEndDragLeft" overloaded=
"no">
32716 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32717 int attachment=
0)
</autodoc>
32719 <param name=
"pt" type=
"p.wxPyControlPoint" default=
""/>
32720 <param name=
"x" type=
"double" default=
""/>
32721 <param name=
"y" type=
"double" default=
""/>
32722 <param name=
"keys" type=
"int" default=
"0"/>
32723 <param name=
"attachment" type=
"int" default=
"0"/>
32726 <method name=
"base_OnBeginSize" overloaded=
"no">
32727 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32729 <param name=
"w" type=
"double" default=
""/>
32730 <param name=
"h" type=
"double" default=
""/>
32733 <method name=
"base_OnEndSize" overloaded=
"no">
32734 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32736 <param name=
"w" type=
"double" default=
""/>
32737 <param name=
"h" type=
"double" default=
""/>
32741 <class name=
"Diagram" oldname=
"wxDiagram" module=
"ogl">
32742 <baseclass name=
"wxObject"/>
32743 <constructor name=
"Diagram" overloaded=
"no">
32744 <autodoc>__init__() -
> Diagram
</autodoc>
32746 <method name=
"AddShape" overloaded=
"no">
32747 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
32749 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
32750 <param name=
"addAfter" type=
"p.wxPyShape" default=
"NULL"/>
32753 <method name=
"Clear" overloaded=
"no">
32754 <autodoc>Clear(DC dc)
</autodoc>
32756 <param name=
"dc" type=
"r.wxDC" default=
""/>
32759 <method name=
"DeleteAllShapes" overloaded=
"no">
32760 <autodoc>DeleteAllShapes()
</autodoc>
32762 <method name=
"DrawOutline" overloaded=
"no">
32763 <autodoc>DrawOutline(DC dc, double x1, double y1, double x2, double y2)
</autodoc>
32765 <param name=
"dc" type=
"r.wxDC" default=
""/>
32766 <param name=
"x1" type=
"double" default=
""/>
32767 <param name=
"y1" type=
"double" default=
""/>
32768 <param name=
"x2" type=
"double" default=
""/>
32769 <param name=
"y2" type=
"double" default=
""/>
32772 <method name=
"FindShape" overloaded=
"no">
32773 <autodoc>FindShape(long id) -
> PyShape
</autodoc>
32775 <param name=
"id" type=
"long" default=
""/>
32778 <method name=
"GetCanvas" overloaded=
"no">
32779 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
32781 <method name=
"GetCount" overloaded=
"no">
32782 <autodoc>GetCount() -
> int
</autodoc>
32784 <method name=
"GetGridSpacing" overloaded=
"no">
32785 <autodoc>GetGridSpacing() -
> double
</autodoc>
32787 <method name=
"GetMouseTolerance" overloaded=
"no">
32788 <autodoc>GetMouseTolerance() -
> int
</autodoc>
32790 <method name=
"GetShapeList" overloaded=
"no">
32791 <autodoc>GetShapeList() -
> PyObject
</autodoc>
32793 <method name=
"GetQuickEditMode" overloaded=
"no">
32794 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
32796 <method name=
"GetSnapToGrid" overloaded=
"no">
32797 <autodoc>GetSnapToGrid() -
> bool
</autodoc>
32799 <method name=
"InsertShape" overloaded=
"no">
32800 <autodoc>InsertShape(PyShape shape)
</autodoc>
32802 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
32805 <method name=
"RecentreAll" overloaded=
"no">
32806 <autodoc>RecentreAll(DC dc)
</autodoc>
32808 <param name=
"dc" type=
"r.wxDC" default=
""/>
32811 <method name=
"Redraw" overloaded=
"no">
32812 <autodoc>Redraw(DC dc)
</autodoc>
32814 <param name=
"dc" type=
"r.wxDC" default=
""/>
32817 <method name=
"RemoveAllShapes" overloaded=
"no">
32818 <autodoc>RemoveAllShapes()
</autodoc>
32820 <method name=
"RemoveShape" overloaded=
"no">
32821 <autodoc>RemoveShape(PyShape shape)
</autodoc>
32823 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
32826 <method name=
"SetCanvas" overloaded=
"no">
32827 <autodoc>SetCanvas(PyShapeCanvas canvas)
</autodoc>
32829 <param name=
"canvas" type=
"p.wxPyShapeCanvas" default=
""/>
32832 <method name=
"SetGridSpacing" overloaded=
"no">
32833 <autodoc>SetGridSpacing(double spacing)
</autodoc>
32835 <param name=
"spacing" type=
"double" default=
""/>
32838 <method name=
"SetMouseTolerance" overloaded=
"no">
32839 <autodoc>SetMouseTolerance(int tolerance)
</autodoc>
32841 <param name=
"tolerance" type=
"int" default=
""/>
32844 <method name=
"SetQuickEditMode" overloaded=
"no">
32845 <autodoc>SetQuickEditMode(bool mode)
</autodoc>
32847 <param name=
"mode" type=
"bool" default=
""/>
32850 <method name=
"SetSnapToGrid" overloaded=
"no">
32851 <autodoc>SetSnapToGrid(bool snap)
</autodoc>
32853 <param name=
"snap" type=
"bool" default=
""/>
32856 <method name=
"ShowAll" overloaded=
"no">
32857 <autodoc>ShowAll(bool show)
</autodoc>
32859 <param name=
"show" type=
"bool" default=
""/>
32862 <method name=
"Snap" overloaded=
"no">
32863 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
32865 <param name=
"INOUT" type=
"p.double" default=
""/>
32866 <param name=
"INOUT" type=
"p.double" default=
""/>
32870 <class name=
"PyShapeCanvas" oldname=
"wxPyShapeCanvas" module=
"ogl">
32871 <baseclass name=
"wxScrolledWindow"/>
32872 <constructor name=
"PyShapeCanvas" overloaded=
"no">
32873 <autodoc>__init__(Window parent=None, int id=-
1, Point pos=DefaultPosition,
32874 Size size=DefaultSize, long style=BORDER,
32875 String name=wxPyShapeCanvasNameStr) -
> PyShapeCanvas
</autodoc>
32877 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
32878 <param name=
"id" type=
"int" default=
"-1"/>
32879 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
32880 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
32881 <param name=
"style" type=
"long" default=
"wxBORDER"/>
32882 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyShapeCanvasNameStr"/>
32885 <method name=
"_setCallbackInfo" overloaded=
"no">
32886 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32888 <param name=
"self" type=
"p.PyObject" default=
""/>
32889 <param name=
"_class" type=
"p.PyObject" default=
""/>
32893 def _setOORandCallbackInfo(self, _class):
32894 self._setOORInfo(self)
32895 self._setCallbackInfo(self, _class)
32897 <method name=
"AddShape" overloaded=
"no">
32898 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
32900 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
32901 <param name=
"addAfter" type=
"p.wxPyShape" default=
"NULL"/>
32904 <method name=
"FindShape" overloaded=
"no">
32905 <autodoc>FindShape(double x1, double y, int OUTPUT, wxClassInfo info=None,
32906 PyShape notImage=None) -
> PyShape
</autodoc>
32908 <param name=
"x1" type=
"double" default=
""/>
32909 <param name=
"y" type=
"double" default=
""/>
32910 <param name=
"OUTPUT" type=
"p.int" default=
""/>
32911 <param name=
"info" type=
"p.wxClassInfo" default=
"NULL"/>
32912 <param name=
"notImage" type=
"p.wxPyShape" default=
"NULL"/>
32915 <method name=
"FindFirstSensitiveShape" overloaded=
"no">
32916 <autodoc>FindFirstSensitiveShape(double x1, double y, int OUTPUT, int op) -
> PyShape
</autodoc>
32918 <param name=
"x1" type=
"double" default=
""/>
32919 <param name=
"y" type=
"double" default=
""/>
32920 <param name=
"OUTPUT" type=
"p.int" default=
""/>
32921 <param name=
"op" type=
"int" default=
""/>
32924 <method name=
"GetDiagram" overloaded=
"no">
32925 <autodoc>GetDiagram() -
> Diagram
</autodoc>
32927 <method name=
"GetQuickEditMode" overloaded=
"no">
32928 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
32930 <method name=
"InsertShape" overloaded=
"no">
32931 <autodoc>InsertShape(PyShape shape)
</autodoc>
32933 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
32936 <method name=
"base_OnBeginDragLeft" overloaded=
"no">
32937 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0)
</autodoc>
32939 <param name=
"x" type=
"double" default=
""/>
32940 <param name=
"y" type=
"double" default=
""/>
32941 <param name=
"keys" type=
"int" default=
"0"/>
32944 <method name=
"base_OnBeginDragRight" overloaded=
"no">
32945 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0)
</autodoc>
32947 <param name=
"x" type=
"double" default=
""/>
32948 <param name=
"y" type=
"double" default=
""/>
32949 <param name=
"keys" type=
"int" default=
"0"/>
32952 <method name=
"base_OnEndDragLeft" overloaded=
"no">
32953 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0)
</autodoc>
32955 <param name=
"x" type=
"double" default=
""/>
32956 <param name=
"y" type=
"double" default=
""/>
32957 <param name=
"keys" type=
"int" default=
"0"/>
32960 <method name=
"base_OnEndDragRight" overloaded=
"no">
32961 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0)
</autodoc>
32963 <param name=
"x" type=
"double" default=
""/>
32964 <param name=
"y" type=
"double" default=
""/>
32965 <param name=
"keys" type=
"int" default=
"0"/>
32968 <method name=
"base_OnDragLeft" overloaded=
"no">
32969 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0)
</autodoc>
32971 <param name=
"draw" type=
"bool" default=
""/>
32972 <param name=
"x" type=
"double" default=
""/>
32973 <param name=
"y" type=
"double" default=
""/>
32974 <param name=
"keys" type=
"int" default=
"0"/>
32977 <method name=
"base_OnDragRight" overloaded=
"no">
32978 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0)
</autodoc>
32980 <param name=
"draw" type=
"bool" default=
""/>
32981 <param name=
"x" type=
"double" default=
""/>
32982 <param name=
"y" type=
"double" default=
""/>
32983 <param name=
"keys" type=
"int" default=
"0"/>
32986 <method name=
"base_OnLeftClick" overloaded=
"no">
32987 <autodoc>base_OnLeftClick(double x, double y, int keys=
0)
</autodoc>
32989 <param name=
"x" type=
"double" default=
""/>
32990 <param name=
"y" type=
"double" default=
""/>
32991 <param name=
"keys" type=
"int" default=
"0"/>
32994 <method name=
"base_OnRightClick" overloaded=
"no">
32995 <autodoc>base_OnRightClick(double x, double y, int keys=
0)
</autodoc>
32997 <param name=
"x" type=
"double" default=
""/>
32998 <param name=
"y" type=
"double" default=
""/>
32999 <param name=
"keys" type=
"int" default=
"0"/>
33002 <method name=
"Redraw" overloaded=
"no">
33003 <autodoc>Redraw(DC dc)
</autodoc>
33005 <param name=
"dc" type=
"r.wxDC" default=
""/>
33008 <method name=
"RemoveShape" overloaded=
"no">
33009 <autodoc>RemoveShape(PyShape shape)
</autodoc>
33011 <param name=
"shape" type=
"p.wxPyShape" default=
""/>
33014 <method name=
"SetDiagram" overloaded=
"no">
33015 <autodoc>SetDiagram(Diagram diagram)
</autodoc>
33017 <param name=
"diagram" type=
"p.wxDiagram" default=
""/>
33020 <method name=
"Snap" overloaded=
"no">
33021 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
33023 <param name=
"INOUT" type=
"p.double" default=
""/>
33024 <param name=
"INOUT" type=
"p.double" default=
""/>
33028 def GetShapeList(self):
33029 return self.GetDiagram().GetShapeList()
33034 ShapeCanvas = PyShapeCanvas
33035 ShapeEvtHandler = PyShapeEvtHandler
33037 RectangleShape = PyRectangleShape
33038 BitmapShape = PyBitmapShape
33039 DrawnShape = PyDrawnShape
33040 CompositeShape = PyCompositeShape
33041 DividedShape = PyDividedShape
33042 DivisionShape = PyDivisionShape
33043 EllipseShape = PyEllipseShape
33044 CircleShape = PyCircleShape
33045 LineShape = PyLineShape
33046 PolygonShape = PyPolygonShape
33047 TextShape = PyTextShape
33048 ControlPoint = PyControlPoint
33050 <function oldname=
"wxOGLInitialize" name=
"OGLInitialize" overloaded=
"no">
33051 <autodoc>OGLInitialize()
</autodoc>
33053 <function oldname=
"wxOGLCleanUp" name=
"OGLCleanUp" overloaded=
"no">
33054 <autodoc>OGLCleanUp()
</autodoc>
33057 <module name=
"stc">
33058 <pythoncode> wx = core
</pythoncode>
33059 <class name=
"StyledTextCtrl" oldname=
"wxStyledTextCtrl" module=
"stc">
33060 <baseclass name=
"wxControl"/>
33061 <constructor name=
"StyledTextCtrl" overloaded=
"no">
33062 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
33063 long style=
0, String name=STCNameStr) -
> StyledTextCtrl
</autodoc>
33065 <param name=
"parent" type=
"p.wxWindow" default=
""/>
33066 <param name=
"id" type=
"int" default=
""/>
33067 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
33068 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
33069 <param name=
"style" type=
"long" default=
"0"/>
33070 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPySTCNameStr"/>
33073 <constructor name=
"PreStyledTextCtrl" overloaded=
"no">
33074 <autodoc>PreStyledTextCtrl() -
> StyledTextCtrl
</autodoc>
33076 <method name=
"Create" overloaded=
"no">
33077 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
33078 long style=
0, String name=wxSTCNameStr)
</autodoc>
33080 <param name=
"parent" type=
"p.wxWindow" default=
""/>
33081 <param name=
"id" type=
"int" default=
""/>
33082 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
33083 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
33084 <param name=
"style" type=
"long" default=
"0"/>
33085 <param name=
"name" type=
"r.q(const).wxString" default=
"wxSTCNameStr"/>
33088 <method name=
"AddText" overloaded=
"no">
33089 <autodoc>AddText(String text)
</autodoc>
33091 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
33094 <method name=
"AddStyledText" overloaded=
"no">
33095 <autodoc>AddStyledText(wxMemoryBuffer data)
</autodoc>
33097 <param name=
"data" type=
"r.q(const).wxMemoryBuffer" default=
""/>
33100 <method name=
"InsertText" overloaded=
"no">
33101 <autodoc>InsertText(int pos, String text)
</autodoc>
33103 <param name=
"pos" type=
"int" default=
""/>
33104 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
33107 <method name=
"ClearAll" overloaded=
"no">
33108 <autodoc>ClearAll()
</autodoc>
33110 <method name=
"ClearDocumentStyle" overloaded=
"no">
33111 <autodoc>ClearDocumentStyle()
</autodoc>
33113 <method name=
"GetLength" overloaded=
"no">
33114 <autodoc>GetLength() -
> int
</autodoc>
33116 <method name=
"GetCharAt" overloaded=
"no">
33117 <autodoc>GetCharAt(int pos) -
> int
</autodoc>
33119 <param name=
"pos" type=
"int" default=
""/>
33122 <method name=
"GetCurrentPos" overloaded=
"no">
33123 <autodoc>GetCurrentPos() -
> int
</autodoc>
33125 <method name=
"GetAnchor" overloaded=
"no">
33126 <autodoc>GetAnchor() -
> int
</autodoc>
33128 <method name=
"GetStyleAt" overloaded=
"no">
33129 <autodoc>GetStyleAt(int pos) -
> int
</autodoc>
33131 <param name=
"pos" type=
"int" default=
""/>
33134 <method name=
"Redo" overloaded=
"no">
33135 <autodoc>Redo()
</autodoc>
33137 <method name=
"SetUndoCollection" overloaded=
"no">
33138 <autodoc>SetUndoCollection(bool collectUndo)
</autodoc>
33140 <param name=
"collectUndo" type=
"bool" default=
""/>
33143 <method name=
"SelectAll" overloaded=
"no">
33144 <autodoc>SelectAll()
</autodoc>
33146 <method name=
"SetSavePoint" overloaded=
"no">
33147 <autodoc>SetSavePoint()
</autodoc>
33149 <method name=
"GetStyledText" overloaded=
"no">
33150 <autodoc>GetStyledText(int startPos, int endPos) -
> wxMemoryBuffer
</autodoc>
33152 <param name=
"startPos" type=
"int" default=
""/>
33153 <param name=
"endPos" type=
"int" default=
""/>
33156 <method name=
"CanRedo" overloaded=
"no">
33157 <autodoc>CanRedo() -
> bool
</autodoc>
33159 <method name=
"MarkerLineFromHandle" overloaded=
"no">
33160 <autodoc>MarkerLineFromHandle(int handle) -
> int
</autodoc>
33162 <param name=
"handle" type=
"int" default=
""/>
33165 <method name=
"MarkerDeleteHandle" overloaded=
"no">
33166 <autodoc>MarkerDeleteHandle(int handle)
</autodoc>
33168 <param name=
"handle" type=
"int" default=
""/>
33171 <method name=
"GetUndoCollection" overloaded=
"no">
33172 <autodoc>GetUndoCollection() -
> bool
</autodoc>
33174 <method name=
"GetViewWhiteSpace" overloaded=
"no">
33175 <autodoc>GetViewWhiteSpace() -
> int
</autodoc>
33177 <method name=
"SetViewWhiteSpace" overloaded=
"no">
33178 <autodoc>SetViewWhiteSpace(int viewWS)
</autodoc>
33180 <param name=
"viewWS" type=
"int" default=
""/>
33183 <method name=
"PositionFromPoint" overloaded=
"no">
33184 <autodoc>PositionFromPoint(Point pt) -
> int
</autodoc>
33186 <param name=
"pt" type=
"wxPoint" default=
""/>
33189 <method name=
"PositionFromPointClose" overloaded=
"no">
33190 <autodoc>PositionFromPointClose(int x, int y) -
> int
</autodoc>
33192 <param name=
"x" type=
"int" default=
""/>
33193 <param name=
"y" type=
"int" default=
""/>
33196 <method name=
"GotoLine" overloaded=
"no">
33197 <autodoc>GotoLine(int line)
</autodoc>
33199 <param name=
"line" type=
"int" default=
""/>
33202 <method name=
"GotoPos" overloaded=
"no">
33203 <autodoc>GotoPos(int pos)
</autodoc>
33205 <param name=
"pos" type=
"int" default=
""/>
33208 <method name=
"SetAnchor" overloaded=
"no">
33209 <autodoc>SetAnchor(int posAnchor)
</autodoc>
33211 <param name=
"posAnchor" type=
"int" default=
""/>
33214 <method name=
"GetCurLine" overloaded=
"no">
33215 <autodoc>GetCurLine(int OUTPUT) -
> String
</autodoc>
33217 <param name=
"OUTPUT" type=
"p.int" default=
""/>
33220 <method name=
"GetEndStyled" overloaded=
"no">
33221 <autodoc>GetEndStyled() -
> int
</autodoc>
33223 <method name=
"ConvertEOLs" overloaded=
"no">
33224 <autodoc>ConvertEOLs(int eolMode)
</autodoc>
33226 <param name=
"eolMode" type=
"int" default=
""/>
33229 <method name=
"GetEOLMode" overloaded=
"no">
33230 <autodoc>GetEOLMode() -
> int
</autodoc>
33232 <method name=
"SetEOLMode" overloaded=
"no">
33233 <autodoc>SetEOLMode(int eolMode)
</autodoc>
33235 <param name=
"eolMode" type=
"int" default=
""/>
33238 <method name=
"StartStyling" overloaded=
"no">
33239 <autodoc>StartStyling(int pos, int mask)
</autodoc>
33241 <param name=
"pos" type=
"int" default=
""/>
33242 <param name=
"mask" type=
"int" default=
""/>
33245 <method name=
"SetStyling" overloaded=
"no">
33246 <autodoc>SetStyling(int length, int style)
</autodoc>
33248 <param name=
"length" type=
"int" default=
""/>
33249 <param name=
"style" type=
"int" default=
""/>
33252 <method name=
"GetBufferedDraw" overloaded=
"no">
33253 <autodoc>GetBufferedDraw() -
> bool
</autodoc>
33255 <method name=
"SetBufferedDraw" overloaded=
"no">
33256 <autodoc>SetBufferedDraw(bool buffered)
</autodoc>
33258 <param name=
"buffered" type=
"bool" default=
""/>
33261 <method name=
"SetTabWidth" overloaded=
"no">
33262 <autodoc>SetTabWidth(int tabWidth)
</autodoc>
33264 <param name=
"tabWidth" type=
"int" default=
""/>
33267 <method name=
"GetTabWidth" overloaded=
"no">
33268 <autodoc>GetTabWidth() -
> int
</autodoc>
33270 <method name=
"SetCodePage" overloaded=
"no">
33271 <autodoc>SetCodePage(int codePage)
</autodoc>
33273 <param name=
"codePage" type=
"int" default=
""/>
33276 <method name=
"MarkerDefine" overloaded=
"no">
33277 <autodoc>MarkerDefine(int markerNumber, int markerSymbol, Colour foreground=wxNullColour,
33278 Colour background=wxNullColour)
</autodoc>
33280 <param name=
"markerNumber" type=
"int" default=
""/>
33281 <param name=
"markerSymbol" type=
"int" default=
""/>
33282 <param name=
"foreground" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
33283 <param name=
"background" type=
"r.q(const).wxColour" default=
"wxNullColour"/>
33286 <method name=
"MarkerSetForeground" overloaded=
"no">
33287 <autodoc>MarkerSetForeground(int markerNumber, Colour fore)
</autodoc>
33289 <param name=
"markerNumber" type=
"int" default=
""/>
33290 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33293 <method name=
"MarkerSetBackground" overloaded=
"no">
33294 <autodoc>MarkerSetBackground(int markerNumber, Colour back)
</autodoc>
33296 <param name=
"markerNumber" type=
"int" default=
""/>
33297 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
33300 <method name=
"MarkerAdd" overloaded=
"no">
33301 <autodoc>MarkerAdd(int line, int markerNumber) -
> int
</autodoc>
33303 <param name=
"line" type=
"int" default=
""/>
33304 <param name=
"markerNumber" type=
"int" default=
""/>
33307 <method name=
"MarkerDelete" overloaded=
"no">
33308 <autodoc>MarkerDelete(int line, int markerNumber)
</autodoc>
33310 <param name=
"line" type=
"int" default=
""/>
33311 <param name=
"markerNumber" type=
"int" default=
""/>
33314 <method name=
"MarkerDeleteAll" overloaded=
"no">
33315 <autodoc>MarkerDeleteAll(int markerNumber)
</autodoc>
33317 <param name=
"markerNumber" type=
"int" default=
""/>
33320 <method name=
"MarkerGet" overloaded=
"no">
33321 <autodoc>MarkerGet(int line) -
> int
</autodoc>
33323 <param name=
"line" type=
"int" default=
""/>
33326 <method name=
"MarkerNext" overloaded=
"no">
33327 <autodoc>MarkerNext(int lineStart, int markerMask) -
> int
</autodoc>
33329 <param name=
"lineStart" type=
"int" default=
""/>
33330 <param name=
"markerMask" type=
"int" default=
""/>
33333 <method name=
"MarkerPrevious" overloaded=
"no">
33334 <autodoc>MarkerPrevious(int lineStart, int markerMask) -
> int
</autodoc>
33336 <param name=
"lineStart" type=
"int" default=
""/>
33337 <param name=
"markerMask" type=
"int" default=
""/>
33340 <method name=
"MarkerDefineBitmap" overloaded=
"no">
33341 <autodoc>MarkerDefineBitmap(int markerNumber, Bitmap bmp)
</autodoc>
33343 <param name=
"markerNumber" type=
"int" default=
""/>
33344 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
33347 <method name=
"SetMarginType" overloaded=
"no">
33348 <autodoc>SetMarginType(int margin, int marginType)
</autodoc>
33350 <param name=
"margin" type=
"int" default=
""/>
33351 <param name=
"marginType" type=
"int" default=
""/>
33354 <method name=
"GetMarginType" overloaded=
"no">
33355 <autodoc>GetMarginType(int margin) -
> int
</autodoc>
33357 <param name=
"margin" type=
"int" default=
""/>
33360 <method name=
"SetMarginWidth" overloaded=
"no">
33361 <autodoc>SetMarginWidth(int margin, int pixelWidth)
</autodoc>
33363 <param name=
"margin" type=
"int" default=
""/>
33364 <param name=
"pixelWidth" type=
"int" default=
""/>
33367 <method name=
"GetMarginWidth" overloaded=
"no">
33368 <autodoc>GetMarginWidth(int margin) -
> int
</autodoc>
33370 <param name=
"margin" type=
"int" default=
""/>
33373 <method name=
"SetMarginMask" overloaded=
"no">
33374 <autodoc>SetMarginMask(int margin, int mask)
</autodoc>
33376 <param name=
"margin" type=
"int" default=
""/>
33377 <param name=
"mask" type=
"int" default=
""/>
33380 <method name=
"GetMarginMask" overloaded=
"no">
33381 <autodoc>GetMarginMask(int margin) -
> int
</autodoc>
33383 <param name=
"margin" type=
"int" default=
""/>
33386 <method name=
"SetMarginSensitive" overloaded=
"no">
33387 <autodoc>SetMarginSensitive(int margin, bool sensitive)
</autodoc>
33389 <param name=
"margin" type=
"int" default=
""/>
33390 <param name=
"sensitive" type=
"bool" default=
""/>
33393 <method name=
"GetMarginSensitive" overloaded=
"no">
33394 <autodoc>GetMarginSensitive(int margin) -
> bool
</autodoc>
33396 <param name=
"margin" type=
"int" default=
""/>
33399 <method name=
"StyleClearAll" overloaded=
"no">
33400 <autodoc>StyleClearAll()
</autodoc>
33402 <method name=
"StyleSetForeground" overloaded=
"no">
33403 <autodoc>StyleSetForeground(int style, Colour fore)
</autodoc>
33405 <param name=
"style" type=
"int" default=
""/>
33406 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33409 <method name=
"StyleSetBackground" overloaded=
"no">
33410 <autodoc>StyleSetBackground(int style, Colour back)
</autodoc>
33412 <param name=
"style" type=
"int" default=
""/>
33413 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
33416 <method name=
"StyleSetBold" overloaded=
"no">
33417 <autodoc>StyleSetBold(int style, bool bold)
</autodoc>
33419 <param name=
"style" type=
"int" default=
""/>
33420 <param name=
"bold" type=
"bool" default=
""/>
33423 <method name=
"StyleSetItalic" overloaded=
"no">
33424 <autodoc>StyleSetItalic(int style, bool italic)
</autodoc>
33426 <param name=
"style" type=
"int" default=
""/>
33427 <param name=
"italic" type=
"bool" default=
""/>
33430 <method name=
"StyleSetSize" overloaded=
"no">
33431 <autodoc>StyleSetSize(int style, int sizePoints)
</autodoc>
33433 <param name=
"style" type=
"int" default=
""/>
33434 <param name=
"sizePoints" type=
"int" default=
""/>
33437 <method name=
"StyleSetFaceName" overloaded=
"no">
33438 <autodoc>StyleSetFaceName(int style, String fontName)
</autodoc>
33440 <param name=
"style" type=
"int" default=
""/>
33441 <param name=
"fontName" type=
"r.q(const).wxString" default=
""/>
33444 <method name=
"StyleSetEOLFilled" overloaded=
"no">
33445 <autodoc>StyleSetEOLFilled(int style, bool filled)
</autodoc>
33447 <param name=
"style" type=
"int" default=
""/>
33448 <param name=
"filled" type=
"bool" default=
""/>
33451 <method name=
"StyleResetDefault" overloaded=
"no">
33452 <autodoc>StyleResetDefault()
</autodoc>
33454 <method name=
"StyleSetUnderline" overloaded=
"no">
33455 <autodoc>StyleSetUnderline(int style, bool underline)
</autodoc>
33457 <param name=
"style" type=
"int" default=
""/>
33458 <param name=
"underline" type=
"bool" default=
""/>
33461 <method name=
"StyleSetCase" overloaded=
"no">
33462 <autodoc>StyleSetCase(int style, int caseForce)
</autodoc>
33464 <param name=
"style" type=
"int" default=
""/>
33465 <param name=
"caseForce" type=
"int" default=
""/>
33468 <method name=
"StyleSetCharacterSet" overloaded=
"no">
33469 <autodoc>StyleSetCharacterSet(int style, int characterSet)
</autodoc>
33471 <param name=
"style" type=
"int" default=
""/>
33472 <param name=
"characterSet" type=
"int" default=
""/>
33475 <method name=
"StyleSetHotSpot" overloaded=
"no">
33476 <autodoc>StyleSetHotSpot(int style, bool hotspot)
</autodoc>
33478 <param name=
"style" type=
"int" default=
""/>
33479 <param name=
"hotspot" type=
"bool" default=
""/>
33482 <method name=
"SetSelForeground" overloaded=
"no">
33483 <autodoc>SetSelForeground(bool useSetting, Colour fore)
</autodoc>
33485 <param name=
"useSetting" type=
"bool" default=
""/>
33486 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33489 <method name=
"SetSelBackground" overloaded=
"no">
33490 <autodoc>SetSelBackground(bool useSetting, Colour back)
</autodoc>
33492 <param name=
"useSetting" type=
"bool" default=
""/>
33493 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
33496 <method name=
"SetCaretForeground" overloaded=
"no">
33497 <autodoc>SetCaretForeground(Colour fore)
</autodoc>
33499 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33502 <method name=
"CmdKeyAssign" overloaded=
"no">
33503 <autodoc>CmdKeyAssign(int key, int modifiers, int cmd)
</autodoc>
33505 <param name=
"key" type=
"int" default=
""/>
33506 <param name=
"modifiers" type=
"int" default=
""/>
33507 <param name=
"cmd" type=
"int" default=
""/>
33510 <method name=
"CmdKeyClear" overloaded=
"no">
33511 <autodoc>CmdKeyClear(int key, int modifiers)
</autodoc>
33513 <param name=
"key" type=
"int" default=
""/>
33514 <param name=
"modifiers" type=
"int" default=
""/>
33517 <method name=
"CmdKeyClearAll" overloaded=
"no">
33518 <autodoc>CmdKeyClearAll()
</autodoc>
33520 <method name=
"SetStyleBytes" overloaded=
"no">
33521 <autodoc>SetStyleBytes(int length, char styleBytes)
</autodoc>
33523 <param name=
"length" type=
"int" default=
""/>
33524 <param name=
"styleBytes" type=
"p.char" default=
""/>
33527 <method name=
"StyleSetVisible" overloaded=
"no">
33528 <autodoc>StyleSetVisible(int style, bool visible)
</autodoc>
33530 <param name=
"style" type=
"int" default=
""/>
33531 <param name=
"visible" type=
"bool" default=
""/>
33534 <method name=
"GetCaretPeriod" overloaded=
"no">
33535 <autodoc>GetCaretPeriod() -
> int
</autodoc>
33537 <method name=
"SetCaretPeriod" overloaded=
"no">
33538 <autodoc>SetCaretPeriod(int periodMilliseconds)
</autodoc>
33540 <param name=
"periodMilliseconds" type=
"int" default=
""/>
33543 <method name=
"SetWordChars" overloaded=
"no">
33544 <autodoc>SetWordChars(String characters)
</autodoc>
33546 <param name=
"characters" type=
"r.q(const).wxString" default=
""/>
33549 <method name=
"BeginUndoAction" overloaded=
"no">
33550 <autodoc>BeginUndoAction()
</autodoc>
33552 <method name=
"EndUndoAction" overloaded=
"no">
33553 <autodoc>EndUndoAction()
</autodoc>
33555 <method name=
"IndicatorSetStyle" overloaded=
"no">
33556 <autodoc>IndicatorSetStyle(int indic, int style)
</autodoc>
33558 <param name=
"indic" type=
"int" default=
""/>
33559 <param name=
"style" type=
"int" default=
""/>
33562 <method name=
"IndicatorGetStyle" overloaded=
"no">
33563 <autodoc>IndicatorGetStyle(int indic) -
> int
</autodoc>
33565 <param name=
"indic" type=
"int" default=
""/>
33568 <method name=
"IndicatorSetForeground" overloaded=
"no">
33569 <autodoc>IndicatorSetForeground(int indic, Colour fore)
</autodoc>
33571 <param name=
"indic" type=
"int" default=
""/>
33572 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33575 <method name=
"IndicatorGetForeground" overloaded=
"no">
33576 <autodoc>IndicatorGetForeground(int indic) -
> Colour
</autodoc>
33578 <param name=
"indic" type=
"int" default=
""/>
33581 <method name=
"SetWhitespaceForeground" overloaded=
"no">
33582 <autodoc>SetWhitespaceForeground(bool useSetting, Colour fore)
</autodoc>
33584 <param name=
"useSetting" type=
"bool" default=
""/>
33585 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
33588 <method name=
"SetWhitespaceBackground" overloaded=
"no">
33589 <autodoc>SetWhitespaceBackground(bool useSetting, Colour back)
</autodoc>
33591 <param name=
"useSetting" type=
"bool" default=
""/>
33592 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
33595 <method name=
"SetStyleBits" overloaded=
"no">
33596 <autodoc>SetStyleBits(int bits)
</autodoc>
33598 <param name=
"bits" type=
"int" default=
""/>
33601 <method name=
"GetStyleBits" overloaded=
"no">
33602 <autodoc>GetStyleBits() -
> int
</autodoc>
33604 <method name=
"SetLineState" overloaded=
"no">
33605 <autodoc>SetLineState(int line, int state)
</autodoc>
33607 <param name=
"line" type=
"int" default=
""/>
33608 <param name=
"state" type=
"int" default=
""/>
33611 <method name=
"GetLineState" overloaded=
"no">
33612 <autodoc>GetLineState(int line) -
> int
</autodoc>
33614 <param name=
"line" type=
"int" default=
""/>
33617 <method name=
"GetMaxLineState" overloaded=
"no">
33618 <autodoc>GetMaxLineState() -
> int
</autodoc>
33620 <method name=
"GetCaretLineVisible" overloaded=
"no">
33621 <autodoc>GetCaretLineVisible() -
> bool
</autodoc>
33623 <method name=
"SetCaretLineVisible" overloaded=
"no">
33624 <autodoc>SetCaretLineVisible(bool show)
</autodoc>
33626 <param name=
"show" type=
"bool" default=
""/>
33629 <method name=
"GetCaretLineBack" overloaded=
"no">
33630 <autodoc>GetCaretLineBack() -
> Colour
</autodoc>
33632 <method name=
"SetCaretLineBack" overloaded=
"no">
33633 <autodoc>SetCaretLineBack(Colour back)
</autodoc>
33635 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
33638 <method name=
"StyleSetChangeable" overloaded=
"no">
33639 <autodoc>StyleSetChangeable(int style, bool changeable)
</autodoc>
33641 <param name=
"style" type=
"int" default=
""/>
33642 <param name=
"changeable" type=
"bool" default=
""/>
33645 <method name=
"AutoCompShow" overloaded=
"no">
33646 <autodoc>AutoCompShow(int lenEntered, String itemList)
</autodoc>
33648 <param name=
"lenEntered" type=
"int" default=
""/>
33649 <param name=
"itemList" type=
"r.q(const).wxString" default=
""/>
33652 <method name=
"AutoCompCancel" overloaded=
"no">
33653 <autodoc>AutoCompCancel()
</autodoc>
33655 <method name=
"AutoCompActive" overloaded=
"no">
33656 <autodoc>AutoCompActive() -
> bool
</autodoc>
33658 <method name=
"AutoCompPosStart" overloaded=
"no">
33659 <autodoc>AutoCompPosStart() -
> int
</autodoc>
33661 <method name=
"AutoCompComplete" overloaded=
"no">
33662 <autodoc>AutoCompComplete()
</autodoc>
33664 <method name=
"AutoCompStops" overloaded=
"no">
33665 <autodoc>AutoCompStops(String characterSet)
</autodoc>
33667 <param name=
"characterSet" type=
"r.q(const).wxString" default=
""/>
33670 <method name=
"AutoCompSetSeparator" overloaded=
"no">
33671 <autodoc>AutoCompSetSeparator(int separatorCharacter)
</autodoc>
33673 <param name=
"separatorCharacter" type=
"int" default=
""/>
33676 <method name=
"AutoCompGetSeparator" overloaded=
"no">
33677 <autodoc>AutoCompGetSeparator() -
> int
</autodoc>
33679 <method name=
"AutoCompSelect" overloaded=
"no">
33680 <autodoc>AutoCompSelect(String text)
</autodoc>
33682 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
33685 <method name=
"AutoCompSetCancelAtStart" overloaded=
"no">
33686 <autodoc>AutoCompSetCancelAtStart(bool cancel)
</autodoc>
33688 <param name=
"cancel" type=
"bool" default=
""/>
33691 <method name=
"AutoCompGetCancelAtStart" overloaded=
"no">
33692 <autodoc>AutoCompGetCancelAtStart() -
> bool
</autodoc>
33694 <method name=
"AutoCompSetFillUps" overloaded=
"no">
33695 <autodoc>AutoCompSetFillUps(String characterSet)
</autodoc>
33697 <param name=
"characterSet" type=
"r.q(const).wxString" default=
""/>
33700 <method name=
"AutoCompSetChooseSingle" overloaded=
"no">
33701 <autodoc>AutoCompSetChooseSingle(bool chooseSingle)
</autodoc>
33703 <param name=
"chooseSingle" type=
"bool" default=
""/>
33706 <method name=
"AutoCompGetChooseSingle" overloaded=
"no">
33707 <autodoc>AutoCompGetChooseSingle() -
> bool
</autodoc>
33709 <method name=
"AutoCompSetIgnoreCase" overloaded=
"no">
33710 <autodoc>AutoCompSetIgnoreCase(bool ignoreCase)
</autodoc>
33712 <param name=
"ignoreCase" type=
"bool" default=
""/>
33715 <method name=
"AutoCompGetIgnoreCase" overloaded=
"no">
33716 <autodoc>AutoCompGetIgnoreCase() -
> bool
</autodoc>
33718 <method name=
"UserListShow" overloaded=
"no">
33719 <autodoc>UserListShow(int listType, String itemList)
</autodoc>
33721 <param name=
"listType" type=
"int" default=
""/>
33722 <param name=
"itemList" type=
"r.q(const).wxString" default=
""/>
33725 <method name=
"AutoCompSetAutoHide" overloaded=
"no">
33726 <autodoc>AutoCompSetAutoHide(bool autoHide)
</autodoc>
33728 <param name=
"autoHide" type=
"bool" default=
""/>
33731 <method name=
"AutoCompGetAutoHide" overloaded=
"no">
33732 <autodoc>AutoCompGetAutoHide() -
> bool
</autodoc>
33734 <method name=
"AutoCompSetDropRestOfWord" overloaded=
"no">
33735 <autodoc>AutoCompSetDropRestOfWord(bool dropRestOfWord)
</autodoc>
33737 <param name=
"dropRestOfWord" type=
"bool" default=
""/>
33740 <method name=
"AutoCompGetDropRestOfWord" overloaded=
"no">
33741 <autodoc>AutoCompGetDropRestOfWord() -
> bool
</autodoc>
33743 <method name=
"RegisterImage" overloaded=
"no">
33744 <autodoc>RegisterImage(int type, Bitmap bmp)
</autodoc>
33746 <param name=
"type" type=
"int" default=
""/>
33747 <param name=
"bmp" type=
"r.q(const).wxBitmap" default=
""/>
33750 <method name=
"ClearRegisteredImages" overloaded=
"no">
33751 <autodoc>ClearRegisteredImages()
</autodoc>
33753 <method name=
"AutoCompGetTypeSeparator" overloaded=
"no">
33754 <autodoc>AutoCompGetTypeSeparator() -
> int
</autodoc>
33756 <method name=
"AutoCompSetTypeSeparator" overloaded=
"no">
33757 <autodoc>AutoCompSetTypeSeparator(int separatorCharacter)
</autodoc>
33759 <param name=
"separatorCharacter" type=
"int" default=
""/>
33762 <method name=
"SetIndent" overloaded=
"no">
33763 <autodoc>SetIndent(int indentSize)
</autodoc>
33765 <param name=
"indentSize" type=
"int" default=
""/>
33768 <method name=
"GetIndent" overloaded=
"no">
33769 <autodoc>GetIndent() -
> int
</autodoc>
33771 <method name=
"SetUseTabs" overloaded=
"no">
33772 <autodoc>SetUseTabs(bool useTabs)
</autodoc>
33774 <param name=
"useTabs" type=
"bool" default=
""/>
33777 <method name=
"GetUseTabs" overloaded=
"no">
33778 <autodoc>GetUseTabs() -
> bool
</autodoc>
33780 <method name=
"SetLineIndentation" overloaded=
"no">
33781 <autodoc>SetLineIndentation(int line, int indentSize)
</autodoc>
33783 <param name=
"line" type=
"int" default=
""/>
33784 <param name=
"indentSize" type=
"int" default=
""/>
33787 <method name=
"GetLineIndentation" overloaded=
"no">
33788 <autodoc>GetLineIndentation(int line) -
> int
</autodoc>
33790 <param name=
"line" type=
"int" default=
""/>
33793 <method name=
"GetLineIndentPosition" overloaded=
"no">
33794 <autodoc>GetLineIndentPosition(int line) -
> int
</autodoc>
33796 <param name=
"line" type=
"int" default=
""/>
33799 <method name=
"GetColumn" overloaded=
"no">
33800 <autodoc>GetColumn(int pos) -
> int
</autodoc>
33802 <param name=
"pos" type=
"int" default=
""/>
33805 <method name=
"SetUseHorizontalScrollBar" overloaded=
"no">
33806 <autodoc>SetUseHorizontalScrollBar(bool show)
</autodoc>
33808 <param name=
"show" type=
"bool" default=
""/>
33811 <method name=
"GetUseHorizontalScrollBar" overloaded=
"no">
33812 <autodoc>GetUseHorizontalScrollBar() -
> bool
</autodoc>
33814 <method name=
"SetIndentationGuides" overloaded=
"no">
33815 <autodoc>SetIndentationGuides(bool show)
</autodoc>
33817 <param name=
"show" type=
"bool" default=
""/>
33820 <method name=
"GetIndentationGuides" overloaded=
"no">
33821 <autodoc>GetIndentationGuides() -
> bool
</autodoc>
33823 <method name=
"SetHighlightGuide" overloaded=
"no">
33824 <autodoc>SetHighlightGuide(int column)
</autodoc>
33826 <param name=
"column" type=
"int" default=
""/>
33829 <method name=
"GetHighlightGuide" overloaded=
"no">
33830 <autodoc>GetHighlightGuide() -
> int
</autodoc>
33832 <method name=
"GetLineEndPosition" overloaded=
"no">
33833 <autodoc>GetLineEndPosition(int line) -
> int
</autodoc>
33835 <param name=
"line" type=
"int" default=
""/>
33838 <method name=
"GetCodePage" overloaded=
"no">
33839 <autodoc>GetCodePage() -
> int
</autodoc>
33841 <method name=
"GetCaretForeground" overloaded=
"no">
33842 <autodoc>GetCaretForeground() -
> Colour
</autodoc>
33844 <method name=
"GetReadOnly" overloaded=
"no">
33845 <autodoc>GetReadOnly() -
> bool
</autodoc>
33847 <method name=
"SetCurrentPos" overloaded=
"no">
33848 <autodoc>SetCurrentPos(int pos)
</autodoc>
33850 <param name=
"pos" type=
"int" default=
""/>
33853 <method name=
"SetSelectionStart" overloaded=
"no">
33854 <autodoc>SetSelectionStart(int pos)
</autodoc>
33856 <param name=
"pos" type=
"int" default=
""/>
33859 <method name=
"GetSelectionStart" overloaded=
"no">
33860 <autodoc>GetSelectionStart() -
> int
</autodoc>
33862 <method name=
"SetSelectionEnd" overloaded=
"no">
33863 <autodoc>SetSelectionEnd(int pos)
</autodoc>
33865 <param name=
"pos" type=
"int" default=
""/>
33868 <method name=
"GetSelectionEnd" overloaded=
"no">
33869 <autodoc>GetSelectionEnd() -
> int
</autodoc>
33871 <method name=
"SetPrintMagnification" overloaded=
"no">
33872 <autodoc>SetPrintMagnification(int magnification)
</autodoc>
33874 <param name=
"magnification" type=
"int" default=
""/>
33877 <method name=
"GetPrintMagnification" overloaded=
"no">
33878 <autodoc>GetPrintMagnification() -
> int
</autodoc>
33880 <method name=
"SetPrintColourMode" overloaded=
"no">
33881 <autodoc>SetPrintColourMode(int mode)
</autodoc>
33883 <param name=
"mode" type=
"int" default=
""/>
33886 <method name=
"GetPrintColourMode" overloaded=
"no">
33887 <autodoc>GetPrintColourMode() -
> int
</autodoc>
33889 <method name=
"FindText" overloaded=
"no">
33890 <autodoc>FindText(int minPos, int maxPos, String text, int flags=
0) -
> int
</autodoc>
33892 <param name=
"minPos" type=
"int" default=
""/>
33893 <param name=
"maxPos" type=
"int" default=
""/>
33894 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
33895 <param name=
"flags" type=
"int" default=
"0"/>
33898 <method name=
"FormatRange" overloaded=
"no">
33899 <autodoc>FormatRange(bool doDraw, int startPos, int endPos, DC draw, DC target,
33900 Rect renderRect, Rect pageRect) -
> int
</autodoc>
33902 <param name=
"doDraw" type=
"bool" default=
""/>
33903 <param name=
"startPos" type=
"int" default=
""/>
33904 <param name=
"endPos" type=
"int" default=
""/>
33905 <param name=
"draw" type=
"p.wxDC" default=
""/>
33906 <param name=
"target" type=
"p.wxDC" default=
""/>
33907 <param name=
"renderRect" type=
"wxRect" default=
""/>
33908 <param name=
"pageRect" type=
"wxRect" default=
""/>
33911 <method name=
"GetFirstVisibleLine" overloaded=
"no">
33912 <autodoc>GetFirstVisibleLine() -
> int
</autodoc>
33914 <method name=
"GetLine" overloaded=
"no">
33915 <autodoc>GetLine(int line) -
> String
</autodoc>
33917 <param name=
"line" type=
"int" default=
""/>
33920 <method name=
"GetLineCount" overloaded=
"no">
33921 <autodoc>GetLineCount() -
> int
</autodoc>
33923 <method name=
"SetMarginLeft" overloaded=
"no">
33924 <autodoc>SetMarginLeft(int pixelWidth)
</autodoc>
33926 <param name=
"pixelWidth" type=
"int" default=
""/>
33929 <method name=
"GetMarginLeft" overloaded=
"no">
33930 <autodoc>GetMarginLeft() -
> int
</autodoc>
33932 <method name=
"SetMarginRight" overloaded=
"no">
33933 <autodoc>SetMarginRight(int pixelWidth)
</autodoc>
33935 <param name=
"pixelWidth" type=
"int" default=
""/>
33938 <method name=
"GetMarginRight" overloaded=
"no">
33939 <autodoc>GetMarginRight() -
> int
</autodoc>
33941 <method name=
"GetModify" overloaded=
"no">
33942 <autodoc>GetModify() -
> bool
</autodoc>
33944 <method name=
"SetSelection" overloaded=
"no">
33945 <autodoc>SetSelection(int start, int end)
</autodoc>
33947 <param name=
"start" type=
"int" default=
""/>
33948 <param name=
"end" type=
"int" default=
""/>
33951 <method name=
"GetSelectedText" overloaded=
"no">
33952 <autodoc>GetSelectedText() -
> String
</autodoc>
33954 <method name=
"GetTextRange" overloaded=
"no">
33955 <autodoc>GetTextRange(int startPos, int endPos) -
> String
</autodoc>
33957 <param name=
"startPos" type=
"int" default=
""/>
33958 <param name=
"endPos" type=
"int" default=
""/>
33961 <method name=
"HideSelection" overloaded=
"no">
33962 <autodoc>HideSelection(bool normal)
</autodoc>
33964 <param name=
"normal" type=
"bool" default=
""/>
33967 <method name=
"LineFromPosition" overloaded=
"no">
33968 <autodoc>LineFromPosition(int pos) -
> int
</autodoc>
33970 <param name=
"pos" type=
"int" default=
""/>
33973 <method name=
"PositionFromLine" overloaded=
"no">
33974 <autodoc>PositionFromLine(int line) -
> int
</autodoc>
33976 <param name=
"line" type=
"int" default=
""/>
33979 <method name=
"LineScroll" overloaded=
"no">
33980 <autodoc>LineScroll(int columns, int lines)
</autodoc>
33982 <param name=
"columns" type=
"int" default=
""/>
33983 <param name=
"lines" type=
"int" default=
""/>
33986 <method name=
"EnsureCaretVisible" overloaded=
"no">
33987 <autodoc>EnsureCaretVisible()
</autodoc>
33989 <method name=
"ReplaceSelection" overloaded=
"no">
33990 <autodoc>ReplaceSelection(String text)
</autodoc>
33992 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
33995 <method name=
"SetReadOnly" overloaded=
"no">
33996 <autodoc>SetReadOnly(bool readOnly)
</autodoc>
33998 <param name=
"readOnly" type=
"bool" default=
""/>
34001 <method name=
"CanPaste" overloaded=
"no">
34002 <autodoc>CanPaste() -
> bool
</autodoc>
34004 <method name=
"CanUndo" overloaded=
"no">
34005 <autodoc>CanUndo() -
> bool
</autodoc>
34007 <method name=
"EmptyUndoBuffer" overloaded=
"no">
34008 <autodoc>EmptyUndoBuffer()
</autodoc>
34010 <method name=
"Undo" overloaded=
"no">
34011 <autodoc>Undo()
</autodoc>
34013 <method name=
"Cut" overloaded=
"no">
34014 <autodoc>Cut()
</autodoc>
34016 <method name=
"Copy" overloaded=
"no">
34017 <autodoc>Copy()
</autodoc>
34019 <method name=
"Paste" overloaded=
"no">
34020 <autodoc>Paste()
</autodoc>
34022 <method name=
"Clear" overloaded=
"no">
34023 <autodoc>Clear()
</autodoc>
34025 <method name=
"SetText" overloaded=
"no">
34026 <autodoc>SetText(String text)
</autodoc>
34028 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34031 <method name=
"GetText" overloaded=
"no">
34032 <autodoc>GetText() -
> String
</autodoc>
34034 <method name=
"GetTextLength" overloaded=
"no">
34035 <autodoc>GetTextLength() -
> int
</autodoc>
34037 <method name=
"SetOvertype" overloaded=
"no">
34038 <autodoc>SetOvertype(bool overtype)
</autodoc>
34040 <param name=
"overtype" type=
"bool" default=
""/>
34043 <method name=
"GetOvertype" overloaded=
"no">
34044 <autodoc>GetOvertype() -
> bool
</autodoc>
34046 <method name=
"SetCaretWidth" overloaded=
"no">
34047 <autodoc>SetCaretWidth(int pixelWidth)
</autodoc>
34049 <param name=
"pixelWidth" type=
"int" default=
""/>
34052 <method name=
"GetCaretWidth" overloaded=
"no">
34053 <autodoc>GetCaretWidth() -
> int
</autodoc>
34055 <method name=
"SetTargetStart" overloaded=
"no">
34056 <autodoc>SetTargetStart(int pos)
</autodoc>
34058 <param name=
"pos" type=
"int" default=
""/>
34061 <method name=
"GetTargetStart" overloaded=
"no">
34062 <autodoc>GetTargetStart() -
> int
</autodoc>
34064 <method name=
"SetTargetEnd" overloaded=
"no">
34065 <autodoc>SetTargetEnd(int pos)
</autodoc>
34067 <param name=
"pos" type=
"int" default=
""/>
34070 <method name=
"GetTargetEnd" overloaded=
"no">
34071 <autodoc>GetTargetEnd() -
> int
</autodoc>
34073 <method name=
"ReplaceTarget" overloaded=
"no">
34074 <autodoc>ReplaceTarget(String text) -
> int
</autodoc>
34076 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34079 <method name=
"ReplaceTargetRE" overloaded=
"no">
34080 <autodoc>ReplaceTargetRE(String text) -
> int
</autodoc>
34082 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34085 <method name=
"SearchInTarget" overloaded=
"no">
34086 <autodoc>SearchInTarget(String text) -
> int
</autodoc>
34088 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34091 <method name=
"SetSearchFlags" overloaded=
"no">
34092 <autodoc>SetSearchFlags(int flags)
</autodoc>
34094 <param name=
"flags" type=
"int" default=
""/>
34097 <method name=
"GetSearchFlags" overloaded=
"no">
34098 <autodoc>GetSearchFlags() -
> int
</autodoc>
34100 <method name=
"CallTipShow" overloaded=
"no">
34101 <autodoc>CallTipShow(int pos, String definition)
</autodoc>
34103 <param name=
"pos" type=
"int" default=
""/>
34104 <param name=
"definition" type=
"r.q(const).wxString" default=
""/>
34107 <method name=
"CallTipCancel" overloaded=
"no">
34108 <autodoc>CallTipCancel()
</autodoc>
34110 <method name=
"CallTipActive" overloaded=
"no">
34111 <autodoc>CallTipActive() -
> bool
</autodoc>
34113 <method name=
"CallTipPosAtStart" overloaded=
"no">
34114 <autodoc>CallTipPosAtStart() -
> int
</autodoc>
34116 <method name=
"CallTipSetHighlight" overloaded=
"no">
34117 <autodoc>CallTipSetHighlight(int start, int end)
</autodoc>
34119 <param name=
"start" type=
"int" default=
""/>
34120 <param name=
"end" type=
"int" default=
""/>
34123 <method name=
"CallTipSetBackground" overloaded=
"no">
34124 <autodoc>CallTipSetBackground(Colour back)
</autodoc>
34126 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
34129 <method name=
"CallTipSetForeground" overloaded=
"no">
34130 <autodoc>CallTipSetForeground(Colour fore)
</autodoc>
34132 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
34135 <method name=
"CallTipSetForegroundHighlight" overloaded=
"no">
34136 <autodoc>CallTipSetForegroundHighlight(Colour fore)
</autodoc>
34138 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
34141 <method name=
"VisibleFromDocLine" overloaded=
"no">
34142 <autodoc>VisibleFromDocLine(int line) -
> int
</autodoc>
34144 <param name=
"line" type=
"int" default=
""/>
34147 <method name=
"DocLineFromVisible" overloaded=
"no">
34148 <autodoc>DocLineFromVisible(int lineDisplay) -
> int
</autodoc>
34150 <param name=
"lineDisplay" type=
"int" default=
""/>
34153 <method name=
"SetFoldLevel" overloaded=
"no">
34154 <autodoc>SetFoldLevel(int line, int level)
</autodoc>
34156 <param name=
"line" type=
"int" default=
""/>
34157 <param name=
"level" type=
"int" default=
""/>
34160 <method name=
"GetFoldLevel" overloaded=
"no">
34161 <autodoc>GetFoldLevel(int line) -
> int
</autodoc>
34163 <param name=
"line" type=
"int" default=
""/>
34166 <method name=
"GetLastChild" overloaded=
"no">
34167 <autodoc>GetLastChild(int line, int level) -
> int
</autodoc>
34169 <param name=
"line" type=
"int" default=
""/>
34170 <param name=
"level" type=
"int" default=
""/>
34173 <method name=
"GetFoldParent" overloaded=
"no">
34174 <autodoc>GetFoldParent(int line) -
> int
</autodoc>
34176 <param name=
"line" type=
"int" default=
""/>
34179 <method name=
"ShowLines" overloaded=
"no">
34180 <autodoc>ShowLines(int lineStart, int lineEnd)
</autodoc>
34182 <param name=
"lineStart" type=
"int" default=
""/>
34183 <param name=
"lineEnd" type=
"int" default=
""/>
34186 <method name=
"HideLines" overloaded=
"no">
34187 <autodoc>HideLines(int lineStart, int lineEnd)
</autodoc>
34189 <param name=
"lineStart" type=
"int" default=
""/>
34190 <param name=
"lineEnd" type=
"int" default=
""/>
34193 <method name=
"GetLineVisible" overloaded=
"no">
34194 <autodoc>GetLineVisible(int line) -
> bool
</autodoc>
34196 <param name=
"line" type=
"int" default=
""/>
34199 <method name=
"SetFoldExpanded" overloaded=
"no">
34200 <autodoc>SetFoldExpanded(int line, bool expanded)
</autodoc>
34202 <param name=
"line" type=
"int" default=
""/>
34203 <param name=
"expanded" type=
"bool" default=
""/>
34206 <method name=
"GetFoldExpanded" overloaded=
"no">
34207 <autodoc>GetFoldExpanded(int line) -
> bool
</autodoc>
34209 <param name=
"line" type=
"int" default=
""/>
34212 <method name=
"ToggleFold" overloaded=
"no">
34213 <autodoc>ToggleFold(int line)
</autodoc>
34215 <param name=
"line" type=
"int" default=
""/>
34218 <method name=
"EnsureVisible" overloaded=
"no">
34219 <autodoc>EnsureVisible(int line)
</autodoc>
34221 <param name=
"line" type=
"int" default=
""/>
34224 <method name=
"SetFoldFlags" overloaded=
"no">
34225 <autodoc>SetFoldFlags(int flags)
</autodoc>
34227 <param name=
"flags" type=
"int" default=
""/>
34230 <method name=
"EnsureVisibleEnforcePolicy" overloaded=
"no">
34231 <autodoc>EnsureVisibleEnforcePolicy(int line)
</autodoc>
34233 <param name=
"line" type=
"int" default=
""/>
34236 <method name=
"SetTabIndents" overloaded=
"no">
34237 <autodoc>SetTabIndents(bool tabIndents)
</autodoc>
34239 <param name=
"tabIndents" type=
"bool" default=
""/>
34242 <method name=
"GetTabIndents" overloaded=
"no">
34243 <autodoc>GetTabIndents() -
> bool
</autodoc>
34245 <method name=
"SetBackSpaceUnIndents" overloaded=
"no">
34246 <autodoc>SetBackSpaceUnIndents(bool bsUnIndents)
</autodoc>
34248 <param name=
"bsUnIndents" type=
"bool" default=
""/>
34251 <method name=
"GetBackSpaceUnIndents" overloaded=
"no">
34252 <autodoc>GetBackSpaceUnIndents() -
> bool
</autodoc>
34254 <method name=
"SetMouseDwellTime" overloaded=
"no">
34255 <autodoc>SetMouseDwellTime(int periodMilliseconds)
</autodoc>
34257 <param name=
"periodMilliseconds" type=
"int" default=
""/>
34260 <method name=
"GetMouseDwellTime" overloaded=
"no">
34261 <autodoc>GetMouseDwellTime() -
> int
</autodoc>
34263 <method name=
"WordStartPosition" overloaded=
"no">
34264 <autodoc>WordStartPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
34266 <param name=
"pos" type=
"int" default=
""/>
34267 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
34270 <method name=
"WordEndPosition" overloaded=
"no">
34271 <autodoc>WordEndPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
34273 <param name=
"pos" type=
"int" default=
""/>
34274 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
34277 <method name=
"SetWrapMode" overloaded=
"no">
34278 <autodoc>SetWrapMode(int mode)
</autodoc>
34280 <param name=
"mode" type=
"int" default=
""/>
34283 <method name=
"GetWrapMode" overloaded=
"no">
34284 <autodoc>GetWrapMode() -
> int
</autodoc>
34286 <method name=
"SetLayoutCache" overloaded=
"no">
34287 <autodoc>SetLayoutCache(int mode)
</autodoc>
34289 <param name=
"mode" type=
"int" default=
""/>
34292 <method name=
"GetLayoutCache" overloaded=
"no">
34293 <autodoc>GetLayoutCache() -
> int
</autodoc>
34295 <method name=
"SetScrollWidth" overloaded=
"no">
34296 <autodoc>SetScrollWidth(int pixelWidth)
</autodoc>
34298 <param name=
"pixelWidth" type=
"int" default=
""/>
34301 <method name=
"GetScrollWidth" overloaded=
"no">
34302 <autodoc>GetScrollWidth() -
> int
</autodoc>
34304 <method name=
"TextWidth" overloaded=
"no">
34305 <autodoc>TextWidth(int style, String text) -
> int
</autodoc>
34307 <param name=
"style" type=
"int" default=
""/>
34308 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34311 <method name=
"SetEndAtLastLine" overloaded=
"no">
34312 <autodoc>SetEndAtLastLine(bool endAtLastLine)
</autodoc>
34314 <param name=
"endAtLastLine" type=
"bool" default=
""/>
34317 <method name=
"GetEndAtLastLine" overloaded=
"no">
34318 <autodoc>GetEndAtLastLine() -
> int
</autodoc>
34320 <method name=
"TextHeight" overloaded=
"no">
34321 <autodoc>TextHeight(int line) -
> int
</autodoc>
34323 <param name=
"line" type=
"int" default=
""/>
34326 <method name=
"SetUseVerticalScrollBar" overloaded=
"no">
34327 <autodoc>SetUseVerticalScrollBar(bool show)
</autodoc>
34329 <param name=
"show" type=
"bool" default=
""/>
34332 <method name=
"GetUseVerticalScrollBar" overloaded=
"no">
34333 <autodoc>GetUseVerticalScrollBar() -
> bool
</autodoc>
34335 <method name=
"AppendText" overloaded=
"no">
34336 <autodoc>AppendText(int length, String text)
</autodoc>
34338 <param name=
"length" type=
"int" default=
""/>
34339 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34342 <method name=
"GetTwoPhaseDraw" overloaded=
"no">
34343 <autodoc>GetTwoPhaseDraw() -
> bool
</autodoc>
34345 <method name=
"SetTwoPhaseDraw" overloaded=
"no">
34346 <autodoc>SetTwoPhaseDraw(bool twoPhase)
</autodoc>
34348 <param name=
"twoPhase" type=
"bool" default=
""/>
34351 <method name=
"TargetFromSelection" overloaded=
"no">
34352 <autodoc>TargetFromSelection()
</autodoc>
34354 <method name=
"LinesJoin" overloaded=
"no">
34355 <autodoc>LinesJoin()
</autodoc>
34357 <method name=
"LinesSplit" overloaded=
"no">
34358 <autodoc>LinesSplit(int pixelWidth)
</autodoc>
34360 <param name=
"pixelWidth" type=
"int" default=
""/>
34363 <method name=
"SetFoldMarginColour" overloaded=
"no">
34364 <autodoc>SetFoldMarginColour(bool useSetting, Colour back)
</autodoc>
34366 <param name=
"useSetting" type=
"bool" default=
""/>
34367 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
34370 <method name=
"SetFoldMarginHiColour" overloaded=
"no">
34371 <autodoc>SetFoldMarginHiColour(bool useSetting, Colour fore)
</autodoc>
34373 <param name=
"useSetting" type=
"bool" default=
""/>
34374 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
34377 <method name=
"LineDuplicate" overloaded=
"no">
34378 <autodoc>LineDuplicate()
</autodoc>
34380 <method name=
"HomeDisplay" overloaded=
"no">
34381 <autodoc>HomeDisplay()
</autodoc>
34383 <method name=
"HomeDisplayExtend" overloaded=
"no">
34384 <autodoc>HomeDisplayExtend()
</autodoc>
34386 <method name=
"LineEndDisplay" overloaded=
"no">
34387 <autodoc>LineEndDisplay()
</autodoc>
34389 <method name=
"LineEndDisplayExtend" overloaded=
"no">
34390 <autodoc>LineEndDisplayExtend()
</autodoc>
34392 <method name=
"LineCopy" overloaded=
"no">
34393 <autodoc>LineCopy()
</autodoc>
34395 <method name=
"MoveCaretInsideView" overloaded=
"no">
34396 <autodoc>MoveCaretInsideView()
</autodoc>
34398 <method name=
"LineLength" overloaded=
"no">
34399 <autodoc>LineLength(int line) -
> int
</autodoc>
34401 <param name=
"line" type=
"int" default=
""/>
34404 <method name=
"BraceHighlight" overloaded=
"no">
34405 <autodoc>BraceHighlight(int pos1, int pos2)
</autodoc>
34407 <param name=
"pos1" type=
"int" default=
""/>
34408 <param name=
"pos2" type=
"int" default=
""/>
34411 <method name=
"BraceBadLight" overloaded=
"no">
34412 <autodoc>BraceBadLight(int pos)
</autodoc>
34414 <param name=
"pos" type=
"int" default=
""/>
34417 <method name=
"BraceMatch" overloaded=
"no">
34418 <autodoc>BraceMatch(int pos) -
> int
</autodoc>
34420 <param name=
"pos" type=
"int" default=
""/>
34423 <method name=
"GetViewEOL" overloaded=
"no">
34424 <autodoc>GetViewEOL() -
> bool
</autodoc>
34426 <method name=
"SetViewEOL" overloaded=
"no">
34427 <autodoc>SetViewEOL(bool visible)
</autodoc>
34429 <param name=
"visible" type=
"bool" default=
""/>
34432 <method name=
"GetDocPointer" overloaded=
"no">
34433 <autodoc>GetDocPointer() -
> void
</autodoc>
34435 <method name=
"SetDocPointer" overloaded=
"no">
34436 <autodoc>SetDocPointer(void docPointer)
</autodoc>
34438 <param name=
"docPointer" type=
"p.void" default=
""/>
34441 <method name=
"SetModEventMask" overloaded=
"no">
34442 <autodoc>SetModEventMask(int mask)
</autodoc>
34444 <param name=
"mask" type=
"int" default=
""/>
34447 <method name=
"GetEdgeColumn" overloaded=
"no">
34448 <autodoc>GetEdgeColumn() -
> int
</autodoc>
34450 <method name=
"SetEdgeColumn" overloaded=
"no">
34451 <autodoc>SetEdgeColumn(int column)
</autodoc>
34453 <param name=
"column" type=
"int" default=
""/>
34456 <method name=
"GetEdgeMode" overloaded=
"no">
34457 <autodoc>GetEdgeMode() -
> int
</autodoc>
34459 <method name=
"SetEdgeMode" overloaded=
"no">
34460 <autodoc>SetEdgeMode(int mode)
</autodoc>
34462 <param name=
"mode" type=
"int" default=
""/>
34465 <method name=
"GetEdgeColour" overloaded=
"no">
34466 <autodoc>GetEdgeColour() -
> Colour
</autodoc>
34468 <method name=
"SetEdgeColour" overloaded=
"no">
34469 <autodoc>SetEdgeColour(Colour edgeColour)
</autodoc>
34471 <param name=
"edgeColour" type=
"r.q(const).wxColour" default=
""/>
34474 <method name=
"SearchAnchor" overloaded=
"no">
34475 <autodoc>SearchAnchor()
</autodoc>
34477 <method name=
"SearchNext" overloaded=
"no">
34478 <autodoc>SearchNext(int flags, String text) -
> int
</autodoc>
34480 <param name=
"flags" type=
"int" default=
""/>
34481 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34484 <method name=
"SearchPrev" overloaded=
"no">
34485 <autodoc>SearchPrev(int flags, String text) -
> int
</autodoc>
34487 <param name=
"flags" type=
"int" default=
""/>
34488 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34491 <method name=
"LinesOnScreen" overloaded=
"no">
34492 <autodoc>LinesOnScreen() -
> int
</autodoc>
34494 <method name=
"UsePopUp" overloaded=
"no">
34495 <autodoc>UsePopUp(bool allowPopUp)
</autodoc>
34497 <param name=
"allowPopUp" type=
"bool" default=
""/>
34500 <method name=
"SelectionIsRectangle" overloaded=
"no">
34501 <autodoc>SelectionIsRectangle() -
> bool
</autodoc>
34503 <method name=
"SetZoom" overloaded=
"no">
34504 <autodoc>SetZoom(int zoom)
</autodoc>
34506 <param name=
"zoom" type=
"int" default=
""/>
34509 <method name=
"GetZoom" overloaded=
"no">
34510 <autodoc>GetZoom() -
> int
</autodoc>
34512 <method name=
"CreateDocument" overloaded=
"no">
34513 <autodoc>CreateDocument() -
> void
</autodoc>
34515 <method name=
"AddRefDocument" overloaded=
"no">
34516 <autodoc>AddRefDocument(void docPointer)
</autodoc>
34518 <param name=
"docPointer" type=
"p.void" default=
""/>
34521 <method name=
"ReleaseDocument" overloaded=
"no">
34522 <autodoc>ReleaseDocument(void docPointer)
</autodoc>
34524 <param name=
"docPointer" type=
"p.void" default=
""/>
34527 <method name=
"GetModEventMask" overloaded=
"no">
34528 <autodoc>GetModEventMask() -
> int
</autodoc>
34530 <method name=
"SetSTCFocus" overloaded=
"no">
34531 <autodoc>SetSTCFocus(bool focus)
</autodoc>
34533 <param name=
"focus" type=
"bool" default=
""/>
34536 <method name=
"GetSTCFocus" overloaded=
"no">
34537 <autodoc>GetSTCFocus() -
> bool
</autodoc>
34539 <method name=
"SetStatus" overloaded=
"no">
34540 <autodoc>SetStatus(int statusCode)
</autodoc>
34542 <param name=
"statusCode" type=
"int" default=
""/>
34545 <method name=
"GetStatus" overloaded=
"no">
34546 <autodoc>GetStatus() -
> int
</autodoc>
34548 <method name=
"SetMouseDownCaptures" overloaded=
"no">
34549 <autodoc>SetMouseDownCaptures(bool captures)
</autodoc>
34551 <param name=
"captures" type=
"bool" default=
""/>
34554 <method name=
"GetMouseDownCaptures" overloaded=
"no">
34555 <autodoc>GetMouseDownCaptures() -
> bool
</autodoc>
34557 <method name=
"SetSTCCursor" overloaded=
"no">
34558 <autodoc>SetSTCCursor(int cursorType)
</autodoc>
34560 <param name=
"cursorType" type=
"int" default=
""/>
34563 <method name=
"GetSTCCursor" overloaded=
"no">
34564 <autodoc>GetSTCCursor() -
> int
</autodoc>
34566 <method name=
"SetControlCharSymbol" overloaded=
"no">
34567 <autodoc>SetControlCharSymbol(int symbol)
</autodoc>
34569 <param name=
"symbol" type=
"int" default=
""/>
34572 <method name=
"GetControlCharSymbol" overloaded=
"no">
34573 <autodoc>GetControlCharSymbol() -
> int
</autodoc>
34575 <method name=
"WordPartLeft" overloaded=
"no">
34576 <autodoc>WordPartLeft()
</autodoc>
34578 <method name=
"WordPartLeftExtend" overloaded=
"no">
34579 <autodoc>WordPartLeftExtend()
</autodoc>
34581 <method name=
"WordPartRight" overloaded=
"no">
34582 <autodoc>WordPartRight()
</autodoc>
34584 <method name=
"WordPartRightExtend" overloaded=
"no">
34585 <autodoc>WordPartRightExtend()
</autodoc>
34587 <method name=
"SetVisiblePolicy" overloaded=
"no">
34588 <autodoc>SetVisiblePolicy(int visiblePolicy, int visibleSlop)
</autodoc>
34590 <param name=
"visiblePolicy" type=
"int" default=
""/>
34591 <param name=
"visibleSlop" type=
"int" default=
""/>
34594 <method name=
"DelLineLeft" overloaded=
"no">
34595 <autodoc>DelLineLeft()
</autodoc>
34597 <method name=
"DelLineRight" overloaded=
"no">
34598 <autodoc>DelLineRight()
</autodoc>
34600 <method name=
"SetXOffset" overloaded=
"no">
34601 <autodoc>SetXOffset(int newOffset)
</autodoc>
34603 <param name=
"newOffset" type=
"int" default=
""/>
34606 <method name=
"GetXOffset" overloaded=
"no">
34607 <autodoc>GetXOffset() -
> int
</autodoc>
34609 <method name=
"ChooseCaretX" overloaded=
"no">
34610 <autodoc>ChooseCaretX()
</autodoc>
34612 <method name=
"SetXCaretPolicy" overloaded=
"no">
34613 <autodoc>SetXCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
34615 <param name=
"caretPolicy" type=
"int" default=
""/>
34616 <param name=
"caretSlop" type=
"int" default=
""/>
34619 <method name=
"SetYCaretPolicy" overloaded=
"no">
34620 <autodoc>SetYCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
34622 <param name=
"caretPolicy" type=
"int" default=
""/>
34623 <param name=
"caretSlop" type=
"int" default=
""/>
34626 <method name=
"SetPrintWrapMode" overloaded=
"no">
34627 <autodoc>SetPrintWrapMode(int mode)
</autodoc>
34629 <param name=
"mode" type=
"int" default=
""/>
34632 <method name=
"GetPrintWrapMode" overloaded=
"no">
34633 <autodoc>GetPrintWrapMode() -
> int
</autodoc>
34635 <method name=
"SetHotspotActiveForeground" overloaded=
"no">
34636 <autodoc>SetHotspotActiveForeground(bool useSetting, Colour fore)
</autodoc>
34638 <param name=
"useSetting" type=
"bool" default=
""/>
34639 <param name=
"fore" type=
"r.q(const).wxColour" default=
""/>
34642 <method name=
"SetHotspotActiveBackground" overloaded=
"no">
34643 <autodoc>SetHotspotActiveBackground(bool useSetting, Colour back)
</autodoc>
34645 <param name=
"useSetting" type=
"bool" default=
""/>
34646 <param name=
"back" type=
"r.q(const).wxColour" default=
""/>
34649 <method name=
"SetHotspotActiveUnderline" overloaded=
"no">
34650 <autodoc>SetHotspotActiveUnderline(bool underline)
</autodoc>
34652 <param name=
"underline" type=
"bool" default=
""/>
34655 <method name=
"SetHotspotSingleLine" overloaded=
"no">
34656 <autodoc>SetHotspotSingleLine(bool singleLine)
</autodoc>
34658 <param name=
"singleLine" type=
"bool" default=
""/>
34661 <method name=
"PositionBefore" overloaded=
"no">
34662 <autodoc>PositionBefore(int pos) -
> int
</autodoc>
34664 <param name=
"pos" type=
"int" default=
""/>
34667 <method name=
"PositionAfter" overloaded=
"no">
34668 <autodoc>PositionAfter(int pos) -
> int
</autodoc>
34670 <param name=
"pos" type=
"int" default=
""/>
34673 <method name=
"CopyRange" overloaded=
"no">
34674 <autodoc>CopyRange(int start, int end)
</autodoc>
34676 <param name=
"start" type=
"int" default=
""/>
34677 <param name=
"end" type=
"int" default=
""/>
34680 <method name=
"CopyText" overloaded=
"no">
34681 <autodoc>CopyText(int length, String text)
</autodoc>
34683 <param name=
"length" type=
"int" default=
""/>
34684 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
34687 <method name=
"SetSelectionMode" overloaded=
"no">
34688 <autodoc>SetSelectionMode(int mode)
</autodoc>
34690 <param name=
"mode" type=
"int" default=
""/>
34693 <method name=
"GetSelectionMode" overloaded=
"no">
34694 <autodoc>GetSelectionMode() -
> int
</autodoc>
34696 <method name=
"GetLineSelStartPosition" overloaded=
"no">
34697 <autodoc>GetLineSelStartPosition(int line) -
> int
</autodoc>
34699 <param name=
"line" type=
"int" default=
""/>
34702 <method name=
"GetLineSelEndPosition" overloaded=
"no">
34703 <autodoc>GetLineSelEndPosition(int line) -
> int
</autodoc>
34705 <param name=
"line" type=
"int" default=
""/>
34708 <method name=
"SetWhitespaceChars" overloaded=
"no">
34709 <autodoc>SetWhitespaceChars(String characters)
</autodoc>
34711 <param name=
"characters" type=
"r.q(const).wxString" default=
""/>
34714 <method name=
"SetCharsDefault" overloaded=
"no">
34715 <autodoc>SetCharsDefault()
</autodoc>
34717 <method name=
"AutoCompGetCurrent" overloaded=
"no">
34718 <autodoc>AutoCompGetCurrent() -
> int
</autodoc>
34720 <method name=
"StartRecord" overloaded=
"no">
34721 <autodoc>StartRecord()
</autodoc>
34723 <method name=
"StopRecord" overloaded=
"no">
34724 <autodoc>StopRecord()
</autodoc>
34726 <method name=
"SetLexer" overloaded=
"no">
34727 <autodoc>SetLexer(int lexer)
</autodoc>
34729 <param name=
"lexer" type=
"int" default=
""/>
34732 <method name=
"GetLexer" overloaded=
"no">
34733 <autodoc>GetLexer() -
> int
</autodoc>
34735 <method name=
"Colourise" overloaded=
"no">
34736 <autodoc>Colourise(int start, int end)
</autodoc>
34738 <param name=
"start" type=
"int" default=
""/>
34739 <param name=
"end" type=
"int" default=
""/>
34742 <method name=
"SetProperty" overloaded=
"no">
34743 <autodoc>SetProperty(String key, String value)
</autodoc>
34745 <param name=
"key" type=
"r.q(const).wxString" default=
""/>
34746 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
34749 <method name=
"SetKeyWords" overloaded=
"no">
34750 <autodoc>SetKeyWords(int keywordSet, String keyWords)
</autodoc>
34752 <param name=
"keywordSet" type=
"int" default=
""/>
34753 <param name=
"keyWords" type=
"r.q(const).wxString" default=
""/>
34756 <method name=
"SetLexerLanguage" overloaded=
"no">
34757 <autodoc>SetLexerLanguage(String language)
</autodoc>
34759 <param name=
"language" type=
"r.q(const).wxString" default=
""/>
34762 <method name=
"GetCurrentLine" overloaded=
"no">
34763 <autodoc>GetCurrentLine() -
> int
</autodoc>
34765 <method name=
"StyleSetSpec" overloaded=
"no">
34766 <autodoc>StyleSetSpec(int styleNum, String spec)
</autodoc>
34768 <param name=
"styleNum" type=
"int" default=
""/>
34769 <param name=
"spec" type=
"r.q(const).wxString" default=
""/>
34772 <method name=
"StyleSetFont" overloaded=
"no">
34773 <autodoc>StyleSetFont(int styleNum, Font font)
</autodoc>
34775 <param name=
"styleNum" type=
"int" default=
""/>
34776 <param name=
"font" type=
"r.wxFont" default=
""/>
34779 <method name=
"StyleSetFontAttr" overloaded=
"no">
34780 <autodoc>StyleSetFontAttr(int styleNum, int size, String faceName, bool bold,
34781 bool italic, bool underline)
</autodoc>
34783 <param name=
"styleNum" type=
"int" default=
""/>
34784 <param name=
"size" type=
"int" default=
""/>
34785 <param name=
"faceName" type=
"r.q(const).wxString" default=
""/>
34786 <param name=
"bold" type=
"bool" default=
""/>
34787 <param name=
"italic" type=
"bool" default=
""/>
34788 <param name=
"underline" type=
"bool" default=
""/>
34791 <method name=
"CmdKeyExecute" overloaded=
"no">
34792 <autodoc>CmdKeyExecute(int cmd)
</autodoc>
34794 <param name=
"cmd" type=
"int" default=
""/>
34797 <method name=
"SetMargins" overloaded=
"no">
34798 <autodoc>SetMargins(int left, int right)
</autodoc>
34800 <param name=
"left" type=
"int" default=
""/>
34801 <param name=
"right" type=
"int" default=
""/>
34804 <method name=
"GetSelection" overloaded=
"no">
34805 <autodoc>GetSelection(int OUTPUT, int OUTPUT)
</autodoc>
34807 <param name=
"OUTPUT" type=
"p.int" default=
""/>
34808 <param name=
"OUTPUT" type=
"p.int" default=
""/>
34811 <method name=
"PointFromPosition" overloaded=
"no">
34812 <autodoc>PointFromPosition(int pos) -
> Point
</autodoc>
34814 <param name=
"pos" type=
"int" default=
""/>
34817 <method name=
"ScrollToLine" overloaded=
"no">
34818 <autodoc>ScrollToLine(int line)
</autodoc>
34820 <param name=
"line" type=
"int" default=
""/>
34823 <method name=
"ScrollToColumn" overloaded=
"no">
34824 <autodoc>ScrollToColumn(int column)
</autodoc>
34826 <param name=
"column" type=
"int" default=
""/>
34829 <method name=
"SendMsg" overloaded=
"no">
34830 <autodoc>SendMsg(int msg, long wp=
0, long lp=
0) -
> long
</autodoc>
34832 <param name=
"msg" type=
"int" default=
""/>
34833 <param name=
"wp" type=
"long" default=
"0"/>
34834 <param name=
"lp" type=
"long" default=
"0"/>
34837 <method name=
"SetVScrollBar" overloaded=
"no">
34838 <autodoc>SetVScrollBar(wxScrollBar bar)
</autodoc>
34840 <param name=
"bar" type=
"p.wxScrollBar" default=
""/>
34843 <method name=
"SetHScrollBar" overloaded=
"no">
34844 <autodoc>SetHScrollBar(wxScrollBar bar)
</autodoc>
34846 <param name=
"bar" type=
"p.wxScrollBar" default=
""/>
34849 <method name=
"GetLastKeydownProcessed" overloaded=
"no">
34850 <autodoc>GetLastKeydownProcessed() -
> bool
</autodoc>
34852 <method name=
"SetLastKeydownProcessed" overloaded=
"no">
34853 <autodoc>SetLastKeydownProcessed(bool val)
</autodoc>
34855 <param name=
"val" type=
"bool" default=
""/>
34858 <method name=
"SaveFile" overloaded=
"no">
34859 <autodoc>SaveFile(String filename) -
> bool
</autodoc>
34861 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
34864 <method name=
"LoadFile" overloaded=
"no">
34865 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
34867 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
34870 <method name=
"DoDragOver" overloaded=
"no">
34871 <autodoc>DoDragOver(int x, int y, int def) -
> int
</autodoc>
34873 <param name=
"x" type=
"int" default=
""/>
34874 <param name=
"y" type=
"int" default=
""/>
34875 <param name=
"def" type=
"wxDragResult" default=
""/>
34878 <method name=
"DoDropText" overloaded=
"no">
34879 <autodoc>DoDropText(long x, long y, String data) -
> bool
</autodoc>
34881 <param name=
"x" type=
"long" default=
""/>
34882 <param name=
"y" type=
"long" default=
""/>
34883 <param name=
"data" type=
"r.q(const).wxString" default=
""/>
34886 <method name=
"SetUseAntiAliasing" overloaded=
"no">
34887 <autodoc>SetUseAntiAliasing(bool useAA)
</autodoc>
34889 <param name=
"useAA" type=
"bool" default=
""/>
34892 <method name=
"GetUseAntiAliasing" overloaded=
"no">
34893 <autodoc>GetUseAntiAliasing() -
> bool
</autodoc>
34896 <class name=
"StyledTextEvent" oldname=
"wxStyledTextEvent" module=
"stc">
34897 <baseclass name=
"wxCommandEvent"/>
34898 <constructor name=
"StyledTextEvent" overloaded=
"no">
34899 <autodoc>__init__(wxEventType commandType=
0, int id=
0) -
> StyledTextEvent
</autodoc>
34901 <param name=
"commandType" type=
"wxEventType" default=
"0"/>
34902 <param name=
"id" type=
"int" default=
"0"/>
34905 <destructor name=
"~wxStyledTextEvent">
34906 <autodoc>__del__()
</autodoc>
34908 <method name=
"SetPosition" overloaded=
"no">
34909 <autodoc>SetPosition(int pos)
</autodoc>
34911 <param name=
"pos" type=
"int" default=
""/>
34914 <method name=
"SetKey" overloaded=
"no">
34915 <autodoc>SetKey(int k)
</autodoc>
34917 <param name=
"k" type=
"int" default=
""/>
34920 <method name=
"SetModifiers" overloaded=
"no">
34921 <autodoc>SetModifiers(int m)
</autodoc>
34923 <param name=
"m" type=
"int" default=
""/>
34926 <method name=
"SetModificationType" overloaded=
"no">
34927 <autodoc>SetModificationType(int t)
</autodoc>
34929 <param name=
"t" type=
"int" default=
""/>
34932 <method name=
"SetText" overloaded=
"no">
34933 <autodoc>SetText(String t)
</autodoc>
34935 <param name=
"t" type=
"r.q(const).wxString" default=
""/>
34938 <method name=
"SetLength" overloaded=
"no">
34939 <autodoc>SetLength(int len)
</autodoc>
34941 <param name=
"len" type=
"int" default=
""/>
34944 <method name=
"SetLinesAdded" overloaded=
"no">
34945 <autodoc>SetLinesAdded(int num)
</autodoc>
34947 <param name=
"num" type=
"int" default=
""/>
34950 <method name=
"SetLine" overloaded=
"no">
34951 <autodoc>SetLine(int val)
</autodoc>
34953 <param name=
"val" type=
"int" default=
""/>
34956 <method name=
"SetFoldLevelNow" overloaded=
"no">
34957 <autodoc>SetFoldLevelNow(int val)
</autodoc>
34959 <param name=
"val" type=
"int" default=
""/>
34962 <method name=
"SetFoldLevelPrev" overloaded=
"no">
34963 <autodoc>SetFoldLevelPrev(int val)
</autodoc>
34965 <param name=
"val" type=
"int" default=
""/>
34968 <method name=
"SetMargin" overloaded=
"no">
34969 <autodoc>SetMargin(int val)
</autodoc>
34971 <param name=
"val" type=
"int" default=
""/>
34974 <method name=
"SetMessage" overloaded=
"no">
34975 <autodoc>SetMessage(int val)
</autodoc>
34977 <param name=
"val" type=
"int" default=
""/>
34980 <method name=
"SetWParam" overloaded=
"no">
34981 <autodoc>SetWParam(int val)
</autodoc>
34983 <param name=
"val" type=
"int" default=
""/>
34986 <method name=
"SetLParam" overloaded=
"no">
34987 <autodoc>SetLParam(int val)
</autodoc>
34989 <param name=
"val" type=
"int" default=
""/>
34992 <method name=
"SetListType" overloaded=
"no">
34993 <autodoc>SetListType(int val)
</autodoc>
34995 <param name=
"val" type=
"int" default=
""/>
34998 <method name=
"SetX" overloaded=
"no">
34999 <autodoc>SetX(int val)
</autodoc>
35001 <param name=
"val" type=
"int" default=
""/>
35004 <method name=
"SetY" overloaded=
"no">
35005 <autodoc>SetY(int val)
</autodoc>
35007 <param name=
"val" type=
"int" default=
""/>
35010 <method name=
"SetDragText" overloaded=
"no">
35011 <autodoc>SetDragText(String val)
</autodoc>
35013 <param name=
"val" type=
"r.q(const).wxString" default=
""/>
35016 <method name=
"SetDragAllowMove" overloaded=
"no">
35017 <autodoc>SetDragAllowMove(bool val)
</autodoc>
35019 <param name=
"val" type=
"bool" default=
""/>
35022 <method name=
"SetDragResult" overloaded=
"no">
35023 <autodoc>SetDragResult(int val)
</autodoc>
35025 <param name=
"val" type=
"wxDragResult" default=
""/>
35028 <method name=
"GetPosition" overloaded=
"no">
35029 <autodoc>GetPosition() -
> int
</autodoc>
35031 <method name=
"GetKey" overloaded=
"no">
35032 <autodoc>GetKey() -
> int
</autodoc>
35034 <method name=
"GetModifiers" overloaded=
"no">
35035 <autodoc>GetModifiers() -
> int
</autodoc>
35037 <method name=
"GetModificationType" overloaded=
"no">
35038 <autodoc>GetModificationType() -
> int
</autodoc>
35040 <method name=
"GetText" overloaded=
"no">
35041 <autodoc>GetText() -
> String
</autodoc>
35043 <method name=
"GetLength" overloaded=
"no">
35044 <autodoc>GetLength() -
> int
</autodoc>
35046 <method name=
"GetLinesAdded" overloaded=
"no">
35047 <autodoc>GetLinesAdded() -
> int
</autodoc>
35049 <method name=
"GetLine" overloaded=
"no">
35050 <autodoc>GetLine() -
> int
</autodoc>
35052 <method name=
"GetFoldLevelNow" overloaded=
"no">
35053 <autodoc>GetFoldLevelNow() -
> int
</autodoc>
35055 <method name=
"GetFoldLevelPrev" overloaded=
"no">
35056 <autodoc>GetFoldLevelPrev() -
> int
</autodoc>
35058 <method name=
"GetMargin" overloaded=
"no">
35059 <autodoc>GetMargin() -
> int
</autodoc>
35061 <method name=
"GetMessage" overloaded=
"no">
35062 <autodoc>GetMessage() -
> int
</autodoc>
35064 <method name=
"GetWParam" overloaded=
"no">
35065 <autodoc>GetWParam() -
> int
</autodoc>
35067 <method name=
"GetLParam" overloaded=
"no">
35068 <autodoc>GetLParam() -
> int
</autodoc>
35070 <method name=
"GetListType" overloaded=
"no">
35071 <autodoc>GetListType() -
> int
</autodoc>
35073 <method name=
"GetX" overloaded=
"no">
35074 <autodoc>GetX() -
> int
</autodoc>
35076 <method name=
"GetY" overloaded=
"no">
35077 <autodoc>GetY() -
> int
</autodoc>
35079 <method name=
"GetDragText" overloaded=
"no">
35080 <autodoc>GetDragText() -
> String
</autodoc>
35082 <method name=
"GetDragAllowMove" overloaded=
"no">
35083 <autodoc>GetDragAllowMove() -
> bool
</autodoc>
35085 <method name=
"GetDragResult" overloaded=
"no">
35086 <autodoc>GetDragResult() -
> int
</autodoc>
35088 <method name=
"GetShift" overloaded=
"no">
35089 <autodoc>GetShift() -
> bool
</autodoc>
35091 <method name=
"GetControl" overloaded=
"no">
35092 <autodoc>GetControl() -
> bool
</autodoc>
35094 <method name=
"GetAlt" overloaded=
"no">
35095 <autodoc>GetAlt() -
> bool
</autodoc>
35097 <method name=
"Clone" overloaded=
"no">
35098 <autodoc>Clone() -
> Event
</autodoc>
35102 EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE,
1 )
35103 EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED,
1 )
35104 EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED,
1 )
35105 EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED,
1 )
35106 EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT,
1 )
35107 EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT,
1 )
35108 EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY,
1 )
35109 EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK,
1 )
35110 EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI,
1 )
35111 EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED,
1 )
35112 EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD,
1 )
35113 EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK,
1 )
35114 EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN,
1 )
35115 EVT_STC_POSCHANGED = wx.PyEventBinder( wxEVT_STC_POSCHANGED,
1 )
35116 EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED,
1 )
35117 EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION,
1 )
35118 EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED,
1 )
35119 EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART,
1 )
35120 EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND,
1 )
35121 EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG,
1 )
35122 EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER,
1 )
35123 EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP,
1 )
35124 EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM,
1 )
35125 EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK,
1 )
35126 EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK,
1 )
35127 EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK,
1 )
35130 <module name=
"xrc">
35131 <pythoncode> wx = core
</pythoncode>
35133 #---------------------------------------------------------------------------
35135 <class name=
"XmlResource" oldname=
"wxXmlResource" module=
"xrc">
35136 <baseclass name=
"wxObject"/>
35137 <constructor name=
"XmlResource" overloaded=
"no">
35138 <autodoc>__init__(String filemask, int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
35140 <param name=
"filemask" type=
"r.q(const).wxString" default=
""/>
35141 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
35144 <constructor name=
"EmptyXmlResource" overloaded=
"no">
35145 <autodoc>EmptyXmlResource(int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
35147 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
35150 <destructor name=
"~wxXmlResource">
35151 <autodoc>__del__()
</autodoc>
35153 <method name=
"Load" overloaded=
"no">
35154 <autodoc>Load(String filemask) -
> bool
</autodoc>
35156 <param name=
"filemask" type=
"r.q(const).wxString" default=
""/>
35159 <method name=
"LoadFromString" overloaded=
"no">
35160 <autodoc>LoadFromString(String data) -
> bool
</autodoc>
35162 <param name=
"data" type=
"r.q(const).wxString" default=
""/>
35165 <method name=
"InitAllHandlers" overloaded=
"no">
35166 <autodoc>InitAllHandlers()
</autodoc>
35168 <method name=
"AddHandler" overloaded=
"no">
35169 <autodoc>AddHandler(XmlResourceHandler handler)
</autodoc>
35171 <param name=
"handler" type=
"p.wxPyXmlResourceHandler" default=
""/>
35174 <method name=
"InsertHandler" overloaded=
"no">
35175 <autodoc>InsertHandler(XmlResourceHandler handler)
</autodoc>
35177 <param name=
"handler" type=
"p.wxPyXmlResourceHandler" default=
""/>
35180 <method name=
"ClearHandlers" overloaded=
"no">
35181 <autodoc>ClearHandlers()
</autodoc>
35183 <staticmethod name=
"AddSubclassFactory" overloaded=
"no">
35184 <autodoc>AddSubclassFactory(XmlSubclassFactory factory)
</autodoc>
35186 <param name=
"factory" type=
"p.wxPyXmlSubclassFactory" default=
""/>
35189 <method name=
"LoadMenu" overloaded=
"no">
35190 <autodoc>LoadMenu(String name) -
> Menu
</autodoc>
35192 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35195 <method name=
"LoadMenuBar" overloaded=
"no">
35196 <autodoc>LoadMenuBar(String name) -
> MenuBar
</autodoc>
35198 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35201 <method name=
"LoadMenuBarOnFrame" overloaded=
"no">
35202 <autodoc>LoadMenuBarOnFrame(Window parent, String name) -
> MenuBar
</autodoc>
35204 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35205 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35208 <method name=
"LoadToolBar" overloaded=
"no">
35209 <autodoc>LoadToolBar(Window parent, String name) -
> wxToolBar
</autodoc>
35211 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35212 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35215 <method name=
"LoadDialog" overloaded=
"no">
35216 <autodoc>LoadDialog(Window parent, String name) -
> wxDialog
</autodoc>
35218 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35219 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35222 <method name=
"LoadOnDialog" overloaded=
"no">
35223 <autodoc>LoadOnDialog(wxDialog dlg, Window parent, String name) -
> bool
</autodoc>
35225 <param name=
"dlg" type=
"p.wxDialog" default=
""/>
35226 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35227 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35230 <method name=
"LoadPanel" overloaded=
"no">
35231 <autodoc>LoadPanel(Window parent, String name) -
> wxPanel
</autodoc>
35233 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35234 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35237 <method name=
"LoadOnPanel" overloaded=
"no">
35238 <autodoc>LoadOnPanel(wxPanel panel, Window parent, String name) -
> bool
</autodoc>
35240 <param name=
"panel" type=
"p.wxPanel" default=
""/>
35241 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35242 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35245 <method name=
"LoadFrame" overloaded=
"no">
35246 <autodoc>LoadFrame(Window parent, String name) -
> wxFrame
</autodoc>
35248 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35249 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35252 <method name=
"LoadOnFrame" overloaded=
"no">
35253 <autodoc>LoadOnFrame(wxFrame frame, Window parent, String name) -
> bool
</autodoc>
35255 <param name=
"frame" type=
"p.wxFrame" default=
""/>
35256 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35257 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35260 <method name=
"LoadObject" overloaded=
"no">
35261 <autodoc>LoadObject(Window parent, String name, String classname) -
> Object
</autodoc>
35263 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35264 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35265 <param name=
"classname" type=
"r.q(const).wxString" default=
""/>
35268 <method name=
"LoadOnObject" overloaded=
"no">
35269 <autodoc>LoadOnObject(Object instance, Window parent, String name, String classname) -
> bool
</autodoc>
35271 <param name=
"instance" type=
"p.wxObject" default=
""/>
35272 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35273 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35274 <param name=
"classname" type=
"r.q(const).wxString" default=
""/>
35277 <method name=
"LoadBitmap" overloaded=
"no">
35278 <autodoc>LoadBitmap(String name) -
> Bitmap
</autodoc>
35280 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35283 <method name=
"LoadIcon" overloaded=
"no">
35284 <autodoc>LoadIcon(String name) -
> Icon
</autodoc>
35286 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35289 <method name=
"AttachUnknownControl" overloaded=
"no">
35290 <autodoc>AttachUnknownControl(String name, Window control, Window parent=None) -
> bool
</autodoc>
35292 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35293 <param name=
"control" type=
"p.wxWindow" default=
""/>
35294 <param name=
"parent" type=
"p.wxWindow" default=
"NULL"/>
35297 <staticmethod name=
"GetXRCID" overloaded=
"no">
35298 <autodoc>GetXRCID(String str_id) -
> int
</autodoc>
35300 <param name=
"str_id" type=
"r.q(const).wxString" default=
""/>
35303 <method name=
"GetVersion" overloaded=
"no">
35304 <autodoc>GetVersion() -
> long
</autodoc>
35306 <method name=
"CompareVersion" overloaded=
"no">
35307 <autodoc>CompareVersion(int major, int minor, int release, int revision) -
> int
</autodoc>
35309 <param name=
"major" type=
"int" default=
""/>
35310 <param name=
"minor" type=
"int" default=
""/>
35311 <param name=
"release" type=
"int" default=
""/>
35312 <param name=
"revision" type=
"int" default=
""/>
35315 <staticmethod name=
"Get" overloaded=
"no">
35316 <autodoc>Get() -
> XmlResource
</autodoc>
35318 <staticmethod name=
"Set" overloaded=
"no">
35319 <autodoc>Set(XmlResource res) -
> XmlResource
</autodoc>
35321 <param name=
"res" type=
"p.wxXmlResource" default=
""/>
35324 <method name=
"GetFlags" overloaded=
"no">
35325 <autodoc>GetFlags() -
> int
</autodoc>
35327 <method name=
"SetFlags" overloaded=
"no">
35328 <autodoc>SetFlags(int flags)
</autodoc>
35330 <param name=
"flags" type=
"int" default=
""/>
35336 return XmlResource_GetXRCID(str_id)
35338 def XRCCTRL(window, str_id, *ignoreargs):
35339 return window.FindWindowById(XRCID(str_id))
35342 #---------------------------------------------------------------------------
35344 <class name=
"XmlSubclassFactory" oldname=
"wxPyXmlSubclassFactory" module=
"xrc">
35345 <constructor name=
"wxPyXmlSubclassFactory" overloaded=
"no">
35346 <autodoc>__init__() -
> XmlSubclassFactory
</autodoc>
35348 <method name=
"_setCallbackInfo" overloaded=
"no">
35349 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
35351 <param name=
"self" type=
"p.PyObject" default=
""/>
35352 <param name=
"_class" type=
"p.PyObject" default=
""/>
35357 #---------------------------------------------------------------------------
35359 <class name=
"XmlProperty" oldname=
"wxXmlProperty" module=
"xrc">
35360 <constructor name=
"XmlProperty" overloaded=
"no">
35361 <autodoc>__init__(String name=EmptyString, String value=EmptyString,
35362 XmlProperty next=None) -
> XmlProperty
</autodoc>
35364 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
35365 <param name=
"value" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
35366 <param name=
"next" type=
"p.wxXmlProperty" default=
"NULL"/>
35369 <method name=
"GetName" overloaded=
"no">
35370 <autodoc>GetName() -
> String
</autodoc>
35372 <method name=
"GetValue" overloaded=
"no">
35373 <autodoc>GetValue() -
> String
</autodoc>
35375 <method name=
"GetNext" overloaded=
"no">
35376 <autodoc>GetNext() -
> XmlProperty
</autodoc>
35378 <method name=
"SetName" overloaded=
"no">
35379 <autodoc>SetName(String name)
</autodoc>
35381 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35384 <method name=
"SetValue" overloaded=
"no">
35385 <autodoc>SetValue(String value)
</autodoc>
35387 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
35390 <method name=
"SetNext" overloaded=
"no">
35391 <autodoc>SetNext(XmlProperty next)
</autodoc>
35393 <param name=
"next" type=
"p.wxXmlProperty" default=
""/>
35397 <class name=
"XmlNode" oldname=
"wxXmlNode" module=
"xrc">
35398 <constructor name=
"XmlNode" overloaded=
"no">
35399 <autodoc>__init__(XmlNode parent=None, int type=
0, String name=EmptyString,
35400 String content=EmptyString, XmlProperty props=None,
35401 XmlNode next=None) -
> XmlNode
</autodoc>
35403 <param name=
"parent" type=
"p.wxXmlNode" default=
"NULL"/>
35404 <param name=
"type" type=
"wxXmlNodeType" default=
"0"/>
35405 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
35406 <param name=
"content" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
35407 <param name=
"props" type=
"p.wxXmlProperty" default=
"NULL"/>
35408 <param name=
"next" type=
"p.wxXmlNode" default=
"NULL"/>
35411 <destructor name=
"~wxXmlNode">
35412 <autodoc>__del__()
</autodoc>
35414 <constructor name=
"XmlNodeEasy" overloaded=
"no">
35415 <autodoc>XmlNodeEasy(int type, String name, String content=EmptyString) -
> XmlNode
</autodoc>
35417 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
35418 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35419 <param name=
"content" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
35422 <method name=
"AddChild" overloaded=
"no">
35423 <autodoc>AddChild(XmlNode child)
</autodoc>
35425 <param name=
"child" type=
"p.wxXmlNode" default=
""/>
35428 <method name=
"InsertChild" overloaded=
"no">
35429 <autodoc>InsertChild(XmlNode child, XmlNode before_node)
</autodoc>
35431 <param name=
"child" type=
"p.wxXmlNode" default=
""/>
35432 <param name=
"before_node" type=
"p.wxXmlNode" default=
""/>
35435 <method name=
"RemoveChild" overloaded=
"no">
35436 <autodoc>RemoveChild(XmlNode child) -
> bool
</autodoc>
35438 <param name=
"child" type=
"p.wxXmlNode" default=
""/>
35441 <method name=
"AddProperty" overloaded=
"no">
35442 <autodoc>AddProperty(XmlProperty prop)
</autodoc>
35444 <param name=
"prop" type=
"p.wxXmlProperty" default=
""/>
35447 <method name=
"AddPropertyName" overloaded=
"no">
35448 <autodoc>AddPropertyName(String name, String value)
</autodoc>
35450 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35451 <param name=
"value" type=
"r.q(const).wxString" default=
""/>
35454 <method name=
"DeleteProperty" overloaded=
"no">
35455 <autodoc>DeleteProperty(String name) -
> bool
</autodoc>
35457 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35460 <method name=
"GetType" overloaded=
"no">
35461 <autodoc>GetType() -
> int
</autodoc>
35463 <method name=
"GetName" overloaded=
"no">
35464 <autodoc>GetName() -
> String
</autodoc>
35466 <method name=
"GetContent" overloaded=
"no">
35467 <autodoc>GetContent() -
> String
</autodoc>
35469 <method name=
"GetParent" overloaded=
"no">
35470 <autodoc>GetParent() -
> XmlNode
</autodoc>
35472 <method name=
"GetNext" overloaded=
"no">
35473 <autodoc>GetNext() -
> XmlNode
</autodoc>
35475 <method name=
"GetChildren" overloaded=
"no">
35476 <autodoc>GetChildren() -
> XmlNode
</autodoc>
35478 <method name=
"GetProperties" overloaded=
"no">
35479 <autodoc>GetProperties() -
> XmlProperty
</autodoc>
35481 <method name=
"GetPropVal" overloaded=
"no">
35482 <autodoc>GetPropVal(String propName, String defaultVal) -
> String
</autodoc>
35484 <param name=
"propName" type=
"r.q(const).wxString" default=
""/>
35485 <param name=
"defaultVal" type=
"r.q(const).wxString" default=
""/>
35488 <method name=
"HasProp" overloaded=
"no">
35489 <autodoc>HasProp(String propName) -
> bool
</autodoc>
35491 <param name=
"propName" type=
"r.q(const).wxString" default=
""/>
35494 <method name=
"SetType" overloaded=
"no">
35495 <autodoc>SetType(int type)
</autodoc>
35497 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
35500 <method name=
"SetName" overloaded=
"no">
35501 <autodoc>SetName(String name)
</autodoc>
35503 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35506 <method name=
"SetContent" overloaded=
"no">
35507 <autodoc>SetContent(String con)
</autodoc>
35509 <param name=
"con" type=
"r.q(const).wxString" default=
""/>
35512 <method name=
"SetParent" overloaded=
"no">
35513 <autodoc>SetParent(XmlNode parent)
</autodoc>
35515 <param name=
"parent" type=
"p.wxXmlNode" default=
""/>
35518 <method name=
"SetNext" overloaded=
"no">
35519 <autodoc>SetNext(XmlNode next)
</autodoc>
35521 <param name=
"next" type=
"p.wxXmlNode" default=
""/>
35524 <method name=
"SetChildren" overloaded=
"no">
35525 <autodoc>SetChildren(XmlNode child)
</autodoc>
35527 <param name=
"child" type=
"p.wxXmlNode" default=
""/>
35530 <method name=
"SetProperties" overloaded=
"no">
35531 <autodoc>SetProperties(XmlProperty prop)
</autodoc>
35533 <param name=
"prop" type=
"p.wxXmlProperty" default=
""/>
35537 <class name=
"XmlDocument" oldname=
"wxXmlDocument" module=
"xrc">
35538 <baseclass name=
"wxObject"/>
35539 <constructor name=
"XmlDocument" overloaded=
"no">
35540 <autodoc>__init__(String filename, String encoding=UTF8String) -
> XmlDocument
</autodoc>
35542 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
35543 <param name=
"encoding" type=
"r.q(const).wxString" default=
"wxPyUTF8String"/>
35546 <constructor name=
"XmlDocumentFromStream" overloaded=
"no">
35547 <autodoc>XmlDocumentFromStream(InputStream stream, String encoding=UTF8String) -
> XmlDocument
</autodoc>
35549 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
35550 <param name=
"encoding" type=
"r.q(const).wxString" default=
"wxPyUTF8String"/>
35553 <constructor name=
"EmptyXmlDocument" overloaded=
"no">
35554 <autodoc>EmptyXmlDocument() -
> XmlDocument
</autodoc>
35556 <destructor name=
"~wxXmlDocument">
35557 <autodoc>__del__()
</autodoc>
35559 <method name=
"Load" overloaded=
"no">
35560 <autodoc>Load(String filename, String encoding=UTF8String) -
> bool
</autodoc>
35562 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
35563 <param name=
"encoding" type=
"r.q(const).wxString" default=
"wxPyUTF8String"/>
35566 <method name=
"LoadFromStream" overloaded=
"no">
35567 <autodoc>LoadFromStream(InputStream stream, String encoding=UTF8String) -
> bool
</autodoc>
35569 <param name=
"stream" type=
"r.wxInputStream" default=
""/>
35570 <param name=
"encoding" type=
"r.q(const).wxString" default=
"wxPyUTF8String"/>
35573 <method name=
"Save" overloaded=
"no">
35574 <autodoc>Save(String filename) -
> bool
</autodoc>
35576 <param name=
"filename" type=
"r.q(const).wxString" default=
""/>
35579 <method name=
"SaveToStream" overloaded=
"no">
35580 <autodoc>SaveToStream(OutputStream stream) -
> bool
</autodoc>
35582 <param name=
"stream" type=
"r.wxOutputStream" default=
""/>
35585 <method name=
"IsOk" overloaded=
"no">
35586 <autodoc>IsOk() -
> bool
</autodoc>
35588 <method name=
"GetRoot" overloaded=
"no">
35589 <autodoc>GetRoot() -
> XmlNode
</autodoc>
35591 <method name=
"GetVersion" overloaded=
"no">
35592 <autodoc>GetVersion() -
> String
</autodoc>
35594 <method name=
"GetFileEncoding" overloaded=
"no">
35595 <autodoc>GetFileEncoding() -
> String
</autodoc>
35597 <method name=
"SetRoot" overloaded=
"no">
35598 <autodoc>SetRoot(XmlNode node)
</autodoc>
35600 <param name=
"node" type=
"p.wxXmlNode" default=
""/>
35603 <method name=
"SetVersion" overloaded=
"no">
35604 <autodoc>SetVersion(String version)
</autodoc>
35606 <param name=
"version" type=
"r.q(const).wxString" default=
""/>
35609 <method name=
"SetFileEncoding" overloaded=
"no">
35610 <autodoc>SetFileEncoding(String encoding)
</autodoc>
35612 <param name=
"encoding" type=
"r.q(const).wxString" default=
""/>
35617 #---------------------------------------------------------------------------
35619 <class name=
"XmlResourceHandler" oldname=
"wxPyXmlResourceHandler" module=
"xrc">
35620 <baseclass name=
"wxObject"/>
35621 <constructor name=
"wxPyXmlResourceHandler" overloaded=
"no">
35622 <autodoc>__init__() -
> XmlResourceHandler
</autodoc>
35624 <method name=
"_setCallbackInfo" overloaded=
"no">
35625 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
35627 <param name=
"self" type=
"p.PyObject" default=
""/>
35628 <param name=
"_class" type=
"p.PyObject" default=
""/>
35631 <method name=
"CreateResource" overloaded=
"no">
35632 <autodoc>CreateResource(XmlNode node, Object parent, Object instance) -
> Object
</autodoc>
35634 <param name=
"node" type=
"p.wxXmlNode" default=
""/>
35635 <param name=
"parent" type=
"p.wxObject" default=
""/>
35636 <param name=
"instance" type=
"p.wxObject" default=
""/>
35639 <method name=
"SetParentResource" overloaded=
"no">
35640 <autodoc>SetParentResource(XmlResource res)
</autodoc>
35642 <param name=
"res" type=
"p.wxXmlResource" default=
""/>
35645 <method name=
"GetResource" overloaded=
"no">
35646 <autodoc>GetResource() -
> XmlResource
</autodoc>
35648 <method name=
"GetNode" overloaded=
"no">
35649 <autodoc>GetNode() -
> XmlNode
</autodoc>
35651 <method name=
"GetClass" overloaded=
"no">
35652 <autodoc>GetClass() -
> String
</autodoc>
35654 <method name=
"GetParent" overloaded=
"no">
35655 <autodoc>GetParent() -
> Object
</autodoc>
35657 <method name=
"GetInstance" overloaded=
"no">
35658 <autodoc>GetInstance() -
> Object
</autodoc>
35660 <method name=
"GetParentAsWindow" overloaded=
"no">
35661 <autodoc>GetParentAsWindow() -
> Window
</autodoc>
35663 <method name=
"GetInstanceAsWindow" overloaded=
"no">
35664 <autodoc>GetInstanceAsWindow() -
> Window
</autodoc>
35666 <method name=
"IsOfClass" overloaded=
"no">
35667 <autodoc>IsOfClass(XmlNode node, String classname) -
> bool
</autodoc>
35669 <param name=
"node" type=
"p.wxXmlNode" default=
""/>
35670 <param name=
"classname" type=
"r.q(const).wxString" default=
""/>
35673 <method name=
"GetNodeContent" overloaded=
"no">
35674 <autodoc>GetNodeContent(XmlNode node) -
> String
</autodoc>
35676 <param name=
"node" type=
"p.wxXmlNode" default=
""/>
35679 <method name=
"HasParam" overloaded=
"no">
35680 <autodoc>HasParam(String param) -
> bool
</autodoc>
35682 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35685 <method name=
"GetParamNode" overloaded=
"no">
35686 <autodoc>GetParamNode(String param) -
> XmlNode
</autodoc>
35688 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35691 <method name=
"GetParamValue" overloaded=
"no">
35692 <autodoc>GetParamValue(String param) -
> String
</autodoc>
35694 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35697 <method name=
"AddStyle" overloaded=
"no">
35698 <autodoc>AddStyle(String name, int value)
</autodoc>
35700 <param name=
"name" type=
"r.q(const).wxString" default=
""/>
35701 <param name=
"value" type=
"int" default=
""/>
35704 <method name=
"AddWindowStyles" overloaded=
"no">
35705 <autodoc>AddWindowStyles()
</autodoc>
35707 <method name=
"GetStyle" overloaded=
"no">
35708 <autodoc>GetStyle(String param=StyleString, int defaults=
0) -
> int
</autodoc>
35710 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPyStyleString"/>
35711 <param name=
"defaults" type=
"int" default=
"0"/>
35714 <method name=
"GetText" overloaded=
"no">
35715 <autodoc>GetText(String param, bool translate=True) -
> String
</autodoc>
35717 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35718 <param name=
"translate" type=
"bool" default=
"True"/>
35721 <method name=
"GetID" overloaded=
"no">
35722 <autodoc>GetID() -
> int
</autodoc>
35724 <method name=
"GetName" overloaded=
"no">
35725 <autodoc>GetName() -
> String
</autodoc>
35727 <method name=
"GetBool" overloaded=
"no">
35728 <autodoc>GetBool(String param, bool defaultv=False) -
> bool
</autodoc>
35730 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35731 <param name=
"defaultv" type=
"bool" default=
"False"/>
35734 <method name=
"GetLong" overloaded=
"no">
35735 <autodoc>GetLong(String param, long defaultv=
0) -
> long
</autodoc>
35737 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35738 <param name=
"defaultv" type=
"long" default=
"0"/>
35741 <method name=
"GetColour" overloaded=
"no">
35742 <autodoc>GetColour(String param) -
> Colour
</autodoc>
35744 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35747 <method name=
"GetSize" overloaded=
"no">
35748 <autodoc>GetSize(String param=SizeString) -
> Size
</autodoc>
35750 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPySizeString"/>
35753 <method name=
"GetPosition" overloaded=
"no">
35754 <autodoc>GetPosition(String param=PosString) -
> Point
</autodoc>
35756 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPyPosString"/>
35759 <method name=
"GetDimension" overloaded=
"no">
35760 <autodoc>GetDimension(String param, int defaultv=
0) -
> int
</autodoc>
35762 <param name=
"param" type=
"r.q(const).wxString" default=
""/>
35763 <param name=
"defaultv" type=
"int" default=
"0"/>
35766 <method name=
"GetBitmap" overloaded=
"no">
35767 <autodoc>GetBitmap(String param=BitmapString, wxArtClient defaultArtClient=wxART_OTHER,
35768 Size size=DefaultSize) -
> Bitmap
</autodoc>
35770 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPyBitmapString"/>
35771 <param name=
"defaultArtClient" type=
"r.q(const).wxArtClient" default=
"wxART_OTHER"/>
35772 <param name=
"size" type=
"wxSize" default=
"wxDefaultSize"/>
35775 <method name=
"GetIcon" overloaded=
"no">
35776 <autodoc>GetIcon(String param=IconString, wxArtClient defaultArtClient=wxART_OTHER,
35777 Size size=DefaultSize) -
> Icon
</autodoc>
35779 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPyIconString"/>
35780 <param name=
"defaultArtClient" type=
"r.q(const).wxArtClient" default=
"wxART_OTHER"/>
35781 <param name=
"size" type=
"wxSize" default=
"wxDefaultSize"/>
35784 <method name=
"GetFont" overloaded=
"no">
35785 <autodoc>GetFont(String param=FontString) -
> Font
</autodoc>
35787 <param name=
"param" type=
"r.q(const).wxString" default=
"wxPyFontString"/>
35790 <method name=
"SetupWindow" overloaded=
"no">
35791 <autodoc>SetupWindow(Window wnd)
</autodoc>
35793 <param name=
"wnd" type=
"p.wxWindow" default=
""/>
35796 <method name=
"CreateChildren" overloaded=
"no">
35797 <autodoc>CreateChildren(Object parent, bool this_hnd_only=False)
</autodoc>
35799 <param name=
"parent" type=
"p.wxObject" default=
""/>
35800 <param name=
"this_hnd_only" type=
"bool" default=
"False"/>
35803 <method name=
"CreateChildrenPrivately" overloaded=
"no">
35804 <autodoc>CreateChildrenPrivately(Object parent, XmlNode rootnode=None)
</autodoc>
35806 <param name=
"parent" type=
"p.wxObject" default=
""/>
35807 <param name=
"rootnode" type=
"p.wxXmlNode" default=
"NULL"/>
35810 <method name=
"CreateResFromNode" overloaded=
"no">
35811 <autodoc>CreateResFromNode(XmlNode node, Object parent, Object instance=None) -
> Object
</autodoc>
35813 <param name=
"node" type=
"p.wxXmlNode" default=
""/>
35814 <param name=
"parent" type=
"p.wxObject" default=
""/>
35815 <param name=
"instance" type=
"p.wxObject" default=
"NULL"/>
35818 <method name=
"GetCurFileSystem" overloaded=
"no">
35819 <autodoc>GetCurFileSystem() -
> FileSystem
</autodoc>
35822 <pythoncode>#----------------------------------------------------------------------------
35823 # The global was removed in favor of static accessor functions. This is for
35824 # backwards compatibility:
35826 TheXmlResource = XmlResource_Get()
35829 #----------------------------------------------------------------------------
35830 # Create a factory for handling the subclass property of the object tag.
35833 def _my_import(name):
35834 mod = __import__(name)
35835 components = name.split('.')
35836 for comp in components[
1:]:
35837 mod = getattr(mod, comp)
35841 class XmlSubclassFactory_Python(XmlSubclassFactory):
35842 def __init__(self):
35843 XmlSubclassFactory.__init__(self)
35845 def Create(self, className):
35846 assert className.find('.') != -
1, "Module name must be specified!"
35847 mname = className[:className.rfind('.')]
35848 cname = className[className.rfind('.')+
1:]
35849 module = _my_import(mname)
35850 klass = getattr(module, cname)
35855 XmlResource_AddSubclassFactory(XmlSubclassFactory_Python())
35857 #----------------------------------------------------------------------------
35860 <module name=
"gizmos">
35861 <pythoncode> wx = core
</pythoncode>
35862 <class name=
"DynamicSashSplitEvent" oldname=
"wxDynamicSashSplitEvent" module=
"gizmos">
35863 <baseclass name=
"wxCommandEvent"/>
35864 <constructor name=
"DynamicSashSplitEvent" overloaded=
"no">
35865 <autodoc>__init__(Object target) -
> DynamicSashSplitEvent
</autodoc>
35867 <param name=
"target" type=
"p.wxObject" default=
""/>
35871 <class name=
"DynamicSashUnifyEvent" oldname=
"wxDynamicSashUnifyEvent" module=
"gizmos">
35872 <baseclass name=
"wxCommandEvent"/>
35873 <constructor name=
"DynamicSashUnifyEvent" overloaded=
"no">
35874 <autodoc>__init__(Object target) -
> DynamicSashUnifyEvent
</autodoc>
35876 <param name=
"target" type=
"p.wxObject" default=
""/>
35880 <class name=
"DynamicSashWindow" oldname=
"wxDynamicSashWindow" module=
"gizmos">
35881 <baseclass name=
"wxWindow"/>
35882 <constructor name=
"DynamicSashWindow" overloaded=
"no">
35883 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
35884 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
35885 String name=DynamicSashNameStr) -
> DynamicSashWindow
</autodoc>
35887 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35888 <param name=
"id" type=
"int" default=
""/>
35889 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
35890 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
35891 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
35892 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyDynamicSashNameStr"/>
35895 <constructor name=
"PreDynamicSashWindow" overloaded=
"no">
35896 <autodoc>PreDynamicSashWindow() -
> DynamicSashWindow
</autodoc>
35898 <method name=
"Create" overloaded=
"no">
35899 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
35900 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
35901 String name=DynamicSashNameStr) -
> bool
</autodoc>
35903 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35904 <param name=
"id" type=
"int" default=
""/>
35905 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
35906 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
35907 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
35908 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyDynamicSashNameStr"/>
35911 <method name=
"GetHScrollBar" overloaded=
"no">
35912 <autodoc>GetHScrollBar(Window child) -
> ScrollBar
</autodoc>
35914 <param name=
"child" type=
"p.q(const).wxWindow" default=
""/>
35917 <method name=
"GetVScrollBar" overloaded=
"no">
35918 <autodoc>GetVScrollBar(Window child) -
> ScrollBar
</autodoc>
35920 <param name=
"child" type=
"p.q(const).wxWindow" default=
""/>
35925 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT,
1 )
35926 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY,
1 )
35928 <class name=
"EditableListBox" oldname=
"wxEditableListBox" module=
"gizmos">
35929 <baseclass name=
"wxPanel"/>
35930 <constructor name=
"EditableListBox" overloaded=
"no">
35931 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
35932 Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE,
35933 String name=EditableListBoxNameStr) -
> EditableListBox
</autodoc>
35935 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35936 <param name=
"id" type=
"int" default=
""/>
35937 <param name=
"label" type=
"r.q(const).wxString" default=
""/>
35938 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
35939 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
35940 <param name=
"style" type=
"long" default=
"wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE"/>
35941 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyEditableListBoxNameStr"/>
35944 <method name=
"SetStrings" overloaded=
"no">
35945 <autodoc>SetStrings(wxArrayString strings)
</autodoc>
35947 <param name=
"strings" type=
"r.q(const).wxArrayString" default=
""/>
35950 <method name=
"GetStrings" overloaded=
"no">
35951 <autodoc>GetStrings() -
> PyObject
</autodoc>
35953 <method name=
"GetListCtrl" overloaded=
"no">
35954 <autodoc>GetListCtrl() -
> wxListCtrl
</autodoc>
35956 <method name=
"GetDelButton" overloaded=
"no">
35957 <autodoc>GetDelButton() -
> BitmapButton
</autodoc>
35959 <method name=
"GetNewButton" overloaded=
"no">
35960 <autodoc>GetNewButton() -
> BitmapButton
</autodoc>
35962 <method name=
"GetUpButton" overloaded=
"no">
35963 <autodoc>GetUpButton() -
> BitmapButton
</autodoc>
35965 <method name=
"GetDownButton" overloaded=
"no">
35966 <autodoc>GetDownButton() -
> BitmapButton
</autodoc>
35968 <method name=
"GetEditButton" overloaded=
"no">
35969 <autodoc>GetEditButton() -
> BitmapButton
</autodoc>
35972 <class name=
"RemotelyScrolledTreeCtrl" oldname=
"wxRemotelyScrolledTreeCtrl" module=
"gizmos">
35973 <baseclass name=
"wxPyTreeCtrl"/>
35974 <constructor name=
"RemotelyScrolledTreeCtrl" overloaded=
"no">
35975 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
35976 long style=TR_HAS_BUTTONS) -
> RemotelyScrolledTreeCtrl
</autodoc>
35978 <param name=
"parent" type=
"p.wxWindow" default=
""/>
35979 <param name=
"id" type=
"int" default=
""/>
35980 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
35981 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
35982 <param name=
"style" type=
"long" default=
"wxTR_HAS_BUTTONS"/>
35985 <method name=
"HideVScrollbar" overloaded=
"no">
35986 <autodoc>HideVScrollbar()
</autodoc>
35988 <method name=
"AdjustRemoteScrollbars" overloaded=
"no">
35989 <autodoc>AdjustRemoteScrollbars()
</autodoc>
35991 <method name=
"GetScrolledWindow" overloaded=
"no">
35992 <autodoc>GetScrolledWindow() -
> ScrolledWindow
</autodoc>
35994 <method name=
"ScrollToLine" overloaded=
"no">
35995 <autodoc>ScrollToLine(int posHoriz, int posVert)
</autodoc>
35997 <param name=
"posHoriz" type=
"int" default=
""/>
35998 <param name=
"posVert" type=
"int" default=
""/>
36001 <method name=
"SetCompanionWindow" overloaded=
"no">
36002 <autodoc>SetCompanionWindow(Window companion)
</autodoc>
36004 <param name=
"companion" type=
"p.wxWindow" default=
""/>
36007 <method name=
"GetCompanionWindow" overloaded=
"no">
36008 <autodoc>GetCompanionWindow() -
> Window
</autodoc>
36011 <class name=
"TreeCompanionWindow" oldname=
"wxPyTreeCompanionWindow" module=
"gizmos">
36012 <baseclass name=
"wxWindow"/>
36013 <constructor name=
"wxPyTreeCompanionWindow" overloaded=
"no">
36014 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
36015 Size size=DefaultSize, long style=
0) -
> TreeCompanionWindow
</autodoc>
36017 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36018 <param name=
"id" type=
"int" default=
"-1"/>
36019 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36020 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36021 <param name=
"style" type=
"long" default=
"0"/>
36024 <method name=
"_setCallbackInfo" overloaded=
"no">
36025 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
36027 <param name=
"self" type=
"p.PyObject" default=
""/>
36028 <param name=
"_class" type=
"p.PyObject" default=
""/>
36031 <method name=
"GetTreeCtrl" overloaded=
"no">
36032 <autodoc>GetTreeCtrl() -
> RemotelyScrolledTreeCtrl
</autodoc>
36034 <method name=
"SetTreeCtrl" overloaded=
"no">
36035 <autodoc>SetTreeCtrl(RemotelyScrolledTreeCtrl treeCtrl)
</autodoc>
36037 <param name=
"treeCtrl" type=
"p.wxRemotelyScrolledTreeCtrl" default=
""/>
36041 <class name=
"ThinSplitterWindow" oldname=
"wxThinSplitterWindow" module=
"gizmos">
36042 <baseclass name=
"wxSplitterWindow"/>
36043 <constructor name=
"ThinSplitterWindow" overloaded=
"no">
36044 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
36045 Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -
> ThinSplitterWindow
</autodoc>
36047 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36048 <param name=
"id" type=
"int" default=
"-1"/>
36049 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36050 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36051 <param name=
"style" type=
"long" default=
"wxSP_3D|wxCLIP_CHILDREN"/>
36055 <class name=
"SplitterScrolledWindow" oldname=
"wxSplitterScrolledWindow" module=
"gizmos">
36056 <baseclass name=
"wxScrolledWindow"/>
36057 <constructor name=
"SplitterScrolledWindow" overloaded=
"no">
36058 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
36059 Size size=DefaultSize, long style=
0) -
> SplitterScrolledWindow
</autodoc>
36061 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36062 <param name=
"id" type=
"int" default=
"-1"/>
36063 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36064 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36065 <param name=
"style" type=
"long" default=
"0"/>
36069 <class name=
"LEDNumberCtrl" oldname=
"wxLEDNumberCtrl" module=
"gizmos">
36070 <baseclass name=
"wxControl"/>
36071 <constructor name=
"LEDNumberCtrl" overloaded=
"no">
36072 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
36073 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> LEDNumberCtrl
</autodoc>
36075 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36076 <param name=
"id" type=
"int" default=
"-1"/>
36077 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36078 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36079 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
36082 <constructor name=
"PreLEDNumberCtrl" overloaded=
"no">
36083 <autodoc>PreLEDNumberCtrl() -
> LEDNumberCtrl
</autodoc>
36085 <method name=
"Create" overloaded=
"no">
36086 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
36087 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> bool
</autodoc>
36089 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36090 <param name=
"id" type=
"int" default=
"-1"/>
36091 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36092 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36093 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
36096 <method name=
"GetAlignment" overloaded=
"no">
36097 <autodoc>GetAlignment() -
> int
</autodoc>
36099 <method name=
"GetDrawFaded" overloaded=
"no">
36100 <autodoc>GetDrawFaded() -
> bool
</autodoc>
36102 <method name=
"GetValue" overloaded=
"no">
36103 <autodoc>GetValue() -
> String
</autodoc>
36105 <method name=
"SetAlignment" overloaded=
"no">
36106 <autodoc>SetAlignment(int Alignment, bool Redraw=true)
</autodoc>
36108 <param name=
"Alignment" type=
"wxLEDValueAlign" default=
""/>
36109 <param name=
"Redraw" type=
"bool" default=
"true"/>
36112 <method name=
"SetDrawFaded" overloaded=
"no">
36113 <autodoc>SetDrawFaded(bool DrawFaded, bool Redraw=true)
</autodoc>
36115 <param name=
"DrawFaded" type=
"bool" default=
""/>
36116 <param name=
"Redraw" type=
"bool" default=
"true"/>
36119 <method name=
"SetValue" overloaded=
"no">
36120 <autodoc>SetValue(String Value, bool Redraw=true)
</autodoc>
36122 <param name=
"Value" type=
"r.q(const).wxString" default=
""/>
36123 <param name=
"Redraw" type=
"bool" default=
"true"/>
36127 <class name=
"TreeListColumnInfo" oldname=
"wxTreeListColumnInfo" module=
"gizmos">
36128 <baseclass name=
"wxObject"/>
36129 <constructor name=
"TreeListColumnInfo" overloaded=
"no">
36130 <autodoc>__init__(String text=EmptyString, int image=-
1, size_t width=
100,
36131 int alignment=TL_ALIGN_LEFT) -
> TreeListColumnInfo
</autodoc>
36133 <param name=
"text" type=
"r.q(const).wxString" default=
"wxPyEmptyString"/>
36134 <param name=
"image" type=
"int" default=
"-1"/>
36135 <param name=
"width" type=
"size_t" default=
"100"/>
36136 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
"wxTL_ALIGN_LEFT"/>
36139 <method name=
"GetAlignment" overloaded=
"no">
36140 <autodoc>GetAlignment() -
> int
</autodoc>
36142 <method name=
"GetText" overloaded=
"no">
36143 <autodoc>GetText() -
> String
</autodoc>
36145 <method name=
"GetImage" overloaded=
"no">
36146 <autodoc>GetImage() -
> int
</autodoc>
36148 <method name=
"GetSelectedImage" overloaded=
"no">
36149 <autodoc>GetSelectedImage() -
> int
</autodoc>
36151 <method name=
"GetWidth" overloaded=
"no">
36152 <autodoc>GetWidth() -
> size_t
</autodoc>
36154 <method name=
"SetAlignment" overloaded=
"no">
36155 <autodoc>SetAlignment(int alignment)
</autodoc>
36157 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
""/>
36160 <method name=
"SetText" overloaded=
"no">
36161 <autodoc>SetText(String text)
</autodoc>
36163 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36166 <method name=
"SetImage" overloaded=
"no">
36167 <autodoc>SetImage(int image)
</autodoc>
36169 <param name=
"image" type=
"int" default=
""/>
36172 <method name=
"SetSelectedImage" overloaded=
"no">
36173 <autodoc>SetSelectedImage(int image)
</autodoc>
36175 <param name=
"image" type=
"int" default=
""/>
36178 <method name=
"SetWidth" overloaded=
"no">
36179 <autodoc>SetWidth(size_t with)
</autodoc>
36181 <param name=
"with" type=
"size_t" default=
""/>
36185 <class name=
"TreeListCtrl" oldname=
"wxPyTreeListCtrl" module=
"gizmos">
36186 <baseclass name=
"wxControl"/>
36187 <constructor name=
"wxPyTreeListCtrl" overloaded=
"no">
36188 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
36189 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
36190 Validator validator=DefaultValidator,
36191 String name=TreeListCtrlNameStr) -
> TreeListCtrl
</autodoc>
36193 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36194 <param name=
"id" type=
"int" default=
"-1"/>
36195 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36196 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36197 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
36198 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
36199 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeListCtrlNameStr"/>
36202 <constructor name=
"PreTreeListCtrl" overloaded=
"no">
36203 <autodoc>PreTreeListCtrl() -
> TreeListCtrl
</autodoc>
36205 <method name=
"Create" overloaded=
"no">
36206 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
36207 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
36208 Validator validator=DefaultValidator,
36209 String name=TreeListCtrlNameStr) -
> bool
</autodoc>
36211 <param name=
"parent" type=
"p.wxWindow" default=
""/>
36212 <param name=
"id" type=
"int" default=
"-1"/>
36213 <param name=
"pos" type=
"r.q(const).wxPoint" default=
"wxDefaultPosition"/>
36214 <param name=
"size" type=
"r.q(const).wxSize" default=
"wxDefaultSize"/>
36215 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
36216 <param name=
"validator" type=
"r.q(const).wxValidator" default=
"wxDefaultValidator"/>
36217 <param name=
"name" type=
"r.q(const).wxString" default=
"wxPyTreeListCtrlNameStr"/>
36220 <method name=
"_setCallbackInfo" overloaded=
"no">
36221 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
36223 <param name=
"self" type=
"p.PyObject" default=
""/>
36224 <param name=
"_class" type=
"p.PyObject" default=
""/>
36227 <method name=
"GetCount" overloaded=
"no">
36228 <autodoc>GetCount() -
> size_t
</autodoc>
36230 <method name=
"GetIndent" overloaded=
"no">
36231 <autodoc>GetIndent() -
> unsigned int
</autodoc>
36233 <method name=
"SetIndent" overloaded=
"no">
36234 <autodoc>SetIndent(unsigned int indent)
</autodoc>
36236 <param name=
"indent" type=
"unsigned int" default=
""/>
36239 <method name=
"GetSpacing" overloaded=
"no">
36240 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
36242 <method name=
"SetSpacing" overloaded=
"no">
36243 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
36245 <param name=
"spacing" type=
"unsigned int" default=
""/>
36248 <method name=
"GetLineSpacing" overloaded=
"no">
36249 <autodoc>GetLineSpacing() -
> unsigned int
</autodoc>
36251 <method name=
"SetLineSpacing" overloaded=
"no">
36252 <autodoc>SetLineSpacing(unsigned int spacing)
</autodoc>
36254 <param name=
"spacing" type=
"unsigned int" default=
""/>
36257 <method name=
"GetImageList" overloaded=
"no">
36258 <autodoc>GetImageList() -
> ImageList
</autodoc>
36260 <method name=
"GetStateImageList" overloaded=
"no">
36261 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
36263 <method name=
"GetButtonsImageList" overloaded=
"no">
36264 <autodoc>GetButtonsImageList() -
> ImageList
</autodoc>
36266 <method name=
"SetImageList" overloaded=
"no">
36267 <autodoc>SetImageList(ImageList imageList)
</autodoc>
36269 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36272 <method name=
"SetStateImageList" overloaded=
"no">
36273 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
36275 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36278 <method name=
"SetButtonsImageList" overloaded=
"no">
36279 <autodoc>SetButtonsImageList(ImageList imageList)
</autodoc>
36281 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36284 <method name=
"AssignImageList" overloaded=
"no">
36285 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
36287 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36290 <method name=
"AssignStateImageList" overloaded=
"no">
36291 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
36293 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36296 <method name=
"AssignButtonsImageList" overloaded=
"no">
36297 <autodoc>AssignButtonsImageList(ImageList imageList)
</autodoc>
36299 <param name=
"imageList" type=
"p.wxImageList" default=
""/>
36302 <method name=
"AddColumn" overloaded=
"no">
36303 <autodoc>AddColumn(String text)
</autodoc>
36305 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36308 <method name=
"AddColumnInfo" overloaded=
"no">
36309 <autodoc>AddColumnInfo(TreeListColumnInfo col)
</autodoc>
36311 <param name=
"col" type=
"r.q(const).wxTreeListColumnInfo" default=
""/>
36314 <method name=
"InsertColumn" overloaded=
"no">
36315 <autodoc>InsertColumn(size_t before, String text)
</autodoc>
36317 <param name=
"before" type=
"size_t" default=
""/>
36318 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36321 <method name=
"InsertColumnInfo" overloaded=
"no">
36322 <autodoc>InsertColumnInfo(size_t before, TreeListColumnInfo col)
</autodoc>
36324 <param name=
"before" type=
"size_t" default=
""/>
36325 <param name=
"col" type=
"r.q(const).wxTreeListColumnInfo" default=
""/>
36328 <method name=
"RemoveColumn" overloaded=
"no">
36329 <autodoc>RemoveColumn(size_t column)
</autodoc>
36331 <param name=
"column" type=
"size_t" default=
""/>
36334 <method name=
"GetColumnCount" overloaded=
"no">
36335 <autodoc>GetColumnCount() -
> size_t
</autodoc>
36337 <method name=
"SetColumnWidth" overloaded=
"no">
36338 <autodoc>SetColumnWidth(size_t column, size_t width)
</autodoc>
36340 <param name=
"column" type=
"size_t" default=
""/>
36341 <param name=
"width" type=
"size_t" default=
""/>
36344 <method name=
"GetColumnWidth" overloaded=
"no">
36345 <autodoc>GetColumnWidth(size_t column) -
> int
</autodoc>
36347 <param name=
"column" type=
"size_t" default=
""/>
36350 <method name=
"SetMainColumn" overloaded=
"no">
36351 <autodoc>SetMainColumn(size_t column)
</autodoc>
36353 <param name=
"column" type=
"size_t" default=
""/>
36356 <method name=
"GetMainColumn" overloaded=
"no">
36357 <autodoc>GetMainColumn() -
> size_t
</autodoc>
36359 <method name=
"SetColumnText" overloaded=
"no">
36360 <autodoc>SetColumnText(size_t column, String text)
</autodoc>
36362 <param name=
"column" type=
"size_t" default=
""/>
36363 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36366 <method name=
"GetColumnText" overloaded=
"no">
36367 <autodoc>GetColumnText(size_t column) -
> String
</autodoc>
36369 <param name=
"column" type=
"size_t" default=
""/>
36372 <method name=
"SetColumn" overloaded=
"no">
36373 <autodoc>SetColumn(size_t column, TreeListColumnInfo info)
</autodoc>
36375 <param name=
"column" type=
"size_t" default=
""/>
36376 <param name=
"info" type=
"r.q(const).wxTreeListColumnInfo" default=
""/>
36379 <method name=
"GetColumn" overloaded=
"no">
36380 <autodoc>GetColumn(size_t column) -
> TreeListColumnInfo
</autodoc>
36382 <param name=
"column" type=
"size_t" default=
""/>
36385 <method name=
"SetColumnAlignment" overloaded=
"no">
36386 <autodoc>SetColumnAlignment(size_t column, int align)
</autodoc>
36388 <param name=
"column" type=
"size_t" default=
""/>
36389 <param name=
"align" type=
"wxTreeListColumnAlign" default=
""/>
36392 <method name=
"GetColumnAlignment" overloaded=
"no">
36393 <autodoc>GetColumnAlignment(size_t column) -
> int
</autodoc>
36395 <param name=
"column" type=
"size_t" default=
""/>
36398 <method name=
"SetColumnImage" overloaded=
"no">
36399 <autodoc>SetColumnImage(size_t column, int image)
</autodoc>
36401 <param name=
"column" type=
"size_t" default=
""/>
36402 <param name=
"image" type=
"int" default=
""/>
36405 <method name=
"GetColumnImage" overloaded=
"no">
36406 <autodoc>GetColumnImage(size_t column) -
> int
</autodoc>
36408 <param name=
"column" type=
"size_t" default=
""/>
36411 <method name=
"GetItemText" overloaded=
"no">
36412 <autodoc>GetItemText(TreeItemId item, int column=-
1) -
> String
</autodoc>
36414 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36415 <param name=
"column" type=
"int" default=
"-1"/>
36418 <method name=
"GetItemImage" overloaded=
"no">
36419 <autodoc>GetItemImage(TreeItemId item, int column=-
1, int which=TreeItemIcon_Normal) -
> int
</autodoc>
36421 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36422 <param name=
"column" type=
"int" default=
"-1"/>
36423 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
36426 <method name=
"SetItemText" overloaded=
"no">
36427 <autodoc>SetItemText(TreeItemId item, String text, int column=-
1)
</autodoc>
36429 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36430 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36431 <param name=
"column" type=
"int" default=
"-1"/>
36434 <method name=
"SetItemImage" overloaded=
"no">
36435 <autodoc>SetItemImage(TreeItemId item, int image, int column=-
1, int which=TreeItemIcon_Normal)
</autodoc>
36437 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36438 <param name=
"image" type=
"int" default=
""/>
36439 <param name=
"column" type=
"int" default=
"-1"/>
36440 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
36443 <method name=
"GetItemData" overloaded=
"no">
36444 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
36446 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36449 <method name=
"SetItemData" overloaded=
"no">
36450 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
36452 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36453 <param name=
"data" type=
"p.wxPyTreeItemData" default=
""/>
36456 <method name=
"GetItemPyData" overloaded=
"no">
36457 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
36459 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36462 <method name=
"SetItemPyData" overloaded=
"no">
36463 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
36465 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36466 <param name=
"obj" type=
"p.PyObject" default=
""/>
36469 <method name=
"SetItemHasChildren" overloaded=
"no">
36470 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
36472 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36473 <param name=
"has" type=
"bool" default=
"True"/>
36476 <method name=
"SetItemBold" overloaded=
"no">
36477 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
36479 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36480 <param name=
"bold" type=
"bool" default=
"True"/>
36483 <method name=
"SetItemTextColour" overloaded=
"no">
36484 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
36486 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36487 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
36490 <method name=
"SetItemBackgroundColour" overloaded=
"no">
36491 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
36493 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36494 <param name=
"col" type=
"r.q(const).wxColour" default=
""/>
36497 <method name=
"SetItemFont" overloaded=
"no">
36498 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
36500 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36501 <param name=
"font" type=
"r.q(const).wxFont" default=
""/>
36504 <method name=
"GetItemBold" overloaded=
"no">
36505 <autodoc>GetItemBold(TreeItemId item) -
> bool
</autodoc>
36507 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36510 <method name=
"GetItemTextColour" overloaded=
"no">
36511 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
36513 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36516 <method name=
"GetItemBackgroundColour" overloaded=
"no">
36517 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
36519 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36522 <method name=
"GetItemFont" overloaded=
"no">
36523 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
36525 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36528 <method name=
"IsVisible" overloaded=
"no">
36529 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
36531 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36534 <method name=
"ItemHasChildren" overloaded=
"no">
36535 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
36537 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36540 <method name=
"IsExpanded" overloaded=
"no">
36541 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
36543 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36546 <method name=
"IsSelected" overloaded=
"no">
36547 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
36549 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36552 <method name=
"IsBold" overloaded=
"no">
36553 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
36555 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36558 <method name=
"GetChildrenCount" overloaded=
"no">
36559 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
36561 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36562 <param name=
"recursively" type=
"bool" default=
"True"/>
36565 <method name=
"GetRootItem" overloaded=
"no">
36566 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
36568 <method name=
"GetSelection" overloaded=
"no">
36569 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
36571 <method name=
"GetSelections" overloaded=
"no">
36572 <autodoc>GetSelections() -
> PyObject
</autodoc>
36574 <method name=
"GetItemParent" overloaded=
"no">
36575 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
36577 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36580 <method name=
"GetFirstChild" overloaded=
"no">
36581 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
36583 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36586 <method name=
"GetNextChild" overloaded=
"no">
36587 <autodoc>GetNextChild(TreeItemId item, long cookie) -
> PyObject
</autodoc>
36589 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36590 <param name=
"cookie" type=
"long" default=
""/>
36593 <method name=
"GetLastChild" overloaded=
"no">
36594 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
36596 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36599 <method name=
"GetNextSibling" overloaded=
"no">
36600 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
36602 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36605 <method name=
"GetPrevSibling" overloaded=
"no">
36606 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
36608 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36611 <method name=
"GetFirstVisibleItem" overloaded=
"no">
36612 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
36614 <method name=
"GetNextVisible" overloaded=
"no">
36615 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
36617 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36620 <method name=
"GetPrevVisible" overloaded=
"no">
36621 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
36623 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36626 <method name=
"GetNext" overloaded=
"no">
36627 <autodoc>GetNext(TreeItemId item) -
> TreeItemId
</autodoc>
36629 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36632 <method name=
"AddRoot" overloaded=
"no">
36633 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
36635 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36636 <param name=
"image" type=
"int" default=
"-1"/>
36637 <param name=
"selectedImage" type=
"int" default=
"-1"/>
36638 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
36641 <method name=
"PrependItem" overloaded=
"no">
36642 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
36643 TreeItemData data=None) -
> TreeItemId
</autodoc>
36645 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
36646 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36647 <param name=
"image" type=
"int" default=
"-1"/>
36648 <param name=
"selectedImage" type=
"int" default=
"-1"/>
36649 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
36652 <method name=
"InsertItem" overloaded=
"no">
36653 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
36654 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
36656 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
36657 <param name=
"idPrevious" type=
"r.q(const).wxTreeItemId" default=
""/>
36658 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36659 <param name=
"image" type=
"int" default=
"-1"/>
36660 <param name=
"selectedImage" type=
"int" default=
"-1"/>
36661 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
36664 <method name=
"InsertItemBefore" overloaded=
"no">
36665 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
36666 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
36668 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
36669 <param name=
"index" type=
"size_t" default=
""/>
36670 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36671 <param name=
"image" type=
"int" default=
"-1"/>
36672 <param name=
"selectedImage" type=
"int" default=
"-1"/>
36673 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
36676 <method name=
"AppendItem" overloaded=
"no">
36677 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
36678 TreeItemData data=None) -
> TreeItemId
</autodoc>
36680 <param name=
"parent" type=
"r.q(const).wxTreeItemId" default=
""/>
36681 <param name=
"text" type=
"r.q(const).wxString" default=
""/>
36682 <param name=
"image" type=
"int" default=
"-1"/>
36683 <param name=
"selectedImage" type=
"int" default=
"-1"/>
36684 <param name=
"data" type=
"p.wxPyTreeItemData" default=
"NULL"/>
36687 <method name=
"Delete" overloaded=
"no">
36688 <autodoc>Delete(TreeItemId item)
</autodoc>
36690 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36693 <method name=
"DeleteChildren" overloaded=
"no">
36694 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
36696 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36699 <method name=
"DeleteAllItems" overloaded=
"no">
36700 <autodoc>DeleteAllItems()
</autodoc>
36702 <method name=
"Expand" overloaded=
"no">
36703 <autodoc>Expand(TreeItemId item)
</autodoc>
36705 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36708 <method name=
"ExpandAll" overloaded=
"no">
36709 <autodoc>ExpandAll(TreeItemId item)
</autodoc>
36711 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36714 <method name=
"Collapse" overloaded=
"no">
36715 <autodoc>Collapse(TreeItemId item)
</autodoc>
36717 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36720 <method name=
"CollapseAndReset" overloaded=
"no">
36721 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
36723 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36726 <method name=
"Toggle" overloaded=
"no">
36727 <autodoc>Toggle(TreeItemId item)
</autodoc>
36729 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36732 <method name=
"Unselect" overloaded=
"no">
36733 <autodoc>Unselect()
</autodoc>
36735 <method name=
"UnselectAll" overloaded=
"no">
36736 <autodoc>UnselectAll()
</autodoc>
36738 <method name=
"SelectItem" overloaded=
"no">
36739 <autodoc>SelectItem(TreeItemId item, bool unselect_others=True, bool extended_select=False)
</autodoc>
36741 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36742 <param name=
"unselect_others" type=
"bool" default=
"True"/>
36743 <param name=
"extended_select" type=
"bool" default=
"False"/>
36746 <method name=
"EnsureVisible" overloaded=
"no">
36747 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
36749 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36752 <method name=
"ScrollTo" overloaded=
"no">
36753 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
36755 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36758 <method name=
"HitTest" overloaded=
"no">
36759 <autodoc>HitTest(Point point, int OUTPUT, int OUTPUT) -
> TreeItemId
</autodoc>
36761 <param name=
"point" type=
"r.q(const).wxPoint" default=
""/>
36762 <param name=
"OUTPUT" type=
"r.int" default=
""/>
36763 <param name=
"OUTPUT" type=
"r.int" default=
""/>
36766 <method name=
"GetBoundingRect" overloaded=
"no">
36767 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
36769 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36770 <param name=
"textOnly" type=
"bool" default=
"False"/>
36773 <method name=
"EditLabel" overloaded=
"no">
36774 <autodoc>EditLabel(TreeItemId item)
</autodoc>
36776 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36779 <method name=
"Edit" overloaded=
"no">
36780 <autodoc>Edit(TreeItemId item)
</autodoc>
36782 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36785 <method name=
"SortChildren" overloaded=
"no">
36786 <autodoc>SortChildren(TreeItemId item)
</autodoc>
36788 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36791 <method name=
"GetItemSelectedImage" overloaded=
"no">
36792 <autodoc>GetItemSelectedImage(TreeItemId item) -
> int
</autodoc>
36794 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36797 <method name=
"SetItemSelectedImage" overloaded=
"no">
36798 <autodoc>SetItemSelectedImage(TreeItemId item, int image)
</autodoc>
36800 <param name=
"item" type=
"r.q(const).wxTreeItemId" default=
""/>
36801 <param name=
"image" type=
"int" default=
""/>
36804 <method name=
"GetHeaderWindow" overloaded=
"no">
36805 <autodoc>GetHeaderWindow() -
> Window
</autodoc>
36807 <method name=
"GetMainWindow" overloaded=
"no">
36808 <autodoc>GetMainWindow() -
> Window
</autodoc>
36812 </wxPython-metadata>