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" type=
"String" overloaded=
"no">
21 <autodoc>GetClassName() -
> String
</autodoc>
22 <docstring>Returns the class name of the C++ object using wxRTTI.
</docstring>
24 <method name=
"Destroy" type=
"" 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 <constructor name=
"Size" overloaded=
"no">
41 <autodoc>__init__(int w=
0, int h=
0) -
> Size
</autodoc>
42 <docstring>Creates a size object.
</docstring>
44 <param name=
"w" type=
"int" default=
"0"/>
45 <param name=
"h" type=
"int" default=
"0"/>
48 <destructor name=
"~wxSize" overloaded=
"no">
49 <autodoc>__del__()
</autodoc>
51 <property name=
"width" type=
"int" readonly=
"no"/>
52 <property name=
"height" type=
"int" readonly=
"no"/>
53 <method name=
"__eq__" type=
"bool" overloaded=
"no">
54 <autodoc>__eq__(Size sz) -
> bool
</autodoc>
55 <docstring>Test for equality of wx.Size objects.
</docstring>
57 <param name=
"sz" type=
"Size" default=
""/>
60 <method name=
"__ne__" type=
"bool" overloaded=
"no">
61 <autodoc>__ne__(Size sz) -
> bool
</autodoc>
62 <docstring>Test for inequality.
</docstring>
64 <param name=
"sz" type=
"Size" default=
""/>
67 <method name=
"__add__" type=
"Size" overloaded=
"no">
68 <autodoc>__add__(Size sz) -
> Size
</autodoc>
69 <docstring>Add sz's proprties to this and return the result.
</docstring>
71 <param name=
"sz" type=
"Size" default=
""/>
74 <method name=
"__sub__" type=
"Size" overloaded=
"no">
75 <autodoc>__sub__(Size sz) -
> Size
</autodoc>
76 <docstring>Subtract sz's properties from this and return the result.
</docstring>
78 <param name=
"sz" type=
"Size" default=
""/>
81 <method name=
"IncTo" type=
"" overloaded=
"no">
82 <autodoc>IncTo(Size sz)
</autodoc>
83 <docstring>Increments this object so that both of its dimensions are not less
84 than the corresponding dimensions of the size.
</docstring>
86 <param name=
"sz" type=
"Size" default=
""/>
89 <method name=
"DecTo" type=
"" overloaded=
"no">
90 <autodoc>DecTo(Size sz)
</autodoc>
91 <docstring>Decrements this object so that both of its dimensions are not greater
92 than the corresponding dimensions of the size.
</docstring>
94 <param name=
"sz" type=
"Size" default=
""/>
97 <method name=
"Set" type=
"" overloaded=
"no">
98 <autodoc>Set(int w, int h)
</autodoc>
99 <docstring>Set both width and height.
</docstring>
101 <param name=
"w" type=
"int" default=
""/>
102 <param name=
"h" type=
"int" default=
""/>
105 <method name=
"SetWidth" type=
"" overloaded=
"no">
106 <autodoc>SetWidth(int w)
</autodoc>
108 <param name=
"w" type=
"int" default=
""/>
111 <method name=
"SetHeight" type=
"" overloaded=
"no">
112 <autodoc>SetHeight(int h)
</autodoc>
114 <param name=
"h" type=
"int" default=
""/>
117 <method name=
"GetWidth" type=
"int" overloaded=
"no">
118 <autodoc>GetWidth() -
> int
</autodoc>
120 <method name=
"GetHeight" type=
"int" overloaded=
"no">
121 <autodoc>GetHeight() -
> int
</autodoc>
123 <method name=
"Get" type=
"PyObject" overloaded=
"no">
124 <autodoc>Get() -
> (width,height)
</autodoc>
125 <docstring>Returns the width and height properties as a tuple.
</docstring>
129 #---------------------------------------------------------------------------
131 <class name=
"RealPoint" oldname=
"wxRealPoint" module=
"core">
132 <docstring>A data structure for representing a point or position with floating point x
133 and y properties. In wxPython most places that expect a wx.RealPoint can also
134 accept a (x,y) tuple.
</docstring>
135 <constructor name=
"RealPoint" overloaded=
"no">
136 <autodoc>__init__(double x=
0.0, double y=
0.0) -
> RealPoint
</autodoc>
137 <docstring>Create a wx.RealPoint object
</docstring>
139 <param name=
"x" type=
"double" default=
"0.0"/>
140 <param name=
"y" type=
"double" default=
"0.0"/>
143 <destructor name=
"~wxRealPoint" overloaded=
"no">
144 <autodoc>__del__()
</autodoc>
146 <property name=
"x" type=
"double" readonly=
"no"/>
147 <property name=
"y" type=
"double" readonly=
"no"/>
148 <method name=
"__eq__" type=
"bool" overloaded=
"no">
149 <autodoc>__eq__(RealPoint pt) -
> bool
</autodoc>
150 <docstring>Test for equality of wx.RealPoint objects.
</docstring>
152 <param name=
"pt" type=
"RealPoint" default=
""/>
155 <method name=
"__ne__" type=
"bool" overloaded=
"no">
156 <autodoc>__ne__(RealPoint pt) -
> bool
</autodoc>
157 <docstring>Test for inequality of wx.RealPoint objects.
</docstring>
159 <param name=
"pt" type=
"RealPoint" default=
""/>
162 <method name=
"__add__" type=
"RealPoint" overloaded=
"no">
163 <autodoc>__add__(RealPoint pt) -
> RealPoint
</autodoc>
164 <docstring>Add pt's proprties to this and return the result.
</docstring>
166 <param name=
"pt" type=
"RealPoint" default=
""/>
169 <method name=
"__sub__" type=
"RealPoint" overloaded=
"no">
170 <autodoc>__sub__(RealPoint pt) -
> RealPoint
</autodoc>
171 <docstring>Subtract pt's proprties from this and return the result
</docstring>
173 <param name=
"pt" type=
"RealPoint" default=
""/>
176 <method name=
"Set" type=
"" overloaded=
"no">
177 <autodoc>Set(double x, double y)
</autodoc>
178 <docstring>Set both the x and y properties
</docstring>
180 <param name=
"x" type=
"double" default=
""/>
181 <param name=
"y" type=
"double" default=
""/>
184 <method name=
"Get" type=
"PyObject" overloaded=
"no">
185 <autodoc>Get() -
> (x,y)
</autodoc>
186 <docstring>Return the x and y properties as a tuple.
</docstring>
190 #---------------------------------------------------------------------------
192 <class name=
"Point" oldname=
"wxPoint" module=
"core">
193 <docstring>A data structure for representing a point or position with integer x and y
194 properties. Most places in wxPython that expect a wx.Point can also accept a
195 (x,y) tuple.
</docstring>
196 <constructor name=
"Point" overloaded=
"no">
197 <autodoc>__init__(int x=
0, int y=
0) -
> Point
</autodoc>
198 <docstring>Create a wx.Point object
</docstring>
200 <param name=
"x" type=
"int" default=
"0"/>
201 <param name=
"y" type=
"int" default=
"0"/>
204 <destructor name=
"~wxPoint" overloaded=
"no">
205 <autodoc>__del__()
</autodoc>
207 <property name=
"x" type=
"int" readonly=
"no"/>
208 <property name=
"y" type=
"int" readonly=
"no"/>
209 <method name=
"__eq__" type=
"bool" overloaded=
"no">
210 <autodoc>__eq__(Point pt) -
> bool
</autodoc>
211 <docstring>Test for equality of wx.Point objects.
</docstring>
213 <param name=
"pt" type=
"Point" default=
""/>
216 <method name=
"__ne__" type=
"bool" overloaded=
"no">
217 <autodoc>__ne__(Point pt) -
> bool
</autodoc>
218 <docstring>Test for inequality of wx.Point objects.
</docstring>
220 <param name=
"pt" type=
"Point" default=
""/>
223 <method name=
"__add__" type=
"Point" overloaded=
"no">
224 <autodoc>__add__(Point pt) -
> Point
</autodoc>
225 <docstring>Add pt's proprties to this and return the result.
</docstring>
227 <param name=
"pt" type=
"Point" default=
""/>
230 <method name=
"__sub__" type=
"Point" overloaded=
"no">
231 <autodoc>__sub__(Point pt) -
> Point
</autodoc>
232 <docstring>Subtract pt's proprties from this and return the result
</docstring>
234 <param name=
"pt" type=
"Point" default=
""/>
237 <method name=
"__iadd__" type=
"Point" overloaded=
"no">
238 <autodoc>__iadd__(Point pt) -
> Point
</autodoc>
239 <docstring>Add pt to this object.
</docstring>
241 <param name=
"pt" type=
"Point" default=
""/>
244 <method name=
"__isub__" type=
"Point" overloaded=
"no">
245 <autodoc>__isub__(Point pt) -
> Point
</autodoc>
246 <docstring>Subtract pt from this object.
</docstring>
248 <param name=
"pt" type=
"Point" default=
""/>
251 <method name=
"Set" type=
"" overloaded=
"no">
252 <autodoc>Set(long x, long y)
</autodoc>
253 <docstring>Set both the x and y properties
</docstring>
255 <param name=
"x" type=
"long" default=
""/>
256 <param name=
"y" type=
"long" default=
""/>
259 <method name=
"Get" type=
"PyObject" overloaded=
"no">
260 <autodoc>Get() -
> (x,y)
</autodoc>
261 <docstring>Return the x and y properties as a tuple.
</docstring>
265 #---------------------------------------------------------------------------
267 <class name=
"Rect" oldname=
"wxRect" module=
"core">
268 <docstring>A class for representing and manipulating rectangles. It has x, y, width and
269 height properties. In wxPython most palces that expect a wx.Rect can also
270 accept a (x,y,width,height) tuple.
</docstring>
271 <constructor name=
"Rect" overloaded=
"no">
272 <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Rect
</autodoc>
273 <docstring>Create a new Rect object.
</docstring>
275 <param name=
"x" type=
"int" default=
"0"/>
276 <param name=
"y" type=
"int" default=
"0"/>
277 <param name=
"width" type=
"int" default=
"0"/>
278 <param name=
"height" type=
"int" default=
"0"/>
281 <constructor name=
"RectPP" overloaded=
"no">
282 <autodoc>RectPP(Point topLeft, Point bottomRight) -
> Rect
</autodoc>
283 <docstring>Create a new Rect object from Points representing two corners.
</docstring>
285 <param name=
"topLeft" type=
"Point" default=
""/>
286 <param name=
"bottomRight" type=
"Point" default=
""/>
289 <constructor name=
"RectPS" overloaded=
"no">
290 <autodoc>RectPS(Point pos, Size size) -
> Rect
</autodoc>
291 <docstring>Create a new Rect from a position and size.
</docstring>
293 <param name=
"pos" type=
"Point" default=
""/>
294 <param name=
"size" type=
"Size" default=
""/>
297 <destructor name=
"~wxRect" overloaded=
"no">
298 <autodoc>__del__()
</autodoc>
300 <method name=
"GetX" type=
"int" overloaded=
"no">
301 <autodoc>GetX() -
> int
</autodoc>
303 <method name=
"SetX" type=
"" overloaded=
"no">
304 <autodoc>SetX(int x)
</autodoc>
306 <param name=
"x" type=
"int" default=
""/>
309 <method name=
"GetY" type=
"int" overloaded=
"no">
310 <autodoc>GetY() -
> int
</autodoc>
312 <method name=
"SetY" type=
"" overloaded=
"no">
313 <autodoc>SetY(int y)
</autodoc>
315 <param name=
"y" type=
"int" default=
""/>
318 <method name=
"GetWidth" type=
"int" overloaded=
"no">
319 <autodoc>GetWidth() -
> int
</autodoc>
321 <method name=
"SetWidth" type=
"" overloaded=
"no">
322 <autodoc>SetWidth(int w)
</autodoc>
324 <param name=
"w" type=
"int" default=
""/>
327 <method name=
"GetHeight" type=
"int" overloaded=
"no">
328 <autodoc>GetHeight() -
> int
</autodoc>
330 <method name=
"SetHeight" type=
"" overloaded=
"no">
331 <autodoc>SetHeight(int h)
</autodoc>
333 <param name=
"h" type=
"int" default=
""/>
336 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
337 <autodoc>GetPosition() -
> Point
</autodoc>
339 <method name=
"SetPosition" type=
"" overloaded=
"no">
340 <autodoc>SetPosition(Point p)
</autodoc>
342 <param name=
"p" type=
"Point" default=
""/>
345 <method name=
"GetSize" type=
"Size" overloaded=
"no">
346 <autodoc>GetSize() -
> Size
</autodoc>
348 <method name=
"SetSize" type=
"" overloaded=
"no">
349 <autodoc>SetSize(Size s)
</autodoc>
351 <param name=
"s" type=
"Size" default=
""/>
354 <method name=
"GetTopLeft" type=
"Point" overloaded=
"no">
355 <autodoc>GetTopLeft() -
> Point
</autodoc>
357 <method name=
"SetTopLeft" type=
"" overloaded=
"no">
358 <autodoc>SetTopLeft(Point p)
</autodoc>
360 <param name=
"p" type=
"Point" default=
""/>
363 <method name=
"GetBottomRight" type=
"Point" overloaded=
"no">
364 <autodoc>GetBottomRight() -
> Point
</autodoc>
366 <method name=
"SetBottomRight" type=
"" overloaded=
"no">
367 <autodoc>SetBottomRight(Point p)
</autodoc>
369 <param name=
"p" type=
"Point" default=
""/>
372 <method name=
"GetLeft" type=
"int" overloaded=
"no">
373 <autodoc>GetLeft() -
> int
</autodoc>
375 <method name=
"GetTop" type=
"int" overloaded=
"no">
376 <autodoc>GetTop() -
> int
</autodoc>
378 <method name=
"GetBottom" type=
"int" overloaded=
"no">
379 <autodoc>GetBottom() -
> int
</autodoc>
381 <method name=
"GetRight" type=
"int" overloaded=
"no">
382 <autodoc>GetRight() -
> int
</autodoc>
384 <method name=
"SetLeft" type=
"" overloaded=
"no">
385 <autodoc>SetLeft(int left)
</autodoc>
387 <param name=
"left" type=
"int" default=
""/>
390 <method name=
"SetRight" type=
"" overloaded=
"no">
391 <autodoc>SetRight(int right)
</autodoc>
393 <param name=
"right" type=
"int" default=
""/>
396 <method name=
"SetTop" type=
"" overloaded=
"no">
397 <autodoc>SetTop(int top)
</autodoc>
399 <param name=
"top" type=
"int" default=
""/>
402 <method name=
"SetBottom" type=
"" overloaded=
"no">
403 <autodoc>SetBottom(int bottom)
</autodoc>
405 <param name=
"bottom" type=
"int" default=
""/>
408 <method name=
"Inflate" type=
"Rect" overloaded=
"no">
409 <autodoc>Inflate(int dx, int dy) -
> Rect
</autodoc>
410 <docstring>Increase the rectangle size by dx in x direction and dy in y direction. Both
411 (or one of) parameters may be negative to decrease the rectangle size.
</docstring>
413 <param name=
"dx" type=
"int" default=
""/>
414 <param name=
"dy" type=
"int" default=
""/>
417 <method name=
"Deflate" type=
"Rect" overloaded=
"no">
418 <autodoc>Deflate(int dx, int dy) -
> Rect
</autodoc>
419 <docstring>Decrease the rectangle size by dx in x direction and dy in y direction. Both
420 (or one of) parameters may be negative to increase the rectngle size. This
421 method is the opposite of Inflate.
</docstring>
423 <param name=
"dx" type=
"int" default=
""/>
424 <param name=
"dy" type=
"int" default=
""/>
427 <method name=
"OffsetXY" type=
"" overloaded=
"no">
428 <autodoc>OffsetXY(int dx, int dy)
</autodoc>
429 <docstring>Moves the rectangle by the specified offset. If dx is positive, the rectangle
430 is moved to the right, if dy is positive, it is moved to the bottom, otherwise
431 it is moved to the left or top respectively.
</docstring>
433 <param name=
"dx" type=
"int" default=
""/>
434 <param name=
"dy" type=
"int" default=
""/>
437 <method name=
"Offset" type=
"" overloaded=
"no">
438 <autodoc>Offset(Point pt)
</autodoc>
439 <docstring>Same as OffsetXY but uses dx,dy from Point
</docstring>
441 <param name=
"pt" type=
"Point" default=
""/>
444 <method name=
"Intersect" type=
"Rect" overloaded=
"no">
445 <autodoc>Intersect(Rect rect) -
> Rect
</autodoc>
446 <docstring>Return the intersectsion of this rectangle and rect.
</docstring>
448 <param name=
"rect" type=
"Rect" default=
""/>
451 <method name=
"__add__" type=
"Rect" overloaded=
"no">
452 <autodoc>__add__(Rect rect) -
> Rect
</autodoc>
453 <docstring>Add the properties of rect to this rectangle and return the result.
</docstring>
455 <param name=
"rect" type=
"Rect" default=
""/>
458 <method name=
"__iadd__" type=
"Rect" overloaded=
"no">
459 <autodoc>__iadd__(Rect rect) -
> Rect
</autodoc>
460 <docstring>Add the properties of rect to this rectangle, updating this rectangle.
</docstring>
462 <param name=
"rect" type=
"Rect" default=
""/>
465 <method name=
"__eq__" type=
"bool" overloaded=
"no">
466 <autodoc>__eq__(Rect rect) -
> bool
</autodoc>
467 <docstring>Test for equality.
</docstring>
469 <param name=
"rect" type=
"Rect" default=
""/>
472 <method name=
"__ne__" type=
"bool" overloaded=
"no">
473 <autodoc>__ne__(Rect rect) -
> bool
</autodoc>
474 <docstring>Test for inequality.
</docstring>
476 <param name=
"rect" type=
"Rect" default=
""/>
479 <method name=
"InsideXY" type=
"bool" overloaded=
"no">
480 <autodoc>InsideXY(int x, int y) -
> bool
</autodoc>
481 <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring>
483 <param name=
"x" type=
"int" default=
""/>
484 <param name=
"y" type=
"int" default=
""/>
487 <method name=
"Inside" type=
"bool" overloaded=
"no">
488 <autodoc>Inside(Point pt) -
> bool
</autodoc>
489 <docstring>Return True if the point is (not strcitly) inside the rect.
</docstring>
491 <param name=
"pt" type=
"Point" default=
""/>
494 <method name=
"Intersects" type=
"bool" overloaded=
"no">
495 <autodoc>Intersects(Rect rect) -
> bool
</autodoc>
496 <docstring>Returns True if the rectangles have a non empty intersection.
</docstring>
498 <param name=
"rect" type=
"Rect" default=
""/>
501 <property name=
"x" type=
"int" readonly=
"no"/>
502 <property name=
"y" type=
"int" readonly=
"no"/>
503 <property name=
"width" type=
"int" readonly=
"no"/>
504 <property name=
"height" type=
"int" readonly=
"no"/>
505 <method name=
"Set" type=
"" overloaded=
"no">
506 <autodoc>Set(int x=
0, int y=
0, int width=
0, int height=
0)
</autodoc>
507 <docstring>Set all rectangle properties.
</docstring>
509 <param name=
"x" type=
"int" default=
"0"/>
510 <param name=
"y" type=
"int" default=
"0"/>
511 <param name=
"width" type=
"int" default=
"0"/>
512 <param name=
"height" type=
"int" default=
"0"/>
515 <method name=
"Get" type=
"PyObject" overloaded=
"no">
516 <autodoc>Get() -
> (x,y,width,height)
</autodoc>
517 <docstring>Return the rectangle properties as a tuple.
</docstring>
520 <method name=
"IntersectRect" oldname=
"wxIntersectRect" type=
"PyObject" overloaded=
"no">
521 <autodoc>IntersectRect(Rect r1, Rect r2) -
> Rect
</autodoc>
522 <docstring>Calculate and return the intersection of r1 and r2.
</docstring>
524 <param name=
"r1" type=
"Rect" default=
""/>
525 <param name=
"r2" type=
"Rect" default=
""/>
529 #---------------------------------------------------------------------------
531 <class name=
"Point2D" oldname=
"wxPoint2D" module=
"core">
532 <docstring>wx.Point2Ds represent a point or a vector in a
2d coordinate system with floating point values.
</docstring>
533 <constructor name=
"Point2D" overloaded=
"no">
534 <autodoc>__init__(double x=
0.0, double y=
0.0) -
> Point2D
</autodoc>
535 <docstring>Create a w.Point2D object.
</docstring>
537 <param name=
"x" type=
"double" default=
"0.0"/>
538 <param name=
"y" type=
"double" default=
"0.0"/>
541 <constructor name=
"Point2DCopy" overloaded=
"no">
542 <autodoc>Point2DCopy(Point2D pt) -
> Point2D
</autodoc>
543 <docstring>Create a w.Point2D object.
</docstring>
545 <param name=
"pt" type=
"Point2D" default=
""/>
548 <constructor name=
"Point2DFromPoint" overloaded=
"no">
549 <autodoc>Point2DFromPoint(Point pt) -
> Point2D
</autodoc>
550 <docstring>Create a w.Point2D object.
</docstring>
552 <param name=
"pt" type=
"Point" default=
""/>
555 <method name=
"GetFloor" type=
"" overloaded=
"no">
556 <autodoc>GetFloor() -
> (x,y)
</autodoc>
557 <docstring>Convert to integer
</docstring>
559 <param name=
"OUTPUT" type=
"int" default=
""/>
560 <param name=
"OUTPUT" type=
"int" default=
""/>
563 <method name=
"GetRounded" type=
"" overloaded=
"no">
564 <autodoc>GetRounded() -
> (x,y)
</autodoc>
565 <docstring>Convert to integer
</docstring>
567 <param name=
"OUTPUT" type=
"int" default=
""/>
568 <param name=
"OUTPUT" type=
"int" default=
""/>
571 <method name=
"GetVectorLength" type=
"double" overloaded=
"no">
572 <autodoc>GetVectorLength() -
> double
</autodoc>
574 <method name=
"GetVectorAngle" type=
"double" overloaded=
"no">
575 <autodoc>GetVectorAngle() -
> double
</autodoc>
577 <method name=
"SetVectorLength" type=
"" overloaded=
"no">
578 <autodoc>SetVectorLength(double length)
</autodoc>
580 <param name=
"length" type=
"double" default=
""/>
583 <method name=
"SetVectorAngle" type=
"" overloaded=
"no">
584 <autodoc>SetVectorAngle(double degrees)
</autodoc>
586 <param name=
"degrees" type=
"double" default=
""/>
589 <method name=
"GetDistance" type=
"double" overloaded=
"no">
590 <autodoc>GetDistance(Point2D pt) -
> double
</autodoc>
592 <param name=
"pt" type=
"Point2D" default=
""/>
595 <method name=
"GetDistanceSquare" type=
"double" overloaded=
"no">
596 <autodoc>GetDistanceSquare(Point2D pt) -
> double
</autodoc>
598 <param name=
"pt" type=
"Point2D" default=
""/>
601 <method name=
"GetDotProduct" type=
"double" overloaded=
"no">
602 <autodoc>GetDotProduct(Point2D vec) -
> double
</autodoc>
604 <param name=
"vec" type=
"Point2D" default=
""/>
607 <method name=
"GetCrossProduct" type=
"double" overloaded=
"no">
608 <autodoc>GetCrossProduct(Point2D vec) -
> double
</autodoc>
610 <param name=
"vec" type=
"Point2D" default=
""/>
613 <method name=
"__neg__" type=
"Point2D" overloaded=
"no">
614 <autodoc>__neg__() -
> Point2D
</autodoc>
615 <docstring>the reflection of this point
</docstring>
617 <method name=
"__iadd__" type=
"Point2D" overloaded=
"no">
618 <autodoc>__iadd__(Point2D pt) -
> Point2D
</autodoc>
620 <param name=
"pt" type=
"Point2D" default=
""/>
623 <method name=
"__isub__" type=
"Point2D" overloaded=
"no">
624 <autodoc>__isub__(Point2D pt) -
> Point2D
</autodoc>
626 <param name=
"pt" type=
"Point2D" default=
""/>
629 <method name=
"__imul__" type=
"Point2D" overloaded=
"no">
630 <autodoc>__imul__(Point2D pt) -
> Point2D
</autodoc>
632 <param name=
"pt" type=
"Point2D" default=
""/>
635 <method name=
"__idiv__" type=
"Point2D" overloaded=
"no">
636 <autodoc>__idiv__(Point2D pt) -
> Point2D
</autodoc>
638 <param name=
"pt" type=
"Point2D" default=
""/>
641 <method name=
"__eq__" type=
"bool" overloaded=
"no">
642 <autodoc>__eq__(Point2D pt) -
> bool
</autodoc>
643 <docstring>Test for equality
</docstring>
645 <param name=
"pt" type=
"Point2D" default=
""/>
648 <method name=
"__ne__" type=
"bool" overloaded=
"no">
649 <autodoc>__ne__(Point2D pt) -
> bool
</autodoc>
650 <docstring>Test for inequality
</docstring>
652 <param name=
"pt" type=
"Point2D" default=
""/>
655 <property name=
"x" type=
"double" readonly=
"no"/>
656 <property name=
"y" type=
"double" readonly=
"no"/>
657 <method name=
"Set" type=
"" overloaded=
"no">
658 <autodoc>Set(double x=
0, double y=
0)
</autodoc>
660 <param name=
"x" type=
"double" default=
"0"/>
661 <param name=
"y" type=
"double" default=
"0"/>
664 <method name=
"Get" type=
"PyObject" overloaded=
"no">
665 <autodoc>Get() -
> (x,y)
</autodoc>
666 <docstring>Return x and y properties as a tuple.
</docstring>
670 #---------------------------------------------------------------------------
672 <class name=
"InputStream" oldname=
"wxPyInputStream" module=
"core">
673 <constructor name=
"wxPyInputStream" overloaded=
"no">
674 <autodoc>__init__(PyObject p) -
> InputStream
</autodoc>
676 <param name=
"p" type=
"PyObject" default=
""/>
679 <method name=
"close" type=
"" overloaded=
"no">
680 <autodoc>close()
</autodoc>
682 <method name=
"flush" type=
"" overloaded=
"no">
683 <autodoc>flush()
</autodoc>
685 <method name=
"eof" type=
"bool" overloaded=
"no">
686 <autodoc>eof() -
> bool
</autodoc>
688 <method name=
"read" type=
"PyObject" overloaded=
"no">
689 <autodoc>read(int size=-
1) -
> PyObject
</autodoc>
691 <param name=
"size" type=
"int" default=
"-1"/>
694 <method name=
"readline" type=
"PyObject" overloaded=
"no">
695 <autodoc>readline(int size=-
1) -
> PyObject
</autodoc>
697 <param name=
"size" type=
"int" default=
"-1"/>
700 <method name=
"readlines" type=
"PyObject" overloaded=
"no">
701 <autodoc>readlines(int sizehint=-
1) -
> PyObject
</autodoc>
703 <param name=
"sizehint" type=
"int" default=
"-1"/>
706 <method name=
"seek" type=
"" overloaded=
"no">
707 <autodoc>seek(int offset, int whence=
0)
</autodoc>
709 <param name=
"offset" type=
"int" default=
""/>
710 <param name=
"whence" type=
"int" default=
"0"/>
713 <method name=
"tell" type=
"int" overloaded=
"no">
714 <autodoc>tell() -
> int
</autodoc>
716 <method name=
"Peek" type=
"char" overloaded=
"no">
717 <autodoc>Peek() -
> char
</autodoc>
719 <method name=
"GetC" type=
"char" overloaded=
"no">
720 <autodoc>GetC() -
> char
</autodoc>
722 <method name=
"LastRead" type=
"size_t" overloaded=
"no">
723 <autodoc>LastRead() -
> size_t
</autodoc>
725 <method name=
"CanRead" type=
"bool" overloaded=
"no">
726 <autodoc>CanRead() -
> bool
</autodoc>
728 <method name=
"Eof" type=
"bool" overloaded=
"no">
729 <autodoc>Eof() -
> bool
</autodoc>
731 <method name=
"Ungetch" type=
"bool" overloaded=
"no">
732 <autodoc>Ungetch(char c) -
> bool
</autodoc>
734 <param name=
"c" type=
"char" default=
""/>
737 <method name=
"SeekI" type=
"long" overloaded=
"no">
738 <autodoc>SeekI(long pos, int mode=FromStart) -
> long
</autodoc>
740 <param name=
"pos" type=
"long" default=
""/>
741 <param name=
"mode" type=
"wxSeekMode" default=
"wxFromStart"/>
744 <method name=
"TellI" type=
"long" overloaded=
"no">
745 <autodoc>TellI() -
> long
</autodoc>
748 <class name=
"OutputStream" oldname=
"wxOutputStream" module=
"core">
749 <method name=
"write" type=
"" overloaded=
"no">
750 <autodoc>write(PyObject obj)
</autodoc>
752 <param name=
"obj" type=
"PyObject" default=
""/>
757 #---------------------------------------------------------------------------
759 <class name=
"FSFile" oldname=
"wxFSFile" module=
"core">
760 <baseclass name=
"Object"/>
761 <constructor name=
"FSFile" overloaded=
"no">
762 <autodoc>__init__(InputStream stream, String loc, String mimetype, String anchor,
763 DateTime modif) -
> FSFile
</autodoc>
765 <param name=
"stream" type=
"wxInputStream" default=
""/>
766 <param name=
"loc" type=
"String" default=
""/>
767 <param name=
"mimetype" type=
"String" default=
""/>
768 <param name=
"anchor" type=
"String" default=
""/>
769 <param name=
"modif" type=
"wxDateTime" default=
""/>
772 <destructor name=
"~wxFSFile" overloaded=
"no">
773 <autodoc>__del__()
</autodoc>
775 <method name=
"GetStream" type=
"wxInputStream" overloaded=
"no">
776 <autodoc>GetStream() -
> InputStream
</autodoc>
778 <method name=
"GetMimeType" type=
"String" overloaded=
"no">
779 <autodoc>GetMimeType() -
> String
</autodoc>
781 <method name=
"GetLocation" type=
"String" overloaded=
"no">
782 <autodoc>GetLocation() -
> String
</autodoc>
784 <method name=
"GetAnchor" type=
"String" overloaded=
"no">
785 <autodoc>GetAnchor() -
> String
</autodoc>
787 <method name=
"GetModificationTime" type=
"wxDateTime" overloaded=
"no">
788 <autodoc>GetModificationTime() -
> DateTime
</autodoc>
791 <class name=
"CPPFileSystemHandler" oldname=
"wxFileSystemHandler" module=
"core"/>
792 <class name=
"FileSystemHandler" oldname=
"wxPyFileSystemHandler" module=
"core">
793 <baseclass name=
"CPPFileSystemHandler"/>
794 <constructor name=
"wxPyFileSystemHandler" overloaded=
"no">
795 <autodoc>__init__() -
> FileSystemHandler
</autodoc>
797 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
798 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
800 <param name=
"self" type=
"PyObject" default=
""/>
801 <param name=
"_class" type=
"PyObject" default=
""/>
804 <method name=
"CanOpen" type=
"bool" overloaded=
"no">
805 <autodoc>CanOpen(String location) -
> bool
</autodoc>
807 <param name=
"location" type=
"String" default=
""/>
810 <method name=
"OpenFile" type=
"FSFile" overloaded=
"no">
811 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
813 <param name=
"fs" type=
"wxFileSystem" default=
""/>
814 <param name=
"location" type=
"String" default=
""/>
817 <method name=
"FindFirst" type=
"String" overloaded=
"no">
818 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
820 <param name=
"spec" type=
"String" default=
""/>
821 <param name=
"flags" type=
"int" default=
"0"/>
824 <method name=
"FindNext" type=
"String" overloaded=
"no">
825 <autodoc>FindNext() -
> String
</autodoc>
827 <method name=
"GetProtocol" type=
"String" overloaded=
"no">
828 <autodoc>GetProtocol(String location) -
> String
</autodoc>
830 <param name=
"location" type=
"String" default=
""/>
833 <method name=
"GetLeftLocation" type=
"String" overloaded=
"no">
834 <autodoc>GetLeftLocation(String location) -
> String
</autodoc>
836 <param name=
"location" type=
"String" default=
""/>
839 <method name=
"GetAnchor" type=
"String" overloaded=
"no">
840 <autodoc>GetAnchor(String location) -
> String
</autodoc>
842 <param name=
"location" type=
"String" default=
""/>
845 <method name=
"GetRightLocation" type=
"String" overloaded=
"no">
846 <autodoc>GetRightLocation(String location) -
> String
</autodoc>
848 <param name=
"location" type=
"String" default=
""/>
851 <method name=
"GetMimeTypeFromExt" type=
"String" overloaded=
"no">
852 <autodoc>GetMimeTypeFromExt(String location) -
> String
</autodoc>
854 <param name=
"location" type=
"String" default=
""/>
858 <class name=
"FileSystem" oldname=
"wxFileSystem" module=
"core">
859 <baseclass name=
"Object"/>
860 <constructor name=
"FileSystem" overloaded=
"no">
861 <autodoc>__init__() -
> FileSystem
</autodoc>
863 <destructor name=
"~wxFileSystem" overloaded=
"no">
864 <autodoc>__del__()
</autodoc>
866 <method name=
"ChangePathTo" type=
"" overloaded=
"no">
867 <autodoc>ChangePathTo(String location, bool is_dir=False)
</autodoc>
869 <param name=
"location" type=
"String" default=
""/>
870 <param name=
"is_dir" type=
"bool" default=
"False"/>
873 <method name=
"GetPath" type=
"String" overloaded=
"no">
874 <autodoc>GetPath() -
> String
</autodoc>
876 <method name=
"OpenFile" type=
"FSFile" overloaded=
"no">
877 <autodoc>OpenFile(String location) -
> FSFile
</autodoc>
879 <param name=
"location" type=
"String" default=
""/>
882 <method name=
"FindFirst" type=
"String" overloaded=
"no">
883 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
885 <param name=
"spec" type=
"String" default=
""/>
886 <param name=
"flags" type=
"int" default=
"0"/>
889 <method name=
"FindNext" type=
"String" overloaded=
"no">
890 <autodoc>FindNext() -
> String
</autodoc>
892 <staticmethod name=
"AddHandler" type=
"" overloaded=
"no">
893 <autodoc>AddHandler(CPPFileSystemHandler handler)
</autodoc>
895 <param name=
"handler" type=
"CPPFileSystemHandler" default=
""/>
898 <staticmethod name=
"CleanUpHandlers" type=
"" overloaded=
"no">
899 <autodoc>CleanUpHandlers()
</autodoc>
901 <staticmethod name=
"FileNameToURL" type=
"String" overloaded=
"no">
902 <autodoc>FileNameToURL(String filename) -
> String
</autodoc>
904 <param name=
"filename" type=
"String" default=
""/>
908 <method name=
"FileSystem_URLToFileName" oldname=
"wxFileSystem_URLToFileName" type=
"String" overloaded=
"no">
909 <autodoc>FileSystem_URLToFileName(String url) -
> String
</autodoc>
911 <param name=
"url" type=
"String" default=
""/>
914 <class name=
"InternetFSHandler" oldname=
"wxInternetFSHandler" module=
"core">
915 <baseclass name=
"CPPFileSystemHandler"/>
916 <constructor name=
"InternetFSHandler" overloaded=
"no">
917 <autodoc>__init__() -
> InternetFSHandler
</autodoc>
919 <method name=
"CanOpen" type=
"bool" overloaded=
"no">
920 <autodoc>CanOpen(String location) -
> bool
</autodoc>
922 <param name=
"location" type=
"String" default=
""/>
925 <method name=
"OpenFile" type=
"FSFile" overloaded=
"no">
926 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
928 <param name=
"fs" type=
"FileSystem" default=
""/>
929 <param name=
"location" type=
"String" default=
""/>
933 <class name=
"ZipFSHandler" oldname=
"wxZipFSHandler" module=
"core">
934 <baseclass name=
"CPPFileSystemHandler"/>
935 <constructor name=
"ZipFSHandler" overloaded=
"no">
936 <autodoc>__init__() -
> ZipFSHandler
</autodoc>
938 <method name=
"CanOpen" type=
"bool" overloaded=
"no">
939 <autodoc>CanOpen(String location) -
> bool
</autodoc>
941 <param name=
"location" type=
"String" default=
""/>
944 <method name=
"OpenFile" type=
"FSFile" overloaded=
"no">
945 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
947 <param name=
"fs" type=
"FileSystem" default=
""/>
948 <param name=
"location" type=
"String" default=
""/>
951 <method name=
"FindFirst" type=
"String" overloaded=
"no">
952 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
954 <param name=
"spec" type=
"String" default=
""/>
955 <param name=
"flags" type=
"int" default=
"0"/>
958 <method name=
"FindNext" type=
"String" overloaded=
"no">
959 <autodoc>FindNext() -
> String
</autodoc>
962 <method name=
"__wxMemoryFSHandler_AddFile_wxImage" oldname=
"__wxMemoryFSHandler_AddFile_wxImage" type=
"" overloaded=
"no">
963 <autodoc>__wxMemoryFSHandler_AddFile_wxImage(String filename, Image image, long type)
</autodoc>
965 <param name=
"filename" type=
"String" default=
""/>
966 <param name=
"image" type=
"wxImage" default=
""/>
967 <param name=
"type" type=
"long" default=
""/>
970 <method name=
"__wxMemoryFSHandler_AddFile_wxBitmap" oldname=
"__wxMemoryFSHandler_AddFile_wxBitmap" type=
"" overloaded=
"no">
971 <autodoc>__wxMemoryFSHandler_AddFile_wxBitmap(String filename, Bitmap bitmap, long type)
</autodoc>
973 <param name=
"filename" type=
"String" default=
""/>
974 <param name=
"bitmap" type=
"wxBitmap" default=
""/>
975 <param name=
"type" type=
"long" default=
""/>
978 <method name=
"__wxMemoryFSHandler_AddFile_Data" oldname=
"__wxMemoryFSHandler_AddFile_Data" type=
"" overloaded=
"no">
979 <autodoc>__wxMemoryFSHandler_AddFile_Data(String filename, PyObject data)
</autodoc>
981 <param name=
"filename" type=
"String" default=
""/>
982 <param name=
"data" type=
"PyObject" default=
""/>
986 def MemoryFSHandler_AddFile(filename, a, b=''):
987 if isinstance(a, wx.Image):
988 __wxMemoryFSHandler_AddFile_wxImage(filename, a, b)
989 elif isinstance(a, wx.Bitmap):
990 __wxMemoryFSHandler_AddFile_wxBitmap(filename, a, b)
992 __wxMemoryFSHandler_AddFile_Data(filename, a)
993 else: raise TypeError, 'wx.Image, wx.Bitmap or string expected'
995 <class name=
"MemoryFSHandler" oldname=
"wxMemoryFSHandler" module=
"core">
996 <baseclass name=
"CPPFileSystemHandler"/>
997 <constructor name=
"MemoryFSHandler" overloaded=
"no">
998 <autodoc>__init__() -
> MemoryFSHandler
</autodoc>
1000 <staticmethod name=
"RemoveFile" type=
"" overloaded=
"no">
1001 <autodoc>RemoveFile(String filename)
</autodoc>
1003 <param name=
"filename" type=
"String" default=
""/>
1006 <method name=
"CanOpen" type=
"bool" overloaded=
"no">
1007 <autodoc>CanOpen(String location) -
> bool
</autodoc>
1009 <param name=
"location" type=
"String" default=
""/>
1012 <method name=
"OpenFile" type=
"FSFile" overloaded=
"no">
1013 <autodoc>OpenFile(FileSystem fs, String location) -
> FSFile
</autodoc>
1015 <param name=
"fs" type=
"FileSystem" default=
""/>
1016 <param name=
"location" type=
"String" default=
""/>
1019 <method name=
"FindFirst" type=
"String" overloaded=
"no">
1020 <autodoc>FindFirst(String spec, int flags=
0) -
> String
</autodoc>
1022 <param name=
"spec" type=
"String" default=
""/>
1023 <param name=
"flags" type=
"int" default=
"0"/>
1026 <method name=
"FindNext" type=
"String" overloaded=
"no">
1027 <autodoc>FindNext() -
> String
</autodoc>
1031 #---------------------------------------------------------------------------
1033 <class name=
"ImageHandler" oldname=
"wxImageHandler" module=
"core">
1034 <baseclass name=
"Object"/>
1035 <method name=
"GetName" type=
"String" overloaded=
"no">
1036 <autodoc>GetName() -
> String
</autodoc>
1038 <method name=
"GetExtension" type=
"String" overloaded=
"no">
1039 <autodoc>GetExtension() -
> String
</autodoc>
1041 <method name=
"GetType" type=
"long" overloaded=
"no">
1042 <autodoc>GetType() -
> long
</autodoc>
1044 <method name=
"GetMimeType" type=
"String" overloaded=
"no">
1045 <autodoc>GetMimeType() -
> String
</autodoc>
1047 <method name=
"CanRead" type=
"bool" overloaded=
"no">
1048 <autodoc>CanRead(String name) -
> bool
</autodoc>
1050 <param name=
"name" type=
"String" default=
""/>
1053 <method name=
"SetName" type=
"" overloaded=
"no">
1054 <autodoc>SetName(String name)
</autodoc>
1056 <param name=
"name" type=
"String" default=
""/>
1059 <method name=
"SetExtension" type=
"" overloaded=
"no">
1060 <autodoc>SetExtension(String extension)
</autodoc>
1062 <param name=
"extension" type=
"String" default=
""/>
1065 <method name=
"SetType" type=
"" overloaded=
"no">
1066 <autodoc>SetType(long type)
</autodoc>
1068 <param name=
"type" type=
"long" default=
""/>
1071 <method name=
"SetMimeType" type=
"" overloaded=
"no">
1072 <autodoc>SetMimeType(String mimetype)
</autodoc>
1074 <param name=
"mimetype" type=
"String" default=
""/>
1078 <class name=
"ImageHistogram" oldname=
"wxImageHistogram" module=
"core">
1079 <constructor name=
"ImageHistogram" overloaded=
"no">
1080 <autodoc>__init__() -
> ImageHistogram
</autodoc>
1082 <staticmethod name=
"MakeKey" type=
"unsigned long" overloaded=
"no">
1083 <autodoc>MakeKey(unsigned char r, unsigned char g, unsigned char b) -
> unsigned long
</autodoc>
1084 <docstring>Get the key in the histogram for the given RGB values
</docstring>
1086 <param name=
"r" type=
"unsigned char" default=
""/>
1087 <param name=
"g" type=
"unsigned char" default=
""/>
1088 <param name=
"b" type=
"unsigned char" default=
""/>
1091 <method name=
"FindFirstUnusedColour" type=
"bool" overloaded=
"no">
1092 <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc>
1093 <docstring>Find first colour that is not used in the image and has higher RGB values than
1094 startR, startG, startB. Returns a tuple consisting of a success flag and rgb
1097 <param name=
"OUTPUT" type=
"unsigned char" default=
""/>
1098 <param name=
"OUTPUT" type=
"unsigned char" default=
""/>
1099 <param name=
"OUTPUT" type=
"unsigned char" default=
""/>
1100 <param name=
"startR" type=
"unsigned char" default=
"1"/>
1101 <param name=
"startG" type=
"unsigned char" default=
"0"/>
1102 <param name=
"startB" type=
"unsigned char" default=
"0"/>
1106 <class name=
"Image" oldname=
"wxImage" module=
"core">
1107 <baseclass name=
"Object"/>
1108 <constructor name=
"Image" overloaded=
"no">
1109 <autodoc>__init__(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc>
1111 <param name=
"name" type=
"String" default=
""/>
1112 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1113 <param name=
"index" type=
"int" default=
"-1"/>
1116 <constructor name=
"ImageFromMime" overloaded=
"no">
1117 <autodoc>ImageFromMime(String name, String mimetype, int index=-
1) -
> Image
</autodoc>
1119 <param name=
"name" type=
"String" default=
""/>
1120 <param name=
"mimetype" type=
"String" default=
""/>
1121 <param name=
"index" type=
"int" default=
"-1"/>
1124 <constructor name=
"ImageFromStream" overloaded=
"no">
1125 <autodoc>ImageFromStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> Image
</autodoc>
1127 <param name=
"stream" type=
"wxInputStream" default=
""/>
1128 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1129 <param name=
"index" type=
"int" default=
"-1"/>
1132 <constructor name=
"ImageFromStreamMime" overloaded=
"no">
1133 <autodoc>ImageFromStreamMime(InputStream stream, String mimetype, int index=-
1) -
> Image
</autodoc>
1135 <param name=
"stream" type=
"wxInputStream" default=
""/>
1136 <param name=
"mimetype" type=
"String" default=
""/>
1137 <param name=
"index" type=
"int" default=
"-1"/>
1140 <constructor name=
"EmptyImage" overloaded=
"no">
1141 <autodoc>EmptyImage(int width=
0, int height=
0, bool clear=True) -
> Image
</autodoc>
1143 <param name=
"width" type=
"int" default=
"0"/>
1144 <param name=
"height" type=
"int" default=
"0"/>
1145 <param name=
"clear" type=
"bool" default=
"True"/>
1148 <constructor name=
"ImageFromBitmap" overloaded=
"no">
1149 <autodoc>ImageFromBitmap(Bitmap bitmap) -
> Image
</autodoc>
1151 <param name=
"bitmap" type=
"wxBitmap" default=
""/>
1154 <constructor name=
"ImageFromData" overloaded=
"no">
1155 <autodoc>ImageFromData(int width, int height, unsigned char data) -
> Image
</autodoc>
1157 <param name=
"width" type=
"int" default=
""/>
1158 <param name=
"height" type=
"int" default=
""/>
1159 <param name=
"data" type=
"unsigned char" default=
""/>
1162 <destructor name=
"~wxImage" overloaded=
"no">
1163 <autodoc>__del__()
</autodoc>
1165 <method name=
"Create" type=
"" overloaded=
"no">
1166 <autodoc>Create(int width, int height)
</autodoc>
1168 <param name=
"width" type=
"int" default=
""/>
1169 <param name=
"height" type=
"int" default=
""/>
1172 <method name=
"Destroy" type=
"" overloaded=
"no">
1173 <autodoc>Destroy()
</autodoc>
1174 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
1176 <method name=
"Scale" type=
"Image" overloaded=
"no">
1177 <autodoc>Scale(int width, int height) -
> Image
</autodoc>
1179 <param name=
"width" type=
"int" default=
""/>
1180 <param name=
"height" type=
"int" default=
""/>
1183 <method name=
"ShrinkBy" type=
"Image" overloaded=
"no">
1184 <autodoc>ShrinkBy(int xFactor, int yFactor) -
> Image
</autodoc>
1186 <param name=
"xFactor" type=
"int" default=
""/>
1187 <param name=
"yFactor" type=
"int" default=
""/>
1190 <method name=
"Rescale" type=
"Image" overloaded=
"no">
1191 <autodoc>Rescale(int width, int height) -
> Image
</autodoc>
1193 <param name=
"width" type=
"int" default=
""/>
1194 <param name=
"height" type=
"int" default=
""/>
1197 <method name=
"SetRGB" type=
"" overloaded=
"no">
1198 <autodoc>SetRGB(int x, int y, unsigned char r, unsigned char g, unsigned char b)
</autodoc>
1200 <param name=
"x" type=
"int" default=
""/>
1201 <param name=
"y" type=
"int" default=
""/>
1202 <param name=
"r" type=
"unsigned char" default=
""/>
1203 <param name=
"g" type=
"unsigned char" default=
""/>
1204 <param name=
"b" type=
"unsigned char" default=
""/>
1207 <method name=
"GetRed" type=
"unsigned char" overloaded=
"no">
1208 <autodoc>GetRed(int x, int y) -
> unsigned char
</autodoc>
1210 <param name=
"x" type=
"int" default=
""/>
1211 <param name=
"y" type=
"int" default=
""/>
1214 <method name=
"GetGreen" type=
"unsigned char" overloaded=
"no">
1215 <autodoc>GetGreen(int x, int y) -
> unsigned char
</autodoc>
1217 <param name=
"x" type=
"int" default=
""/>
1218 <param name=
"y" type=
"int" default=
""/>
1221 <method name=
"GetBlue" type=
"unsigned char" overloaded=
"no">
1222 <autodoc>GetBlue(int x, int y) -
> unsigned char
</autodoc>
1224 <param name=
"x" type=
"int" default=
""/>
1225 <param name=
"y" type=
"int" default=
""/>
1228 <method name=
"SetAlpha" type=
"" overloaded=
"no">
1229 <autodoc>SetAlpha(int x, int y, unsigned char alpha)
</autodoc>
1231 <param name=
"x" type=
"int" default=
""/>
1232 <param name=
"y" type=
"int" default=
""/>
1233 <param name=
"alpha" type=
"unsigned char" default=
""/>
1236 <method name=
"GetAlpha" type=
"unsigned char" overloaded=
"no">
1237 <autodoc>GetAlpha(int x, int y) -
> unsigned char
</autodoc>
1239 <param name=
"x" type=
"int" default=
""/>
1240 <param name=
"y" type=
"int" default=
""/>
1243 <method name=
"HasAlpha" type=
"bool" overloaded=
"no">
1244 <autodoc>HasAlpha() -
> bool
</autodoc>
1246 <method name=
"FindFirstUnusedColour" type=
"bool" overloaded=
"no">
1247 <autodoc>FindFirstUnusedColour(int startR=
1, int startG=
0, int startB=
0) -
> (success, r, g, b)
</autodoc>
1248 <docstring>Find first colour that is not used in the image and has higher RGB values than
1249 startR, startG, startB. Returns a tuple consisting of a success flag and rgb
1252 <param name=
"OUTPUT" type=
"byte" default=
""/>
1253 <param name=
"OUTPUT" type=
"byte" default=
""/>
1254 <param name=
"OUTPUT" type=
"byte" default=
""/>
1255 <param name=
"startR" type=
"byte" default=
"0"/>
1256 <param name=
"startG" type=
"byte" default=
"0"/>
1257 <param name=
"startB" type=
"byte" default=
"0"/>
1260 <method name=
"SetMaskFromImage" type=
"bool" overloaded=
"no">
1261 <autodoc>SetMaskFromImage(Image mask, byte mr, byte mg, byte mb) -
> bool
</autodoc>
1263 <param name=
"mask" type=
"Image" default=
""/>
1264 <param name=
"mr" type=
"byte" default=
""/>
1265 <param name=
"mg" type=
"byte" default=
""/>
1266 <param name=
"mb" type=
"byte" default=
""/>
1269 <staticmethod name=
"CanRead" type=
"bool" overloaded=
"no">
1270 <autodoc>CanRead(String name) -
> bool
</autodoc>
1272 <param name=
"name" type=
"String" default=
""/>
1275 <staticmethod name=
"GetImageCount" type=
"int" overloaded=
"no">
1276 <autodoc>GetImageCount(String name, long type=BITMAP_TYPE_ANY) -
> int
</autodoc>
1278 <param name=
"name" type=
"String" default=
""/>
1279 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1282 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
1283 <autodoc>LoadFile(String name, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc>
1285 <param name=
"name" type=
"String" default=
""/>
1286 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1287 <param name=
"index" type=
"int" default=
"-1"/>
1290 <method name=
"LoadMimeFile" type=
"bool" overloaded=
"no">
1291 <autodoc>LoadMimeFile(String name, String mimetype, int index=-
1) -
> bool
</autodoc>
1293 <param name=
"name" type=
"String" default=
""/>
1294 <param name=
"mimetype" type=
"String" default=
""/>
1295 <param name=
"index" type=
"int" default=
"-1"/>
1298 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
1299 <autodoc>SaveFile(String name, int type) -
> bool
</autodoc>
1301 <param name=
"name" type=
"String" default=
""/>
1302 <param name=
"type" type=
"int" default=
""/>
1305 <method name=
"SaveMimeFile" type=
"bool" overloaded=
"no">
1306 <autodoc>SaveMimeFile(String name, String mimetype) -
> bool
</autodoc>
1308 <param name=
"name" type=
"String" default=
""/>
1309 <param name=
"mimetype" type=
"String" default=
""/>
1312 <staticmethod name=
"CanReadStream" type=
"bool" overloaded=
"no">
1313 <autodoc>CanReadStream(InputStream stream) -
> bool
</autodoc>
1315 <param name=
"stream" type=
"wxInputStream" default=
""/>
1318 <method name=
"LoadStream" type=
"bool" overloaded=
"no">
1319 <autodoc>LoadStream(InputStream stream, long type=BITMAP_TYPE_ANY, int index=-
1) -
> bool
</autodoc>
1321 <param name=
"stream" type=
"wxInputStream" default=
""/>
1322 <param name=
"type" type=
"long" default=
"wxBITMAP_TYPE_ANY"/>
1323 <param name=
"index" type=
"int" default=
"-1"/>
1326 <method name=
"LoadMimeStream" type=
"bool" overloaded=
"no">
1327 <autodoc>LoadMimeStream(InputStream stream, String mimetype, int index=-
1) -
> bool
</autodoc>
1329 <param name=
"stream" type=
"wxInputStream" default=
""/>
1330 <param name=
"mimetype" type=
"String" default=
""/>
1331 <param name=
"index" type=
"int" default=
"-1"/>
1334 <method name=
"Ok" type=
"bool" overloaded=
"no">
1335 <autodoc>Ok() -
> bool
</autodoc>
1337 <method name=
"GetWidth" type=
"int" overloaded=
"no">
1338 <autodoc>GetWidth() -
> int
</autodoc>
1340 <method name=
"GetHeight" type=
"int" overloaded=
"no">
1341 <autodoc>GetHeight() -
> int
</autodoc>
1343 <method name=
"GetSubImage" type=
"Image" overloaded=
"no">
1344 <autodoc>GetSubImage(Rect rect) -
> Image
</autodoc>
1346 <param name=
"rect" type=
"Rect" default=
""/>
1349 <method name=
"Copy" type=
"Image" overloaded=
"no">
1350 <autodoc>Copy() -
> Image
</autodoc>
1352 <method name=
"Paste" type=
"" overloaded=
"no">
1353 <autodoc>Paste(Image image, int x, int y)
</autodoc>
1355 <param name=
"image" type=
"Image" default=
""/>
1356 <param name=
"x" type=
"int" default=
""/>
1357 <param name=
"y" type=
"int" default=
""/>
1360 <method name=
"GetData" type=
"PyObject" overloaded=
"no">
1361 <autodoc>GetData() -
> PyObject
</autodoc>
1363 <method name=
"SetData" type=
"" overloaded=
"no">
1364 <autodoc>SetData(PyObject data)
</autodoc>
1366 <param name=
"data" type=
"PyObject" default=
""/>
1369 <method name=
"GetDataBuffer" type=
"PyObject" overloaded=
"no">
1370 <autodoc>GetDataBuffer() -
> PyObject
</autodoc>
1372 <method name=
"SetDataBuffer" type=
"" overloaded=
"no">
1373 <autodoc>SetDataBuffer(PyObject data)
</autodoc>
1375 <param name=
"data" type=
"PyObject" default=
""/>
1378 <method name=
"GetAlphaData" type=
"PyObject" overloaded=
"no">
1379 <autodoc>GetAlphaData() -
> PyObject
</autodoc>
1381 <method name=
"SetAlphaData" type=
"" overloaded=
"no">
1382 <autodoc>SetAlphaData(PyObject data)
</autodoc>
1384 <param name=
"data" type=
"PyObject" default=
""/>
1387 <method name=
"GetAlphaBuffer" type=
"PyObject" overloaded=
"no">
1388 <autodoc>GetAlphaBuffer() -
> PyObject
</autodoc>
1390 <method name=
"SetAlphaBuffer" type=
"" overloaded=
"no">
1391 <autodoc>SetAlphaBuffer(PyObject data)
</autodoc>
1393 <param name=
"data" type=
"PyObject" default=
""/>
1396 <method name=
"SetMaskColour" type=
"" overloaded=
"no">
1397 <autodoc>SetMaskColour(unsigned char r, unsigned char g, unsigned char b)
</autodoc>
1399 <param name=
"r" type=
"unsigned char" default=
""/>
1400 <param name=
"g" type=
"unsigned char" default=
""/>
1401 <param name=
"b" type=
"unsigned char" default=
""/>
1404 <method name=
"GetMaskRed" type=
"unsigned char" overloaded=
"no">
1405 <autodoc>GetMaskRed() -
> unsigned char
</autodoc>
1407 <method name=
"GetMaskGreen" type=
"unsigned char" overloaded=
"no">
1408 <autodoc>GetMaskGreen() -
> unsigned char
</autodoc>
1410 <method name=
"GetMaskBlue" type=
"unsigned char" overloaded=
"no">
1411 <autodoc>GetMaskBlue() -
> unsigned char
</autodoc>
1413 <method name=
"SetMask" type=
"" overloaded=
"no">
1414 <autodoc>SetMask(bool mask=True)
</autodoc>
1416 <param name=
"mask" type=
"bool" default=
"True"/>
1419 <method name=
"HasMask" type=
"bool" overloaded=
"no">
1420 <autodoc>HasMask() -
> bool
</autodoc>
1422 <method name=
"Rotate" type=
"Image" overloaded=
"no">
1423 <autodoc>Rotate(double angle, Point centre_of_rotation, bool interpolating=True,
1424 Point offset_after_rotation=None) -
> Image
</autodoc>
1426 <param name=
"angle" type=
"double" default=
""/>
1427 <param name=
"centre_of_rotation" type=
"Point" default=
""/>
1428 <param name=
"interpolating" type=
"bool" default=
"True"/>
1429 <param name=
"offset_after_rotation" type=
"Point" default=
"NULL"/>
1432 <method name=
"Rotate90" type=
"Image" overloaded=
"no">
1433 <autodoc>Rotate90(bool clockwise=True) -
> Image
</autodoc>
1435 <param name=
"clockwise" type=
"bool" default=
"True"/>
1438 <method name=
"Mirror" type=
"Image" overloaded=
"no">
1439 <autodoc>Mirror(bool horizontally=True) -
> Image
</autodoc>
1441 <param name=
"horizontally" type=
"bool" default=
"True"/>
1444 <method name=
"Replace" type=
"" overloaded=
"no">
1445 <autodoc>Replace(unsigned char r1, unsigned char g1, unsigned char b1,
1446 unsigned char r2, unsigned char g2, unsigned char b2)
</autodoc>
1448 <param name=
"r1" type=
"unsigned char" default=
""/>
1449 <param name=
"g1" type=
"unsigned char" default=
""/>
1450 <param name=
"b1" type=
"unsigned char" default=
""/>
1451 <param name=
"r2" type=
"unsigned char" default=
""/>
1452 <param name=
"g2" type=
"unsigned char" default=
""/>
1453 <param name=
"b2" type=
"unsigned char" default=
""/>
1456 <method name=
"ConvertToMono" type=
"Image" overloaded=
"no">
1457 <autodoc>ConvertToMono(unsigned char r, unsigned char g, unsigned char b) -
> Image
</autodoc>
1459 <param name=
"r" type=
"unsigned char" default=
""/>
1460 <param name=
"g" type=
"unsigned char" default=
""/>
1461 <param name=
"b" type=
"unsigned char" default=
""/>
1464 <method name=
"SetOption" type=
"" overloaded=
"no">
1465 <autodoc>SetOption(String name, String value)
</autodoc>
1467 <param name=
"name" type=
"String" default=
""/>
1468 <param name=
"value" type=
"String" default=
""/>
1471 <method name=
"SetOptionInt" type=
"" overloaded=
"no">
1472 <autodoc>SetOptionInt(String name, int value)
</autodoc>
1474 <param name=
"name" type=
"String" default=
""/>
1475 <param name=
"value" type=
"int" default=
""/>
1478 <method name=
"GetOption" type=
"String" overloaded=
"no">
1479 <autodoc>GetOption(String name) -
> String
</autodoc>
1481 <param name=
"name" type=
"String" default=
""/>
1484 <method name=
"GetOptionInt" type=
"int" overloaded=
"no">
1485 <autodoc>GetOptionInt(String name) -
> int
</autodoc>
1487 <param name=
"name" type=
"String" default=
""/>
1490 <method name=
"HasOption" type=
"bool" overloaded=
"no">
1491 <autodoc>HasOption(String name) -
> bool
</autodoc>
1493 <param name=
"name" type=
"String" default=
""/>
1496 <method name=
"CountColours" type=
"unsigned long" overloaded=
"no">
1497 <autodoc>CountColours(unsigned long stopafter=(unsigned long) -
1) -
> unsigned long
</autodoc>
1499 <param name=
"stopafter" type=
"unsigned long" default=
"(unsigned long) -1"/>
1502 <method name=
"ComputeHistogram" type=
"unsigned long" overloaded=
"no">
1503 <autodoc>ComputeHistogram(ImageHistogram h) -
> unsigned long
</autodoc>
1505 <param name=
"h" type=
"ImageHistogram" default=
""/>
1508 <staticmethod name=
"AddHandler" type=
"" overloaded=
"no">
1509 <autodoc>AddHandler(ImageHandler handler)
</autodoc>
1511 <param name=
"handler" type=
"ImageHandler" default=
""/>
1514 <staticmethod name=
"InsertHandler" type=
"" overloaded=
"no">
1515 <autodoc>InsertHandler(ImageHandler handler)
</autodoc>
1517 <param name=
"handler" type=
"ImageHandler" default=
""/>
1520 <staticmethod name=
"RemoveHandler" type=
"bool" overloaded=
"no">
1521 <autodoc>RemoveHandler(String name) -
> bool
</autodoc>
1523 <param name=
"name" type=
"String" default=
""/>
1526 <staticmethod name=
"GetImageExtWildcard" type=
"String" overloaded=
"no">
1527 <autodoc>GetImageExtWildcard() -
> String
</autodoc>
1529 <method name=
"ConvertToBitmap" type=
"wxBitmap" overloaded=
"no">
1530 <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc>
1532 <method name=
"ConvertToMonoBitmap" type=
"wxBitmap" overloaded=
"no">
1533 <autodoc>ConvertToMonoBitmap(unsigned char red, unsigned char green, unsigned char blue) -
> Bitmap
</autodoc>
1535 <param name=
"red" type=
"unsigned char" default=
""/>
1536 <param name=
"green" type=
"unsigned char" default=
""/>
1537 <param name=
"blue" type=
"unsigned char" default=
""/>
1541 <method name=
"InitAllImageHandlers" oldname=
"wxInitAllImageHandlers" type=
"" overloaded=
"no">
1542 <autodoc>InitAllImageHandlers()
</autodoc>
1544 <class name=
"BMPHandler" oldname=
"wxBMPHandler" module=
"core">
1545 <baseclass name=
"ImageHandler"/>
1546 <constructor name=
"BMPHandler" overloaded=
"no">
1547 <autodoc>__init__() -
> BMPHandler
</autodoc>
1550 <class name=
"ICOHandler" oldname=
"wxICOHandler" module=
"core">
1551 <baseclass name=
"BMPHandler"/>
1552 <constructor name=
"ICOHandler" overloaded=
"no">
1553 <autodoc>__init__() -
> ICOHandler
</autodoc>
1556 <class name=
"CURHandler" oldname=
"wxCURHandler" module=
"core">
1557 <baseclass name=
"ICOHandler"/>
1558 <constructor name=
"CURHandler" overloaded=
"no">
1559 <autodoc>__init__() -
> CURHandler
</autodoc>
1562 <class name=
"ANIHandler" oldname=
"wxANIHandler" module=
"core">
1563 <baseclass name=
"CURHandler"/>
1564 <constructor name=
"ANIHandler" overloaded=
"no">
1565 <autodoc>__init__() -
> ANIHandler
</autodoc>
1568 <class name=
"PNGHandler" oldname=
"wxPNGHandler" module=
"core">
1569 <baseclass name=
"ImageHandler"/>
1570 <constructor name=
"PNGHandler" overloaded=
"no">
1571 <autodoc>__init__() -
> PNGHandler
</autodoc>
1574 <class name=
"GIFHandler" oldname=
"wxGIFHandler" module=
"core">
1575 <baseclass name=
"ImageHandler"/>
1576 <constructor name=
"GIFHandler" overloaded=
"no">
1577 <autodoc>__init__() -
> GIFHandler
</autodoc>
1580 <class name=
"PCXHandler" oldname=
"wxPCXHandler" module=
"core">
1581 <baseclass name=
"ImageHandler"/>
1582 <constructor name=
"PCXHandler" overloaded=
"no">
1583 <autodoc>__init__() -
> PCXHandler
</autodoc>
1586 <class name=
"JPEGHandler" oldname=
"wxJPEGHandler" module=
"core">
1587 <baseclass name=
"ImageHandler"/>
1588 <constructor name=
"JPEGHandler" overloaded=
"no">
1589 <autodoc>__init__() -
> JPEGHandler
</autodoc>
1592 <class name=
"PNMHandler" oldname=
"wxPNMHandler" module=
"core">
1593 <baseclass name=
"ImageHandler"/>
1594 <constructor name=
"PNMHandler" overloaded=
"no">
1595 <autodoc>__init__() -
> PNMHandler
</autodoc>
1598 <class name=
"XPMHandler" oldname=
"wxXPMHandler" module=
"core">
1599 <baseclass name=
"ImageHandler"/>
1600 <constructor name=
"XPMHandler" overloaded=
"no">
1601 <autodoc>__init__() -
> XPMHandler
</autodoc>
1604 <class name=
"TIFFHandler" oldname=
"wxTIFFHandler" module=
"core">
1605 <baseclass name=
"ImageHandler"/>
1606 <constructor name=
"TIFFHandler" overloaded=
"no">
1607 <autodoc>__init__() -
> TIFFHandler
</autodoc>
1611 #---------------------------------------------------------------------------
1613 <class name=
"EvtHandler" oldname=
"wxEvtHandler" module=
"core">
1614 <baseclass name=
"Object"/>
1615 <constructor name=
"EvtHandler" overloaded=
"no">
1616 <autodoc>__init__() -
> EvtHandler
</autodoc>
1618 <method name=
"GetNextHandler" type=
"EvtHandler" overloaded=
"no">
1619 <autodoc>GetNextHandler() -
> EvtHandler
</autodoc>
1621 <method name=
"GetPreviousHandler" type=
"EvtHandler" overloaded=
"no">
1622 <autodoc>GetPreviousHandler() -
> EvtHandler
</autodoc>
1624 <method name=
"SetNextHandler" type=
"" overloaded=
"no">
1625 <autodoc>SetNextHandler(EvtHandler handler)
</autodoc>
1627 <param name=
"handler" type=
"EvtHandler" default=
""/>
1630 <method name=
"SetPreviousHandler" type=
"" overloaded=
"no">
1631 <autodoc>SetPreviousHandler(EvtHandler handler)
</autodoc>
1633 <param name=
"handler" type=
"EvtHandler" default=
""/>
1636 <method name=
"GetEvtHandlerEnabled" type=
"bool" overloaded=
"no">
1637 <autodoc>GetEvtHandlerEnabled() -
> bool
</autodoc>
1639 <method name=
"SetEvtHandlerEnabled" type=
"" overloaded=
"no">
1640 <autodoc>SetEvtHandlerEnabled(bool enabled)
</autodoc>
1642 <param name=
"enabled" type=
"bool" default=
""/>
1645 <method name=
"ProcessEvent" type=
"bool" overloaded=
"no">
1646 <autodoc>ProcessEvent(Event event) -
> bool
</autodoc>
1648 <param name=
"event" type=
"wxEvent" default=
""/>
1651 <method name=
"AddPendingEvent" type=
"" overloaded=
"no">
1652 <autodoc>AddPendingEvent(Event event)
</autodoc>
1654 <param name=
"event" type=
"wxEvent" default=
""/>
1657 <method name=
"ProcessPendingEvents" type=
"" overloaded=
"no">
1658 <autodoc>ProcessPendingEvents()
</autodoc>
1660 <method name=
"Connect" type=
"" overloaded=
"no">
1661 <autodoc>Connect(int id, int lastId, int eventType, PyObject func)
</autodoc>
1663 <param name=
"id" type=
"int" default=
""/>
1664 <param name=
"lastId" type=
"int" default=
""/>
1665 <param name=
"eventType" type=
"int" default=
""/>
1666 <param name=
"func" type=
"PyObject" default=
""/>
1669 <method name=
"Disconnect" type=
"bool" overloaded=
"no">
1670 <autodoc>Disconnect(int id, int lastId=-
1, wxEventType eventType=wxEVT_NULL) -
> bool
</autodoc>
1672 <param name=
"id" type=
"int" default=
""/>
1673 <param name=
"lastId" type=
"int" default=
"-1"/>
1674 <param name=
"eventType" type=
"wxEventType" default=
"wxEVT_NULL"/>
1677 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
1678 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
1680 <param name=
"_self" type=
"PyObject" default=
""/>
1686 #---------------------------------------------------------------------------
1688 class PyEventBinder(object):
1690 Instances of this class are used to bind specific events to event
1693 def __init__(self, evtType, expectedIDs=
0):
1694 if expectedIDs not in [
0,
1,
2]:
1695 raise ValueError, "Invalid number of expectedIDs"
1696 self.expectedIDs = expectedIDs
1698 if type(evtType) == list or type(evtType) == tuple:
1699 self.evtType = evtType
1701 self.evtType = [evtType]
1704 def Bind(self, target, id1, id2, function):
1705 """Bind this set of event types to target."""
1706 for et in self.evtType:
1707 target.Connect(id1, id2, et, function)
1710 def __call__(self, *args):
1712 For backwards compatibility with the old EVT_* functions.
1713 Should be called with either (window, func), (window, ID,
1714 func) or (window, ID1, ID2, func) parameters depending on the
1717 assert len(args) ==
2 + self.expectedIDs
1721 if self.expectedIDs ==
0:
1723 elif self.expectedIDs ==
1:
1726 elif self.expectedIDs ==
2:
1731 raise ValueError, "Unexpected number of IDs"
1733 self.Bind(target, id1, id2, func)
1736 # These two are square pegs that don't fit the PyEventBinder hole...
1737 def EVT_COMMAND(win, id, cmd, func):
1738 win.Connect(id, -
1, cmd, func)
1739 def EVT_COMMAND_RANGE(win, id1, id2, cmd, func):
1740 win.Connect(id1, id2, cmd, func)
1743 #---------------------------------------------------------------------------
1746 #---------------------------------------------------------------------------
1748 <method name=
"NewEventType" oldname=
"wxNewEventType" type=
"wxEventType" overloaded=
"no">
1749 <autodoc>NewEventType() -
> wxEventType
</autodoc>
1753 # Create some event binders
1754 EVT_SIZE = wx.PyEventBinder( wxEVT_SIZE )
1755 EVT_SIZING = wx.PyEventBinder( wxEVT_SIZING )
1756 EVT_MOVE = wx.PyEventBinder( wxEVT_MOVE )
1757 EVT_MOVING = wx.PyEventBinder( wxEVT_MOVING )
1758 EVT_CLOSE = wx.PyEventBinder( wxEVT_CLOSE_WINDOW )
1759 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
1760 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
1761 EVT_PAINT = wx.PyEventBinder( wxEVT_PAINT )
1762 EVT_NC_PAINT = wx.PyEventBinder( wxEVT_NC_PAINT )
1763 EVT_ERASE_BACKGROUND = wx.PyEventBinder( wxEVT_ERASE_BACKGROUND )
1764 EVT_CHAR = wx.PyEventBinder( wxEVT_CHAR )
1765 EVT_KEY_DOWN = wx.PyEventBinder( wxEVT_KEY_DOWN )
1766 EVT_KEY_UP = wx.PyEventBinder( wxEVT_KEY_UP )
1767 EVT_HOTKEY = wx.PyEventBinder( wxEVT_HOTKEY,
1)
1768 EVT_CHAR_HOOK = wx.PyEventBinder( wxEVT_CHAR_HOOK )
1769 EVT_MENU_OPEN = wx.PyEventBinder( wxEVT_MENU_OPEN )
1770 EVT_MENU_CLOSE = wx.PyEventBinder( wxEVT_MENU_CLOSE )
1771 EVT_MENU_HIGHLIGHT = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT,
1)
1772 EVT_MENU_HIGHLIGHT_ALL = wx.PyEventBinder( wxEVT_MENU_HIGHLIGHT )
1773 EVT_SET_FOCUS = wx.PyEventBinder( wxEVT_SET_FOCUS )
1774 EVT_KILL_FOCUS = wx.PyEventBinder( wxEVT_KILL_FOCUS )
1775 EVT_CHILD_FOCUS = wx.PyEventBinder( wxEVT_CHILD_FOCUS )
1776 EVT_ACTIVATE = wx.PyEventBinder( wxEVT_ACTIVATE )
1777 EVT_ACTIVATE_APP = wx.PyEventBinder( wxEVT_ACTIVATE_APP )
1778 EVT_END_SESSION = wx.PyEventBinder( wxEVT_END_SESSION )
1779 EVT_QUERY_END_SESSION = wx.PyEventBinder( wxEVT_QUERY_END_SESSION )
1780 EVT_DROP_FILES = wx.PyEventBinder( wxEVT_DROP_FILES )
1781 EVT_INIT_DIALOG = wx.PyEventBinder( wxEVT_INIT_DIALOG )
1782 EVT_SYS_COLOUR_CHANGED = wx.PyEventBinder( wxEVT_SYS_COLOUR_CHANGED )
1783 EVT_DISPLAY_CHANGED = wx.PyEventBinder( wxEVT_DISPLAY_CHANGED )
1784 EVT_SHOW = wx.PyEventBinder( wxEVT_SHOW )
1785 EVT_MAXIMIZE = wx.PyEventBinder( wxEVT_MAXIMIZE )
1786 EVT_ICONIZE = wx.PyEventBinder( wxEVT_ICONIZE )
1787 EVT_NAVIGATION_KEY = wx.PyEventBinder( wxEVT_NAVIGATION_KEY )
1788 EVT_PALETTE_CHANGED = wx.PyEventBinder( wxEVT_PALETTE_CHANGED )
1789 EVT_QUERY_NEW_PALETTE = wx.PyEventBinder( wxEVT_QUERY_NEW_PALETTE )
1790 EVT_WINDOW_CREATE = wx.PyEventBinder( wxEVT_CREATE )
1791 EVT_WINDOW_DESTROY = wx.PyEventBinder( wxEVT_DESTROY )
1792 EVT_SET_CURSOR = wx.PyEventBinder( wxEVT_SET_CURSOR )
1793 EVT_MOUSE_CAPTURE_CHANGED = wx.PyEventBinder( wxEVT_MOUSE_CAPTURE_CHANGED )
1795 EVT_LEFT_DOWN = wx.PyEventBinder( wxEVT_LEFT_DOWN )
1796 EVT_LEFT_UP = wx.PyEventBinder( wxEVT_LEFT_UP )
1797 EVT_MIDDLE_DOWN = wx.PyEventBinder( wxEVT_MIDDLE_DOWN )
1798 EVT_MIDDLE_UP = wx.PyEventBinder( wxEVT_MIDDLE_UP )
1799 EVT_RIGHT_DOWN = wx.PyEventBinder( wxEVT_RIGHT_DOWN )
1800 EVT_RIGHT_UP = wx.PyEventBinder( wxEVT_RIGHT_UP )
1801 EVT_MOTION = wx.PyEventBinder( wxEVT_MOTION )
1802 EVT_LEFT_DCLICK = wx.PyEventBinder( wxEVT_LEFT_DCLICK )
1803 EVT_MIDDLE_DCLICK = wx.PyEventBinder( wxEVT_MIDDLE_DCLICK )
1804 EVT_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_RIGHT_DCLICK )
1805 EVT_LEAVE_WINDOW = wx.PyEventBinder( wxEVT_LEAVE_WINDOW )
1806 EVT_ENTER_WINDOW = wx.PyEventBinder( wxEVT_ENTER_WINDOW )
1807 EVT_MOUSEWHEEL = wx.PyEventBinder( wxEVT_MOUSEWHEEL )
1809 EVT_MOUSE_EVENTS = wx.PyEventBinder([ wxEVT_LEFT_DOWN,
1817 wxEVT_MIDDLE_DCLICK,
1825 # Scrolling from wxWindow (sent to wxScrolledWindow)
1826 EVT_SCROLLWIN = wx.PyEventBinder([ wxEVT_SCROLLWIN_TOP,
1827 wxEVT_SCROLLWIN_BOTTOM,
1828 wxEVT_SCROLLWIN_LINEUP,
1829 wxEVT_SCROLLWIN_LINEDOWN,
1830 wxEVT_SCROLLWIN_PAGEUP,
1831 wxEVT_SCROLLWIN_PAGEDOWN,
1832 wxEVT_SCROLLWIN_THUMBTRACK,
1833 wxEVT_SCROLLWIN_THUMBRELEASE,
1836 EVT_SCROLLWIN_TOP = wx.PyEventBinder( wxEVT_SCROLLWIN_TOP )
1837 EVT_SCROLLWIN_BOTTOM = wx.PyEventBinder( wxEVT_SCROLLWIN_BOTTOM )
1838 EVT_SCROLLWIN_LINEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEUP )
1839 EVT_SCROLLWIN_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_LINEDOWN )
1840 EVT_SCROLLWIN_PAGEUP = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEUP )
1841 EVT_SCROLLWIN_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLLWIN_PAGEDOWN )
1842 EVT_SCROLLWIN_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBTRACK )
1843 EVT_SCROLLWIN_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLLWIN_THUMBRELEASE )
1845 # Scrolling from wxSlider and wxScrollBar
1846 EVT_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP,
1847 wxEVT_SCROLL_BOTTOM,
1848 wxEVT_SCROLL_LINEUP,
1849 wxEVT_SCROLL_LINEDOWN,
1850 wxEVT_SCROLL_PAGEUP,
1851 wxEVT_SCROLL_PAGEDOWN,
1852 wxEVT_SCROLL_THUMBTRACK,
1853 wxEVT_SCROLL_THUMBRELEASE,
1854 wxEVT_SCROLL_ENDSCROLL,
1857 EVT_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP )
1858 EVT_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM )
1859 EVT_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP )
1860 EVT_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN )
1861 EVT_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP )
1862 EVT_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN )
1863 EVT_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK )
1864 EVT_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE )
1865 EVT_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL )
1867 # Scrolling from wxSlider and wxScrollBar, with an id
1868 EVT_COMMAND_SCROLL = wx.PyEventBinder([ wxEVT_SCROLL_TOP,
1869 wxEVT_SCROLL_BOTTOM,
1870 wxEVT_SCROLL_LINEUP,
1871 wxEVT_SCROLL_LINEDOWN,
1872 wxEVT_SCROLL_PAGEUP,
1873 wxEVT_SCROLL_PAGEDOWN,
1874 wxEVT_SCROLL_THUMBTRACK,
1875 wxEVT_SCROLL_THUMBRELEASE,
1876 wxEVT_SCROLL_ENDSCROLL,
1879 EVT_COMMAND_SCROLL_TOP = wx.PyEventBinder( wxEVT_SCROLL_TOP,
1)
1880 EVT_COMMAND_SCROLL_BOTTOM = wx.PyEventBinder( wxEVT_SCROLL_BOTTOM,
1)
1881 EVT_COMMAND_SCROLL_LINEUP = wx.PyEventBinder( wxEVT_SCROLL_LINEUP,
1)
1882 EVT_COMMAND_SCROLL_LINEDOWN = wx.PyEventBinder( wxEVT_SCROLL_LINEDOWN,
1)
1883 EVT_COMMAND_SCROLL_PAGEUP = wx.PyEventBinder( wxEVT_SCROLL_PAGEUP,
1)
1884 EVT_COMMAND_SCROLL_PAGEDOWN = wx.PyEventBinder( wxEVT_SCROLL_PAGEDOWN,
1)
1885 EVT_COMMAND_SCROLL_THUMBTRACK = wx.PyEventBinder( wxEVT_SCROLL_THUMBTRACK,
1)
1886 EVT_COMMAND_SCROLL_THUMBRELEASE = wx.PyEventBinder( wxEVT_SCROLL_THUMBRELEASE,
1)
1887 EVT_COMMAND_SCROLL_ENDSCROLL = wx.PyEventBinder( wxEVT_SCROLL_ENDSCROLL,
1)
1889 EVT_BUTTON = wx.PyEventBinder( wxEVT_COMMAND_BUTTON_CLICKED,
1)
1890 EVT_CHECKBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKBOX_CLICKED,
1)
1891 EVT_CHOICE = wx.PyEventBinder( wxEVT_COMMAND_CHOICE_SELECTED,
1)
1892 EVT_LISTBOX = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_SELECTED,
1)
1893 EVT_LISTBOX_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LISTBOX_DOUBLECLICKED,
1)
1894 EVT_MENU = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED,
1)
1895 EVT_MENU_RANGE = wx.PyEventBinder( wxEVT_COMMAND_MENU_SELECTED,
2)
1896 EVT_SLIDER = wx.PyEventBinder( wxEVT_COMMAND_SLIDER_UPDATED,
1)
1897 EVT_RADIOBOX = wx.PyEventBinder( wxEVT_COMMAND_RADIOBOX_SELECTED,
1)
1898 EVT_RADIOBUTTON = wx.PyEventBinder( wxEVT_COMMAND_RADIOBUTTON_SELECTED,
1)
1900 EVT_SCROLLBAR = wx.PyEventBinder( wxEVT_COMMAND_SCROLLBAR_UPDATED,
1)
1901 EVT_VLBOX = wx.PyEventBinder( wxEVT_COMMAND_VLBOX_SELECTED,
1)
1902 EVT_COMBOBOX = wx.PyEventBinder( wxEVT_COMMAND_COMBOBOX_SELECTED,
1)
1903 EVT_TOOL = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED,
1)
1904 EVT_TOOL_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_CLICKED,
2)
1905 EVT_TOOL_RCLICKED = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED,
1)
1906 EVT_TOOL_RCLICKED_RANGE = wx.PyEventBinder( wxEVT_COMMAND_TOOL_RCLICKED,
2)
1907 EVT_TOOL_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TOOL_ENTER,
1)
1908 EVT_CHECKLISTBOX = wx.PyEventBinder( wxEVT_COMMAND_CHECKLISTBOX_TOGGLED,
1)
1911 EVT_COMMAND_LEFT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_CLICK,
1)
1912 EVT_COMMAND_LEFT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_LEFT_DCLICK,
1)
1913 EVT_COMMAND_RIGHT_CLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_CLICK,
1)
1914 EVT_COMMAND_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_COMMAND_RIGHT_DCLICK,
1)
1915 EVT_COMMAND_SET_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_SET_FOCUS,
1)
1916 EVT_COMMAND_KILL_FOCUS = wx.PyEventBinder( wxEVT_COMMAND_KILL_FOCUS,
1)
1917 EVT_COMMAND_ENTER = wx.PyEventBinder( wxEVT_COMMAND_ENTER,
1)
1919 EVT_IDLE = wx.PyEventBinder( wxEVT_IDLE )
1921 EVT_UPDATE_UI = wx.PyEventBinder( wxEVT_UPDATE_UI,
1)
1922 EVT_UPDATE_UI_RANGE = wx.PyEventBinder( wxEVT_UPDATE_UI,
2)
1924 EVT_CONTEXT_MENU = wx.PyEventBinder( wxEVT_CONTEXT_MENU )
1929 #---------------------------------------------------------------------------
1931 <class name=
"Event" oldname=
"wxEvent" module=
"core">
1932 <baseclass name=
"Object"/>
1933 <destructor name=
"~wxEvent" overloaded=
"no">
1934 <autodoc>__del__()
</autodoc>
1936 <method name=
"SetEventType" type=
"" overloaded=
"no">
1937 <autodoc>SetEventType(wxEventType typ)
</autodoc>
1939 <param name=
"typ" type=
"wxEventType" default=
""/>
1942 <method name=
"GetEventType" type=
"wxEventType" overloaded=
"no">
1943 <autodoc>GetEventType() -
> wxEventType
</autodoc>
1945 <method name=
"GetEventObject" type=
"Object" overloaded=
"no">
1946 <autodoc>GetEventObject() -
> Object
</autodoc>
1948 <method name=
"SetEventObject" type=
"" overloaded=
"no">
1949 <autodoc>SetEventObject(Object obj)
</autodoc>
1951 <param name=
"obj" type=
"Object" default=
""/>
1954 <method name=
"GetTimestamp" type=
"long" overloaded=
"no">
1955 <autodoc>GetTimestamp() -
> long
</autodoc>
1957 <method name=
"SetTimestamp" type=
"" overloaded=
"no">
1958 <autodoc>SetTimestamp(long ts=
0)
</autodoc>
1960 <param name=
"ts" type=
"long" default=
"0"/>
1963 <method name=
"GetId" type=
"int" overloaded=
"no">
1964 <autodoc>GetId() -
> int
</autodoc>
1966 <method name=
"SetId" type=
"" overloaded=
"no">
1967 <autodoc>SetId(int Id)
</autodoc>
1969 <param name=
"Id" type=
"int" default=
""/>
1972 <method name=
"IsCommandEvent" type=
"bool" overloaded=
"no">
1973 <autodoc>IsCommandEvent() -
> bool
</autodoc>
1975 <method name=
"Skip" type=
"" overloaded=
"no">
1976 <autodoc>Skip(bool skip=True)
</autodoc>
1978 <param name=
"skip" type=
"bool" default=
"True"/>
1981 <method name=
"GetSkipped" type=
"bool" overloaded=
"no">
1982 <autodoc>GetSkipped() -
> bool
</autodoc>
1984 <method name=
"ShouldPropagate" type=
"bool" overloaded=
"no">
1985 <autodoc>ShouldPropagate() -
> bool
</autodoc>
1987 <method name=
"StopPropagation" type=
"int" overloaded=
"no">
1988 <autodoc>StopPropagation() -
> int
</autodoc>
1990 <method name=
"ResumePropagation" type=
"" overloaded=
"no">
1991 <autodoc>ResumePropagation(int propagationLevel)
</autodoc>
1993 <param name=
"propagationLevel" type=
"int" default=
""/>
1996 <method name=
"Clone" type=
"Event" overloaded=
"no">
1997 <autodoc>Clone() -
> Event
</autodoc>
2001 #---------------------------------------------------------------------------
2003 <class name=
"PropagationDisabler" oldname=
"wxPropagationDisabler" module=
"core">
2004 <constructor name=
"PropagationDisabler" overloaded=
"no">
2005 <autodoc>__init__(Event event) -
> PropagationDisabler
</autodoc>
2007 <param name=
"event" type=
"Event" default=
""/>
2010 <destructor name=
"~wxPropagationDisabler" overloaded=
"no">
2011 <autodoc>__del__()
</autodoc>
2014 <class name=
"PropagateOnce" oldname=
"wxPropagateOnce" module=
"core">
2015 <constructor name=
"PropagateOnce" overloaded=
"no">
2016 <autodoc>__init__(Event event) -
> PropagateOnce
</autodoc>
2018 <param name=
"event" type=
"Event" default=
""/>
2021 <destructor name=
"~wxPropagateOnce" overloaded=
"no">
2022 <autodoc>__del__()
</autodoc>
2026 #---------------------------------------------------------------------------
2028 <class name=
"CommandEvent" oldname=
"wxCommandEvent" module=
"core">
2029 <baseclass name=
"Event"/>
2030 <constructor name=
"CommandEvent" overloaded=
"no">
2031 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> CommandEvent
</autodoc>
2033 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2034 <param name=
"winid" type=
"int" default=
"0"/>
2037 <method name=
"GetSelection" type=
"int" overloaded=
"no">
2038 <autodoc>GetSelection() -
> int
</autodoc>
2040 <method name=
"SetString" type=
"" overloaded=
"no">
2041 <autodoc>SetString(String s)
</autodoc>
2043 <param name=
"s" type=
"String" default=
""/>
2046 <method name=
"GetString" type=
"String" overloaded=
"no">
2047 <autodoc>GetString() -
> String
</autodoc>
2049 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
2050 <autodoc>IsChecked() -
> bool
</autodoc>
2052 <method name=
"IsSelection" type=
"bool" overloaded=
"no">
2053 <autodoc>IsSelection() -
> bool
</autodoc>
2055 <method name=
"SetExtraLong" type=
"" overloaded=
"no">
2056 <autodoc>SetExtraLong(long extraLong)
</autodoc>
2058 <param name=
"extraLong" type=
"long" default=
""/>
2061 <method name=
"GetExtraLong" type=
"long" overloaded=
"no">
2062 <autodoc>GetExtraLong() -
> long
</autodoc>
2064 <method name=
"SetInt" type=
"" overloaded=
"no">
2065 <autodoc>SetInt(int i)
</autodoc>
2067 <param name=
"i" type=
"int" default=
""/>
2070 <method name=
"GetInt" type=
"long" overloaded=
"no">
2071 <autodoc>GetInt() -
> long
</autodoc>
2073 <method name=
"Clone" type=
"Event" overloaded=
"no">
2074 <autodoc>Clone() -
> Event
</autodoc>
2078 #---------------------------------------------------------------------------
2080 <class name=
"NotifyEvent" oldname=
"wxNotifyEvent" module=
"core">
2081 <baseclass name=
"CommandEvent"/>
2082 <constructor name=
"NotifyEvent" overloaded=
"no">
2083 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> NotifyEvent
</autodoc>
2085 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2086 <param name=
"winid" type=
"int" default=
"0"/>
2089 <method name=
"Veto" type=
"" overloaded=
"no">
2090 <autodoc>Veto()
</autodoc>
2092 <method name=
"Allow" type=
"" overloaded=
"no">
2093 <autodoc>Allow()
</autodoc>
2095 <method name=
"IsAllowed" type=
"bool" overloaded=
"no">
2096 <autodoc>IsAllowed() -
> bool
</autodoc>
2100 #---------------------------------------------------------------------------
2102 <class name=
"ScrollEvent" oldname=
"wxScrollEvent" module=
"core">
2103 <baseclass name=
"CommandEvent"/>
2104 <constructor name=
"ScrollEvent" overloaded=
"no">
2105 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0, int pos=
0,
2106 int orient=
0) -
> ScrollEvent
</autodoc>
2108 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2109 <param name=
"winid" type=
"int" default=
"0"/>
2110 <param name=
"pos" type=
"int" default=
"0"/>
2111 <param name=
"orient" type=
"int" default=
"0"/>
2114 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
2115 <autodoc>GetOrientation() -
> int
</autodoc>
2117 <method name=
"GetPosition" type=
"int" overloaded=
"no">
2118 <autodoc>GetPosition() -
> int
</autodoc>
2120 <method name=
"SetOrientation" type=
"" overloaded=
"no">
2121 <autodoc>SetOrientation(int orient)
</autodoc>
2123 <param name=
"orient" type=
"int" default=
""/>
2126 <method name=
"SetPosition" type=
"" overloaded=
"no">
2127 <autodoc>SetPosition(int pos)
</autodoc>
2129 <param name=
"pos" type=
"int" default=
""/>
2134 #---------------------------------------------------------------------------
2136 <class name=
"ScrollWinEvent" oldname=
"wxScrollWinEvent" module=
"core">
2137 <baseclass name=
"Event"/>
2138 <constructor name=
"ScrollWinEvent" overloaded=
"no">
2139 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int pos=
0, int orient=
0) -
> ScrollWinEvent
</autodoc>
2141 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2142 <param name=
"pos" type=
"int" default=
"0"/>
2143 <param name=
"orient" type=
"int" default=
"0"/>
2146 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
2147 <autodoc>GetOrientation() -
> int
</autodoc>
2149 <method name=
"GetPosition" type=
"int" overloaded=
"no">
2150 <autodoc>GetPosition() -
> int
</autodoc>
2152 <method name=
"SetOrientation" type=
"" overloaded=
"no">
2153 <autodoc>SetOrientation(int orient)
</autodoc>
2155 <param name=
"orient" type=
"int" default=
""/>
2158 <method name=
"SetPosition" type=
"" overloaded=
"no">
2159 <autodoc>SetPosition(int pos)
</autodoc>
2161 <param name=
"pos" type=
"int" default=
""/>
2166 #---------------------------------------------------------------------------
2168 <class name=
"MouseEvent" oldname=
"wxMouseEvent" module=
"core">
2169 <baseclass name=
"Event"/>
2170 <constructor name=
"MouseEvent" overloaded=
"no">
2171 <autodoc>__init__(wxEventType mouseType=wxEVT_NULL) -
> MouseEvent
</autodoc>
2173 <param name=
"mouseType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2176 <method name=
"IsButton" type=
"bool" overloaded=
"no">
2177 <autodoc>IsButton() -
> bool
</autodoc>
2179 <method name=
"ButtonDown" type=
"bool" overloaded=
"no">
2180 <autodoc>ButtonDown(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2182 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2185 <method name=
"ButtonDClick" type=
"bool" overloaded=
"no">
2186 <autodoc>ButtonDClick(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2188 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2191 <method name=
"ButtonUp" type=
"bool" overloaded=
"no">
2192 <autodoc>ButtonUp(int but=MOUSE_BTN_ANY) -
> bool
</autodoc>
2194 <param name=
"but" type=
"int" default=
"wxMOUSE_BTN_ANY"/>
2197 <method name=
"Button" type=
"bool" overloaded=
"no">
2198 <autodoc>Button(int but) -
> bool
</autodoc>
2200 <param name=
"but" type=
"int" default=
""/>
2203 <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no">
2204 <autodoc>ButtonIsDown(int but) -
> bool
</autodoc>
2206 <param name=
"but" type=
"int" default=
""/>
2209 <method name=
"GetButton" type=
"int" overloaded=
"no">
2210 <autodoc>GetButton() -
> int
</autodoc>
2212 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
2213 <autodoc>ControlDown() -
> bool
</autodoc>
2215 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
2216 <autodoc>MetaDown() -
> bool
</autodoc>
2218 <method name=
"AltDown" type=
"bool" overloaded=
"no">
2219 <autodoc>AltDown() -
> bool
</autodoc>
2221 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
2222 <autodoc>ShiftDown() -
> bool
</autodoc>
2224 <method name=
"LeftDown" type=
"bool" overloaded=
"no">
2225 <autodoc>LeftDown() -
> bool
</autodoc>
2227 <method name=
"MiddleDown" type=
"bool" overloaded=
"no">
2228 <autodoc>MiddleDown() -
> bool
</autodoc>
2230 <method name=
"RightDown" type=
"bool" overloaded=
"no">
2231 <autodoc>RightDown() -
> bool
</autodoc>
2233 <method name=
"LeftUp" type=
"bool" overloaded=
"no">
2234 <autodoc>LeftUp() -
> bool
</autodoc>
2236 <method name=
"MiddleUp" type=
"bool" overloaded=
"no">
2237 <autodoc>MiddleUp() -
> bool
</autodoc>
2239 <method name=
"RightUp" type=
"bool" overloaded=
"no">
2240 <autodoc>RightUp() -
> bool
</autodoc>
2242 <method name=
"LeftDClick" type=
"bool" overloaded=
"no">
2243 <autodoc>LeftDClick() -
> bool
</autodoc>
2245 <method name=
"MiddleDClick" type=
"bool" overloaded=
"no">
2246 <autodoc>MiddleDClick() -
> bool
</autodoc>
2248 <method name=
"RightDClick" type=
"bool" overloaded=
"no">
2249 <autodoc>RightDClick() -
> bool
</autodoc>
2251 <method name=
"LeftIsDown" type=
"bool" overloaded=
"no">
2252 <autodoc>LeftIsDown() -
> bool
</autodoc>
2254 <method name=
"MiddleIsDown" type=
"bool" overloaded=
"no">
2255 <autodoc>MiddleIsDown() -
> bool
</autodoc>
2257 <method name=
"RightIsDown" type=
"bool" overloaded=
"no">
2258 <autodoc>RightIsDown() -
> bool
</autodoc>
2260 <method name=
"Dragging" type=
"bool" overloaded=
"no">
2261 <autodoc>Dragging() -
> bool
</autodoc>
2263 <method name=
"Moving" type=
"bool" overloaded=
"no">
2264 <autodoc>Moving() -
> bool
</autodoc>
2266 <method name=
"Entering" type=
"bool" overloaded=
"no">
2267 <autodoc>Entering() -
> bool
</autodoc>
2269 <method name=
"Leaving" type=
"bool" overloaded=
"no">
2270 <autodoc>Leaving() -
> bool
</autodoc>
2272 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
2273 <autodoc>GetPosition() -
> Point
</autodoc>
2274 <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring>
2276 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
2277 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
2278 <docstring>Returns the position of the mouse in window coordinates when the event happened.
</docstring>
2280 <param name=
"OUTPUT" type=
"long" default=
""/>
2281 <param name=
"OUTPUT" type=
"long" default=
""/>
2284 <method name=
"GetLogicalPosition" type=
"Point" overloaded=
"no">
2285 <autodoc>GetLogicalPosition(DC dc) -
> Point
</autodoc>
2287 <param name=
"dc" type=
"wxDC" default=
""/>
2290 <method name=
"GetX" type=
"int" overloaded=
"no">
2291 <autodoc>GetX() -
> int
</autodoc>
2293 <method name=
"GetY" type=
"int" overloaded=
"no">
2294 <autodoc>GetY() -
> int
</autodoc>
2296 <method name=
"GetWheelRotation" type=
"int" overloaded=
"no">
2297 <autodoc>GetWheelRotation() -
> int
</autodoc>
2299 <method name=
"GetWheelDelta" type=
"int" overloaded=
"no">
2300 <autodoc>GetWheelDelta() -
> int
</autodoc>
2302 <method name=
"GetLinesPerAction" type=
"int" overloaded=
"no">
2303 <autodoc>GetLinesPerAction() -
> int
</autodoc>
2305 <method name=
"IsPageScroll" type=
"bool" overloaded=
"no">
2306 <autodoc>IsPageScroll() -
> bool
</autodoc>
2308 <property name=
"m_x" type=
"int" readonly=
"no"/>
2309 <property name=
"m_y" type=
"int" readonly=
"no"/>
2310 <property name=
"m_leftDown" type=
"bool" readonly=
"no"/>
2311 <property name=
"m_middleDown" type=
"bool" readonly=
"no"/>
2312 <property name=
"m_rightDown" type=
"bool" readonly=
"no"/>
2313 <property name=
"m_controlDown" type=
"bool" readonly=
"no"/>
2314 <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/>
2315 <property name=
"m_altDown" type=
"bool" readonly=
"no"/>
2316 <property name=
"m_metaDown" type=
"bool" readonly=
"no"/>
2317 <property name=
"m_wheelRotation" type=
"int" readonly=
"no"/>
2318 <property name=
"m_wheelDelta" type=
"int" readonly=
"no"/>
2319 <property name=
"m_linesPerAction" type=
"int" readonly=
"no"/>
2322 #---------------------------------------------------------------------------
2324 <class name=
"SetCursorEvent" oldname=
"wxSetCursorEvent" module=
"core">
2325 <baseclass name=
"Event"/>
2326 <constructor name=
"SetCursorEvent" overloaded=
"no">
2327 <autodoc>__init__(int x=
0, int y=
0) -
> SetCursorEvent
</autodoc>
2329 <param name=
"x" type=
"int" default=
"0"/>
2330 <param name=
"y" type=
"int" default=
"0"/>
2333 <method name=
"GetX" type=
"int" overloaded=
"no">
2334 <autodoc>GetX() -
> int
</autodoc>
2336 <method name=
"GetY" type=
"int" overloaded=
"no">
2337 <autodoc>GetY() -
> int
</autodoc>
2339 <method name=
"SetCursor" type=
"" overloaded=
"no">
2340 <autodoc>SetCursor(Cursor cursor)
</autodoc>
2342 <param name=
"cursor" type=
"wxCursor" default=
""/>
2345 <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no">
2346 <autodoc>GetCursor() -
> Cursor
</autodoc>
2348 <method name=
"HasCursor" type=
"bool" overloaded=
"no">
2349 <autodoc>HasCursor() -
> bool
</autodoc>
2353 #---------------------------------------------------------------------------
2355 <class name=
"KeyEvent" oldname=
"wxKeyEvent" module=
"core">
2356 <baseclass name=
"Event"/>
2357 <constructor name=
"KeyEvent" overloaded=
"no">
2358 <autodoc>__init__(wxEventType keyType=wxEVT_NULL) -
> KeyEvent
</autodoc>
2360 <param name=
"keyType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2363 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
2364 <autodoc>ControlDown() -
> bool
</autodoc>
2366 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
2367 <autodoc>MetaDown() -
> bool
</autodoc>
2369 <method name=
"AltDown" type=
"bool" overloaded=
"no">
2370 <autodoc>AltDown() -
> bool
</autodoc>
2372 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
2373 <autodoc>ShiftDown() -
> bool
</autodoc>
2375 <method name=
"HasModifiers" type=
"bool" overloaded=
"no">
2376 <autodoc>HasModifiers() -
> bool
</autodoc>
2378 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
2379 <autodoc>GetKeyCode() -
> int
</autodoc>
2381 <method name=
"GetUniChar" type=
"int" overloaded=
"no">
2382 <autodoc>GetUniChar() -
> int
</autodoc>
2384 <method name=
"GetRawKeyCode" type=
"unsigned int" overloaded=
"no">
2385 <autodoc>GetRawKeyCode() -
> unsigned int
</autodoc>
2387 <method name=
"GetRawKeyFlags" type=
"unsigned int" overloaded=
"no">
2388 <autodoc>GetRawKeyFlags() -
> unsigned int
</autodoc>
2390 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
2391 <autodoc>GetPosition() -
> Point
</autodoc>
2392 <docstring>Find the position of the event.
</docstring>
2394 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
2395 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
2396 <docstring>Find the position of the event.
</docstring>
2398 <param name=
"OUTPUT" type=
"long" default=
""/>
2399 <param name=
"OUTPUT" type=
"long" default=
""/>
2402 <method name=
"GetX" type=
"int" overloaded=
"no">
2403 <autodoc>GetX() -
> int
</autodoc>
2405 <method name=
"GetY" type=
"int" overloaded=
"no">
2406 <autodoc>GetY() -
> int
</autodoc>
2408 <property name=
"m_x" type=
"int" readonly=
"no"/>
2409 <property name=
"m_y" type=
"int" readonly=
"no"/>
2410 <property name=
"m_keyCode" type=
"long" readonly=
"no"/>
2411 <property name=
"m_controlDown" type=
"bool" readonly=
"no"/>
2412 <property name=
"m_shiftDown" type=
"bool" readonly=
"no"/>
2413 <property name=
"m_altDown" type=
"bool" readonly=
"no"/>
2414 <property name=
"m_metaDown" type=
"bool" readonly=
"no"/>
2415 <property name=
"m_scanCode" type=
"bool" readonly=
"no"/>
2416 <property name=
"m_rawCode" type=
"unsigned int" readonly=
"no"/>
2417 <property name=
"m_rawFlags" type=
"unsigned int" readonly=
"no"/>
2420 #---------------------------------------------------------------------------
2422 <class name=
"SizeEvent" oldname=
"wxSizeEvent" module=
"core">
2423 <baseclass name=
"Event"/>
2424 <constructor name=
"SizeEvent" overloaded=
"no">
2425 <autodoc>__init__(Size sz=DefaultSize, int winid=
0) -
> SizeEvent
</autodoc>
2427 <param name=
"sz" type=
"Size" default=
"wxDefaultSize"/>
2428 <param name=
"winid" type=
"int" default=
"0"/>
2431 <method name=
"GetSize" type=
"Size" overloaded=
"no">
2432 <autodoc>GetSize() -
> Size
</autodoc>
2434 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
2435 <autodoc>GetRect() -
> Rect
</autodoc>
2437 <method name=
"SetRect" type=
"" overloaded=
"no">
2438 <autodoc>SetRect(Rect rect)
</autodoc>
2440 <param name=
"rect" type=
"Rect" default=
""/>
2443 <method name=
"SetSize" type=
"" overloaded=
"no">
2444 <autodoc>SetSize(Size size)
</autodoc>
2446 <param name=
"size" type=
"Size" default=
""/>
2449 <property name=
"m_size" type=
"Size" readonly=
"no"/>
2450 <property name=
"m_rect" type=
"Rect" readonly=
"no"/>
2453 #---------------------------------------------------------------------------
2455 <class name=
"MoveEvent" oldname=
"wxMoveEvent" module=
"core">
2456 <baseclass name=
"Event"/>
2457 <constructor name=
"MoveEvent" overloaded=
"no">
2458 <autodoc>__init__(Point pos=DefaultPosition, int winid=
0) -
> MoveEvent
</autodoc>
2460 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
2461 <param name=
"winid" type=
"int" default=
"0"/>
2464 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
2465 <autodoc>GetPosition() -
> Point
</autodoc>
2467 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
2468 <autodoc>GetRect() -
> Rect
</autodoc>
2470 <method name=
"SetRect" type=
"" overloaded=
"no">
2471 <autodoc>SetRect(Rect rect)
</autodoc>
2473 <param name=
"rect" type=
"Rect" default=
""/>
2476 <method name=
"SetPosition" type=
"" overloaded=
"no">
2477 <autodoc>SetPosition(Point pos)
</autodoc>
2479 <param name=
"pos" type=
"Point" default=
""/>
2482 <property name=
"m_pos" type=
"Point" readonly=
"no"/>
2483 <property name=
"m_rect" type=
"Rect" readonly=
"no"/>
2486 #---------------------------------------------------------------------------
2488 <class name=
"PaintEvent" oldname=
"wxPaintEvent" module=
"core">
2489 <baseclass name=
"Event"/>
2490 <constructor name=
"PaintEvent" overloaded=
"no">
2491 <autodoc>__init__(int Id=
0) -
> PaintEvent
</autodoc>
2493 <param name=
"Id" type=
"int" default=
"0"/>
2497 <class name=
"NcPaintEvent" oldname=
"wxNcPaintEvent" module=
"core">
2498 <baseclass name=
"Event"/>
2499 <constructor name=
"NcPaintEvent" overloaded=
"no">
2500 <autodoc>__init__(int winid=
0) -
> NcPaintEvent
</autodoc>
2502 <param name=
"winid" type=
"int" default=
"0"/>
2507 #---------------------------------------------------------------------------
2509 <class name=
"EraseEvent" oldname=
"wxEraseEvent" module=
"core">
2510 <baseclass name=
"Event"/>
2511 <constructor name=
"EraseEvent" overloaded=
"no">
2512 <autodoc>__init__(int Id=
0, DC dc=(wxDC *) NULL) -
> EraseEvent
</autodoc>
2514 <param name=
"Id" type=
"int" default=
"0"/>
2515 <param name=
"dc" type=
"wxDC" default=
"(wxDC *) NULL"/>
2518 <method name=
"GetDC" type=
"wxDC" overloaded=
"no">
2519 <autodoc>GetDC() -
> DC
</autodoc>
2523 #---------------------------------------------------------------------------
2525 <class name=
"FocusEvent" oldname=
"wxFocusEvent" module=
"core">
2526 <baseclass name=
"Event"/>
2527 <constructor name=
"FocusEvent" overloaded=
"no">
2528 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> FocusEvent
</autodoc>
2530 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2531 <param name=
"winid" type=
"int" default=
"0"/>
2534 <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no">
2535 <autodoc>GetWindow() -
> Window
</autodoc>
2537 <method name=
"SetWindow" type=
"" overloaded=
"no">
2538 <autodoc>SetWindow(Window win)
</autodoc>
2540 <param name=
"win" type=
"wxWindow" default=
""/>
2545 #---------------------------------------------------------------------------
2547 <class name=
"ChildFocusEvent" oldname=
"wxChildFocusEvent" module=
"core">
2548 <baseclass name=
"CommandEvent"/>
2549 <constructor name=
"ChildFocusEvent" overloaded=
"no">
2550 <autodoc>__init__(Window win=None) -
> ChildFocusEvent
</autodoc>
2552 <param name=
"win" type=
"wxWindow" default=
"NULL"/>
2555 <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no">
2556 <autodoc>GetWindow() -
> Window
</autodoc>
2560 #---------------------------------------------------------------------------
2562 <class name=
"ActivateEvent" oldname=
"wxActivateEvent" module=
"core">
2563 <baseclass name=
"Event"/>
2564 <constructor name=
"ActivateEvent" overloaded=
"no">
2565 <autodoc>__init__(wxEventType type=wxEVT_NULL, bool active=True, int Id=
0) -
> ActivateEvent
</autodoc>
2567 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2568 <param name=
"active" type=
"bool" default=
"True"/>
2569 <param name=
"Id" type=
"int" default=
"0"/>
2572 <method name=
"GetActive" type=
"bool" overloaded=
"no">
2573 <autodoc>GetActive() -
> bool
</autodoc>
2577 #---------------------------------------------------------------------------
2579 <class name=
"InitDialogEvent" oldname=
"wxInitDialogEvent" module=
"core">
2580 <baseclass name=
"Event"/>
2581 <constructor name=
"InitDialogEvent" overloaded=
"no">
2582 <autodoc>__init__(int Id=
0) -
> InitDialogEvent
</autodoc>
2584 <param name=
"Id" type=
"int" default=
"0"/>
2589 #---------------------------------------------------------------------------
2591 <class name=
"MenuEvent" oldname=
"wxMenuEvent" module=
"core">
2592 <baseclass name=
"Event"/>
2593 <constructor name=
"MenuEvent" overloaded=
"no">
2594 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Menu menu=None) -
> MenuEvent
</autodoc>
2596 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2597 <param name=
"winid" type=
"int" default=
"0"/>
2598 <param name=
"menu" type=
"wxMenu" default=
"NULL"/>
2601 <method name=
"GetMenuId" type=
"int" overloaded=
"no">
2602 <autodoc>GetMenuId() -
> int
</autodoc>
2604 <method name=
"IsPopup" type=
"bool" overloaded=
"no">
2605 <autodoc>IsPopup() -
> bool
</autodoc>
2607 <method name=
"GetMenu" type=
"wxMenu" overloaded=
"no">
2608 <autodoc>GetMenu() -
> Menu
</autodoc>
2612 #---------------------------------------------------------------------------
2614 <class name=
"CloseEvent" oldname=
"wxCloseEvent" module=
"core">
2615 <baseclass name=
"Event"/>
2616 <constructor name=
"CloseEvent" overloaded=
"no">
2617 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0) -
> CloseEvent
</autodoc>
2619 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2620 <param name=
"winid" type=
"int" default=
"0"/>
2623 <method name=
"SetLoggingOff" type=
"" overloaded=
"no">
2624 <autodoc>SetLoggingOff(bool logOff)
</autodoc>
2626 <param name=
"logOff" type=
"bool" default=
""/>
2629 <method name=
"GetLoggingOff" type=
"bool" overloaded=
"no">
2630 <autodoc>GetLoggingOff() -
> bool
</autodoc>
2632 <method name=
"Veto" type=
"" overloaded=
"no">
2633 <autodoc>Veto(bool veto=True)
</autodoc>
2635 <param name=
"veto" type=
"bool" default=
"True"/>
2638 <method name=
"SetCanVeto" type=
"" overloaded=
"no">
2639 <autodoc>SetCanVeto(bool canVeto)
</autodoc>
2641 <param name=
"canVeto" type=
"bool" default=
""/>
2644 <method name=
"CanVeto" type=
"bool" overloaded=
"no">
2645 <autodoc>CanVeto() -
> bool
</autodoc>
2647 <method name=
"GetVeto" type=
"bool" overloaded=
"no">
2648 <autodoc>GetVeto() -
> bool
</autodoc>
2652 #---------------------------------------------------------------------------
2654 <class name=
"ShowEvent" oldname=
"wxShowEvent" module=
"core">
2655 <baseclass name=
"Event"/>
2656 <constructor name=
"ShowEvent" overloaded=
"no">
2657 <autodoc>__init__(int winid=
0, bool show=False) -
> ShowEvent
</autodoc>
2659 <param name=
"winid" type=
"int" default=
"0"/>
2660 <param name=
"show" type=
"bool" default=
"False"/>
2663 <method name=
"SetShow" type=
"" overloaded=
"no">
2664 <autodoc>SetShow(bool show)
</autodoc>
2666 <param name=
"show" type=
"bool" default=
""/>
2669 <method name=
"GetShow" type=
"bool" overloaded=
"no">
2670 <autodoc>GetShow() -
> bool
</autodoc>
2674 #---------------------------------------------------------------------------
2676 <class name=
"IconizeEvent" oldname=
"wxIconizeEvent" module=
"core">
2677 <baseclass name=
"Event"/>
2678 <constructor name=
"IconizeEvent" overloaded=
"no">
2679 <autodoc>__init__(int id=
0, bool iconized=True) -
> IconizeEvent
</autodoc>
2681 <param name=
"id" type=
"int" default=
"0"/>
2682 <param name=
"iconized" type=
"bool" default=
"True"/>
2685 <method name=
"Iconized" type=
"bool" overloaded=
"no">
2686 <autodoc>Iconized() -
> bool
</autodoc>
2690 #---------------------------------------------------------------------------
2692 <class name=
"MaximizeEvent" oldname=
"wxMaximizeEvent" module=
"core">
2693 <baseclass name=
"Event"/>
2694 <constructor name=
"MaximizeEvent" overloaded=
"no">
2695 <autodoc>__init__(int id=
0) -
> MaximizeEvent
</autodoc>
2697 <param name=
"id" type=
"int" default=
"0"/>
2702 #---------------------------------------------------------------------------
2704 <class name=
"DropFilesEvent" oldname=
"wxDropFilesEvent" module=
"core">
2705 <baseclass name=
"Event"/>
2706 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
2707 <autodoc>GetPosition() -
> Point
</autodoc>
2709 <method name=
"GetNumberOfFiles" type=
"int" overloaded=
"no">
2710 <autodoc>GetNumberOfFiles() -
> int
</autodoc>
2712 <method name=
"GetFiles" type=
"PyObject" overloaded=
"no">
2713 <autodoc>GetFiles() -
> PyObject
</autodoc>
2717 #---------------------------------------------------------------------------
2719 <class name=
"UpdateUIEvent" oldname=
"wxUpdateUIEvent" module=
"core">
2720 <baseclass name=
"CommandEvent"/>
2721 <constructor name=
"UpdateUIEvent" overloaded=
"no">
2722 <autodoc>__init__(int commandId=
0) -
> UpdateUIEvent
</autodoc>
2724 <param name=
"commandId" type=
"int" default=
"0"/>
2727 <method name=
"GetChecked" type=
"bool" overloaded=
"no">
2728 <autodoc>GetChecked() -
> bool
</autodoc>
2730 <method name=
"GetEnabled" type=
"bool" overloaded=
"no">
2731 <autodoc>GetEnabled() -
> bool
</autodoc>
2733 <method name=
"GetText" type=
"String" overloaded=
"no">
2734 <autodoc>GetText() -
> String
</autodoc>
2736 <method name=
"GetSetText" type=
"bool" overloaded=
"no">
2737 <autodoc>GetSetText() -
> bool
</autodoc>
2739 <method name=
"GetSetChecked" type=
"bool" overloaded=
"no">
2740 <autodoc>GetSetChecked() -
> bool
</autodoc>
2742 <method name=
"GetSetEnabled" type=
"bool" overloaded=
"no">
2743 <autodoc>GetSetEnabled() -
> bool
</autodoc>
2745 <method name=
"Check" type=
"" overloaded=
"no">
2746 <autodoc>Check(bool check)
</autodoc>
2748 <param name=
"check" type=
"bool" default=
""/>
2751 <method name=
"Enable" type=
"" overloaded=
"no">
2752 <autodoc>Enable(bool enable)
</autodoc>
2754 <param name=
"enable" type=
"bool" default=
""/>
2757 <method name=
"SetText" type=
"" overloaded=
"no">
2758 <autodoc>SetText(String text)
</autodoc>
2760 <param name=
"text" type=
"String" default=
""/>
2763 <staticmethod name=
"SetUpdateInterval" type=
"" overloaded=
"no">
2764 <autodoc>SetUpdateInterval(long updateInterval)
</autodoc>
2766 <param name=
"updateInterval" type=
"long" default=
""/>
2769 <staticmethod name=
"GetUpdateInterval" type=
"long" overloaded=
"no">
2770 <autodoc>GetUpdateInterval() -
> long
</autodoc>
2772 <staticmethod name=
"CanUpdate" type=
"bool" overloaded=
"no">
2773 <autodoc>CanUpdate(Window win) -
> bool
</autodoc>
2775 <param name=
"win" type=
"wxWindow" default=
""/>
2778 <staticmethod name=
"ResetUpdateTime" type=
"" overloaded=
"no">
2779 <autodoc>ResetUpdateTime()
</autodoc>
2781 <staticmethod name=
"SetMode" type=
"" overloaded=
"no">
2782 <autodoc>SetMode(int mode)
</autodoc>
2784 <param name=
"mode" type=
"wxUpdateUIMode" default=
""/>
2787 <staticmethod name=
"GetMode" type=
"wxUpdateUIMode" overloaded=
"no">
2788 <autodoc>GetMode() -
> int
</autodoc>
2792 #---------------------------------------------------------------------------
2794 <class name=
"SysColourChangedEvent" oldname=
"wxSysColourChangedEvent" module=
"core">
2795 <baseclass name=
"Event"/>
2796 <constructor name=
"SysColourChangedEvent" overloaded=
"no">
2797 <autodoc>__init__() -
> SysColourChangedEvent
</autodoc>
2801 #---------------------------------------------------------------------------
2803 <class name=
"MouseCaptureChangedEvent" oldname=
"wxMouseCaptureChangedEvent" module=
"core">
2804 <baseclass name=
"Event"/>
2805 <constructor name=
"MouseCaptureChangedEvent" overloaded=
"no">
2806 <autodoc>__init__(int winid=
0, Window gainedCapture=None) -
> MouseCaptureChangedEvent
</autodoc>
2808 <param name=
"winid" type=
"int" default=
"0"/>
2809 <param name=
"gainedCapture" type=
"wxWindow" default=
"NULL"/>
2812 <method name=
"GetCapturedWindow" type=
"wxWindow" overloaded=
"no">
2813 <autodoc>GetCapturedWindow() -
> Window
</autodoc>
2817 #---------------------------------------------------------------------------
2819 <class name=
"DisplayChangedEvent" oldname=
"wxDisplayChangedEvent" module=
"core">
2820 <baseclass name=
"Event"/>
2821 <constructor name=
"DisplayChangedEvent" overloaded=
"no">
2822 <autodoc>__init__() -
> DisplayChangedEvent
</autodoc>
2826 #---------------------------------------------------------------------------
2828 <class name=
"PaletteChangedEvent" oldname=
"wxPaletteChangedEvent" module=
"core">
2829 <baseclass name=
"Event"/>
2830 <constructor name=
"PaletteChangedEvent" overloaded=
"no">
2831 <autodoc>__init__(int id=
0) -
> PaletteChangedEvent
</autodoc>
2833 <param name=
"id" type=
"int" default=
"0"/>
2836 <method name=
"SetChangedWindow" type=
"" overloaded=
"no">
2837 <autodoc>SetChangedWindow(Window win)
</autodoc>
2839 <param name=
"win" type=
"wxWindow" default=
""/>
2842 <method name=
"GetChangedWindow" type=
"wxWindow" overloaded=
"no">
2843 <autodoc>GetChangedWindow() -
> Window
</autodoc>
2847 #---------------------------------------------------------------------------
2849 <class name=
"QueryNewPaletteEvent" oldname=
"wxQueryNewPaletteEvent" module=
"core">
2850 <baseclass name=
"Event"/>
2851 <constructor name=
"QueryNewPaletteEvent" overloaded=
"no">
2852 <autodoc>__init__(int winid=
0) -
> QueryNewPaletteEvent
</autodoc>
2854 <param name=
"winid" type=
"int" default=
"0"/>
2857 <method name=
"SetPaletteRealized" type=
"" overloaded=
"no">
2858 <autodoc>SetPaletteRealized(bool realized)
</autodoc>
2860 <param name=
"realized" type=
"bool" default=
""/>
2863 <method name=
"GetPaletteRealized" type=
"bool" overloaded=
"no">
2864 <autodoc>GetPaletteRealized() -
> bool
</autodoc>
2868 #---------------------------------------------------------------------------
2870 <class name=
"NavigationKeyEvent" oldname=
"wxNavigationKeyEvent" module=
"core">
2871 <baseclass name=
"Event"/>
2872 <constructor name=
"NavigationKeyEvent" overloaded=
"no">
2873 <autodoc>__init__() -
> NavigationKeyEvent
</autodoc>
2875 <method name=
"GetDirection" type=
"bool" overloaded=
"no">
2876 <autodoc>GetDirection() -
> bool
</autodoc>
2878 <method name=
"SetDirection" type=
"" overloaded=
"no">
2879 <autodoc>SetDirection(bool bForward)
</autodoc>
2881 <param name=
"bForward" type=
"bool" default=
""/>
2884 <method name=
"IsWindowChange" type=
"bool" overloaded=
"no">
2885 <autodoc>IsWindowChange() -
> bool
</autodoc>
2887 <method name=
"SetWindowChange" type=
"" overloaded=
"no">
2888 <autodoc>SetWindowChange(bool bIs)
</autodoc>
2890 <param name=
"bIs" type=
"bool" default=
""/>
2893 <method name=
"GetCurrentFocus" type=
"wxWindow" overloaded=
"no">
2894 <autodoc>GetCurrentFocus() -
> Window
</autodoc>
2896 <method name=
"SetCurrentFocus" type=
"" overloaded=
"no">
2897 <autodoc>SetCurrentFocus(Window win)
</autodoc>
2899 <param name=
"win" type=
"wxWindow" default=
""/>
2904 #---------------------------------------------------------------------------
2906 <class name=
"WindowCreateEvent" oldname=
"wxWindowCreateEvent" module=
"core">
2907 <baseclass name=
"CommandEvent"/>
2908 <constructor name=
"WindowCreateEvent" overloaded=
"no">
2909 <autodoc>__init__(Window win=None) -
> WindowCreateEvent
</autodoc>
2911 <param name=
"win" type=
"wxWindow" default=
"NULL"/>
2914 <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no">
2915 <autodoc>GetWindow() -
> Window
</autodoc>
2918 <class name=
"WindowDestroyEvent" oldname=
"wxWindowDestroyEvent" module=
"core">
2919 <baseclass name=
"CommandEvent"/>
2920 <constructor name=
"WindowDestroyEvent" overloaded=
"no">
2921 <autodoc>__init__(Window win=None) -
> WindowDestroyEvent
</autodoc>
2923 <param name=
"win" type=
"wxWindow" default=
"NULL"/>
2926 <method name=
"GetWindow" type=
"wxWindow" overloaded=
"no">
2927 <autodoc>GetWindow() -
> Window
</autodoc>
2931 #---------------------------------------------------------------------------
2933 <class name=
"ContextMenuEvent" oldname=
"wxContextMenuEvent" module=
"core">
2934 <baseclass name=
"CommandEvent"/>
2935 <constructor name=
"ContextMenuEvent" overloaded=
"no">
2936 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> ContextMenuEvent
</autodoc>
2938 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
2939 <param name=
"winid" type=
"int" default=
"0"/>
2940 <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/>
2943 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
2944 <autodoc>GetPosition() -
> Point
</autodoc>
2946 <method name=
"SetPosition" type=
"" overloaded=
"no">
2947 <autodoc>SetPosition(Point pos)
</autodoc>
2949 <param name=
"pos" type=
"Point" default=
""/>
2954 #---------------------------------------------------------------------------
2956 <class name=
"IdleEvent" oldname=
"wxIdleEvent" module=
"core">
2957 <baseclass name=
"Event"/>
2958 <constructor name=
"IdleEvent" overloaded=
"no">
2959 <autodoc>__init__() -
> IdleEvent
</autodoc>
2961 <method name=
"RequestMore" type=
"" overloaded=
"no">
2962 <autodoc>RequestMore(bool needMore=True)
</autodoc>
2964 <param name=
"needMore" type=
"bool" default=
"True"/>
2967 <method name=
"MoreRequested" type=
"bool" overloaded=
"no">
2968 <autodoc>MoreRequested() -
> bool
</autodoc>
2970 <staticmethod name=
"SetMode" type=
"" overloaded=
"no">
2971 <autodoc>SetMode(int mode)
</autodoc>
2973 <param name=
"mode" type=
"wxIdleMode" default=
""/>
2976 <staticmethod name=
"GetMode" type=
"wxIdleMode" overloaded=
"no">
2977 <autodoc>GetMode() -
> int
</autodoc>
2979 <staticmethod name=
"CanSend" type=
"bool" overloaded=
"no">
2980 <autodoc>CanSend(Window win) -
> bool
</autodoc>
2982 <param name=
"win" type=
"wxWindow" default=
""/>
2987 #---------------------------------------------------------------------------
2989 <class name=
"PyEvent" oldname=
"wxPyEvent" module=
"core">
2990 <baseclass name=
"Event"/>
2991 <constructor name=
"PyEvent" overloaded=
"no">
2992 <autodoc>__init__(int winid=
0, wxEventType commandType=wxEVT_NULL) -
> PyEvent
</autodoc>
2994 <param name=
"winid" type=
"int" default=
"0"/>
2995 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
2998 <destructor name=
"~wxPyEvent" overloaded=
"no">
2999 <autodoc>__del__()
</autodoc>
3001 <method name=
"SetSelf" type=
"" overloaded=
"no">
3002 <autodoc>SetSelf(PyObject self)
</autodoc>
3004 <param name=
"self" type=
"PyObject" default=
""/>
3007 <method name=
"GetSelf" type=
"PyObject" overloaded=
"no">
3008 <autodoc>GetSelf() -
> PyObject
</autodoc>
3011 <class name=
"PyCommandEvent" oldname=
"wxPyCommandEvent" module=
"core">
3012 <baseclass name=
"CommandEvent"/>
3013 <constructor name=
"PyCommandEvent" overloaded=
"no">
3014 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> PyCommandEvent
</autodoc>
3016 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
3017 <param name=
"id" type=
"int" default=
"0"/>
3020 <destructor name=
"~wxPyCommandEvent" overloaded=
"no">
3021 <autodoc>__del__()
</autodoc>
3023 <method name=
"SetSelf" type=
"" overloaded=
"no">
3024 <autodoc>SetSelf(PyObject self)
</autodoc>
3026 <param name=
"self" type=
"PyObject" default=
""/>
3029 <method name=
"GetSelf" type=
"PyObject" overloaded=
"no">
3030 <autodoc>GetSelf() -
> PyObject
</autodoc>
3034 #---------------------------------------------------------------------------
3036 <class name=
"PyApp" oldname=
"wxPyApp" module=
"core">
3037 <baseclass name=
"EvtHandler"/>
3038 <constructor name=
"PyApp" overloaded=
"no">
3039 <autodoc>__init__() -
> PyApp
</autodoc>
3040 <docstring>Create a new application object, starting the bootstrap process.
</docstring>
3042 <destructor name=
"~wxPyApp" overloaded=
"no">
3043 <autodoc>__del__()
</autodoc>
3045 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
3046 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
3048 <param name=
"self" type=
"PyObject" default=
""/>
3049 <param name=
"_class" type=
"PyObject" default=
""/>
3052 <method name=
"GetAppName" type=
"String" overloaded=
"no">
3053 <autodoc>GetAppName() -
> String
</autodoc>
3054 <docstring>Get the application name.
</docstring>
3056 <method name=
"SetAppName" type=
"" overloaded=
"no">
3057 <autodoc>SetAppName(String name)
</autodoc>
3058 <docstring>Set the application name. This value may be used automatically
3059 by wx.Config and such.
</docstring>
3061 <param name=
"name" type=
"String" default=
""/>
3064 <method name=
"GetClassName" type=
"String" overloaded=
"no">
3065 <autodoc>GetClassName() -
> String
</autodoc>
3066 <docstring>Get the application's class name.
</docstring>
3068 <method name=
"SetClassName" type=
"" overloaded=
"no">
3069 <autodoc>SetClassName(String name)
</autodoc>
3070 <docstring>Set the application's class name. This value may be used for X-resources if
3071 applicable for the platform
</docstring>
3073 <param name=
"name" type=
"String" default=
""/>
3076 <method name=
"GetVendorName" type=
"String" overloaded=
"no">
3077 <autodoc>GetVendorName() -
> String
</autodoc>
3078 <docstring>Get the application's vendor name.
</docstring>
3080 <method name=
"SetVendorName" type=
"" overloaded=
"no">
3081 <autodoc>SetVendorName(String name)
</autodoc>
3082 <docstring>Set the application's vendor name. This value may be used automatically
3083 by wx.Config and such.
</docstring>
3085 <param name=
"name" type=
"String" default=
""/>
3088 <method name=
"GetTraits" type=
"wxAppTraits" overloaded=
"no">
3089 <autodoc>GetTraits() -
> wxAppTraits
</autodoc>
3090 <docstring>Create the app traits object to which we delegate for everything which either
3091 should be configurable by the user (then he can change the default behaviour
3092 simply by overriding CreateTraits() and returning his own traits object) or
3093 which is GUI/console dependent as then wx.AppTraits allows us to abstract the
3094 differences behind the common facade
</docstring>
3096 <method name=
"ProcessPendingEvents" type=
"" overloaded=
"no">
3097 <autodoc>ProcessPendingEvents()
</autodoc>
3098 <docstring>Process all events in the Pending Events list -- it is necessary to call this
3099 function to process posted events. This happens during each event loop
3100 iteration.
</docstring>
3102 <method name=
"Yield" type=
"bool" overloaded=
"no">
3103 <autodoc>Yield(bool onlyIfNeeded=False) -
> bool
</autodoc>
3104 <docstring>Process all currently pending events right now, instead of waiting until
3105 return to the event loop. It is an error to call Yield() recursively unless
3106 the value of onlyIfNeeded is True.
3108 WARNING: This function is dangerous as it can lead to unexpected
3109 reentrancies (i.e. when called from an event handler it
3110 may result in calling the same event handler again), use
3111 with _extreme_ care or, better, don't use at all!
3114 <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/>
3117 <method name=
"WakeUpIdle" type=
"" overloaded=
"no">
3118 <autodoc>WakeUpIdle()
</autodoc>
3119 <docstring>Make sure that idle events are sent again
</docstring>
3121 <method name=
"MainLoop" type=
"int" overloaded=
"no">
3122 <autodoc>MainLoop() -
> int
</autodoc>
3123 <docstring>Execute the main GUI loop, the function returns when the loop ends.
</docstring>
3125 <method name=
"Exit" type=
"" overloaded=
"no">
3126 <autodoc>Exit()
</autodoc>
3127 <docstring>Exit the main loop thus terminating the application.
</docstring>
3129 <method name=
"ExitMainLoop" type=
"" overloaded=
"no">
3130 <autodoc>ExitMainLoop()
</autodoc>
3131 <docstring>Exit the main GUI loop during the next iteration (i.e. it does not
3132 stop the program immediately!)
</docstring>
3134 <method name=
"Pending" type=
"bool" overloaded=
"no">
3135 <autodoc>Pending() -
> bool
</autodoc>
3136 <docstring>Returns True if there are unprocessed events in the event queue.
</docstring>
3138 <method name=
"Dispatch" type=
"bool" overloaded=
"no">
3139 <autodoc>Dispatch() -
> bool
</autodoc>
3140 <docstring>Process the first event in the event queue (blocks until an event
3141 appears if there are none currently)
</docstring>
3143 <method name=
"ProcessIdle" type=
"bool" overloaded=
"no">
3144 <autodoc>ProcessIdle() -
> bool
</autodoc>
3145 <docstring>Called from the MainLoop when the application becomes idle and sends an
3146 IdleEvent to all interested parties. Returns True is more idle events are
3147 needed, False if not.
</docstring>
3149 <method name=
"SendIdleEvents" type=
"bool" overloaded=
"no">
3150 <autodoc>SendIdleEvents(Window win, IdleEvent event) -
> bool
</autodoc>
3151 <docstring>Send idle event to window and all subwindows. Returns True if more idle time
3152 is requested.
</docstring>
3154 <param name=
"win" type=
"wxWindow" default=
""/>
3155 <param name=
"event" type=
"IdleEvent" default=
""/>
3158 <method name=
"IsActive" type=
"bool" overloaded=
"no">
3159 <autodoc>IsActive() -
> bool
</autodoc>
3160 <docstring>Return True if our app has focus.
</docstring>
3162 <method name=
"SetTopWindow" type=
"" overloaded=
"no">
3163 <autodoc>SetTopWindow(Window win)
</autodoc>
3164 <docstring>Set the "main" top level window
</docstring>
3166 <param name=
"win" type=
"wxWindow" default=
""/>
3169 <method name=
"GetTopWindow" type=
"wxWindow" overloaded=
"no">
3170 <autodoc>GetTopWindow() -
> Window
</autodoc>
3171 <docstring>Return the "main" top level window (if it hadn't been set previously with
3172 SetTopWindow(), will return just some top level window and, if there not any,
3173 will return None)
</docstring>
3175 <method name=
"SetExitOnFrameDelete" type=
"" overloaded=
"no">
3176 <autodoc>SetExitOnFrameDelete(bool flag)
</autodoc>
3177 <docstring>Control the exit behaviour: by default, the program will exit the main loop
3178 (and so, usually, terminate) when the last top-level program window is
3179 deleted. Beware that if you disable this behaviour (with
3180 SetExitOnFrameDelete(False)), you'll have to call ExitMainLoop() explicitly
3184 <param name=
"flag" type=
"bool" default=
""/>
3187 <method name=
"GetExitOnFrameDelete" type=
"bool" overloaded=
"no">
3188 <autodoc>GetExitOnFrameDelete() -
> bool
</autodoc>
3189 <docstring>Get the current exit behaviour setting.
</docstring>
3191 <method name=
"SetUseBestVisual" type=
"" overloaded=
"no">
3192 <autodoc>SetUseBestVisual(bool flag)
</autodoc>
3193 <docstring>Set whether the app should try to use the best available visual on systems
3194 where more than one is available, (Sun, SGI, XFree86
4, etc.)
</docstring>
3196 <param name=
"flag" type=
"bool" default=
""/>
3199 <method name=
"GetUseBestVisual" type=
"bool" overloaded=
"no">
3200 <autodoc>GetUseBestVisual() -
> bool
</autodoc>
3201 <docstring>Get current UseBestVisual setting.
</docstring>
3203 <method name=
"SetPrintMode" type=
"" overloaded=
"no">
3204 <autodoc>SetPrintMode(int mode)
</autodoc>
3206 <param name=
"mode" type=
"int" default=
""/>
3209 <method name=
"GetPrintMode" type=
"int" overloaded=
"no">
3210 <autodoc>GetPrintMode() -
> int
</autodoc>
3212 <method name=
"SetAssertMode" type=
"" overloaded=
"no">
3213 <autodoc>SetAssertMode(int mode)
</autodoc>
3214 <docstring>Set the OnAssert behaviour for debug and hybrid builds. The following flags
3215 may be or'd together:
3217 wx.PYAPP_ASSERT_SUPPRESS Don't do anything
3218 wx.PYAPP_ASSERT_EXCEPTION Turn it into a Python exception if possible (default)
3219 wx.PYAPP_ASSERT_DIALOG Display a message dialog
3220 wx.PYAPP_ASSERT_LOG Write the assertion info to the wx.Log
3223 <param name=
"mode" type=
"int" default=
""/>
3226 <method name=
"GetAssertMode" type=
"int" overloaded=
"no">
3227 <autodoc>GetAssertMode() -
> int
</autodoc>
3228 <docstring>Get the current OnAssert behaviour setting.
</docstring>
3230 <staticmethod name=
"GetMacSupportPCMenuShortcuts" type=
"bool" overloaded=
"no">
3231 <autodoc>GetMacSupportPCMenuShortcuts() -
> bool
</autodoc>
3233 <staticmethod name=
"GetMacAboutMenuItemId" type=
"long" overloaded=
"no">
3234 <autodoc>GetMacAboutMenuItemId() -
> long
</autodoc>
3236 <staticmethod name=
"GetMacPreferencesMenuItemId" type=
"long" overloaded=
"no">
3237 <autodoc>GetMacPreferencesMenuItemId() -
> long
</autodoc>
3239 <staticmethod name=
"GetMacExitMenuItemId" type=
"long" overloaded=
"no">
3240 <autodoc>GetMacExitMenuItemId() -
> long
</autodoc>
3242 <staticmethod name=
"GetMacHelpMenuTitleName" type=
"String" overloaded=
"no">
3243 <autodoc>GetMacHelpMenuTitleName() -
> String
</autodoc>
3245 <staticmethod name=
"SetMacSupportPCMenuShortcuts" type=
"" overloaded=
"no">
3246 <autodoc>SetMacSupportPCMenuShortcuts(bool val)
</autodoc>
3248 <param name=
"val" type=
"bool" default=
""/>
3251 <staticmethod name=
"SetMacAboutMenuItemId" type=
"" overloaded=
"no">
3252 <autodoc>SetMacAboutMenuItemId(long val)
</autodoc>
3254 <param name=
"val" type=
"long" default=
""/>
3257 <staticmethod name=
"SetMacPreferencesMenuItemId" type=
"" overloaded=
"no">
3258 <autodoc>SetMacPreferencesMenuItemId(long val)
</autodoc>
3260 <param name=
"val" type=
"long" default=
""/>
3263 <staticmethod name=
"SetMacExitMenuItemId" type=
"" overloaded=
"no">
3264 <autodoc>SetMacExitMenuItemId(long val)
</autodoc>
3266 <param name=
"val" type=
"long" default=
""/>
3269 <staticmethod name=
"SetMacHelpMenuTitleName" type=
"" overloaded=
"no">
3270 <autodoc>SetMacHelpMenuTitleName(String val)
</autodoc>
3272 <param name=
"val" type=
"String" default=
""/>
3275 <method name=
"_BootstrapApp" type=
"" overloaded=
"no">
3276 <autodoc>_BootstrapApp()
</autodoc>
3277 <docstring>For internal use only
</docstring>
3279 <staticmethod name=
"GetComCtl32Version" type=
"int" overloaded=
"no">
3280 <autodoc>GetComCtl32Version() -
> int
</autodoc>
3281 <docstring>Returns
400,
470,
471 for comctl32.dll
4.00,
4.70,
4.71 or
0 if it
3282 wasn't found at all. Raises an exception on non-Windows platforms.
</docstring>
3286 #---------------------------------------------------------------------------
3288 <method name=
"Exit" oldname=
"wxExit" type=
"" overloaded=
"no">
3289 <autodoc>Exit()
</autodoc>
3290 <docstring>Force an exit of the application. Convenience for wx.GetApp().Exit()
</docstring>
3292 <method name=
"Yield" oldname=
"wxYield" type=
"bool" overloaded=
"no">
3293 <autodoc>Yield() -
> bool
</autodoc>
3294 <docstring>Yield to other apps/messages. Convenience for wx.GetApp().Yield()
</docstring>
3296 <method name=
"YieldIfNeeded" oldname=
"wxYieldIfNeeded" type=
"bool" overloaded=
"no">
3297 <autodoc>YieldIfNeeded() -
> bool
</autodoc>
3298 <docstring>Yield to other apps/messages. Convenience for wx.GetApp().Yield(True)
</docstring>
3300 <method name=
"SafeYield" oldname=
"wxSafeYield" type=
"bool" overloaded=
"no">
3301 <autodoc>SafeYield(Window win=None, bool onlyIfNeeded=False) -
> bool
</autodoc>
3302 <docstring>This function is similar to wx.Yield, except that it disables the user input
3303 to all program windows before calling wx.Yield and re-enables it again
3304 afterwards. If win is not None, this window will remain enabled, allowing the
3305 implementation of some limited user interaction.
3307 Returns the result of the call to wx.Yield.
</docstring>
3309 <param name=
"win" type=
"wxWindow" default=
"NULL"/>
3310 <param name=
"onlyIfNeeded" type=
"bool" default=
"False"/>
3313 <method name=
"WakeUpIdle" oldname=
"wxWakeUpIdle" type=
"" overloaded=
"no">
3314 <autodoc>WakeUpIdle()
</autodoc>
3315 <docstring>Cause the message queue to become empty again, so idle events will be sent.
</docstring>
3317 <method name=
"PostEvent" oldname=
"wxPostEvent" type=
"" overloaded=
"no">
3318 <autodoc>PostEvent(EvtHandler dest, Event event)
</autodoc>
3319 <docstring>Send an event to a window or other wx.EvtHandler to be processed later.
</docstring>
3321 <param name=
"dest" type=
"EvtHandler" default=
""/>
3322 <param name=
"event" type=
"Event" default=
""/>
3325 <method name=
"App_CleanUp" oldname=
"wxApp_CleanUp" type=
"" overloaded=
"no">
3326 <autodoc>App_CleanUp()
</autodoc>
3327 <docstring>For internal use only, it is used to cleanup after wxWindows when Python shuts down.
</docstring>
3329 <method name=
"GetApp" oldname=
"wxGetApp" type=
"PyApp" overloaded=
"no">
3330 <autodoc>GetApp() -
> PyApp
</autodoc>
3331 <docstring>Return a reference to the current wx.App object.
</docstring>
3334 #----------------------------------------------------------------------
3336 class PyOnDemandOutputWindow:
3338 A class that can be used for redirecting Python's stdout and
3339 stderr streams. It will do nothing until something is wrriten to
3340 the stream at which point it will create a Frame with a text area
3341 and write the text there.
3343 def __init__(self, title = "wxPython: stdout/stderr"):
3348 def SetParent(self, parent):
3349 """Set the window to be used as the popup Frame's parent."""
3350 self.parent = parent
3353 def CreateOutputWindow(self, st):
3354 self.frame = wx.Frame(self.parent, -
1, self.title,
3355 style=wx.DEFAULT_FRAME_STYLE | wx.NO_FULL_REPAINT_ON_RESIZE)
3356 self.text = wx.TextCtrl(self.frame, -
1, "",
3357 style = wx.TE_MULTILINE | wx.TE_READONLY)
3358 self.text.AppendText(st)
3359 self.frame.SetSize((
450,
300))
3360 self.frame.Show(True)
3361 EVT_CLOSE(self.frame, self.OnCloseWindow)
3364 # These methods provide the file-like output behaviour.
3365 def write(self, text):
3367 Create the output window if needed and write the string to it.
3368 If not called in the context of the gui thread then uses
3369 CallAfter to do the work there.
3371 if self.frame is None:
3372 if not wx.Thread_IsMain():
3373 wx.CallAfter(self.CreateOutputWindow, text)
3375 self.CreateOutputWindow(text)
3377 if not wx.Thread_IsMain():
3378 wx.CallAfter(self.text.AppendText, text)
3380 self.text.AppendText(text)
3384 if self.frame is not None:
3385 wx.CallAfter(self.frame.Close)
3388 def OnCloseWindow(self, event):
3389 if self.frame is not None:
3390 self.frame.Destroy()
3394 #----------------------------------------------------------------------
3396 _defRedirect = (wx.Platform == '__WXMSW__' or wx.Platform == '__WXMAC__')
3398 class App(wx.PyApp):
3400 The main application class. Derive from this and implement an OnInit
3401 method that creates a frame and then calls self.SetTopWindow(frame)
3403 outputWindowClass = PyOnDemandOutputWindow
3405 def __init__(self, redirect=_defRedirect, filename=None, useBestVisual=False):
3406 wx.PyApp.__init__(self)
3408 if wx.Platform == "__WXMAC__":
3411 if not MacOS.WMAvailable():
3413 This program needs access to the screen. Please run with 'pythonw',
3414 not 'python', and only when you are logged in on the main display of
3420 # This has to be done before OnInit
3421 self.SetUseBestVisual(useBestVisual)
3423 # Set the default handler for SIGINT. This fixes a problem
3424 # where if Ctrl-C is pressed in the console that started this
3425 # app then it will not appear to do anything, (not even send
3426 # KeyboardInterrupt???) but will later segfault on exit. By
3427 # setting the default handler then the app will exit, as
3428 # expected (depending on platform.)
3431 signal.signal(signal.SIGINT, signal.SIG_DFL)
3435 # Save and redirect the stdio to a window?
3436 self.stdioWin = None
3437 self.saveStdio = (_sys.stdout, _sys.stderr)
3439 self.RedirectStdio(filename)
3441 # This finishes the initialization of wxWindows and then calls
3442 # the OnInit that should be present in the derived class
3443 self._BootstrapApp()
3448 self.RestoreStdio() # Just in case the MainLoop was overridden
3453 def SetTopWindow(self, frame):
3454 """Set the \\"main\\" top level window"""
3456 self.stdioWin.SetParent(frame)
3457 wx.PyApp.SetTopWindow(self, frame)
3461 """Execute the main GUI event loop"""
3462 wx.PyApp.MainLoop(self)
3466 def RedirectStdio(self, filename):
3467 """Redirect sys.stdout and sys.stderr to a file or a popup window."""
3469 _sys.stdout = _sys.stderr = open(filename, 'a')
3471 self.stdioWin = self.outputWindowClass()
3472 _sys.stdout = _sys.stderr = self.stdioWin
3475 def RestoreStdio(self):
3476 _sys.stdout, _sys.stderr = self.saveStdio
3480 # change from wxPyApp_ to wxApp_
3481 App_GetMacSupportPCMenuShortcuts = _core.PyApp_GetMacSupportPCMenuShortcuts
3482 App_GetMacAboutMenuItemId = _core.PyApp_GetMacAboutMenuItemId
3483 App_GetMacPreferencesMenuItemId = _core.PyApp_GetMacPreferencesMenuItemId
3484 App_GetMacExitMenuItemId = _core.PyApp_GetMacExitMenuItemId
3485 App_GetMacHelpMenuTitleName = _core.PyApp_GetMacHelpMenuTitleName
3486 App_SetMacSupportPCMenuShortcuts = _core.PyApp_SetMacSupportPCMenuShortcuts
3487 App_SetMacAboutMenuItemId = _core.PyApp_SetMacAboutMenuItemId
3488 App_SetMacPreferencesMenuItemId = _core.PyApp_SetMacPreferencesMenuItemId
3489 App_SetMacExitMenuItemId = _core.PyApp_SetMacExitMenuItemId
3490 App_SetMacHelpMenuTitleName = _core.PyApp_SetMacHelpMenuTitleName
3491 App_GetComCtl32Version = _core.PyApp_GetComCtl32Version
3493 #----------------------------------------------------------------------------
3495 class PySimpleApp(wx.App):
3497 A simple application class. You can just create one of these and
3498 then then make your top level windows later, and not have to worry
3501 def __init__(self, redirect=False, filename=None, useBestVisual=False):
3502 wx.App.__init__(self, redirect, filename, useBestVisual)
3505 wx.InitAllImageHandlers()
3509 # Is anybody using this one?
3510 class PyWidgetTester(wx.App):
3511 def __init__(self, size = (
250,
100)):
3513 wx.App.__init__(self,
0)
3516 self.frame = wx.Frame(None, -
1, "Widget Tester", pos=(
0,
0), size=self.size)
3517 self.SetTopWindow(self.frame)
3520 def SetWidget(self, widgetClass, *args):
3521 w = widgetClass(self.frame, *args)
3522 self.frame.Show(True)
3524 #----------------------------------------------------------------------------
3525 # DO NOT hold any other references to this object. This is how we
3526 # know when to cleanup system resources that wxWin is holding. When
3527 # the sys module is unloaded, the refcount on sys.__wxPythonCleanup
3528 # goes to zero and it calls the wxApp_CleanUp function.
3530 class __wxPyCleanup:
3532 self.cleanup = _core.App_CleanUp
3536 _sys.__wxPythonCleanup = __wxPyCleanup()
3538 ## # another possible solution, but it gets called too early...
3539 ## if sys.version[
0] == '
2':
3541 ## atexit.register(_core.wxApp_CleanUp)
3543 ## sys.exitfunc = _core.wxApp_CleanUp
3546 #----------------------------------------------------------------------------
3549 #---------------------------------------------------------------------------
3551 <class name=
"AcceleratorEntry" oldname=
"wxAcceleratorEntry" module=
"core">
3552 <constructor name=
"AcceleratorEntry" overloaded=
"no">
3553 <autodoc>__init__(int flags=
0, int keyCode=
0, int cmd=
0, MenuItem item=None) -
> AcceleratorEntry
</autodoc>
3555 <param name=
"flags" type=
"int" default=
"0"/>
3556 <param name=
"keyCode" type=
"int" default=
"0"/>
3557 <param name=
"cmd" type=
"int" default=
"0"/>
3558 <param name=
"item" type=
"wxMenuItem" default=
"NULL"/>
3561 <destructor name=
"~wxAcceleratorEntry" overloaded=
"no">
3562 <autodoc>__del__()
</autodoc>
3564 <method name=
"Set" type=
"" overloaded=
"no">
3565 <autodoc>Set(int flags, int keyCode, int cmd, MenuItem item=None)
</autodoc>
3567 <param name=
"flags" type=
"int" default=
""/>
3568 <param name=
"keyCode" type=
"int" default=
""/>
3569 <param name=
"cmd" type=
"int" default=
""/>
3570 <param name=
"item" type=
"wxMenuItem" default=
"NULL"/>
3573 <method name=
"SetMenuItem" type=
"" overloaded=
"no">
3574 <autodoc>SetMenuItem(MenuItem item)
</autodoc>
3576 <param name=
"item" type=
"wxMenuItem" default=
""/>
3579 <method name=
"GetMenuItem" type=
"wxMenuItem" overloaded=
"no">
3580 <autodoc>GetMenuItem() -
> MenuItem
</autodoc>
3582 <method name=
"GetFlags" type=
"int" overloaded=
"no">
3583 <autodoc>GetFlags() -
> int
</autodoc>
3585 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
3586 <autodoc>GetKeyCode() -
> int
</autodoc>
3588 <method name=
"GetCommand" type=
"int" overloaded=
"no">
3589 <autodoc>GetCommand() -
> int
</autodoc>
3592 <class name=
"AcceleratorTable" oldname=
"wxAcceleratorTable" module=
"core">
3593 <baseclass name=
"Object"/>
3594 <constructor name=
"AcceleratorTable" overloaded=
"no">
3595 <autodoc>__init__(entries) -
> AcceleratorTable
</autodoc>
3596 <docstring>Construct an AcceleratorTable from a list of AcceleratorEntry items or
3597 3-tuples (flags, keyCode, cmdID)
</docstring>
3599 <param name=
"n" type=
"int" default=
""/>
3600 <param name=
"entries" type=
"AcceleratorEntry" default=
""/>
3603 <destructor name=
"~wxAcceleratorTable" overloaded=
"no">
3604 <autodoc>__del__()
</autodoc>
3606 <method name=
"Ok" type=
"bool" overloaded=
"no">
3607 <autodoc>Ok() -
> bool
</autodoc>
3610 <method name=
"GetAccelFromString" oldname=
"wxGetAccelFromString" type=
"AcceleratorEntry" overloaded=
"no">
3611 <autodoc>GetAccelFromString(String label) -
> AcceleratorEntry
</autodoc>
3613 <param name=
"label" type=
"String" default=
""/>
3617 #---------------------------------------------------------------------------
3619 <class name=
"Window" oldname=
"wxWindow" module=
"core">
3621 wx.Window is the base class for all windows and represents any visible
3622 object on the screen. All controls, top level windows and so on are
3623 wx.Windows. Sizers and device contexts are not however, as they don't
3624 appear on screen themselves.
3629 wx.SIMPLE_BORDER: Displays a thin border around the window.
3631 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3633 wx.SUNKEN_BORDER: Displays a sunken border.
3635 wx.RAISED_BORDER: Displays a raised border.
3637 wx.STATIC_BORDER: Displays a border suitable for a static
3638 control. Windows only.
3640 wx.NO_BORDER: Displays no border, overriding the default
3641 border style for the window.
3643 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3644 will not receive paint events. Windows only.
3646 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3649 wx.WANTS_CHARS: Use this to indicate that the window
3650 wants to get all char/key events for
3651 all keys - even for keys like TAB or
3652 ENTER which are usually used for
3653 dialog navigation and which wouldn't
3654 be generated without this style. If
3655 you need to use this style in order to
3656 get the arrows or etc., but would
3657 still like to have normal keyboard
3658 navigation take place, you should
3659 create and send a wxNavigationKeyEvent
3660 in response to the key events for Tab
3663 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3664 completely when its size is changed
3665 - you will have to repaint the new
3666 window area manually if you use this
3667 style. As of version
2.5.1 this
3668 style is on by default. Use
3669 wx.FULL_REPAINT_ON_RESIZE to
3672 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3674 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3676 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3677 instead of hiding them when they are
3678 not needed (i.e. when the size of the
3679 window is big enough to not require
3680 the scrollbars to navigate it). This
3681 style is currently only implemented
3682 for wxMSW and wxUniversal and does
3683 nothing on the other platforms.
3685 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3686 the background being repainted, then
3687 children being painted over
3690 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3691 redraw of the window whenever it is
3692 resized instead of redrawing just the
3693 part of the window affected by
3694 resizing. Note that this was the
3695 behaviour by default before
2.5.1
3696 release and that if you experience
3697 redraw problems with the code which
3698 previously used to work you may want
3703 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3704 Validate/TransferDataTo/FromWindow()
3705 only work on direct children of
3706 the window (compatible
3707 behaviour). Set this flag to make
3708 them recursively descend into all
3711 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3712 derived classes are forwarded to
3713 the parent window and so on
3714 recursively by default. Using this
3715 flag for the given window allows
3716 to block this propagation at this
3717 window, i.e. prevent the events
3718 from being propagated further
3719 upwards. Dialogs have this flag on
3722 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3723 the other windows: this must be
3724 used with transient windows as
3725 otherwise there is the risk of
3726 creating a dialog/frame with this
3727 window as a parent which would
3728 lead to a crash if the parent is
3729 destroyed before the child.
3731 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3732 events, even if the mode set by
3733 wx.IdleEvent.SetMode is
3734 wx.IDLE_PROCESS_SPECIFIED.
3736 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3737 update events, even if the mode
3738 set by wxUpdateUIEvent::SetMode is
3739 wxUPDATE_UI_PROCESS_SPECIFIED.
3742 <baseclass name=
"EvtHandler"/>
3743 <constructor name=
"Window" overloaded=
"no">
3744 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3745 long style=
0, String name=PanelNameStr) -
> Window
</autodoc>
3746 <docstring>Construct and show a generic Window.
</docstring>
3750 wx.SIMPLE_BORDER: Displays a thin border around the window.
3752 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3754 wx.SUNKEN_BORDER: Displays a sunken border.
3756 wx.RAISED_BORDER: Displays a raised border.
3758 wx.STATIC_BORDER: Displays a border suitable for a static
3759 control. Windows only.
3761 wx.NO_BORDER: Displays no border, overriding the default
3762 border style for the window.
3764 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3765 will not receive paint events. Windows only.
3767 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3770 wx.WANTS_CHARS: Use this to indicate that the window
3771 wants to get all char/key events for
3772 all keys - even for keys like TAB or
3773 ENTER which are usually used for
3774 dialog navigation and which wouldn't
3775 be generated without this style. If
3776 you need to use this style in order to
3777 get the arrows or etc., but would
3778 still like to have normal keyboard
3779 navigation take place, you should
3780 create and send a wxNavigationKeyEvent
3781 in response to the key events for Tab
3784 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3785 completely when its size is changed
3786 - you will have to repaint the new
3787 window area manually if you use this
3788 style. As of version
2.5.1 this
3789 style is on by default. Use
3790 wx.FULL_REPAINT_ON_RESIZE to
3793 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3795 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3797 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3798 instead of hiding them when they are
3799 not needed (i.e. when the size of the
3800 window is big enough to not require
3801 the scrollbars to navigate it). This
3802 style is currently only implemented
3803 for wxMSW and wxUniversal and does
3804 nothing on the other platforms.
3806 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3807 the background being repainted, then
3808 children being painted over
3811 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3812 redraw of the window whenever it is
3813 resized instead of redrawing just the
3814 part of the window affected by
3815 resizing. Note that this was the
3816 behaviour by default before
2.5.1
3817 release and that if you experience
3818 redraw problems with the code which
3819 previously used to work you may want
3824 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3825 Validate/TransferDataTo/FromWindow()
3826 only work on direct children of
3827 the window (compatible
3828 behaviour). Set this flag to make
3829 them recursively descend into all
3832 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3833 derived classes are forwarded to
3834 the parent window and so on
3835 recursively by default. Using this
3836 flag for the given window allows
3837 to block this propagation at this
3838 window, i.e. prevent the events
3839 from being propagated further
3840 upwards. Dialogs have this flag on
3843 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3844 the other windows: this must be
3845 used with transient windows as
3846 otherwise there is the risk of
3847 creating a dialog/frame with this
3848 window as a parent which would
3849 lead to a crash if the parent is
3850 destroyed before the child.
3852 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3853 events, even if the mode set by
3854 wx.IdleEvent.SetMode is
3855 wx.IDLE_PROCESS_SPECIFIED.
3857 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3858 update events, even if the mode
3859 set by wxUpdateUIEvent::SetMode is
3860 wxUPDATE_UI_PROCESS_SPECIFIED.
3864 <param name=
"parent" type=
"Window" default=
""/>
3865 <param name=
"id" type=
"int" default=
""/>
3866 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
3867 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
3868 <param name=
"style" type=
"long" default=
"0"/>
3869 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
3872 <constructor name=
"PreWindow" overloaded=
"no">
3873 <autodoc>PreWindow() -
> Window
</autodoc>
3874 <docstring>Precreate a Window for
2-phase creation.
</docstring>
3878 wx.SIMPLE_BORDER: Displays a thin border around the window.
3880 wx.DOUBLE_BORDER: Displays a double border. Windows and Mac only.
3882 wx.SUNKEN_BORDER: Displays a sunken border.
3884 wx.RAISED_BORDER: Displays a raised border.
3886 wx.STATIC_BORDER: Displays a border suitable for a static
3887 control. Windows only.
3889 wx.NO_BORDER: Displays no border, overriding the default
3890 border style for the window.
3892 wx.TRANSPARENT_WINDOW: The window is transparent, that is, it
3893 will not receive paint events. Windows only.
3895 wx.TAB_TRAVERSAL: Use this to enable tab traversal for
3898 wx.WANTS_CHARS: Use this to indicate that the window
3899 wants to get all char/key events for
3900 all keys - even for keys like TAB or
3901 ENTER which are usually used for
3902 dialog navigation and which wouldn't
3903 be generated without this style. If
3904 you need to use this style in order to
3905 get the arrows or etc., but would
3906 still like to have normal keyboard
3907 navigation take place, you should
3908 create and send a wxNavigationKeyEvent
3909 in response to the key events for Tab
3912 wx.NO_FULL_REPAINT_ON_RESIZE: Disables repainting the window
3913 completely when its size is changed
3914 - you will have to repaint the new
3915 window area manually if you use this
3916 style. As of version
2.5.1 this
3917 style is on by default. Use
3918 wx.FULL_REPAINT_ON_RESIZE to
3921 wx.VSCROLL: Use this style to enable a vertical scrollbar.
3923 wx.HSCROLL: Use this style to enable a horizontal scrollbar.
3925 wx.ALWAYS_SHOW_SB: If a window has scrollbars, disable them
3926 instead of hiding them when they are
3927 not needed (i.e. when the size of the
3928 window is big enough to not require
3929 the scrollbars to navigate it). This
3930 style is currently only implemented
3931 for wxMSW and wxUniversal and does
3932 nothing on the other platforms.
3934 wx.CLIP_CHILDREN: Use this style to eliminate flicker caused by
3935 the background being repainted, then
3936 children being painted over
3939 wx.FULL_REPAINT_ON_RESIZE: Use this style to force a complete
3940 redraw of the window whenever it is
3941 resized instead of redrawing just the
3942 part of the window affected by
3943 resizing. Note that this was the
3944 behaviour by default before
2.5.1
3945 release and that if you experience
3946 redraw problems with the code which
3947 previously used to work you may want
3952 wx.WS_EX_VALIDATE_RECURSIVELY: By default,
3953 Validate/TransferDataTo/FromWindow()
3954 only work on direct children of
3955 the window (compatible
3956 behaviour). Set this flag to make
3957 them recursively descend into all
3960 wx.WS_EX_BLOCK_EVENTS: wx.CommandEvents and the objects of the
3961 derived classes are forwarded to
3962 the parent window and so on
3963 recursively by default. Using this
3964 flag for the given window allows
3965 to block this propagation at this
3966 window, i.e. prevent the events
3967 from being propagated further
3968 upwards. Dialogs have this flag on
3971 wx.WS_EX_TRANSIENT Don't use this window as an implicit parent for
3972 the other windows: this must be
3973 used with transient windows as
3974 otherwise there is the risk of
3975 creating a dialog/frame with this
3976 window as a parent which would
3977 lead to a crash if the parent is
3978 destroyed before the child.
3980 wx.WS_EX_PROCESS_IDLE: This window should always process idle
3981 events, even if the mode set by
3982 wx.IdleEvent.SetMode is
3983 wx.IDLE_PROCESS_SPECIFIED.
3985 wx.WS_EX_PROCESS_UI_UPDATES This window should always process UI
3986 update events, even if the mode
3987 set by wxUpdateUIEvent::SetMode is
3988 wxUPDATE_UI_PROCESS_SPECIFIED.
3992 <method name=
"Create" type=
"bool" overloaded=
"no">
3993 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
3994 long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
3995 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
3997 <param name=
"parent" type=
"Window" default=
""/>
3998 <param name=
"id" type=
"int" default=
""/>
3999 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
4000 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
4001 <param name=
"style" type=
"long" default=
"0"/>
4002 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
4005 <method name=
"Close" type=
"bool" overloaded=
"no">
4006 <autodoc>Close(bool force=False) -
> bool
</autodoc>
4007 <docstring>This function simply generates a EVT_CLOSE event whose handler usually
4008 tries to close the window. It doesn't close the window itself,
4009 however. If force is False (the default) then the window's close
4010 handler will be allowed to veto the destruction of the window.
4012 Usually Close is only used with the top level windows (wx.Frame and
4013 wx.Dialog classes) as the others are not supposed to have any special
4016 The close handler should check whether the window is being deleted
4017 forcibly, using wx.CloseEvent.GetForce, in which case it should
4018 destroy the window using wx.Window.Destroy.
4020 Note that calling Close does not guarantee that the window will be
4021 destroyed; but it provides a way to simulate a manual close of a
4022 window, which may or may not be implemented by destroying the
4023 window. The default EVT_CLOSE handler for wx.Dialog does not
4024 necessarily delete the dialog, since it will simply simulate an
4025 wxID_CANCEL event which is handled by the appropriate button event
4026 handler and may do anything at all.
4028 To guarantee that the window will be destroyed, call wx.Window.Destroy
4029 instead.
</docstring>
4031 <param name=
"force" type=
"bool" default=
"False"/>
4034 <method name=
"Destroy" type=
"bool" overloaded=
"no">
4035 <autodoc>Destroy() -
> bool
</autodoc>
4036 <docstring>Destroys the window safely. Frames and dialogs are not destroyed
4037 immediately when this function is called -- they are added to a list
4038 of windows to be deleted on idle time, when all the window's events
4039 have been processed. This prevents problems with events being sent to
4040 non-existent windows.
4042 Returns True if the window has either been successfully deleted, or it
4043 has been added to the list of windows pending real deletion.
</docstring>
4045 <method name=
"DestroyChildren" type=
"bool" overloaded=
"no">
4046 <autodoc>DestroyChildren() -
> bool
</autodoc>
4047 <docstring>Destroys all children of a window. Called automatically by the destructor.
</docstring>
4049 <method name=
"IsBeingDeleted" type=
"bool" overloaded=
"no">
4050 <autodoc>IsBeingDeleted() -
> bool
</autodoc>
4051 <docstring>Is the window in the process of being deleted?
</docstring>
4053 <method name=
"SetTitle" type=
"" overloaded=
"no">
4054 <autodoc>SetTitle(String title)
</autodoc>
4055 <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring>
4057 <param name=
"title" type=
"String" default=
""/>
4060 <method name=
"GetTitle" type=
"String" overloaded=
"no">
4061 <autodoc>GetTitle() -
> String
</autodoc>
4062 <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring>
4064 <method name=
"SetLabel" type=
"" overloaded=
"no">
4065 <autodoc>SetLabel(String label)
</autodoc>
4066 <docstring>Set the text which the window shows in its label if applicable.
</docstring>
4068 <param name=
"label" type=
"String" default=
""/>
4071 <method name=
"GetLabel" type=
"String" overloaded=
"no">
4072 <autodoc>GetLabel() -
> String
</autodoc>
4073 <docstring>Generic way of getting a label from any window, for identification
4074 purposes. The interpretation of this function differs from class to
4075 class. For frames and dialogs, the value returned is the title. For
4076 buttons or static text controls, it is the button text. This function
4077 can be useful for meta-programs (such as testing tools or
4078 special-needs access programs) which need to identify windows by name.
</docstring>
4080 <method name=
"SetName" type=
"" overloaded=
"no">
4081 <autodoc>SetName(String name)
</autodoc>
4082 <docstring>Sets the window's name. The window name is used for ressource setting
4083 in X, it is not the same as the window title/label
</docstring>
4085 <param name=
"name" type=
"String" default=
""/>
4088 <method name=
"GetName" type=
"String" overloaded=
"no">
4089 <autodoc>GetName() -
> String
</autodoc>
4090 <docstring>Returns the window's name. This name is not guaranteed to be unique;
4091 it is up to the programmer to supply an appropriate name in the window
4092 constructor or via wx.Window.SetName.
</docstring>
4094 <method name=
"SetId" type=
"" overloaded=
"no">
4095 <autodoc>SetId(int winid)
</autodoc>
4096 <docstring>Sets the identifier of the window. Each window has an integer
4097 identifier. If the application has not provided one, an identifier
4098 will be generated. Normally, the identifier should be provided on
4099 creation and should not be modified subsequently.
</docstring>
4101 <param name=
"winid" type=
"int" default=
""/>
4104 <method name=
"GetId" type=
"int" overloaded=
"no">
4105 <autodoc>GetId() -
> int
</autodoc>
4106 <docstring>Returns the identifier of the window. Each window has an integer
4107 identifier. If the application has not provided one (or the default Id
4108 -
1 is used) then an unique identifier with a negative value will be
4109 generated.
</docstring>
4111 <staticmethod name=
"NewControlId" type=
"int" overloaded=
"no">
4112 <autodoc>NewControlId() -
> int
</autodoc>
4113 <docstring>Generate a control id for the controls which were not given one.
</docstring>
4115 <staticmethod name=
"NextControlId" type=
"int" overloaded=
"no">
4116 <autodoc>NextControlId(int winid) -
> int
</autodoc>
4117 <docstring>Get the id of the control following the one with the given
4118 (autogenerated) id
</docstring>
4120 <param name=
"winid" type=
"int" default=
""/>
4123 <staticmethod name=
"PrevControlId" type=
"int" overloaded=
"no">
4124 <autodoc>PrevControlId(int winid) -
> int
</autodoc>
4125 <docstring>Get the id of the control preceding the one with the given
4126 (autogenerated) id
</docstring>
4128 <param name=
"winid" type=
"int" default=
""/>
4131 <method name=
"SetSize" type=
"" overloaded=
"no">
4132 <autodoc>SetSize(Size size)
</autodoc>
4133 <docstring>Sets the size of the window in pixels.
</docstring>
4135 <param name=
"size" type=
"Size" default=
""/>
4138 <method name=
"SetDimensions" type=
"" overloaded=
"no">
4139 <autodoc>SetDimensions(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
4140 <docstring>Sets the position and size of the window in pixels. The sizeFlags
4141 parameter indicates the interpretation of the other params if they are
4142 -
1. wx.SIZE_AUTO*: a -
1 indicates that a class-specific default
4143 shoudl be used. wx.SIZE_USE_EXISTING: existing dimensions should be
4144 used if -
1 values are supplied. wxSIZE_ALLOW_MINUS_ONE: allow
4145 dimensions of -
1 and less to be interpreted as real dimensions, not
4146 default values.
</docstring>
4148 <param name=
"x" type=
"int" default=
""/>
4149 <param name=
"y" type=
"int" default=
""/>
4150 <param name=
"width" type=
"int" default=
""/>
4151 <param name=
"height" type=
"int" default=
""/>
4152 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
4155 <method name=
"SetRect" type=
"" overloaded=
"no">
4156 <autodoc>SetRect(Rect rect, int sizeFlags=SIZE_AUTO)
</autodoc>
4157 <docstring>Sets the position and size of the window in pixels using a wx.Rect.
</docstring>
4159 <param name=
"rect" type=
"Rect" default=
""/>
4160 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
4163 <method name=
"SetSizeWH" type=
"" overloaded=
"no">
4164 <autodoc>SetSizeWH(int width, int height)
</autodoc>
4165 <docstring>Sets the size of the window in pixels.
</docstring>
4167 <param name=
"width" type=
"int" default=
""/>
4168 <param name=
"height" type=
"int" default=
""/>
4171 <method name=
"Move" type=
"" overloaded=
"no">
4172 <autodoc>Move(Point pt, int flags=SIZE_USE_EXISTING)
</autodoc>
4173 <docstring>Moves the window to the given position.
</docstring>
4175 <param name=
"pt" type=
"Point" default=
""/>
4176 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
4179 <method name=
"MoveXY" type=
"" overloaded=
"no">
4180 <autodoc>MoveXY(int x, int y, int flags=SIZE_USE_EXISTING)
</autodoc>
4181 <docstring>Moves the window to the given position.
</docstring>
4183 <param name=
"x" type=
"int" default=
""/>
4184 <param name=
"y" type=
"int" default=
""/>
4185 <param name=
"flags" type=
"int" default=
"wxSIZE_USE_EXISTING"/>
4188 <method name=
"Raise" type=
"" overloaded=
"no">
4189 <autodoc>Raise()
</autodoc>
4190 <docstring>Raises the window to the top of the window hierarchy if it is a
4191 managed window (dialog or frame).
</docstring>
4193 <method name=
"Lower" type=
"" overloaded=
"no">
4194 <autodoc>Lower()
</autodoc>
4195 <docstring>Lowers the window to the bottom of the window hierarchy if it is a
4196 managed window (dialog or frame).
</docstring>
4198 <method name=
"SetClientSize" type=
"" overloaded=
"no">
4199 <autodoc>SetClientSize(Size size)
</autodoc>
4200 <docstring>This sets the size of the window client area in pixels. Using this
4201 function to size a window tends to be more device-independent than
4202 wx.Window.SetSize, since the application need not worry about what
4203 dimensions the border or title bar have when trying to fit the window
4204 around panel items, for example.
</docstring>
4206 <param name=
"size" type=
"Size" default=
""/>
4209 <method name=
"SetClientSizeWH" type=
"" overloaded=
"no">
4210 <autodoc>SetClientSizeWH(int width, int height)
</autodoc>
4211 <docstring>This sets the size of the window client area in pixels. Using this
4212 function to size a window tends to be more device-independent than
4213 wx.Window.SetSize, since the application need not worry about what
4214 dimensions the border or title bar have when trying to fit the window
4215 around panel items, for example.
</docstring>
4217 <param name=
"width" type=
"int" default=
""/>
4218 <param name=
"height" type=
"int" default=
""/>
4221 <method name=
"SetClientRect" type=
"" overloaded=
"no">
4222 <autodoc>SetClientRect(Rect rect)
</autodoc>
4223 <docstring>This sets the size of the window client area in pixels. Using this
4224 function to size a window tends to be more device-independent than
4225 wx.Window.SetSize, since the application need not worry about what
4226 dimensions the border or title bar have when trying to fit the window
4227 around panel items, for example.
</docstring>
4229 <param name=
"rect" type=
"Rect" default=
""/>
4232 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
4233 <autodoc>GetPosition() -
> Point
</autodoc>
4234 <docstring>Get the window's position.
</docstring>
4236 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
4237 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
4238 <docstring>Get the window's position.
</docstring>
4240 <param name=
"OUTPUT" type=
"int" default=
""/>
4241 <param name=
"OUTPUT" type=
"int" default=
""/>
4244 <method name=
"GetSize" type=
"Size" overloaded=
"no">
4245 <autodoc>GetSize() -
> Size
</autodoc>
4246 <docstring>Get the window size.
</docstring>
4248 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
4249 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
4250 <docstring>Get the window size.
</docstring>
4252 <param name=
"OUTPUT" type=
"int" default=
""/>
4253 <param name=
"OUTPUT" type=
"int" default=
""/>
4256 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
4257 <autodoc>GetRect() -
> Rect
</autodoc>
4258 <docstring>Returns the size and position of the window as a wx.Rect object.
</docstring>
4260 <method name=
"GetClientSize" type=
"Size" overloaded=
"no">
4261 <autodoc>GetClientSize() -
> Size
</autodoc>
4262 <docstring>This gets the size of the window's 'client area' in pixels. The client
4263 area is the area which may be drawn on by the programmer, excluding
4264 title bar, border, scrollbars, etc.
</docstring>
4266 <method name=
"GetClientSizeTuple" type=
"" overloaded=
"no">
4267 <autodoc>GetClientSizeTuple() -
> (width, height)
</autodoc>
4268 <docstring>This gets the size of the window's 'client area' in pixels. The client
4269 area is the area which may be drawn on by the programmer, excluding
4270 title bar, border, scrollbars, etc.
</docstring>
4272 <param name=
"OUTPUT" type=
"int" default=
""/>
4273 <param name=
"OUTPUT" type=
"int" default=
""/>
4276 <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no">
4277 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
4278 <docstring>Get the origin of the client area of the window relative to the
4279 window's top left corner (the client area may be shifted because of
4280 the borders, scrollbars, other decorations...)
</docstring>
4282 <method name=
"GetClientRect" type=
"Rect" overloaded=
"no">
4283 <autodoc>GetClientRect() -
> Rect
</autodoc>
4284 <docstring>Get the client area position and size as a wx.Rect object.
</docstring>
4286 <method name=
"GetBestSize" type=
"Size" overloaded=
"no">
4287 <autodoc>GetBestSize() -
> Size
</autodoc>
4288 <docstring>This functions returns the best acceptable minimal size for the
4289 window, if applicable. For example, for a static text control, it will be
4290 the minimal size such that the control label is not truncated. For
4291 windows containing subwindows (suzh aswx.Panel), the size returned
4292 by this function will be the same as the size the window would have
4293 had after calling Fit.
</docstring>
4295 <method name=
"GetBestSizeTuple" type=
"" overloaded=
"no">
4296 <autodoc>GetBestSizeTuple() -
> (width, height)
</autodoc>
4297 <docstring>This functions returns the best acceptable minimal size for the
4298 window, if applicable. For example, for a static text control, it will be
4299 the minimal size such that the control label is not truncated. For
4300 windows containing subwindows (suzh aswx.Panel), the size returned
4301 by this function will be the same as the size the window would have
4302 had after calling Fit.
</docstring>
4304 <param name=
"OUTPUT" type=
"int" default=
""/>
4305 <param name=
"OUTPUT" type=
"int" default=
""/>
4308 <method name=
"GetAdjustedBestSize" type=
"Size" overloaded=
"no">
4309 <autodoc>GetAdjustedBestSize() -
> Size
</autodoc>
4310 <docstring>This method is similar to GetBestSize, except in one
4311 thing. GetBestSize should return the minimum untruncated size of the
4312 window, while this method will return the largest of BestSize and any
4313 user specified minimum size. ie. it is the minimum size the window
4314 should currently be drawn at, not the minimal size it can possibly
4315 tolerate.
</docstring>
4317 <method name=
"Center" type=
"" overloaded=
"no">
4318 <autodoc>Center(int direction=BOTH)
</autodoc>
4319 <docstring>Centers the window. The parameter specifies the direction for
4320 cetering, and may be wx.HORIZONTAL, wx.VERTICAL or wx.BOTH. It may
4321 also include wx.CENTER_ON_SCREEN flag if you want to center the window
4322 on the entire screen and not on its parent window. If it is a
4323 top-level window and has no parent then it will always be centered
4324 relative to the screen.
</docstring>
4326 <param name=
"direction" type=
"int" default=
"wxBOTH"/>
4329 <method name=
"CenterOnScreen" type=
"" overloaded=
"no">
4330 <autodoc>CenterOnScreen(int dir=BOTH)
</autodoc>
4331 <docstring>Center on screen (only works for top level windows)
</docstring>
4333 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
4336 <method name=
"CenterOnParent" type=
"" overloaded=
"no">
4337 <autodoc>CenterOnParent(int dir=BOTH)
</autodoc>
4338 <docstring>Center with respect to the the parent window
</docstring>
4340 <param name=
"dir" type=
"int" default=
"wxBOTH"/>
4343 <method name=
"Fit" type=
"" overloaded=
"no">
4344 <autodoc>Fit()
</autodoc>
4345 <docstring>Sizes the window so that it fits around its subwindows. This function
4346 won't do anything if there are no subwindows and will only really work
4347 correctly if sizers are used for the subwindows layout. Also, if the
4348 window has exactly one subwindow it is better (faster and the result
4349 is more precise as Fit adds some margin to account for fuzziness of
4350 its calculations) to call window.SetClientSize(child.GetSize())
4351 instead of calling Fit.
</docstring>
4353 <method name=
"FitInside" type=
"" overloaded=
"no">
4354 <autodoc>FitInside()
</autodoc>
4355 <docstring>Similar to Fit, but sizes the interior (virtual) size of a
4356 window. Mainly useful with scrolled windows to reset scrollbars after
4357 sizing changes that do not trigger a size event, and/or scrolled
4358 windows without an interior sizer. This function similarly won't do
4359 anything if there are no subwindows.
</docstring>
4361 <method name=
"SetSizeHints" type=
"" overloaded=
"no">
4362 <autodoc>SetSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1, int incW=-
1,
4363 int incH=-
1)
</autodoc>
4364 <docstring>Allows specification of minimum and maximum window sizes, and window
4365 size increments. If a pair of values is not set (or set to -
1), the
4366 default values will be used. If this function is called, the user
4367 will not be able to size the window outside the given bounds. The
4368 resizing increments are only significant under Motif or Xt.
</docstring>
4370 <param name=
"minW" type=
"int" default=
""/>
4371 <param name=
"minH" type=
"int" default=
""/>
4372 <param name=
"maxW" type=
"int" default=
"-1"/>
4373 <param name=
"maxH" type=
"int" default=
"-1"/>
4374 <param name=
"incW" type=
"int" default=
"-1"/>
4375 <param name=
"incH" type=
"int" default=
"-1"/>
4378 <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no">
4379 <autodoc>SetVirtualSizeHints(int minW, int minH, int maxW=-
1, int maxH=-
1)
</autodoc>
4380 <docstring>Allows specification of minimum and maximum virtual window sizes. If a
4381 pair of values is not set (or set to -
1), the default values will be
4382 used. If this function is called, the user will not be able to size
4383 the virtual area of the window outside the given bounds.
</docstring>
4385 <param name=
"minW" type=
"int" default=
""/>
4386 <param name=
"minH" type=
"int" default=
""/>
4387 <param name=
"maxW" type=
"int" default=
"-1"/>
4388 <param name=
"maxH" type=
"int" default=
"-1"/>
4391 <method name=
"GetMinWidth" type=
"int" overloaded=
"no">
4392 <autodoc>GetMinWidth() -
> int
</autodoc>
4394 <method name=
"GetMinHeight" type=
"int" overloaded=
"no">
4395 <autodoc>GetMinHeight() -
> int
</autodoc>
4397 <method name=
"GetMaxWidth" type=
"int" overloaded=
"no">
4398 <autodoc>GetMaxWidth() -
> int
</autodoc>
4400 <method name=
"GetMaxHeight" type=
"int" overloaded=
"no">
4401 <autodoc>GetMaxHeight() -
> int
</autodoc>
4403 <method name=
"GetMaxSize" type=
"Size" overloaded=
"no">
4404 <autodoc>GetMaxSize() -
> Size
</autodoc>
4406 <method name=
"SetVirtualSize" type=
"" overloaded=
"no">
4407 <autodoc>SetVirtualSize(Size size)
</autodoc>
4408 <docstring>Set the the virtual size of a window in pixels. For most windows this
4409 is just the client area of the window, but for some like scrolled
4410 windows it is more or less independent of the screen window size.
</docstring>
4412 <param name=
"size" type=
"Size" default=
""/>
4415 <method name=
"SetVirtualSizeWH" type=
"" overloaded=
"no">
4416 <autodoc>SetVirtualSizeWH(int w, int h)
</autodoc>
4417 <docstring>Set the the virtual size of a window in pixels. For most windows this
4418 is just the client area of the window, but for some like scrolled
4419 windows it is more or less independent of the screen window size.
</docstring>
4421 <param name=
"w" type=
"int" default=
""/>
4422 <param name=
"h" type=
"int" default=
""/>
4425 <method name=
"GetVirtualSize" type=
"Size" overloaded=
"no">
4426 <autodoc>GetVirtualSize() -
> Size
</autodoc>
4427 <docstring>Get the the virtual size of the window in pixels. For most windows
4428 this is just the client area of the window, but for some like scrolled
4429 windows it is more or less independent of the screen window size.
</docstring>
4431 <method name=
"GetVirtualSizeTuple" type=
"" overloaded=
"no">
4432 <autodoc>GetVirtualSizeTuple() -
> (width, height)
</autodoc>
4433 <docstring>Get the the virtual size of the window in pixels. For most windows
4434 this is just the client area of the window, but for some like scrolled
4435 windows it is more or less independent of the screen window size.
</docstring>
4437 <param name=
"OUTPUT" type=
"int" default=
""/>
4438 <param name=
"OUTPUT" type=
"int" default=
""/>
4441 <method name=
"GetBestVirtualSize" type=
"Size" overloaded=
"no">
4442 <autodoc>GetBestVirtualSize() -
> Size
</autodoc>
4443 <docstring>Return the largest of ClientSize and BestSize (as determined by a
4444 sizer, interior children, or other means)
</docstring>
4446 <method name=
"Show" type=
"bool" overloaded=
"no">
4447 <autodoc>Show(bool show=True) -
> bool
</autodoc>
4448 <docstring>Shows or hides the window. You may need to call Raise for a top level
4449 window if you want to bring it to top, although this is not needed if
4450 Show is called immediately after the frame creation. Returns True if
4451 the window has been shown or hidden or False if nothing was done
4452 because it already was in the requested state.
</docstring>
4454 <param name=
"show" type=
"bool" default=
"True"/>
4457 <method name=
"Hide" type=
"bool" overloaded=
"no">
4458 <autodoc>Hide() -
> bool
</autodoc>
4459 <docstring>Equivalent to calling Show(False).
</docstring>
4461 <method name=
"Enable" type=
"bool" overloaded=
"no">
4462 <autodoc>Enable(bool enable=True) -
> bool
</autodoc>
4463 <docstring>Enable or disable the window for user input. Note that when a parent
4464 window is disabled, all of its children are disabled as well and they
4465 are reenabled again when the parent is. Returns true if the window
4466 has been enabled or disabled, false if nothing was done, i.e. if the
4467 window had already been in the specified state.
</docstring>
4469 <param name=
"enable" type=
"bool" default=
"True"/>
4472 <method name=
"Disable" type=
"bool" overloaded=
"no">
4473 <autodoc>Disable() -
> bool
</autodoc>
4474 <docstring>Disables the window, same as Enable(false).
</docstring>
4476 <method name=
"IsShown" type=
"bool" overloaded=
"no">
4477 <autodoc>IsShown() -
> bool
</autodoc>
4478 <docstring>Returns true if the window is shown, false if it has been hidden.
</docstring>
4480 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
4481 <autodoc>IsEnabled() -
> bool
</autodoc>
4482 <docstring>Returns true if the window is enabled for input, false otherwise.
</docstring>
4484 <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no">
4485 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
4486 <docstring>Sets the style of the window. Please note that some styles cannot be
4487 changed after the window creation and that Refresh() might be called
4488 after changing the others for the change to take place immediately.
</docstring>
4490 <param name=
"style" type=
"long" default=
""/>
4493 <method name=
"GetWindowStyleFlag" type=
"long" overloaded=
"no">
4494 <autodoc>GetWindowStyleFlag() -
> long
</autodoc>
4495 <docstring>Gets the window style that was passed to the constructor or Create
4498 <method name=
"HasFlag" type=
"bool" overloaded=
"no">
4499 <autodoc>HasFlag(int flag) -
> bool
</autodoc>
4500 <docstring>Test if the given style is set for this window.
</docstring>
4502 <param name=
"flag" type=
"int" default=
""/>
4505 <method name=
"IsRetained" type=
"bool" overloaded=
"no">
4506 <autodoc>IsRetained() -
> bool
</autodoc>
4507 <docstring>Returns true if the window is retained, false otherwise. Retained
4508 windows are only available on X platforms.
</docstring>
4510 <method name=
"SetExtraStyle" type=
"" overloaded=
"no">
4511 <autodoc>SetExtraStyle(long exStyle)
</autodoc>
4512 <docstring>Sets the extra style bits for the window. Extra styles are the less
4513 often used style bits which can't be set with the constructor or with
4514 SetWindowStyleFlag()
</docstring>
4516 <param name=
"exStyle" type=
"long" default=
""/>
4519 <method name=
"GetExtraStyle" type=
"long" overloaded=
"no">
4520 <autodoc>GetExtraStyle() -
> long
</autodoc>
4521 <docstring>Returns the extra style bits for the window.
</docstring>
4523 <method name=
"MakeModal" type=
"" overloaded=
"no">
4524 <autodoc>MakeModal(bool modal=True)
</autodoc>
4525 <docstring>Disables all other windows in the application so that the user can
4526 only interact with this window. Passing False will reverse this
4529 <param name=
"modal" type=
"bool" default=
"True"/>
4532 <method name=
"SetThemeEnabled" type=
"" overloaded=
"no">
4533 <autodoc>SetThemeEnabled(bool enableTheme)
</autodoc>
4534 <docstring>This function tells a window if it should use the system's "theme"
4535 code to draw the windows' background instead if its own background
4536 drawing code. This will only have an effect on platforms that support
4537 the notion of themes in user defined windows. One such platform is
4538 GTK+ where windows can have (very colourful) backgrounds defined by a
4539 user's selected theme.
4541 Dialogs, notebook pages and the status bar have this flag set to true
4542 by default so that the default look and feel is simulated best.
</docstring>
4544 <param name=
"enableTheme" type=
"bool" default=
""/>
4547 <method name=
"GetThemeEnabled" type=
"bool" overloaded=
"no">
4548 <autodoc>GetThemeEnabled() -
> bool
</autodoc>
4549 <docstring>Return the themeEnabled flag.
</docstring>
4551 <method name=
"SetFocus" type=
"" overloaded=
"no">
4552 <autodoc>SetFocus()
</autodoc>
4553 <docstring>Set's the focus to this window, allowing it to receive keyboard input.
</docstring>
4555 <method name=
"SetFocusFromKbd" type=
"" overloaded=
"no">
4556 <autodoc>SetFocusFromKbd()
</autodoc>
4557 <docstring>Set focus to this window as the result of a keyboard action. Normally
4558 only called internally.
</docstring>
4560 <staticmethod name=
"FindFocus" type=
"Window" overloaded=
"no">
4561 <autodoc>FindFocus() -
> Window
</autodoc>
4562 <docstring>Returns the window or control that currently has the keyboard focus,
4563 or None.
</docstring>
4565 <method name=
"AcceptsFocus" type=
"bool" overloaded=
"no">
4566 <autodoc>AcceptsFocus() -
> bool
</autodoc>
4567 <docstring>Can this window have focus?
</docstring>
4569 <method name=
"AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
4570 <autodoc>AcceptsFocusFromKeyboard() -
> bool
</autodoc>
4571 <docstring>Can this window be given focus by keyboard navigation? if not, the
4572 only way to give it focus (provided it accepts it at all) is to click
4575 <method name=
"GetDefaultItem" type=
"Window" overloaded=
"no">
4576 <autodoc>GetDefaultItem() -
> Window
</autodoc>
4577 <docstring>Get the default child of this parent, i.e. the one which is activated
4578 by pressing
<Enter
> such as the OK button on a wx.Dialog.
</docstring>
4580 <method name=
"SetDefaultItem" type=
"Window" overloaded=
"no">
4581 <autodoc>SetDefaultItem(Window child) -
> Window
</autodoc>
4582 <docstring>Set this child as default, return the old default.
</docstring>
4584 <param name=
"child" type=
"Window" default=
""/>
4587 <method name=
"SetTmpDefaultItem" type=
"" overloaded=
"no">
4588 <autodoc>SetTmpDefaultItem(Window win)
</autodoc>
4589 <docstring>Set this child as temporary default
</docstring>
4591 <param name=
"win" type=
"Window" default=
""/>
4594 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
4595 <autodoc>GetChildren() -
> PyObject
</autodoc>
4596 <docstring>Returns a list of the window's children. NOTE: Currently this is a
4597 copy of the child window list maintained by the window, so the return
4598 value of this function is only valid as long as the window's children
4599 do not change.
</docstring>
4601 <method name=
"GetParent" type=
"Window" overloaded=
"no">
4602 <autodoc>GetParent() -
> Window
</autodoc>
4603 <docstring>Returns the parent window of this window, or None if there isn't one.
</docstring>
4605 <method name=
"GetGrandParent" type=
"Window" overloaded=
"no">
4606 <autodoc>GetGrandParent() -
> Window
</autodoc>
4607 <docstring>Returns the parent of the parent of this window, or None if there isn't one.
</docstring>
4609 <method name=
"IsTopLevel" type=
"bool" overloaded=
"no">
4610 <autodoc>IsTopLevel() -
> bool
</autodoc>
4611 <docstring>Returns true if the given window is a top-level one. Currently all
4612 frames and dialogs are always considered to be top-level windows (even
4613 if they have a parent window).
</docstring>
4615 <method name=
"Reparent" type=
"bool" overloaded=
"no">
4616 <autodoc>Reparent(Window newParent) -
> bool
</autodoc>
4617 <docstring>Reparents the window, i.e the window will be removed from its current
4618 parent window (e.g. a non-standard toolbar in a wxFrame) and then
4619 re-inserted into another. Available on Windows and GTK. Returns True
4620 if the parent was changed, False otherwise (error or newParent ==
4621 oldParent)
</docstring>
4623 <param name=
"newParent" type=
"Window" default=
""/>
4626 <method name=
"AddChild" type=
"" overloaded=
"no">
4627 <autodoc>AddChild(Window child)
</autodoc>
4628 <docstring>Adds a child window. This is called automatically by window creation
4629 functions so should not be required by the application programmer.
</docstring>
4631 <param name=
"child" type=
"Window" default=
""/>
4634 <method name=
"RemoveChild" type=
"" overloaded=
"no">
4635 <autodoc>RemoveChild(Window child)
</autodoc>
4636 <docstring>Removes a child window. This is called automatically by window
4637 deletion functions so should not be required by the application
4638 programmer.
</docstring>
4640 <param name=
"child" type=
"Window" default=
""/>
4643 <method name=
"FindWindowById" type=
"Window" overloaded=
"no">
4644 <autodoc>FindWindowById(long winid) -
> Window
</autodoc>
4645 <docstring>Find a chld of this window by window ID
</docstring>
4647 <param name=
"winid" type=
"long" default=
""/>
4650 <method name=
"FindWindowByName" type=
"Window" overloaded=
"no">
4651 <autodoc>FindWindowByName(String name) -
> Window
</autodoc>
4652 <docstring>Find a child of this window by name
</docstring>
4654 <param name=
"name" type=
"String" default=
""/>
4657 <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no">
4658 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
4659 <docstring>Returns the event handler for this window. By default, the window is
4660 its own event handler.
</docstring>
4662 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
4663 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
4664 <docstring>Sets the event handler for this window. An event handler is an object
4665 that is capable of processing the events sent to a window. By default,
4666 the window is its own event handler, but an application may wish to
4667 substitute another, for example to allow central implementation of
4668 event-handling for a variety of different window classes.
4670 It is usually better to use wx.Window.PushEventHandler since this sets
4671 up a chain of event handlers, where an event not handled by one event
4672 handler is handed to the next one in the chain.
</docstring>
4674 <param name=
"handler" type=
"EvtHandler" default=
""/>
4677 <method name=
"PushEventHandler" type=
"" overloaded=
"no">
4678 <autodoc>PushEventHandler(EvtHandler handler)
</autodoc>
4679 <docstring>Pushes this event handler onto the event handler stack for the window.
4680 An event handler is an object that is capable of processing the events
4681 sent to a window. By default, the window is its own event handler, but
4682 an application may wish to substitute another, for example to allow
4683 central implementation of event-handling for a variety of different
4686 wx.Window.PushEventHandler allows an application to set up a chain of
4687 event handlers, where an event not handled by one event handler is
4688 handed to the next one in the chain. Use wx.Window.PopEventHandler to
4689 remove the event handler.
</docstring>
4691 <param name=
"handler" type=
"EvtHandler" default=
""/>
4694 <method name=
"PopEventHandler" type=
"EvtHandler" overloaded=
"no">
4695 <autodoc>PopEventHandler(bool deleteHandler=False) -
> EvtHandler
</autodoc>
4696 <docstring>Removes and returns the top-most event handler on the event handler
4697 stack. If deleteHandler is True then the wx.EvtHandler object will be
4698 destroyed after it is popped.
</docstring>
4700 <param name=
"deleteHandler" type=
"bool" default=
"False"/>
4703 <method name=
"RemoveEventHandler" type=
"bool" overloaded=
"no">
4704 <autodoc>RemoveEventHandler(EvtHandler handler) -
> bool
</autodoc>
4705 <docstring>Find the given handler in the event handler chain and remove (but
4706 not delete) it from the event handler chain, return True if it was
4707 found and False otherwise (this also results in an assert failure so
4708 this function should only be called when the handler is supposed to
4709 be there.)
</docstring>
4711 <param name=
"handler" type=
"EvtHandler" default=
""/>
4714 <method name=
"SetValidator" type=
"" overloaded=
"no">
4715 <autodoc>SetValidator(Validator validator)
</autodoc>
4716 <docstring>Deletes the current validator (if any) and sets the window validator,
4717 having called wx.Validator.Clone to create a new validator of this
4720 <param name=
"validator" type=
"wxValidator" default=
""/>
4723 <method name=
"GetValidator" type=
"wxValidator" overloaded=
"no">
4724 <autodoc>GetValidator() -
> Validator
</autodoc>
4725 <docstring>Returns a pointer to the current validator for the window, or None if
4726 there is none.
</docstring>
4728 <method name=
"SetAcceleratorTable" type=
"" overloaded=
"no">
4729 <autodoc>SetAcceleratorTable(AcceleratorTable accel)
</autodoc>
4730 <docstring>Sets the accelerator table for this window.
</docstring>
4732 <param name=
"accel" type=
"AcceleratorTable" default=
""/>
4735 <method name=
"GetAcceleratorTable" type=
"AcceleratorTable" overloaded=
"no">
4736 <autodoc>GetAcceleratorTable() -
> AcceleratorTable
</autodoc>
4737 <docstring>Gets the accelerator table for this window.
</docstring>
4739 <method name=
"RegisterHotKey" type=
"bool" overloaded=
"no">
4740 <autodoc>RegisterHotKey(int hotkeyId, int modifiers, int keycode) -
> bool
</autodoc>
4741 <docstring>Registers a system wide hotkey. Every time the user presses the hotkey
4742 registered here, this window will receive a hotkey event. It will
4743 receive the event even if the application is in the background and
4744 does not have the input focus because the user is working with some
4745 other application. To bind an event handler function to this hotkey
4746 use EVT_HOTKEY with an id equal to hotkeyId. Returns True if the
4747 hotkey was registered successfully.
</docstring>
4749 <param name=
"hotkeyId" type=
"int" default=
""/>
4750 <param name=
"modifiers" type=
"int" default=
""/>
4751 <param name=
"keycode" type=
"int" default=
""/>
4754 <method name=
"UnregisterHotKey" type=
"bool" overloaded=
"no">
4755 <autodoc>UnregisterHotKey(int hotkeyId) -
> bool
</autodoc>
4756 <docstring>Unregisters a system wide hotkey.
</docstring>
4758 <param name=
"hotkeyId" type=
"int" default=
""/>
4761 <method name=
"ConvertDialogPointToPixels" type=
"Point" overloaded=
"no">
4762 <autodoc>ConvertDialogPointToPixels(Point pt) -
> Point
</autodoc>
4763 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4764 are used for maintaining a dialog's proportions even if the font
4765 changes. For the x dimension, the dialog units are multiplied by the
4766 average character width and then divided by
4. For the y dimension,
4767 the dialog units are multiplied by the average character height and
4768 then divided by
8.
</docstring>
4770 <param name=
"pt" type=
"Point" default=
""/>
4773 <method name=
"ConvertDialogSizeToPixels" type=
"Size" overloaded=
"no">
4774 <autodoc>ConvertDialogSizeToPixels(Size sz) -
> Size
</autodoc>
4775 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4776 are used for maintaining a dialog's proportions even if the font
4777 changes. For the x dimension, the dialog units are multiplied by the
4778 average character width and then divided by
4. For the y dimension,
4779 the dialog units are multiplied by the average character height and
4780 then divided by
8.
</docstring>
4782 <param name=
"sz" type=
"Size" default=
""/>
4785 <method name=
"DLG_PNT" type=
"Point" overloaded=
"no">
4786 <autodoc>DLG_PNT(Point pt) -
> Point
</autodoc>
4787 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4788 are used for maintaining a dialog's proportions even if the font
4789 changes. For the x dimension, the dialog units are multiplied by the
4790 average character width and then divided by
4. For the y dimension,
4791 the dialog units are multiplied by the average character height and
4792 then divided by
8.
</docstring>
4794 <param name=
"pt" type=
"Point" default=
""/>
4797 <method name=
"DLG_SZE" type=
"Size" overloaded=
"no">
4798 <autodoc>DLG_SZE(Size sz) -
> Size
</autodoc>
4799 <docstring>Converts a point or size from dialog units to pixels. Dialog units
4800 are used for maintaining a dialog's proportions even if the font
4801 changes. For the x dimension, the dialog units are multiplied by the
4802 average character width and then divided by
4. For the y dimension,
4803 the dialog units are multiplied by the average character height and
4804 then divided by
8.
</docstring>
4806 <param name=
"sz" type=
"Size" default=
""/>
4809 <method name=
"ConvertPixelPointToDialog" type=
"Point" overloaded=
"no">
4810 <autodoc>ConvertPixelPointToDialog(Point pt) -
> Point
</autodoc>
4812 <param name=
"pt" type=
"Point" default=
""/>
4815 <method name=
"ConvertPixelSizeToDialog" type=
"Size" overloaded=
"no">
4816 <autodoc>ConvertPixelSizeToDialog(Size sz) -
> Size
</autodoc>
4818 <param name=
"sz" type=
"Size" default=
""/>
4821 <method name=
"WarpPointer" type=
"" overloaded=
"no">
4822 <autodoc>WarpPointer(int x, int y)
</autodoc>
4823 <docstring>Moves the pointer to the given position on the window.
4825 NOTE: This function is not supported under Mac because Apple Human
4826 Interface Guidelines forbid moving the mouse cursor programmatically.
</docstring>
4828 <param name=
"x" type=
"int" default=
""/>
4829 <param name=
"y" type=
"int" default=
""/>
4832 <method name=
"CaptureMouse" type=
"" overloaded=
"no">
4833 <autodoc>CaptureMouse()
</autodoc>
4834 <docstring>Directs all mouse input to this window. Call wx.Window.ReleaseMouse to
4835 release the capture.
4837 Note that wxWindows maintains the stack of windows having captured the
4838 mouse and when the mouse is released the capture returns to the window
4839 which had had captured it previously and it is only really released if
4840 there were no previous window. In particular, this means that you must
4841 release the mouse as many times as you capture it.
</docstring>
4843 <method name=
"ReleaseMouse" type=
"" overloaded=
"no">
4844 <autodoc>ReleaseMouse()
</autodoc>
4845 <docstring>Releases mouse input captured with wx.Window.CaptureMouse.
</docstring>
4847 <staticmethod name=
"GetCapture" type=
"Window" overloaded=
"no">
4848 <autodoc>GetCapture() -
> Window
</autodoc>
4849 <docstring>Returns the window which currently captures the mouse or None
</docstring>
4851 <method name=
"HasCapture" type=
"bool" overloaded=
"no">
4852 <autodoc>HasCapture() -
> bool
</autodoc>
4853 <docstring>Returns true if this window has the current mouse capture.
</docstring>
4855 <method name=
"Refresh" type=
"" overloaded=
"no">
4856 <autodoc>Refresh(bool eraseBackground=True, Rect rect=None)
</autodoc>
4857 <docstring>Mark the specified rectangle (or the whole window) as "dirty" so it
4858 will be repainted. Causes an EVT_PAINT event to be generated and sent
4859 to the window.
</docstring>
4861 <param name=
"eraseBackground" type=
"bool" default=
"True"/>
4862 <param name=
"rect" type=
"Rect" default=
"NULL"/>
4865 <method name=
"RefreshRect" type=
"" overloaded=
"no">
4866 <autodoc>RefreshRect(Rect rect)
</autodoc>
4867 <docstring>Redraws the contents of the given rectangle: the area inside it will
4868 be repainted. This is the same as Refresh but has a nicer syntax.
</docstring>
4870 <param name=
"rect" type=
"Rect" default=
""/>
4873 <method name=
"Update" type=
"" overloaded=
"no">
4874 <autodoc>Update()
</autodoc>
4875 <docstring>Calling this method immediately repaints the invalidated area of the
4876 window instead of waiting for the EVT_PAINT event to happen, (normally
4877 this would usually only happen when the flow of control returns to the
4878 event loop.) Notice that this function doesn't refresh the window and
4879 does nothing if the window has been already repainted. Use Refresh
4880 first if you want to immediately redraw the window (or some portion of
4881 it) unconditionally.
</docstring>
4883 <method name=
"ClearBackground" type=
"" overloaded=
"no">
4884 <autodoc>ClearBackground()
</autodoc>
4885 <docstring>Clears the window by filling it with the current background
4886 colour. Does not cause an erase background event to be generated.
</docstring>
4888 <method name=
"Freeze" type=
"" overloaded=
"no">
4889 <autodoc>Freeze()
</autodoc>
4890 <docstring>Freezes the window or, in other words, prevents any updates from
4891 taking place on screen, the window is not redrawn at all. Thaw must be
4892 called to reenable window redrawing.
4894 This method is useful for visual appearance optimization (for example,
4895 it is a good idea to use it before inserting large amount of text into
4896 a wxTextCtrl under wxGTK) but is not implemented on all platforms nor
4897 for all controls so it is mostly just a hint to wxWindows and not a
4898 mandatory directive.
</docstring>
4900 <method name=
"Thaw" type=
"" overloaded=
"no">
4901 <autodoc>Thaw()
</autodoc>
4902 <docstring>Reenables window updating after a previous call to Freeze.
</docstring>
4904 <method name=
"PrepareDC" type=
"" overloaded=
"no">
4905 <autodoc>PrepareDC(DC dc)
</autodoc>
4906 <docstring>Call this function to prepare the device context for drawing a
4907 scrolled image. It sets the device origin according to the current
4908 scroll position.
</docstring>
4910 <param name=
"dc" type=
"wxDC" default=
""/>
4913 <method name=
"GetUpdateRegion" type=
"wxRegion" overloaded=
"no">
4914 <autodoc>GetUpdateRegion() -
> Region
</autodoc>
4915 <docstring>Returns the region specifying which parts of the window have been
4916 damaged. Should only be called within an EVT_PAINT handler.
</docstring>
4918 <method name=
"GetUpdateClientRect" type=
"Rect" overloaded=
"no">
4919 <autodoc>GetUpdateClientRect() -
> Rect
</autodoc>
4920 <docstring>Get the update rectangle region bounding box in client coords.
</docstring>
4922 <method name=
"IsExposed" type=
"bool" overloaded=
"no">
4923 <autodoc>IsExposed(int x, int y, int w=
1, int h=
1) -
> bool
</autodoc>
4924 <docstring>Returns true if the given point or rectangle area has been exposed
4925 since the last repaint. Call this in an paint event handler to
4926 optimize redrawing by only redrawing those areas, which have been
4927 exposed.
</docstring>
4929 <param name=
"x" type=
"int" default=
""/>
4930 <param name=
"y" type=
"int" default=
""/>
4931 <param name=
"w" type=
"int" default=
"1"/>
4932 <param name=
"h" type=
"int" default=
"1"/>
4935 <method name=
"IsExposedPoint" type=
"bool" overloaded=
"no">
4936 <autodoc>IsExposedPoint(Point pt) -
> bool
</autodoc>
4937 <docstring>Returns true if the given point or rectangle area has been exposed
4938 since the last repaint. Call this in an paint event handler to
4939 optimize redrawing by only redrawing those areas, which have been
4940 exposed.
</docstring>
4942 <param name=
"pt" type=
"Point" default=
""/>
4945 <method name=
"isExposedRect" type=
"bool" overloaded=
"no">
4946 <autodoc>isExposedRect(Rect rect) -
> bool
</autodoc>
4947 <docstring>Returns true if the given point or rectangle area has been exposed
4948 since the last repaint. Call this in an paint event handler to
4949 optimize redrawing by only redrawing those areas, which have been
4950 exposed.
</docstring>
4952 <param name=
"rect" type=
"Rect" default=
""/>
4955 <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no">
4956 <autodoc>SetBackgroundColour(Colour colour) -
> bool
</autodoc>
4957 <docstring>Sets the background colour of the window. Returns True if the colour
4958 was changed. The background colour is usually painted by the default
4959 EVT_ERASE_BACKGROUND event handler function under Windows and
4960 automatically under GTK.
4962 Note that setting the background colour does not cause an immediate
4963 refresh, so you may wish to call ClearBackground or Refresh after
4964 calling this function.
4966 Use this function with care under GTK+ as the new appearance of the
4967 window might not look equally well when used with themes, i.e GTK+'s
4968 ability to change its look as the user wishes with run-time loadable
4969 modules.
</docstring>
4971 <param name=
"colour" type=
"wxColour" default=
""/>
4974 <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no">
4975 <autodoc>SetForegroundColour(Colour colour) -
> bool
</autodoc>
4976 <docstring>Sets the foreground colour of the window. Returns True is the colour
4977 was changed. The interpretation of foreground colour is dependent on
4978 the window class; it may be the text colour or other colour, or it may
4979 not be used at all.
</docstring>
4981 <param name=
"colour" type=
"wxColour" default=
""/>
4984 <method name=
"GetBackgroundColour" type=
"wxColour" overloaded=
"no">
4985 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
4986 <docstring>Returns the background colour of the window.
</docstring>
4988 <method name=
"GetForegroundColour" type=
"wxColour" overloaded=
"no">
4989 <autodoc>GetForegroundColour() -
> Colour
</autodoc>
4990 <docstring>Returns the foreground colour of the window. The interpretation of
4991 foreground colour is dependent on the window class; it may be the text
4992 colour or other colour, or it may not be used at all.
</docstring>
4994 <method name=
"SetCursor" type=
"bool" overloaded=
"no">
4995 <autodoc>SetCursor(Cursor cursor) -
> bool
</autodoc>
4996 <docstring>Sets the window's cursor. Notice that the window cursor also sets it
4997 for the children of the window implicitly.
4999 The cursor may be wx.NullCursor in which case the window cursor will
5000 be reset back to default.
</docstring>
5002 <param name=
"cursor" type=
"wxCursor" default=
""/>
5005 <method name=
"GetCursor" type=
"wxCursor" overloaded=
"no">
5006 <autodoc>GetCursor() -
> Cursor
</autodoc>
5007 <docstring>Return the cursor associated with this window.
</docstring>
5009 <method name=
"SetFont" type=
"bool" overloaded=
"no">
5010 <autodoc>SetFont(Font font) -
> bool
</autodoc>
5011 <docstring>Sets the font for this window.
</docstring>
5013 <param name=
"font" type=
"wxFont" default=
""/>
5016 <method name=
"GetFont" type=
"wxFont" overloaded=
"no">
5017 <autodoc>GetFont() -
> Font
</autodoc>
5018 <docstring>Returns a reference to the font for this window.
</docstring>
5020 <method name=
"SetCaret" type=
"" overloaded=
"no">
5021 <autodoc>SetCaret(Caret caret)
</autodoc>
5022 <docstring>Sets the caret associated with the window.
</docstring>
5024 <param name=
"caret" type=
"wxCaret" default=
""/>
5027 <method name=
"GetCaret" type=
"wxCaret" overloaded=
"no">
5028 <autodoc>GetCaret() -
> Caret
</autodoc>
5029 <docstring>Returns the caret associated with the window.
</docstring>
5031 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
5032 <autodoc>GetCharHeight() -
> int
</autodoc>
5033 <docstring>Get the (average) character size for the current font.
</docstring>
5035 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
5036 <autodoc>GetCharWidth() -
> int
</autodoc>
5037 <docstring>Get the (average) character size for the current font.
</docstring>
5039 <method name=
"GetTextExtent" type=
"" overloaded=
"no">
5040 <autodoc>GetTextExtent(String string) -
> (width, height)
</autodoc>
5041 <docstring>Get the width and height of the text using the current font.
</docstring>
5043 <param name=
"string" type=
"String" default=
""/>
5044 <param name=
"OUTPUT" type=
"int" default=
""/>
5045 <param name=
"OUTPUT" type=
"int" default=
""/>
5048 <method name=
"GetFullTextExtent" type=
"" overloaded=
"no">
5049 <autodoc>GetFullTextExtent(String string, Font font=None) -
>
5050 (width, height, descent, externalLeading)
</autodoc>
5051 <docstring>Get the width, height, decent and leading of the text using the
5052 current or specified font.
</docstring>
5054 <param name=
"string" type=
"String" default=
""/>
5055 <param name=
"OUTPUT" type=
"int" default=
""/>
5056 <param name=
"OUTPUT" type=
"int" default=
""/>
5057 <param name=
"OUTPUT" type=
"int" default=
""/>
5058 <param name=
"OUTPUT" type=
"int" default=
""/>
5059 <param name=
"font" type=
"wxFont" default=
"NULL"/>
5062 <method name=
"ClientToScreenXY" type=
"" overloaded=
"no">
5063 <autodoc>ClientToScreenXY(int x, int y) -
> (x,y)
</autodoc>
5064 <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring>
5066 <param name=
"x" type=
"int" default=
""/>
5067 <param name=
"y" type=
"int" default=
""/>
5070 <method name=
"ScreenToClientXY" type=
"" overloaded=
"no">
5071 <autodoc>ScreenToClientXY(int x, int y) -
> (x,y)
</autodoc>
5072 <docstring>Converts from screen to client window coordinates.
</docstring>
5074 <param name=
"x" type=
"int" default=
""/>
5075 <param name=
"y" type=
"int" default=
""/>
5078 <method name=
"ClientToScreen" type=
"Point" overloaded=
"no">
5079 <autodoc>ClientToScreen(Point pt) -
> Point
</autodoc>
5080 <docstring>Converts to screen coordinates from coordinates relative to this window.
</docstring>
5082 <param name=
"pt" type=
"Point" default=
""/>
5085 <method name=
"ScreenToClient" type=
"Point" overloaded=
"no">
5086 <autodoc>ScreenToClient(Point pt) -
> Point
</autodoc>
5087 <docstring>Converts from screen to client window coordinates.
</docstring>
5089 <param name=
"pt" type=
"Point" default=
""/>
5092 <method name=
"HitTestXY" type=
"wxHitTest" overloaded=
"no">
5093 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
5094 <docstring>Test where the given (in client coords) point lies
</docstring>
5096 <param name=
"x" type=
"int" default=
""/>
5097 <param name=
"y" type=
"int" default=
""/>
5100 <method name=
"HitTest" type=
"wxHitTest" overloaded=
"no">
5101 <autodoc>HitTest(Point pt) -
> int
</autodoc>
5102 <docstring>Test where the given (in client coords) point lies
</docstring>
5104 <param name=
"pt" type=
"Point" default=
""/>
5107 <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes">
5108 <docstring>Get the window border style from the given flags: this is different
5109 from simply doing flags
& wxBORDER_MASK because it uses
5110 GetDefaultBorder() to translate wxBORDER_DEFAULT to something
5114 <param name=
"flags" type=
"long" default=
""/>
5117 <method name=
"GetBorder" type=
"wxBorder" overloaded=
"yes">
5118 <autodoc>GetBorder(long flags) -
> int
5119 GetBorder() -
> int
</autodoc>
5120 <docstring>Get border for the flags of this window
</docstring>
5122 <method name=
"UpdateWindowUI" type=
"" overloaded=
"no">
5123 <autodoc>UpdateWindowUI(long flags=UPDATE_UI_NONE)
</autodoc>
5124 <docstring>This function sends EVT_UPDATE_UI events to the window. The particular
5125 implementation depends on the window; for example a wx.ToolBar will
5126 send an update UI event for each toolbar button, and a wx.Frame will
5127 send an update UI event for each menubar menu item. You can call this
5128 function from your application to ensure that your UI is up-to-date at
5129 a particular point in time (as far as your EVT_UPDATE_UI handlers are
5130 concerned). This may be necessary if you have called
5131 wx.UpdateUIEvent.SetMode or wx.UpdateUIEvent.SetUpdateInterval to
5132 limit the overhead that wxWindows incurs by sending update UI events
5135 The flags should be a bitlist of one or more of the following values:
5137 wx.UPDATE_UI_NONE No particular value
5138 wx.UPDATE_UI_RECURSE Call the function for descendants
5139 wx.UPDATE_UI_FROMIDLE Invoked from OnIdle
5141 If you are calling this function from an OnIdle function, make sure
5142 you pass the wx.UPDATE_UI_FROMIDLE flag, since this tells the window to
5143 only update the UI elements that need to be updated in idle time. Some
5144 windows update their elements only when necessary, for example when a
5145 menu is about to be shown. The following is an example of how to call
5146 UpdateWindowUI from an idle function.
5148 def OnIdle(self, evt):
5149 if wx.UpdateUIEvent.CanUpdate(self):
5150 self.UpdateWindowUI(wx.UPDATE_UI_FROMIDLE);
5153 <param name=
"flags" type=
"long" default=
"wxUPDATE_UI_NONE"/>
5156 <method name=
"PopupMenuXY" type=
"bool" overloaded=
"no">
5157 <autodoc>PopupMenuXY(Menu menu, int x, int y) -
> bool
</autodoc>
5158 <docstring>Pops up the given menu at the specified coordinates, relative to this
5159 window, and returns control when the user has dismissed the menu. If a
5160 menu item is selected, the corresponding menu event is generated and
5161 will be processed as usual.
</docstring>
5163 <param name=
"menu" type=
"wxMenu" default=
""/>
5164 <param name=
"x" type=
"int" default=
""/>
5165 <param name=
"y" type=
"int" default=
""/>
5168 <method name=
"PopupMenu" type=
"bool" overloaded=
"no">
5169 <autodoc>PopupMenu(Menu menu, Point pos) -
> bool
</autodoc>
5170 <docstring>Pops up the given menu at the specified coordinates, relative to this
5171 window, and returns control when the user has dismissed the menu. If a
5172 menu item is selected, the corresponding menu event is generated and
5173 will be processed as usual.
</docstring>
5175 <param name=
"menu" type=
"wxMenu" default=
""/>
5176 <param name=
"pos" type=
"Point" default=
""/>
5179 <method name=
"GetHandle" type=
"long" overloaded=
"no">
5180 <autodoc>GetHandle() -
> long
</autodoc>
5181 <docstring>Returns the platform-specific handle (as a long integer) of the
5182 physical window. Currently on wxMac it returns the handle of the
5183 toplevel parent of the window.
</docstring>
5185 <method name=
"HasScrollbar" type=
"bool" overloaded=
"no">
5186 <autodoc>HasScrollbar(int orient) -
> bool
</autodoc>
5187 <docstring>Does the window have the scrollbar for this orientation?
</docstring>
5189 <param name=
"orient" type=
"int" default=
""/>
5192 <method name=
"SetScrollbar" type=
"" overloaded=
"no">
5193 <autodoc>SetScrollbar(int orientation, int pos, int thumbvisible, int range,
5194 bool refresh=True)
</autodoc>
5195 <docstring>Sets the scrollbar properties of a built-in scrollbar.
5197 orientation: Determines the scrollbar whose page size is to be
5198 set. May be wx.HORIZONTAL or wx.VERTICAL.
5200 position: The position of the scrollbar in scroll units.
5202 thumbSize: The size of the thumb, or visible portion of the
5203 scrollbar, in scroll units.
5205 range: The maximum position of the scrollbar.
5207 refresh: True to redraw the scrollbar, false otherwise.
</docstring>
5209 <param name=
"orientation" type=
"int" default=
""/>
5210 <param name=
"pos" type=
"int" default=
""/>
5211 <param name=
"thumbvisible" type=
"int" default=
""/>
5212 <param name=
"range" type=
"int" default=
""/>
5213 <param name=
"refresh" type=
"bool" default=
"True"/>
5216 <method name=
"SetScrollPos" type=
"" overloaded=
"no">
5217 <autodoc>SetScrollPos(int orientation, int pos, bool refresh=True)
</autodoc>
5218 <docstring>Sets the position of one of the built-in scrollbars.
</docstring>
5220 <param name=
"orientation" type=
"int" default=
""/>
5221 <param name=
"pos" type=
"int" default=
""/>
5222 <param name=
"refresh" type=
"bool" default=
"True"/>
5225 <method name=
"GetScrollPos" type=
"int" overloaded=
"no">
5226 <autodoc>GetScrollPos(int orientation) -
> int
</autodoc>
5227 <docstring>Returns the built-in scrollbar position.
</docstring>
5229 <param name=
"orientation" type=
"int" default=
""/>
5232 <method name=
"GetScrollThumb" type=
"int" overloaded=
"no">
5233 <autodoc>GetScrollThumb(int orientation) -
> int
</autodoc>
5234 <docstring>Returns the built-in scrollbar thumb size.
</docstring>
5236 <param name=
"orientation" type=
"int" default=
""/>
5239 <method name=
"GetScrollRange" type=
"int" overloaded=
"no">
5240 <autodoc>GetScrollRange(int orientation) -
> int
</autodoc>
5241 <docstring>Returns the built-in scrollbar range.
</docstring>
5243 <param name=
"orientation" type=
"int" default=
""/>
5246 <method name=
"ScrollWindow" type=
"" overloaded=
"no">
5247 <autodoc>ScrollWindow(int dx, int dy, Rect rect=None)
</autodoc>
5248 <docstring>Physically scrolls the pixels in the window and move child windows
5249 accordingly. Use this function to optimise your scrolling
5250 implementations, to minimise the area that must be redrawn. Note that
5251 it is rarely required to call this function from a user program.
5253 dx: Amount to scroll horizontally.
5255 dy: Amount to scroll vertically.
5257 rect: Rectangle to invalidate. If this is None, the whole window
5258 is invalidated. If you pass a rectangle corresponding to the
5259 area of the window exposed by the scroll, your painting
5260 handler can optimize painting by checking for the
5261 invalidated region.
</docstring>
5263 <param name=
"dx" type=
"int" default=
""/>
5264 <param name=
"dy" type=
"int" default=
""/>
5265 <param name=
"rect" type=
"Rect" default=
"NULL"/>
5268 <method name=
"ScrollLines" type=
"bool" overloaded=
"no">
5269 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
5270 <docstring>If the platform and window class supports it, scrolls the window by
5271 the given number of lines down, if lines is positive, or up if lines
5272 is negative. Returns True if the window was scrolled, False if it was
5273 already on top/bottom and nothing was done.
</docstring>
5275 <param name=
"lines" type=
"int" default=
""/>
5278 <method name=
"ScrollPages" type=
"bool" overloaded=
"no">
5279 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
5280 <docstring>If the platform and window class supports it, scrolls the window by
5281 the given number of pages down, if pages is positive, or up if pages
5282 is negative. Returns True if the window was scrolled, False if it was
5283 already on top/bottom and nothing was done.
</docstring>
5285 <param name=
"pages" type=
"int" default=
""/>
5288 <method name=
"LineUp" type=
"bool" overloaded=
"no">
5289 <autodoc>LineUp() -
> bool
</autodoc>
5290 <docstring>This is just a wrapper for ScrollLines(-
1).
</docstring>
5292 <method name=
"LineDown" type=
"bool" overloaded=
"no">
5293 <autodoc>LineDown() -
> bool
</autodoc>
5294 <docstring>This is just a wrapper for ScrollLines(
1).
</docstring>
5296 <method name=
"PageUp" type=
"bool" overloaded=
"no">
5297 <autodoc>PageUp() -
> bool
</autodoc>
5298 <docstring>This is just a wrapper for ScrollPages(-
1).
</docstring>
5300 <method name=
"PageDown" type=
"bool" overloaded=
"no">
5301 <autodoc>PageDown() -
> bool
</autodoc>
5302 <docstring>This is just a wrapper for ScrollPages(
1).
</docstring>
5304 <method name=
"SetHelpText" type=
"" overloaded=
"no">
5305 <autodoc>SetHelpText(String text)
</autodoc>
5306 <docstring>Sets the help text to be used as context-sensitive help for this
5307 window. Note that the text is actually stored by the current
5308 wxHelpProvider implementation, and not in the window object itself.
</docstring>
5310 <param name=
"text" type=
"String" default=
""/>
5313 <method name=
"SetHelpTextForId" type=
"" overloaded=
"no">
5314 <autodoc>SetHelpTextForId(String text)
</autodoc>
5315 <docstring>Associate this help text with all windows with the same id as this
5318 <param name=
"text" type=
"String" default=
""/>
5321 <method name=
"GetHelpText" type=
"String" overloaded=
"no">
5322 <autodoc>GetHelpText() -
> String
</autodoc>
5323 <docstring>Gets the help text to be used as context-sensitive help for this
5324 window. Note that the text is actually stored by the current
5325 wxHelpProvider implementation, and not in the window object itself.
</docstring>
5327 <method name=
"SetToolTipString" type=
"" overloaded=
"no">
5328 <autodoc>SetToolTipString(String tip)
</autodoc>
5329 <docstring>Attach a tooltip to the window.
</docstring>
5331 <param name=
"tip" type=
"String" default=
""/>
5334 <method name=
"SetToolTip" type=
"" overloaded=
"no">
5335 <autodoc>SetToolTip(ToolTip tip)
</autodoc>
5336 <docstring>Attach a tooltip to the window.
</docstring>
5338 <param name=
"tip" type=
"wxToolTip" default=
""/>
5341 <method name=
"GetToolTip" type=
"wxToolTip" overloaded=
"no">
5342 <autodoc>GetToolTip() -
> ToolTip
</autodoc>
5343 <docstring>get the associated tooltip or None if none
</docstring>
5345 <method name=
"SetDropTarget" type=
"" overloaded=
"no">
5346 <autodoc>SetDropTarget(DropTarget dropTarget)
</autodoc>
5347 <docstring>Associates a drop target with this window. If the window already has
5348 a drop target, it is deleted.
</docstring>
5350 <param name=
"dropTarget" type=
"wxPyDropTarget" default=
""/>
5353 <method name=
"GetDropTarget" type=
"wxPyDropTarget" overloaded=
"no">
5354 <autodoc>GetDropTarget() -
> DropTarget
</autodoc>
5355 <docstring>Returns the associated drop target, which may be None.
</docstring>
5357 <method name=
"SetConstraints" type=
"" overloaded=
"no">
5358 <autodoc>SetConstraints(LayoutConstraints constraints)
</autodoc>
5359 <docstring>Sets the window to have the given layout constraints. If an existing
5360 layout constraints object is already owned by the window, it will be
5361 deleted. Pass None to disassociate and delete the window's current
5364 You must call SetAutoLayout to tell a window to use the constraints
5365 automatically in its default EVT_SIZE handler; otherwise, you must
5366 handle EVT_SIZE yourself and call Layout() explicitly. When setting
5367 both a wx.LayoutConstraints and a wx.Sizer, only the sizer will have
5370 <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/>
5373 <method name=
"GetConstraints" type=
"wxLayoutConstraints" overloaded=
"no">
5374 <autodoc>GetConstraints() -
> LayoutConstraints
</autodoc>
5375 <docstring>Returns a pointer to the window's layout constraints, or None if there
5376 are none.
</docstring>
5378 <method name=
"SetAutoLayout" type=
"" overloaded=
"no">
5379 <autodoc>SetAutoLayout(bool autoLayout)
</autodoc>
5380 <docstring>Determines whether the Layout function will be called automatically
5381 when the window is resized. It is called implicitly by SetSizer but
5382 if you use SetConstraints you should call it manually or otherwise the
5383 window layout won't be correctly updated when its size changes.
</docstring>
5385 <param name=
"autoLayout" type=
"bool" default=
""/>
5388 <method name=
"GetAutoLayout" type=
"bool" overloaded=
"no">
5389 <autodoc>GetAutoLayout() -
> bool
</autodoc>
5390 <docstring>Returns the current autoLayout setting
</docstring>
5392 <method name=
"Layout" type=
"bool" overloaded=
"no">
5393 <autodoc>Layout() -
> bool
</autodoc>
5394 <docstring>Invokes the constraint-based layout algorithm or the sizer-based
5395 algorithm for this window. See SetAutoLayout: when auto layout is on,
5396 this function gets called automatically by the default EVT_SIZE
5397 handler when the window is resized.
</docstring>
5399 <method name=
"SetSizer" type=
"" overloaded=
"no">
5400 <autodoc>SetSizer(Sizer sizer, bool deleteOld=True)
</autodoc>
5401 <docstring>Sets the window to have the given layout sizer. The window will then
5402 own the object, and will take care of its deletion. If an existing
5403 layout sizer object is already owned by the window, it will be deleted
5404 if the deleteOld parameter is true. Note that this function will also
5405 call SetAutoLayout implicitly with a True parameter if the sizer is
5406 non-NoneL and False otherwise.
</docstring>
5408 <param name=
"sizer" type=
"wxSizer" default=
""/>
5409 <param name=
"deleteOld" type=
"bool" default=
"True"/>
5412 <method name=
"SetSizerAndFit" type=
"" overloaded=
"no">
5413 <autodoc>SetSizerAndFit(Sizer sizer, bool deleteOld=True)
</autodoc>
5414 <docstring>The same as SetSizer, except it also sets the size hints for the
5415 window based on the sizer's minimum size.
</docstring>
5417 <param name=
"sizer" type=
"wxSizer" default=
""/>
5418 <param name=
"deleteOld" type=
"bool" default=
"True"/>
5421 <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no">
5422 <autodoc>GetSizer() -
> Sizer
</autodoc>
5423 <docstring>Return the sizer associated with the window by a previous call to
5424 SetSizer or None if there isn't one.
</docstring>
5426 <method name=
"SetContainingSizer" type=
"" overloaded=
"no">
5427 <autodoc>SetContainingSizer(Sizer sizer)
</autodoc>
5428 <docstring>This normally does not need to be called by application code. It is
5429 called internally when a window is added to a sizer, and is used so
5430 the window can remove itself from the sizer when it is destroyed.
</docstring>
5432 <param name=
"sizer" type=
"wxSizer" default=
""/>
5435 <method name=
"GetContainingSizer" type=
"wxSizer" overloaded=
"no">
5436 <autodoc>GetContainingSizer() -
> Sizer
</autodoc>
5437 <docstring>Return the sizer that this window is a member of, if any, otherwise None.
</docstring>
5441 def DLG_PNT(win, point_or_x, y=None):
5443 Convenience function for converting a Point or (x,y) in
5444 dialog units to pixel units.
5447 return win.ConvertDialogPointToPixels(point_or_x)
5449 return win.ConvertDialogPointToPixels(wx.Point(point_or_x, y))
5451 def DLG_SZE(win, size_width, height=None):
5453 Convenience function for converting a Size or (w,h) in
5454 dialog units to pixel units.
5457 return win.ConvertDialogSizeToPixels(size_width)
5459 return win.ConvertDialogSizeToPixels(wx.Size(size_width, height))
5461 <method name=
"FindWindowById" oldname=
"wxFindWindowById" type=
"Window" overloaded=
"no">
5462 <autodoc>FindWindowById(long id, Window parent=None) -
> Window
</autodoc>
5463 <docstring>Find the first window in the application with the given id. If parent
5464 is None, the search will start from all top-level frames and dialog
5465 boxes; if non-None, the search will be limited to the given window
5466 hierarchy. The search is recursive in both cases.
</docstring>
5468 <param name=
"id" type=
"long" default=
""/>
5469 <param name=
"parent" type=
"Window" default=
"NULL"/>
5472 <method name=
"FindWindowByName" oldname=
"wxFindWindowByName" type=
"Window" overloaded=
"no">
5473 <autodoc>FindWindowByName(String name, Window parent=None) -
> Window
</autodoc>
5474 <docstring>Find a window by its name (as given in a window constructor or Create
5475 function call). If parent is None, the search will start from all
5476 top-level frames and dialog boxes; if non-None, the search will be
5477 limited to the given window hierarchy. The search is recursive in both
5480 If no window with such name is found, wx.FindWindowByLabel is called.
</docstring>
5482 <param name=
"name" type=
"String" default=
""/>
5483 <param name=
"parent" type=
"Window" default=
"NULL"/>
5486 <method name=
"FindWindowByLabel" oldname=
"wxFindWindowByLabel" type=
"Window" overloaded=
"no">
5487 <autodoc>FindWindowByLabel(String label, Window parent=None) -
> Window
</autodoc>
5488 <docstring>Find a window by its label. Depending on the type of window, the label
5489 may be a window title or panel item label. If parent is None, the
5490 search will start from all top-level frames and dialog boxes; if
5491 non-None, the search will be limited to the given window
5492 hierarchy. The search is recursive in both cases.
</docstring>
5494 <param name=
"label" type=
"String" default=
""/>
5495 <param name=
"parent" type=
"Window" default=
"NULL"/>
5498 <method name=
"Window_FromHWND" oldname=
"wxWindow_FromHWND" type=
"Window" overloaded=
"no">
5499 <autodoc>Window_FromHWND(unsigned long hWnd) -
> Window
</autodoc>
5501 <param name=
"hWnd" type=
"unsigned long" default=
""/>
5505 #---------------------------------------------------------------------------
5507 <class name=
"Validator" oldname=
"wxValidator" module=
"core">
5508 <baseclass name=
"EvtHandler"/>
5509 <constructor name=
"Validator" overloaded=
"no">
5510 <autodoc>__init__() -
> Validator
</autodoc>
5512 <method name=
"Clone" type=
"Validator" overloaded=
"no">
5513 <autodoc>Clone() -
> Validator
</autodoc>
5515 <method name=
"Validate" type=
"bool" overloaded=
"no">
5516 <autodoc>Validate(Window parent) -
> bool
</autodoc>
5518 <param name=
"parent" type=
"Window" default=
""/>
5521 <method name=
"TransferToWindow" type=
"bool" overloaded=
"no">
5522 <autodoc>TransferToWindow() -
> bool
</autodoc>
5524 <method name=
"TransferFromWindow" type=
"bool" overloaded=
"no">
5525 <autodoc>TransferFromWindow() -
> bool
</autodoc>
5527 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
5528 <autodoc>GetWindow() -
> Window
</autodoc>
5530 <method name=
"SetWindow" type=
"" overloaded=
"no">
5531 <autodoc>SetWindow(Window window)
</autodoc>
5533 <param name=
"window" type=
"Window" default=
""/>
5536 <staticmethod name=
"IsSilent" type=
"bool" overloaded=
"no">
5537 <autodoc>IsSilent() -
> bool
</autodoc>
5539 <staticmethod name=
"SetBellOnError" type=
"" overloaded=
"no">
5540 <autodoc>SetBellOnError(int doIt=True)
</autodoc>
5542 <param name=
"doIt" type=
"int" default=
"True"/>
5546 <class name=
"PyValidator" oldname=
"wxPyValidator" module=
"core">
5547 <baseclass name=
"Validator"/>
5548 <constructor name=
"PyValidator" overloaded=
"no">
5549 <autodoc>__init__() -
> PyValidator
</autodoc>
5551 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
5552 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref=True)
</autodoc>
5554 <param name=
"self" type=
"PyObject" default=
""/>
5555 <param name=
"_class" type=
"PyObject" default=
""/>
5556 <param name=
"incref" type=
"int" default=
"True"/>
5561 #---------------------------------------------------------------------------
5563 <class name=
"Menu" oldname=
"wxMenu" module=
"core">
5564 <baseclass name=
"EvtHandler"/>
5565 <constructor name=
"Menu" overloaded=
"no">
5566 <autodoc>__init__(String title=EmptyString, long style=
0) -
> Menu
</autodoc>
5568 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
5569 <param name=
"style" type=
"long" default=
"0"/>
5572 <method name=
"Append" type=
"wxMenuItem" overloaded=
"no">
5573 <autodoc>Append(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5575 <param name=
"id" type=
"int" default=
""/>
5576 <param name=
"text" type=
"String" default=
""/>
5577 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5578 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5581 <method name=
"AppendSeparator" type=
"wxMenuItem" overloaded=
"no">
5582 <autodoc>AppendSeparator() -
> MenuItem
</autodoc>
5584 <method name=
"AppendCheckItem" type=
"wxMenuItem" overloaded=
"no">
5585 <autodoc>AppendCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5587 <param name=
"id" type=
"int" default=
""/>
5588 <param name=
"text" type=
"String" default=
""/>
5589 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5592 <method name=
"AppendRadioItem" type=
"wxMenuItem" overloaded=
"no">
5593 <autodoc>AppendRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5595 <param name=
"id" type=
"int" default=
""/>
5596 <param name=
"text" type=
"String" default=
""/>
5597 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5600 <method name=
"AppendMenu" type=
"wxMenuItem" overloaded=
"no">
5601 <autodoc>AppendMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5603 <param name=
"id" type=
"int" default=
""/>
5604 <param name=
"text" type=
"String" default=
""/>
5605 <param name=
"submenu" type=
"Menu" default=
""/>
5606 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5609 <method name=
"AppendItem" type=
"wxMenuItem" overloaded=
"no">
5610 <autodoc>AppendItem(MenuItem item) -
> MenuItem
</autodoc>
5612 <param name=
"item" type=
"wxMenuItem" default=
""/>
5615 <method name=
"Break" type=
"" overloaded=
"no">
5616 <autodoc>Break()
</autodoc>
5618 <method name=
"InsertItem" type=
"wxMenuItem" overloaded=
"no">
5619 <autodoc>InsertItem(size_t pos, MenuItem item) -
> MenuItem
</autodoc>
5621 <param name=
"pos" type=
"size_t" default=
""/>
5622 <param name=
"item" type=
"wxMenuItem" default=
""/>
5625 <method name=
"Insert" type=
"wxMenuItem" overloaded=
"no">
5626 <autodoc>Insert(size_t pos, int id, String text, String help=EmptyString,
5627 int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5629 <param name=
"pos" type=
"size_t" default=
""/>
5630 <param name=
"id" type=
"int" default=
""/>
5631 <param name=
"text" type=
"String" default=
""/>
5632 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5633 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5636 <method name=
"InsertSeparator" type=
"wxMenuItem" overloaded=
"no">
5637 <autodoc>InsertSeparator(size_t pos) -
> MenuItem
</autodoc>
5639 <param name=
"pos" type=
"size_t" default=
""/>
5642 <method name=
"InsertCheckItem" type=
"wxMenuItem" overloaded=
"no">
5643 <autodoc>InsertCheckItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5645 <param name=
"pos" type=
"size_t" default=
""/>
5646 <param name=
"id" type=
"int" default=
""/>
5647 <param name=
"text" type=
"String" default=
""/>
5648 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5651 <method name=
"InsertRadioItem" type=
"wxMenuItem" overloaded=
"no">
5652 <autodoc>InsertRadioItem(size_t pos, int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5654 <param name=
"pos" type=
"size_t" default=
""/>
5655 <param name=
"id" type=
"int" default=
""/>
5656 <param name=
"text" type=
"String" default=
""/>
5657 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5660 <method name=
"InsertMenu" type=
"wxMenuItem" overloaded=
"no">
5661 <autodoc>InsertMenu(size_t pos, int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5663 <param name=
"pos" type=
"size_t" default=
""/>
5664 <param name=
"id" type=
"int" default=
""/>
5665 <param name=
"text" type=
"String" default=
""/>
5666 <param name=
"submenu" type=
"Menu" default=
""/>
5667 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5670 <method name=
"PrependItem" type=
"wxMenuItem" overloaded=
"no">
5671 <autodoc>PrependItem(MenuItem item) -
> MenuItem
</autodoc>
5673 <param name=
"item" type=
"wxMenuItem" default=
""/>
5676 <method name=
"Prepend" type=
"wxMenuItem" overloaded=
"no">
5677 <autodoc>Prepend(int id, String text, String help=EmptyString, int kind=ITEM_NORMAL) -
> MenuItem
</autodoc>
5679 <param name=
"id" type=
"int" default=
""/>
5680 <param name=
"text" type=
"String" default=
""/>
5681 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5682 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
5685 <method name=
"PrependSeparator" type=
"wxMenuItem" overloaded=
"no">
5686 <autodoc>PrependSeparator() -
> MenuItem
</autodoc>
5688 <method name=
"PrependCheckItem" type=
"wxMenuItem" overloaded=
"no">
5689 <autodoc>PrependCheckItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5691 <param name=
"id" type=
"int" default=
""/>
5692 <param name=
"text" type=
"String" default=
""/>
5693 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5696 <method name=
"PrependRadioItem" type=
"wxMenuItem" overloaded=
"no">
5697 <autodoc>PrependRadioItem(int id, String text, String help=EmptyString) -
> MenuItem
</autodoc>
5699 <param name=
"id" type=
"int" default=
""/>
5700 <param name=
"text" type=
"String" default=
""/>
5701 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5704 <method name=
"PrependMenu" type=
"wxMenuItem" overloaded=
"no">
5705 <autodoc>PrependMenu(int id, String text, Menu submenu, String help=EmptyString) -
> MenuItem
</autodoc>
5707 <param name=
"id" type=
"int" default=
""/>
5708 <param name=
"text" type=
"String" default=
""/>
5709 <param name=
"submenu" type=
"Menu" default=
""/>
5710 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
5713 <method name=
"Remove" type=
"wxMenuItem" overloaded=
"no">
5714 <autodoc>Remove(int id) -
> MenuItem
</autodoc>
5716 <param name=
"id" type=
"int" default=
""/>
5719 <method name=
"RemoveItem" type=
"wxMenuItem" overloaded=
"no">
5720 <autodoc>RemoveItem(MenuItem item) -
> MenuItem
</autodoc>
5722 <param name=
"item" type=
"wxMenuItem" default=
""/>
5725 <method name=
"Delete" type=
"bool" overloaded=
"no">
5726 <autodoc>Delete(int id) -
> bool
</autodoc>
5728 <param name=
"id" type=
"int" default=
""/>
5731 <method name=
"DeleteItem" type=
"bool" overloaded=
"no">
5732 <autodoc>DeleteItem(MenuItem item) -
> bool
</autodoc>
5734 <param name=
"item" type=
"wxMenuItem" default=
""/>
5737 <method name=
"Destroy" type=
"" overloaded=
"no">
5738 <autodoc>Destroy()
</autodoc>
5739 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5741 <method name=
"DestroyId" type=
"bool" overloaded=
"no">
5742 <autodoc>DestroyId(int id) -
> bool
</autodoc>
5743 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5745 <param name=
"id" type=
"int" default=
""/>
5748 <method name=
"DestroyItem" type=
"bool" overloaded=
"no">
5749 <autodoc>DestroyItem(MenuItem item) -
> bool
</autodoc>
5750 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
5752 <param name=
"item" type=
"wxMenuItem" default=
""/>
5755 <method name=
"GetMenuItemCount" type=
"size_t" overloaded=
"no">
5756 <autodoc>GetMenuItemCount() -
> size_t
</autodoc>
5758 <method name=
"GetMenuItems" type=
"PyObject" overloaded=
"no">
5759 <autodoc>GetMenuItems() -
> PyObject
</autodoc>
5761 <method name=
"FindItem" type=
"int" overloaded=
"no">
5762 <autodoc>FindItem(String item) -
> int
</autodoc>
5764 <param name=
"item" type=
"String" default=
""/>
5767 <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no">
5768 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5770 <param name=
"id" type=
"int" default=
""/>
5773 <method name=
"FindItemByPosition" type=
"wxMenuItem" overloaded=
"no">
5774 <autodoc>FindItemByPosition(size_t position) -
> MenuItem
</autodoc>
5776 <param name=
"position" type=
"size_t" default=
""/>
5779 <method name=
"Enable" type=
"" overloaded=
"no">
5780 <autodoc>Enable(int id, bool enable)
</autodoc>
5782 <param name=
"id" type=
"int" default=
""/>
5783 <param name=
"enable" type=
"bool" default=
""/>
5786 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
5787 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
5789 <param name=
"id" type=
"int" default=
""/>
5792 <method name=
"Check" type=
"" overloaded=
"no">
5793 <autodoc>Check(int id, bool check)
</autodoc>
5795 <param name=
"id" type=
"int" default=
""/>
5796 <param name=
"check" type=
"bool" default=
""/>
5799 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
5800 <autodoc>IsChecked(int id) -
> bool
</autodoc>
5802 <param name=
"id" type=
"int" default=
""/>
5805 <method name=
"SetLabel" type=
"" overloaded=
"no">
5806 <autodoc>SetLabel(int id, String label)
</autodoc>
5808 <param name=
"id" type=
"int" default=
""/>
5809 <param name=
"label" type=
"String" default=
""/>
5812 <method name=
"GetLabel" type=
"String" overloaded=
"no">
5813 <autodoc>GetLabel(int id) -
> String
</autodoc>
5815 <param name=
"id" type=
"int" default=
""/>
5818 <method name=
"SetHelpString" type=
"" overloaded=
"no">
5819 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
5821 <param name=
"id" type=
"int" default=
""/>
5822 <param name=
"helpString" type=
"String" default=
""/>
5825 <method name=
"GetHelpString" type=
"String" overloaded=
"no">
5826 <autodoc>GetHelpString(int id) -
> String
</autodoc>
5828 <param name=
"id" type=
"int" default=
""/>
5831 <method name=
"SetTitle" type=
"" overloaded=
"no">
5832 <autodoc>SetTitle(String title)
</autodoc>
5834 <param name=
"title" type=
"String" default=
""/>
5837 <method name=
"GetTitle" type=
"String" overloaded=
"no">
5838 <autodoc>GetTitle() -
> String
</autodoc>
5840 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
5841 <autodoc>SetEventHandler(EvtHandler handler)
</autodoc>
5843 <param name=
"handler" type=
"EvtHandler" default=
""/>
5846 <method name=
"GetEventHandler" type=
"EvtHandler" overloaded=
"no">
5847 <autodoc>GetEventHandler() -
> EvtHandler
</autodoc>
5849 <method name=
"SetInvokingWindow" type=
"" overloaded=
"no">
5850 <autodoc>SetInvokingWindow(Window win)
</autodoc>
5852 <param name=
"win" type=
"Window" default=
""/>
5855 <method name=
"GetInvokingWindow" type=
"Window" overloaded=
"no">
5856 <autodoc>GetInvokingWindow() -
> Window
</autodoc>
5858 <method name=
"GetStyle" type=
"long" overloaded=
"no">
5859 <autodoc>GetStyle() -
> long
</autodoc>
5861 <method name=
"UpdateUI" type=
"" overloaded=
"no">
5862 <autodoc>UpdateUI(EvtHandler source=None)
</autodoc>
5864 <param name=
"source" type=
"EvtHandler" default=
"NULL"/>
5867 <method name=
"GetMenuBar" type=
"wxMenuBar" overloaded=
"no">
5868 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
5870 <method name=
"Attach" type=
"" overloaded=
"no">
5871 <autodoc>Attach(wxMenuBarBase menubar)
</autodoc>
5873 <param name=
"menubar" type=
"wxMenuBarBase" default=
""/>
5876 <method name=
"Detach" type=
"" overloaded=
"no">
5877 <autodoc>Detach()
</autodoc>
5879 <method name=
"IsAttached" type=
"bool" overloaded=
"no">
5880 <autodoc>IsAttached() -
> bool
</autodoc>
5882 <method name=
"SetParent" type=
"" overloaded=
"no">
5883 <autodoc>SetParent(Menu parent)
</autodoc>
5885 <param name=
"parent" type=
"Menu" default=
""/>
5888 <method name=
"GetParent" type=
"Menu" overloaded=
"no">
5889 <autodoc>GetParent() -
> Menu
</autodoc>
5893 #---------------------------------------------------------------------------
5895 <class name=
"MenuBar" oldname=
"wxMenuBar" module=
"core">
5896 <baseclass name=
"Window"/>
5897 <constructor name=
"MenuBar" overloaded=
"no">
5898 <autodoc>__init__(long style=
0) -
> MenuBar
</autodoc>
5900 <param name=
"style" type=
"long" default=
"0"/>
5903 <method name=
"Append" type=
"bool" overloaded=
"no">
5904 <autodoc>Append(Menu menu, String title) -
> bool
</autodoc>
5906 <param name=
"menu" type=
"Menu" default=
""/>
5907 <param name=
"title" type=
"String" default=
""/>
5910 <method name=
"Insert" type=
"bool" overloaded=
"no">
5911 <autodoc>Insert(size_t pos, Menu menu, String title) -
> bool
</autodoc>
5913 <param name=
"pos" type=
"size_t" default=
""/>
5914 <param name=
"menu" type=
"Menu" default=
""/>
5915 <param name=
"title" type=
"String" default=
""/>
5918 <method name=
"GetMenuCount" type=
"size_t" overloaded=
"no">
5919 <autodoc>GetMenuCount() -
> size_t
</autodoc>
5921 <method name=
"GetMenu" type=
"Menu" overloaded=
"no">
5922 <autodoc>GetMenu(size_t pos) -
> Menu
</autodoc>
5924 <param name=
"pos" type=
"size_t" default=
""/>
5927 <method name=
"Replace" type=
"Menu" overloaded=
"no">
5928 <autodoc>Replace(size_t pos, Menu menu, String title) -
> Menu
</autodoc>
5930 <param name=
"pos" type=
"size_t" default=
""/>
5931 <param name=
"menu" type=
"Menu" default=
""/>
5932 <param name=
"title" type=
"String" default=
""/>
5935 <method name=
"Remove" type=
"Menu" overloaded=
"no">
5936 <autodoc>Remove(size_t pos) -
> Menu
</autodoc>
5938 <param name=
"pos" type=
"size_t" default=
""/>
5941 <method name=
"EnableTop" type=
"" overloaded=
"no">
5942 <autodoc>EnableTop(size_t pos, bool enable)
</autodoc>
5944 <param name=
"pos" type=
"size_t" default=
""/>
5945 <param name=
"enable" type=
"bool" default=
""/>
5948 <method name=
"IsEnabledTop" type=
"bool" overloaded=
"no">
5949 <autodoc>IsEnabledTop(size_t pos) -
> bool
</autodoc>
5951 <param name=
"pos" type=
"size_t" default=
""/>
5954 <method name=
"SetLabelTop" type=
"" overloaded=
"no">
5955 <autodoc>SetLabelTop(size_t pos, String label)
</autodoc>
5957 <param name=
"pos" type=
"size_t" default=
""/>
5958 <param name=
"label" type=
"String" default=
""/>
5961 <method name=
"GetLabelTop" type=
"String" overloaded=
"no">
5962 <autodoc>GetLabelTop(size_t pos) -
> String
</autodoc>
5964 <param name=
"pos" type=
"size_t" default=
""/>
5967 <method name=
"FindMenuItem" type=
"int" overloaded=
"no">
5968 <autodoc>FindMenuItem(String menu, String item) -
> int
</autodoc>
5970 <param name=
"menu" type=
"String" default=
""/>
5971 <param name=
"item" type=
"String" default=
""/>
5974 <method name=
"FindItemById" type=
"wxMenuItem" overloaded=
"no">
5975 <autodoc>FindItemById(int id) -
> MenuItem
</autodoc>
5977 <param name=
"id" type=
"int" default=
""/>
5980 <method name=
"FindMenu" type=
"int" overloaded=
"no">
5981 <autodoc>FindMenu(String title) -
> int
</autodoc>
5983 <param name=
"title" type=
"String" default=
""/>
5986 <method name=
"Enable" type=
"" overloaded=
"no">
5987 <autodoc>Enable(int id, bool enable)
</autodoc>
5989 <param name=
"id" type=
"int" default=
""/>
5990 <param name=
"enable" type=
"bool" default=
""/>
5993 <method name=
"Check" type=
"" overloaded=
"no">
5994 <autodoc>Check(int id, bool check)
</autodoc>
5996 <param name=
"id" type=
"int" default=
""/>
5997 <param name=
"check" type=
"bool" default=
""/>
6000 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
6001 <autodoc>IsChecked(int id) -
> bool
</autodoc>
6003 <param name=
"id" type=
"int" default=
""/>
6006 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
6007 <autodoc>IsEnabled(int id) -
> bool
</autodoc>
6009 <param name=
"id" type=
"int" default=
""/>
6012 <method name=
"SetLabel" type=
"" overloaded=
"no">
6013 <autodoc>SetLabel(int id, String label)
</autodoc>
6015 <param name=
"id" type=
"int" default=
""/>
6016 <param name=
"label" type=
"String" default=
""/>
6019 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6020 <autodoc>GetLabel(int id) -
> String
</autodoc>
6022 <param name=
"id" type=
"int" default=
""/>
6025 <method name=
"SetHelpString" type=
"" overloaded=
"no">
6026 <autodoc>SetHelpString(int id, String helpString)
</autodoc>
6028 <param name=
"id" type=
"int" default=
""/>
6029 <param name=
"helpString" type=
"String" default=
""/>
6032 <method name=
"GetHelpString" type=
"String" overloaded=
"no">
6033 <autodoc>GetHelpString(int id) -
> String
</autodoc>
6035 <param name=
"id" type=
"int" default=
""/>
6038 <method name=
"GetFrame" type=
"wxFrame" overloaded=
"no">
6039 <autodoc>GetFrame() -
> wxFrame
</autodoc>
6041 <method name=
"IsAttached" type=
"bool" overloaded=
"no">
6042 <autodoc>IsAttached() -
> bool
</autodoc>
6044 <method name=
"Attach" type=
"" overloaded=
"no">
6045 <autodoc>Attach(wxFrame frame)
</autodoc>
6047 <param name=
"frame" type=
"wxFrame" default=
""/>
6050 <method name=
"Detach" type=
"" overloaded=
"no">
6051 <autodoc>Detach()
</autodoc>
6055 #---------------------------------------------------------------------------
6057 <class name=
"MenuItem" oldname=
"wxMenuItem" module=
"core">
6058 <baseclass name=
"Object"/>
6059 <constructor name=
"MenuItem" overloaded=
"no">
6060 <autodoc>__init__(Menu parentMenu=None, int id=ID_SEPARATOR, String text=EmptyString,
6061 String help=EmptyString, int kind=ITEM_NORMAL,
6062 Menu subMenu=None) -
> MenuItem
</autodoc>
6064 <param name=
"parentMenu" type=
"Menu" default=
"NULL"/>
6065 <param name=
"id" type=
"int" default=
"wxID_SEPARATOR"/>
6066 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
6067 <param name=
"help" type=
"String" default=
"wxPyEmptyString"/>
6068 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
6069 <param name=
"subMenu" type=
"Menu" default=
"NULL"/>
6072 <method name=
"GetMenu" type=
"Menu" overloaded=
"no">
6073 <autodoc>GetMenu() -
> Menu
</autodoc>
6075 <method name=
"SetMenu" type=
"" overloaded=
"no">
6076 <autodoc>SetMenu(Menu menu)
</autodoc>
6078 <param name=
"menu" type=
"Menu" default=
""/>
6081 <method name=
"SetId" type=
"" overloaded=
"no">
6082 <autodoc>SetId(int id)
</autodoc>
6084 <param name=
"id" type=
"int" default=
""/>
6087 <method name=
"GetId" type=
"int" overloaded=
"no">
6088 <autodoc>GetId() -
> int
</autodoc>
6090 <method name=
"IsSeparator" type=
"bool" overloaded=
"no">
6091 <autodoc>IsSeparator() -
> bool
</autodoc>
6093 <method name=
"SetText" type=
"" overloaded=
"no">
6094 <autodoc>SetText(String str)
</autodoc>
6096 <param name=
"str" type=
"String" default=
""/>
6099 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6100 <autodoc>GetLabel() -
> String
</autodoc>
6102 <method name=
"GetText" type=
"String" overloaded=
"no">
6103 <autodoc>GetText() -
> String
</autodoc>
6105 <staticmethod name=
"GetLabelFromText" type=
"String" overloaded=
"no">
6106 <autodoc>GetLabelFromText(String text) -
> String
</autodoc>
6108 <param name=
"text" type=
"String" default=
""/>
6111 <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no">
6112 <autodoc>GetKind() -
> int
</autodoc>
6114 <method name=
"SetCheckable" type=
"" overloaded=
"no">
6115 <autodoc>SetCheckable(bool checkable)
</autodoc>
6117 <param name=
"checkable" type=
"bool" default=
""/>
6120 <method name=
"IsCheckable" type=
"bool" overloaded=
"no">
6121 <autodoc>IsCheckable() -
> bool
</autodoc>
6123 <method name=
"IsSubMenu" type=
"bool" overloaded=
"no">
6124 <autodoc>IsSubMenu() -
> bool
</autodoc>
6126 <method name=
"SetSubMenu" type=
"" overloaded=
"no">
6127 <autodoc>SetSubMenu(Menu menu)
</autodoc>
6129 <param name=
"menu" type=
"Menu" default=
""/>
6132 <method name=
"GetSubMenu" type=
"Menu" overloaded=
"no">
6133 <autodoc>GetSubMenu() -
> Menu
</autodoc>
6135 <method name=
"Enable" type=
"" overloaded=
"no">
6136 <autodoc>Enable(bool enable=True)
</autodoc>
6138 <param name=
"enable" type=
"bool" default=
"True"/>
6141 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
6142 <autodoc>IsEnabled() -
> bool
</autodoc>
6144 <method name=
"Check" type=
"" overloaded=
"no">
6145 <autodoc>Check(bool check=True)
</autodoc>
6147 <param name=
"check" type=
"bool" default=
"True"/>
6150 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
6151 <autodoc>IsChecked() -
> bool
</autodoc>
6153 <method name=
"Toggle" type=
"" overloaded=
"no">
6154 <autodoc>Toggle()
</autodoc>
6156 <method name=
"SetHelp" type=
"" overloaded=
"no">
6157 <autodoc>SetHelp(String str)
</autodoc>
6159 <param name=
"str" type=
"String" default=
""/>
6162 <method name=
"GetHelp" type=
"String" overloaded=
"no">
6163 <autodoc>GetHelp() -
> String
</autodoc>
6165 <method name=
"GetAccel" type=
"AcceleratorEntry" overloaded=
"no">
6166 <autodoc>GetAccel() -
> AcceleratorEntry
</autodoc>
6168 <method name=
"SetAccel" type=
"" overloaded=
"no">
6169 <autodoc>SetAccel(AcceleratorEntry accel)
</autodoc>
6171 <param name=
"accel" type=
"AcceleratorEntry" default=
""/>
6174 <staticmethod name=
"GetDefaultMarginWidth" type=
"int" overloaded=
"no">
6175 <autodoc>GetDefaultMarginWidth() -
> int
</autodoc>
6177 <method name=
"SetBitmap" type=
"" overloaded=
"no">
6178 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
6180 <param name=
"bitmap" type=
"wxBitmap" default=
""/>
6183 <method name=
"GetBitmap" type=
"wxBitmap" overloaded=
"no">
6184 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
6188 #---------------------------------------------------------------------------
6190 <class name=
"Control" oldname=
"wxControl" module=
"core">
6191 <docstring>This is the base class for a control or 'widget'.
6193 A control is generally a small window which processes user input and/or
6194 displays one or more item of data.
</docstring>
6195 <baseclass name=
"Window"/>
6196 <constructor name=
"Control" overloaded=
"no">
6197 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
6198 long style=
0, Validator validator=DefaultValidator,
6199 String name=ControlNameStr) -
> Control
</autodoc>
6200 <docstring>Create a Control. Normally you should only call this from a
6201 subclass' __init__ as a plain old wx.Control is not very useful.
</docstring>
6203 <param name=
"parent" type=
"Window" default=
""/>
6204 <param name=
"id" type=
"int" default=
""/>
6205 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
6206 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
6207 <param name=
"style" type=
"long" default=
"0"/>
6208 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
6209 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
6212 <constructor name=
"PreControl" overloaded=
"no">
6213 <autodoc>PreControl() -
> Control
</autodoc>
6214 <docstring>Precreate a Control control for
2-phase creation
</docstring>
6216 <method name=
"Create" type=
"bool" overloaded=
"no">
6217 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
6218 long style=
0, Validator validator=DefaultValidator,
6219 String name=ControlNameStr) -
> bool
</autodoc>
6220 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
6222 <param name=
"parent" type=
"Window" default=
""/>
6223 <param name=
"id" type=
"int" default=
""/>
6224 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
6225 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
6226 <param name=
"style" type=
"long" default=
"0"/>
6227 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
6228 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
6231 <method name=
"Command" type=
"" overloaded=
"no">
6232 <autodoc>Command(CommandEvent event)
</autodoc>
6233 <docstring>Simulates the effect of the user issuing a command to the
6234 item. See wxCommandEvent.
</docstring>
6236 <param name=
"event" type=
"CommandEvent" default=
""/>
6239 <method name=
"GetLabel" type=
"String" overloaded=
"no">
6240 <autodoc>GetLabel() -
> String
</autodoc>
6241 <docstring>Return a control's text.
</docstring>
6243 <method name=
"SetLabel" type=
"" overloaded=
"no">
6244 <autodoc>SetLabel(String label)
</autodoc>
6245 <docstring>Sets the item's text.
</docstring>
6247 <param name=
"label" type=
"String" default=
""/>
6252 #---------------------------------------------------------------------------
6254 <class name=
"ItemContainer" oldname=
"wxItemContainer" module=
"core">
6255 <docstring>wx.ItemContainer defines an interface which is implemented by all
6256 controls which have string subitems, each of which may be
6257 selected, such as wx.ListBox, wx.CheckListBox, wx.Choice and
6258 wx.ComboBox (which implements an extended interface deriving from
6261 It defines the methods for accessing the control's items and
6262 although each of the derived classes implements them differently,
6263 they still all conform to the same interface.
6265 The items in a wx.ItemContainer have (non empty) string labels
6266 and, optionally, client data associated with them.
6268 <method name=
"Append" type=
"int" overloaded=
"no">
6269 <autodoc>Append(String item, PyObject clientData=None) -
> int
</autodoc>
6270 <docstring>Adds the item to the control, associating the given data with the
6271 item if not None. The return value is the index of the newly
6272 added item which may be different from the last one if the
6273 control is sorted (e.g. has wx.LB_SORT or wx.CB_SORT style).
</docstring>
6275 <param name=
"item" type=
"String" default=
""/>
6276 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
6279 <method name=
"AppendItems" type=
"" overloaded=
"no">
6280 <autodoc>AppendItems(wxArrayString strings)
</autodoc>
6281 <docstring>Apend several items at once to the control. Notice that calling
6282 this method may be much faster than appending the items one by
6283 one if you need to add a lot of items.
</docstring>
6285 <param name=
"strings" type=
"wxArrayString" default=
""/>
6288 <method name=
"Insert" type=
"int" overloaded=
"no">
6289 <autodoc>Insert(String item, int pos, PyObject clientData=None) -
> int
</autodoc>
6290 <docstring>Insert an item into the control before the item at the pos index,
6291 optionally associating some data object with the item.
</docstring>
6293 <param name=
"item" type=
"String" default=
""/>
6294 <param name=
"pos" type=
"int" default=
""/>
6295 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
6298 <method name=
"Clear" type=
"" overloaded=
"no">
6299 <autodoc>Clear()
</autodoc>
6300 <docstring>Removes all items from the control.
</docstring>
6302 <method name=
"Delete" type=
"" overloaded=
"no">
6303 <autodoc>Delete(int n)
</autodoc>
6304 <docstring>Deletes the item at the zero-based index 'n' from the control.
6305 Note that it is an error (signalled by a PyAssertionError
6306 exception if enabled) to remove an item with the index negative
6307 or greater or equal than the number of items in the control.
</docstring>
6309 <param name=
"n" type=
"int" default=
""/>
6312 <method name=
"GetCount" type=
"int" overloaded=
"no">
6313 <autodoc>GetCount() -
> int
</autodoc>
6314 <docstring>Returns the number of items in the control.
</docstring>
6316 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
6317 <autodoc>IsEmpty() -
> bool
</autodoc>
6318 <docstring>Returns True if the control is empty or False if it has some items.
</docstring>
6320 <method name=
"GetString" type=
"String" overloaded=
"no">
6321 <autodoc>GetString(int n) -
> String
</autodoc>
6322 <docstring>Returns the label of the item with the given index.
</docstring>
6324 <param name=
"n" type=
"int" default=
""/>
6327 <method name=
"GetStrings" type=
"wxArrayString" overloaded=
"no">
6328 <autodoc>GetStrings() -
> wxArrayString
</autodoc>
6330 <method name=
"SetString" type=
"" overloaded=
"no">
6331 <autodoc>SetString(int n, String s)
</autodoc>
6332 <docstring>Sets the label for the given item.
</docstring>
6334 <param name=
"n" type=
"int" default=
""/>
6335 <param name=
"s" type=
"String" default=
""/>
6338 <method name=
"FindString" type=
"int" overloaded=
"no">
6339 <autodoc>FindString(String s) -
> int
</autodoc>
6340 <docstring>Finds an item whose label matches the given string. Returns the
6341 zero-based position of the item, or wx.NOT_FOUND if the string
6342 was not found.
</docstring>
6344 <param name=
"s" type=
"String" default=
""/>
6347 <method name=
"Select" type=
"" overloaded=
"no">
6348 <autodoc>Select(int n)
</autodoc>
6349 <docstring>Sets the item at index 'n' to be the selected item.
</docstring>
6351 <param name=
"n" type=
"int" default=
""/>
6354 <method name=
"GetSelection" type=
"int" overloaded=
"no">
6355 <autodoc>GetSelection() -
> int
</autodoc>
6356 <docstring>Returns the index of the selected item or wx.NOT_FOUND if no item is selected.
</docstring>
6358 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
6359 <autodoc>GetStringSelection() -
> String
</autodoc>
6360 <docstring>Returns the label of the selected item or an empty string if no item is selected.
</docstring>
6362 <method name=
"GetClientData" type=
"PyObject" overloaded=
"no">
6363 <autodoc>GetClientData(int n) -
> PyObject
</autodoc>
6364 <docstring>Returns the client data associated with the given item, (if any.)
</docstring>
6366 <param name=
"n" type=
"int" default=
""/>
6369 <method name=
"SetClientData" type=
"" overloaded=
"no">
6370 <autodoc>SetClientData(int n, PyObject clientData)
</autodoc>
6371 <docstring>Associate the given client data with the item at position n.
</docstring>
6373 <param name=
"n" type=
"int" default=
""/>
6374 <param name=
"clientData" type=
"PyObject" default=
""/>
6379 #---------------------------------------------------------------------------
6381 <class name=
"ControlWithItems" oldname=
"wxControlWithItems" module=
"core">
6382 <docstring>wx.ControlWithItems combines the wx.ItemContainer class with the
6383 wx.Control class, and is used for the base class of various
6384 controls that have items.
</docstring>
6385 <baseclass name=
"Control"/>
6386 <baseclass name=
"ItemContainer"/>
6389 #---------------------------------------------------------------------------
6391 <class name=
"SizerItem" oldname=
"wxSizerItem" module=
"core">
6392 <baseclass name=
"Object"/>
6393 <constructor name=
"SizerItem" overloaded=
"no">
6394 <autodoc>__init__() -
> SizerItem
</autodoc>
6396 <constructor name=
"SizerItemSpacer" overloaded=
"no">
6397 <autodoc>SizerItemSpacer(int width, int height, int proportion, int flag, int border,
6398 Object userData) -
> SizerItem
</autodoc>
6400 <param name=
"width" type=
"int" default=
""/>
6401 <param name=
"height" type=
"int" default=
""/>
6402 <param name=
"proportion" type=
"int" default=
""/>
6403 <param name=
"flag" type=
"int" default=
""/>
6404 <param name=
"border" type=
"int" default=
""/>
6405 <param name=
"userData" type=
"Object" default=
""/>
6408 <constructor name=
"SizerItemWindow" overloaded=
"no">
6409 <autodoc>SizerItemWindow(Window window, int proportion, int flag, int border,
6410 Object userData) -
> SizerItem
</autodoc>
6412 <param name=
"window" type=
"Window" default=
""/>
6413 <param name=
"proportion" type=
"int" default=
""/>
6414 <param name=
"flag" type=
"int" default=
""/>
6415 <param name=
"border" type=
"int" default=
""/>
6416 <param name=
"userData" type=
"Object" default=
""/>
6419 <constructor name=
"SizerItemSizer" overloaded=
"no">
6420 <autodoc>SizerItemSizer(Sizer sizer, int proportion, int flag, int border,
6421 Object userData) -
> SizerItem
</autodoc>
6423 <param name=
"sizer" type=
"wxSizer" default=
""/>
6424 <param name=
"proportion" type=
"int" default=
""/>
6425 <param name=
"flag" type=
"int" default=
""/>
6426 <param name=
"border" type=
"int" default=
""/>
6427 <param name=
"userData" type=
"Object" default=
""/>
6430 <method name=
"DeleteWindows" type=
"" overloaded=
"no">
6431 <autodoc>DeleteWindows()
</autodoc>
6433 <method name=
"DetachSizer" type=
"" overloaded=
"no">
6434 <autodoc>DetachSizer()
</autodoc>
6436 <method name=
"GetSize" type=
"Size" overloaded=
"no">
6437 <autodoc>GetSize() -
> Size
</autodoc>
6439 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6440 <autodoc>CalcMin() -
> Size
</autodoc>
6442 <method name=
"SetDimension" type=
"" overloaded=
"no">
6443 <autodoc>SetDimension(Point pos, Size size)
</autodoc>
6445 <param name=
"pos" type=
"Point" default=
""/>
6446 <param name=
"size" type=
"Size" default=
""/>
6449 <method name=
"GetMinSize" type=
"Size" overloaded=
"no">
6450 <autodoc>GetMinSize() -
> Size
</autodoc>
6452 <method name=
"SetInitSize" type=
"" overloaded=
"no">
6453 <autodoc>SetInitSize(int x, int y)
</autodoc>
6455 <param name=
"x" type=
"int" default=
""/>
6456 <param name=
"y" type=
"int" default=
""/>
6459 <method name=
"SetRatioWH" type=
"" overloaded=
"no">
6460 <autodoc>SetRatioWH(int width, int height)
</autodoc>
6462 <param name=
"width" type=
"int" default=
""/>
6463 <param name=
"height" type=
"int" default=
""/>
6466 <method name=
"SetRatioSize" type=
"" overloaded=
"no">
6467 <autodoc>SetRatioSize(Size size)
</autodoc>
6469 <param name=
"size" type=
"Size" default=
""/>
6472 <method name=
"SetRatio" type=
"" overloaded=
"no">
6473 <autodoc>SetRatio(float ratio)
</autodoc>
6475 <param name=
"ratio" type=
"float" default=
""/>
6478 <method name=
"GetRatio" type=
"float" overloaded=
"no">
6479 <autodoc>GetRatio() -
> float
</autodoc>
6481 <method name=
"IsWindow" type=
"bool" overloaded=
"no">
6482 <autodoc>IsWindow() -
> bool
</autodoc>
6484 <method name=
"IsSizer" type=
"bool" overloaded=
"no">
6485 <autodoc>IsSizer() -
> bool
</autodoc>
6487 <method name=
"IsSpacer" type=
"bool" overloaded=
"no">
6488 <autodoc>IsSpacer() -
> bool
</autodoc>
6490 <method name=
"SetProportion" type=
"" overloaded=
"no">
6491 <autodoc>SetProportion(int proportion)
</autodoc>
6493 <param name=
"proportion" type=
"int" default=
""/>
6496 <method name=
"GetProportion" type=
"int" overloaded=
"no">
6497 <autodoc>GetProportion() -
> int
</autodoc>
6499 <method name=
"SetFlag" type=
"" overloaded=
"no">
6500 <autodoc>SetFlag(int flag)
</autodoc>
6502 <param name=
"flag" type=
"int" default=
""/>
6505 <method name=
"GetFlag" type=
"int" overloaded=
"no">
6506 <autodoc>GetFlag() -
> int
</autodoc>
6508 <method name=
"SetBorder" type=
"" overloaded=
"no">
6509 <autodoc>SetBorder(int border)
</autodoc>
6511 <param name=
"border" type=
"int" default=
""/>
6514 <method name=
"GetBorder" type=
"int" overloaded=
"no">
6515 <autodoc>GetBorder() -
> int
</autodoc>
6517 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
6518 <autodoc>GetWindow() -
> Window
</autodoc>
6520 <method name=
"SetWindow" type=
"" overloaded=
"no">
6521 <autodoc>SetWindow(Window window)
</autodoc>
6523 <param name=
"window" type=
"Window" default=
""/>
6526 <method name=
"GetSizer" type=
"wxSizer" overloaded=
"no">
6527 <autodoc>GetSizer() -
> Sizer
</autodoc>
6529 <method name=
"SetSizer" type=
"" overloaded=
"no">
6530 <autodoc>SetSizer(Sizer sizer)
</autodoc>
6532 <param name=
"sizer" type=
"wxSizer" default=
""/>
6535 <method name=
"GetSpacer" type=
"Size" overloaded=
"no">
6536 <autodoc>GetSpacer() -
> Size
</autodoc>
6538 <method name=
"SetSpacer" type=
"" overloaded=
"no">
6539 <autodoc>SetSpacer(Size size)
</autodoc>
6541 <param name=
"size" type=
"Size" default=
""/>
6544 <method name=
"Show" type=
"" overloaded=
"no">
6545 <autodoc>Show(bool show)
</autodoc>
6547 <param name=
"show" type=
"bool" default=
""/>
6550 <method name=
"IsShown" type=
"bool" overloaded=
"no">
6551 <autodoc>IsShown() -
> bool
</autodoc>
6553 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
6554 <autodoc>GetPosition() -
> Point
</autodoc>
6556 <method name=
"GetUserData" type=
"PyObject" overloaded=
"no">
6557 <autodoc>GetUserData() -
> PyObject
</autodoc>
6560 <class name=
"Sizer" oldname=
"wxSizer" module=
"core">
6561 <baseclass name=
"Object"/>
6562 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
6563 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
6565 <param name=
"_self" type=
"PyObject" default=
""/>
6568 <method name=
"Add" type=
"" overloaded=
"no">
6569 <autodoc>Add(PyObject item, int proportion=
0, int flag=
0, int border=
0,
6570 PyObject userData=None)
</autodoc>
6572 <param name=
"item" type=
"PyObject" default=
""/>
6573 <param name=
"proportion" type=
"int" default=
"0"/>
6574 <param name=
"flag" type=
"int" default=
"0"/>
6575 <param name=
"border" type=
"int" default=
"0"/>
6576 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6579 <method name=
"Insert" type=
"" overloaded=
"no">
6580 <autodoc>Insert(int before, PyObject item, int proportion=
0, int flag=
0,
6581 int border=
0, PyObject userData=None)
</autodoc>
6583 <param name=
"before" type=
"int" default=
""/>
6584 <param name=
"item" type=
"PyObject" default=
""/>
6585 <param name=
"proportion" type=
"int" default=
"0"/>
6586 <param name=
"flag" type=
"int" default=
"0"/>
6587 <param name=
"border" type=
"int" default=
"0"/>
6588 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6591 <method name=
"Prepend" type=
"" overloaded=
"no">
6592 <autodoc>Prepend(PyObject item, int proportion=
0, int flag=
0, int border=
0,
6593 PyObject userData=None)
</autodoc>
6595 <param name=
"item" type=
"PyObject" default=
""/>
6596 <param name=
"proportion" type=
"int" default=
"0"/>
6597 <param name=
"flag" type=
"int" default=
"0"/>
6598 <param name=
"border" type=
"int" default=
"0"/>
6599 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
6602 <method name=
"Remove" type=
"bool" overloaded=
"no">
6603 <autodoc>Remove(PyObject item) -
> bool
</autodoc>
6605 <param name=
"item" type=
"PyObject" default=
""/>
6608 <method name=
"_SetItemMinSize" type=
"" overloaded=
"no">
6609 <autodoc>_SetItemMinSize(PyObject item, Size size)
</autodoc>
6611 <param name=
"item" type=
"PyObject" default=
""/>
6612 <param name=
"size" type=
"Size" default=
""/>
6615 <method name=
"AddItem" type=
"" overloaded=
"no">
6616 <autodoc>AddItem(SizerItem item)
</autodoc>
6618 <param name=
"item" type=
"SizerItem" default=
""/>
6621 <method name=
"InsertItem" type=
"" overloaded=
"no">
6622 <autodoc>InsertItem(size_t index, SizerItem item)
</autodoc>
6624 <param name=
"index" type=
"size_t" default=
""/>
6625 <param name=
"item" type=
"SizerItem" default=
""/>
6628 <method name=
"PrependItem" type=
"" overloaded=
"no">
6629 <autodoc>PrependItem(SizerItem item)
</autodoc>
6631 <param name=
"item" type=
"SizerItem" default=
""/>
6634 <method name=
"SetDimension" type=
"" overloaded=
"no">
6635 <autodoc>SetDimension(int x, int y, int width, int height)
</autodoc>
6637 <param name=
"x" type=
"int" default=
""/>
6638 <param name=
"y" type=
"int" default=
""/>
6639 <param name=
"width" type=
"int" default=
""/>
6640 <param name=
"height" type=
"int" default=
""/>
6643 <method name=
"SetMinSize" type=
"" overloaded=
"no">
6644 <autodoc>SetMinSize(Size size)
</autodoc>
6646 <param name=
"size" type=
"Size" default=
""/>
6649 <method name=
"GetSize" type=
"Size" overloaded=
"no">
6650 <autodoc>GetSize() -
> Size
</autodoc>
6652 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
6653 <autodoc>GetPosition() -
> Point
</autodoc>
6655 <method name=
"GetMinSize" type=
"Size" overloaded=
"no">
6656 <autodoc>GetMinSize() -
> Size
</autodoc>
6658 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6659 <autodoc>RecalcSizes()
</autodoc>
6661 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6662 <autodoc>CalcMin() -
> Size
</autodoc>
6664 <method name=
"Layout" type=
"" overloaded=
"no">
6665 <autodoc>Layout()
</autodoc>
6667 <method name=
"Fit" type=
"Size" overloaded=
"no">
6668 <autodoc>Fit(Window window) -
> Size
</autodoc>
6670 <param name=
"window" type=
"Window" default=
""/>
6673 <method name=
"FitInside" type=
"" overloaded=
"no">
6674 <autodoc>FitInside(Window window)
</autodoc>
6676 <param name=
"window" type=
"Window" default=
""/>
6679 <method name=
"SetSizeHints" type=
"" overloaded=
"no">
6680 <autodoc>SetSizeHints(Window window)
</autodoc>
6682 <param name=
"window" type=
"Window" default=
""/>
6685 <method name=
"SetVirtualSizeHints" type=
"" overloaded=
"no">
6686 <autodoc>SetVirtualSizeHints(Window window)
</autodoc>
6688 <param name=
"window" type=
"Window" default=
""/>
6691 <method name=
"Clear" type=
"" overloaded=
"no">
6692 <autodoc>Clear(bool delete_windows=False)
</autodoc>
6694 <param name=
"delete_windows" type=
"bool" default=
"False"/>
6697 <method name=
"DeleteWindows" type=
"" overloaded=
"no">
6698 <autodoc>DeleteWindows()
</autodoc>
6700 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
6701 <autodoc>GetChildren() -
> PyObject
</autodoc>
6703 <method name=
"Show" type=
"" overloaded=
"no">
6704 <autodoc>Show(PyObject item, bool show=True)
</autodoc>
6706 <param name=
"item" type=
"PyObject" default=
""/>
6707 <param name=
"show" type=
"bool" default=
"True"/>
6710 <method name=
"Hide" type=
"" overloaded=
"no">
6711 <autodoc>Hide(PyObject item)
</autodoc>
6713 <param name=
"item" type=
"PyObject" default=
""/>
6716 <method name=
"IsShown" type=
"bool" overloaded=
"no">
6717 <autodoc>IsShown(PyObject item) -
> bool
</autodoc>
6719 <param name=
"item" type=
"PyObject" default=
""/>
6722 <method name=
"ShowItems" type=
"" overloaded=
"no">
6723 <autodoc>ShowItems(bool show)
</autodoc>
6725 <param name=
"show" type=
"bool" default=
""/>
6729 <class name=
"PySizer" oldname=
"wxPySizer" module=
"core">
6730 <baseclass name=
"Sizer"/>
6731 <constructor name=
"PySizer" overloaded=
"no">
6732 <autodoc>__init__() -
> PySizer
</autodoc>
6734 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
6735 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
6737 <param name=
"self" type=
"PyObject" default=
""/>
6738 <param name=
"_class" type=
"PyObject" default=
""/>
6743 #---------------------------------------------------------------------------
6745 <class name=
"BoxSizer" oldname=
"wxBoxSizer" module=
"core">
6746 <baseclass name=
"Sizer"/>
6747 <constructor name=
"BoxSizer" overloaded=
"no">
6748 <autodoc>__init__(int orient=HORIZONTAL) -
> BoxSizer
</autodoc>
6750 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
6753 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
6754 <autodoc>GetOrientation() -
> int
</autodoc>
6756 <method name=
"SetOrientation" type=
"" overloaded=
"no">
6757 <autodoc>SetOrientation(int orient)
</autodoc>
6759 <param name=
"orient" type=
"int" default=
""/>
6762 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6763 <autodoc>RecalcSizes()
</autodoc>
6765 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6766 <autodoc>CalcMin() -
> Size
</autodoc>
6770 #---------------------------------------------------------------------------
6772 <class name=
"StaticBoxSizer" oldname=
"wxStaticBoxSizer" module=
"core">
6773 <baseclass name=
"BoxSizer"/>
6774 <constructor name=
"StaticBoxSizer" overloaded=
"no">
6775 <autodoc>__init__(wxStaticBox box, int orient=HORIZONTAL) -
> StaticBoxSizer
</autodoc>
6777 <param name=
"box" type=
"wxStaticBox" default=
""/>
6778 <param name=
"orient" type=
"int" default=
"wxHORIZONTAL"/>
6781 <method name=
"GetStaticBox" type=
"wxStaticBox" overloaded=
"no">
6782 <autodoc>GetStaticBox() -
> wxStaticBox
</autodoc>
6784 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6785 <autodoc>RecalcSizes()
</autodoc>
6787 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6788 <autodoc>CalcMin() -
> Size
</autodoc>
6792 #---------------------------------------------------------------------------
6794 <class name=
"GridSizer" oldname=
"wxGridSizer" module=
"core">
6795 <baseclass name=
"Sizer"/>
6796 <constructor name=
"GridSizer" overloaded=
"no">
6797 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> GridSizer
</autodoc>
6799 <param name=
"rows" type=
"int" default=
"1"/>
6800 <param name=
"cols" type=
"int" default=
"0"/>
6801 <param name=
"vgap" type=
"int" default=
"0"/>
6802 <param name=
"hgap" type=
"int" default=
"0"/>
6805 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6806 <autodoc>RecalcSizes()
</autodoc>
6808 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6809 <autodoc>CalcMin() -
> Size
</autodoc>
6811 <method name=
"SetCols" type=
"" overloaded=
"no">
6812 <autodoc>SetCols(int cols)
</autodoc>
6814 <param name=
"cols" type=
"int" default=
""/>
6817 <method name=
"SetRows" type=
"" overloaded=
"no">
6818 <autodoc>SetRows(int rows)
</autodoc>
6820 <param name=
"rows" type=
"int" default=
""/>
6823 <method name=
"SetVGap" type=
"" overloaded=
"no">
6824 <autodoc>SetVGap(int gap)
</autodoc>
6826 <param name=
"gap" type=
"int" default=
""/>
6829 <method name=
"SetHGap" type=
"" overloaded=
"no">
6830 <autodoc>SetHGap(int gap)
</autodoc>
6832 <param name=
"gap" type=
"int" default=
""/>
6835 <method name=
"GetCols" type=
"int" overloaded=
"no">
6836 <autodoc>GetCols() -
> int
</autodoc>
6838 <method name=
"GetRows" type=
"int" overloaded=
"no">
6839 <autodoc>GetRows() -
> int
</autodoc>
6841 <method name=
"GetVGap" type=
"int" overloaded=
"no">
6842 <autodoc>GetVGap() -
> int
</autodoc>
6844 <method name=
"GetHGap" type=
"int" overloaded=
"no">
6845 <autodoc>GetHGap() -
> int
</autodoc>
6849 #---------------------------------------------------------------------------
6851 <class name=
"FlexGridSizer" oldname=
"wxFlexGridSizer" module=
"core">
6852 <baseclass name=
"GridSizer"/>
6853 <constructor name=
"FlexGridSizer" overloaded=
"no">
6854 <autodoc>__init__(int rows=
1, int cols=
0, int vgap=
0, int hgap=
0) -
> FlexGridSizer
</autodoc>
6856 <param name=
"rows" type=
"int" default=
"1"/>
6857 <param name=
"cols" type=
"int" default=
"0"/>
6858 <param name=
"vgap" type=
"int" default=
"0"/>
6859 <param name=
"hgap" type=
"int" default=
"0"/>
6862 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
6863 <autodoc>RecalcSizes()
</autodoc>
6865 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
6866 <autodoc>CalcMin() -
> Size
</autodoc>
6868 <method name=
"AddGrowableRow" type=
"" overloaded=
"no">
6869 <autodoc>AddGrowableRow(size_t idx, int proportion=
0)
</autodoc>
6871 <param name=
"idx" type=
"size_t" default=
""/>
6872 <param name=
"proportion" type=
"int" default=
"0"/>
6875 <method name=
"RemoveGrowableRow" type=
"" overloaded=
"no">
6876 <autodoc>RemoveGrowableRow(size_t idx)
</autodoc>
6878 <param name=
"idx" type=
"size_t" default=
""/>
6881 <method name=
"AddGrowableCol" type=
"" overloaded=
"no">
6882 <autodoc>AddGrowableCol(size_t idx, int proportion=
0)
</autodoc>
6884 <param name=
"idx" type=
"size_t" default=
""/>
6885 <param name=
"proportion" type=
"int" default=
"0"/>
6888 <method name=
"RemoveGrowableCol" type=
"" overloaded=
"no">
6889 <autodoc>RemoveGrowableCol(size_t idx)
</autodoc>
6891 <param name=
"idx" type=
"size_t" default=
""/>
6894 <method name=
"SetFlexibleDirection" type=
"" overloaded=
"no">
6895 <autodoc>SetFlexibleDirection(int direction)
</autodoc>
6897 <param name=
"direction" type=
"int" default=
""/>
6900 <method name=
"GetFlexibleDirection" type=
"int" overloaded=
"no">
6901 <autodoc>GetFlexibleDirection() -
> int
</autodoc>
6903 <method name=
"SetNonFlexibleGrowMode" type=
"" overloaded=
"no">
6904 <autodoc>SetNonFlexibleGrowMode(int mode)
</autodoc>
6906 <param name=
"mode" type=
"wxFlexSizerGrowMode" default=
""/>
6909 <method name=
"GetNonFlexibleGrowMode" type=
"wxFlexSizerGrowMode" overloaded=
"no">
6910 <autodoc>GetNonFlexibleGrowMode() -
> int
</autodoc>
6912 <method name=
"GetRowHeights" type=
"wxArrayInt" overloaded=
"no">
6913 <autodoc>GetRowHeights() -
> wxArrayInt
</autodoc>
6915 <method name=
"GetColWidths" type=
"wxArrayInt" overloaded=
"no">
6916 <autodoc>GetColWidths() -
> wxArrayInt
</autodoc>
6920 #---------------------------------------------------------------------------
6922 <class name=
"GBPosition" oldname=
"wxGBPosition" module=
"core">
6923 <constructor name=
"GBPosition" overloaded=
"no">
6924 <autodoc>__init__(int row=
0, int col=
0) -
> GBPosition
</autodoc>
6926 <param name=
"row" type=
"int" default=
"0"/>
6927 <param name=
"col" type=
"int" default=
"0"/>
6930 <method name=
"GetRow" type=
"int" overloaded=
"no">
6931 <autodoc>GetRow() -
> int
</autodoc>
6933 <method name=
"GetCol" type=
"int" overloaded=
"no">
6934 <autodoc>GetCol() -
> int
</autodoc>
6936 <method name=
"SetRow" type=
"" overloaded=
"no">
6937 <autodoc>SetRow(int row)
</autodoc>
6939 <param name=
"row" type=
"int" default=
""/>
6942 <method name=
"SetCol" type=
"" overloaded=
"no">
6943 <autodoc>SetCol(int col)
</autodoc>
6945 <param name=
"col" type=
"int" default=
""/>
6948 <method name=
"__eq__" type=
"bool" overloaded=
"no">
6949 <autodoc>__eq__(GBPosition other) -
> bool
</autodoc>
6951 <param name=
"other" type=
"GBPosition" default=
""/>
6954 <method name=
"__ne__" type=
"bool" overloaded=
"no">
6955 <autodoc>__ne__(GBPosition other) -
> bool
</autodoc>
6957 <param name=
"other" type=
"GBPosition" default=
""/>
6960 <method name=
"Set" type=
"" overloaded=
"no">
6961 <autodoc>Set(int row=
0, int col=
0)
</autodoc>
6963 <param name=
"row" type=
"int" default=
"0"/>
6964 <param name=
"col" type=
"int" default=
"0"/>
6967 <method name=
"Get" type=
"PyObject" overloaded=
"no">
6968 <autodoc>Get() -
> PyObject
</autodoc>
6971 <class name=
"GBSpan" oldname=
"wxGBSpan" module=
"core">
6972 <constructor name=
"GBSpan" overloaded=
"no">
6973 <autodoc>__init__(int rowspan=
1, int colspan=
1) -
> GBSpan
</autodoc>
6975 <param name=
"rowspan" type=
"int" default=
"1"/>
6976 <param name=
"colspan" type=
"int" default=
"1"/>
6979 <method name=
"GetRowspan" type=
"int" overloaded=
"no">
6980 <autodoc>GetRowspan() -
> int
</autodoc>
6982 <method name=
"GetColspan" type=
"int" overloaded=
"no">
6983 <autodoc>GetColspan() -
> int
</autodoc>
6985 <method name=
"SetRowspan" type=
"" overloaded=
"no">
6986 <autodoc>SetRowspan(int rowspan)
</autodoc>
6988 <param name=
"rowspan" type=
"int" default=
""/>
6991 <method name=
"SetColspan" type=
"" overloaded=
"no">
6992 <autodoc>SetColspan(int colspan)
</autodoc>
6994 <param name=
"colspan" type=
"int" default=
""/>
6997 <method name=
"__eq__" type=
"bool" overloaded=
"no">
6998 <autodoc>__eq__(GBSpan other) -
> bool
</autodoc>
7000 <param name=
"other" type=
"GBSpan" default=
""/>
7003 <method name=
"__ne__" type=
"bool" overloaded=
"no">
7004 <autodoc>__ne__(GBSpan other) -
> bool
</autodoc>
7006 <param name=
"other" type=
"GBSpan" default=
""/>
7009 <method name=
"Set" type=
"" overloaded=
"no">
7010 <autodoc>Set(int rowspan=
1, int colspan=
1)
</autodoc>
7012 <param name=
"rowspan" type=
"int" default=
"1"/>
7013 <param name=
"colspan" type=
"int" default=
"1"/>
7016 <method name=
"Get" type=
"PyObject" overloaded=
"no">
7017 <autodoc>Get() -
> PyObject
</autodoc>
7020 <class name=
"GBSizerItem" oldname=
"wxGBSizerItem" module=
"core">
7021 <baseclass name=
"SizerItem"/>
7022 <constructor name=
"GBSizerItem" overloaded=
"no">
7023 <autodoc>__init__() -
> GBSizerItem
</autodoc>
7025 <constructor name=
"GBSizerItemWindow" overloaded=
"no">
7026 <autodoc>GBSizerItemWindow(Window window, GBPosition pos, GBSpan span, int flag,
7027 int border, Object userData) -
> GBSizerItem
</autodoc>
7029 <param name=
"window" type=
"Window" default=
""/>
7030 <param name=
"pos" type=
"GBPosition" default=
""/>
7031 <param name=
"span" type=
"GBSpan" default=
""/>
7032 <param name=
"flag" type=
"int" default=
""/>
7033 <param name=
"border" type=
"int" default=
""/>
7034 <param name=
"userData" type=
"Object" default=
""/>
7037 <constructor name=
"GBSizerItemSizer" overloaded=
"no">
7038 <autodoc>GBSizerItemSizer(Sizer sizer, GBPosition pos, GBSpan span, int flag,
7039 int border, Object userData) -
> GBSizerItem
</autodoc>
7041 <param name=
"sizer" type=
"Sizer" default=
""/>
7042 <param name=
"pos" type=
"GBPosition" default=
""/>
7043 <param name=
"span" type=
"GBSpan" default=
""/>
7044 <param name=
"flag" type=
"int" default=
""/>
7045 <param name=
"border" type=
"int" default=
""/>
7046 <param name=
"userData" type=
"Object" default=
""/>
7049 <constructor name=
"GBSizerItemSpacer" overloaded=
"no">
7050 <autodoc>GBSizerItemSpacer(int width, int height, GBPosition pos, GBSpan span,
7051 int flag, int border, Object userData) -
> GBSizerItem
</autodoc>
7053 <param name=
"width" type=
"int" default=
""/>
7054 <param name=
"height" type=
"int" default=
""/>
7055 <param name=
"pos" type=
"GBPosition" default=
""/>
7056 <param name=
"span" type=
"GBSpan" default=
""/>
7057 <param name=
"flag" type=
"int" default=
""/>
7058 <param name=
"border" type=
"int" default=
""/>
7059 <param name=
"userData" type=
"Object" default=
""/>
7062 <method name=
"GetPos" type=
"GBPosition" overloaded=
"no">
7063 <autodoc>GetPos() -
> GBPosition
</autodoc>
7065 <method name=
"GetSpan" type=
"GBSpan" overloaded=
"no">
7066 <autodoc>GetSpan() -
> GBSpan
</autodoc>
7068 <method name=
"SetPos" type=
"bool" overloaded=
"no">
7069 <autodoc>SetPos(GBPosition pos) -
> bool
</autodoc>
7071 <param name=
"pos" type=
"GBPosition" default=
""/>
7074 <method name=
"SetSpan" type=
"bool" overloaded=
"no">
7075 <autodoc>SetSpan(GBSpan span) -
> bool
</autodoc>
7077 <param name=
"span" type=
"GBSpan" default=
""/>
7080 <method name=
"Intersects" type=
"bool" overloaded=
"yes">
7082 <param name=
"other" type=
"GBSizerItem" default=
""/>
7085 <method name=
"Intersects" type=
"bool" overloaded=
"yes">
7086 <autodoc>Intersects(GBSizerItem other) -
> bool
7087 Intersects(GBPosition pos, GBSpan span) -
> bool
</autodoc>
7089 <param name=
"pos" type=
"GBPosition" default=
""/>
7090 <param name=
"span" type=
"GBSpan" default=
""/>
7093 <method name=
"GetEndPos" type=
"" overloaded=
"no">
7094 <autodoc>GetEndPos(int row, int col)
</autodoc>
7096 <param name=
"row" type=
"int" default=
""/>
7097 <param name=
"col" type=
"int" default=
""/>
7100 <method name=
"GetGBSizer" type=
"wxGridBagSizer" overloaded=
"no">
7101 <autodoc>GetGBSizer() -
> GridBagSizer
</autodoc>
7103 <method name=
"SetGBSizer" type=
"" overloaded=
"no">
7104 <autodoc>SetGBSizer(GridBagSizer sizer)
</autodoc>
7106 <param name=
"sizer" type=
"wxGridBagSizer" default=
""/>
7110 <class name=
"GridBagSizer" oldname=
"wxGridBagSizer" module=
"core">
7111 <baseclass name=
"FlexGridSizer"/>
7112 <constructor name=
"GridBagSizer" overloaded=
"no">
7113 <autodoc>__init__(int vgap=
0, int hgap=
0) -
> GridBagSizer
</autodoc>
7115 <param name=
"vgap" type=
"int" default=
"0"/>
7116 <param name=
"hgap" type=
"int" default=
"0"/>
7119 <method name=
"Add" type=
"bool" overloaded=
"no">
7120 <autodoc>Add(PyObject item, GBPosition pos, GBSpan span=DefaultSpan,
7121 int flag=
0, int border=
0, PyObject userData=None) -
> bool
</autodoc>
7123 <param name=
"item" type=
"PyObject" default=
""/>
7124 <param name=
"pos" type=
"GBPosition" default=
""/>
7125 <param name=
"span" type=
"GBSpan" default=
"wxDefaultSpan"/>
7126 <param name=
"flag" type=
"int" default=
"0"/>
7127 <param name=
"border" type=
"int" default=
"0"/>
7128 <param name=
"userData" type=
"PyObject" default=
"NULL"/>
7131 <method name=
"AddItem" type=
"bool" overloaded=
"no">
7132 <autodoc>AddItem(GBSizerItem item) -
> bool
</autodoc>
7134 <param name=
"item" type=
"GBSizerItem" default=
""/>
7137 <method name=
"GetEmptyCellSize" type=
"Size" overloaded=
"no">
7138 <autodoc>GetEmptyCellSize() -
> Size
</autodoc>
7140 <method name=
"SetEmptyCellSize" type=
"" overloaded=
"no">
7141 <autodoc>SetEmptyCellSize(Size sz)
</autodoc>
7143 <param name=
"sz" type=
"Size" default=
""/>
7146 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7148 <param name=
"window" type=
"Window" default=
""/>
7151 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7153 <param name=
"sizer" type=
"Sizer" default=
""/>
7156 <method name=
"GetItemPosition" type=
"GBPosition" overloaded=
"yes">
7157 <autodoc>GetItemPosition(Window window) -
> GBPosition
7158 GetItemPosition(Sizer sizer) -
> GBPosition
7159 GetItemPosition(size_t index) -
> GBPosition
</autodoc>
7161 <param name=
"index" type=
"size_t" default=
""/>
7164 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7166 <param name=
"window" type=
"Window" default=
""/>
7167 <param name=
"pos" type=
"GBPosition" default=
""/>
7170 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7172 <param name=
"sizer" type=
"Sizer" default=
""/>
7173 <param name=
"pos" type=
"GBPosition" default=
""/>
7176 <method name=
"SetItemPosition" type=
"bool" overloaded=
"yes">
7177 <autodoc>SetItemPosition(Window window, GBPosition pos) -
> bool
7178 SetItemPosition(Sizer sizer, GBPosition pos) -
> bool
7179 SetItemPosition(size_t index, GBPosition pos) -
> bool
</autodoc>
7181 <param name=
"index" type=
"size_t" default=
""/>
7182 <param name=
"pos" type=
"GBPosition" default=
""/>
7185 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7187 <param name=
"window" type=
"Window" default=
""/>
7190 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7192 <param name=
"sizer" type=
"Sizer" default=
""/>
7195 <method name=
"GetItemSpan" type=
"GBSpan" overloaded=
"yes">
7196 <autodoc>GetItemSpan(Window window) -
> GBSpan
7197 GetItemSpan(Sizer sizer) -
> GBSpan
7198 GetItemSpan(size_t index) -
> GBSpan
</autodoc>
7200 <param name=
"index" type=
"size_t" default=
""/>
7203 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7205 <param name=
"window" type=
"Window" default=
""/>
7206 <param name=
"span" type=
"GBSpan" default=
""/>
7209 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7211 <param name=
"sizer" type=
"Sizer" default=
""/>
7212 <param name=
"span" type=
"GBSpan" default=
""/>
7215 <method name=
"SetItemSpan" type=
"bool" overloaded=
"yes">
7216 <autodoc>SetItemSpan(Window window, GBSpan span) -
> bool
7217 SetItemSpan(Sizer sizer, GBSpan span) -
> bool
7218 SetItemSpan(size_t index, GBSpan span) -
> bool
</autodoc>
7220 <param name=
"index" type=
"size_t" default=
""/>
7221 <param name=
"span" type=
"GBSpan" default=
""/>
7224 <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes">
7226 <param name=
"window" type=
"Window" default=
""/>
7229 <method name=
"FindItem" type=
"GBSizerItem" overloaded=
"yes">
7230 <autodoc>FindItem(Window window) -
> GBSizerItem
7231 FindItem(Sizer sizer) -
> GBSizerItem
</autodoc>
7233 <param name=
"sizer" type=
"Sizer" default=
""/>
7236 <method name=
"FindItemAtPosition" type=
"GBSizerItem" overloaded=
"no">
7237 <autodoc>FindItemAtPosition(GBPosition pos) -
> GBSizerItem
</autodoc>
7239 <param name=
"pos" type=
"GBPosition" default=
""/>
7242 <method name=
"FindItemAtPoint" type=
"GBSizerItem" overloaded=
"no">
7243 <autodoc>FindItemAtPoint(Point pt) -
> GBSizerItem
</autodoc>
7245 <param name=
"pt" type=
"Point" default=
""/>
7248 <method name=
"FindItemWithData" type=
"GBSizerItem" overloaded=
"no">
7249 <autodoc>FindItemWithData(Object userData) -
> GBSizerItem
</autodoc>
7251 <param name=
"userData" type=
"Object" default=
""/>
7254 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
7255 <autodoc>RecalcSizes()
</autodoc>
7257 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
7258 <autodoc>CalcMin() -
> Size
</autodoc>
7260 <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes">
7262 <param name=
"item" type=
"GBSizerItem" default=
""/>
7263 <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/>
7266 <method name=
"CheckForIntersection" type=
"bool" overloaded=
"yes">
7267 <autodoc>CheckForIntersection(GBSizerItem item, GBSizerItem excludeItem=None) -
> bool
7268 CheckForIntersection(GBPosition pos, GBSpan span, GBSizerItem excludeItem=None) -
> bool
</autodoc>
7270 <param name=
"pos" type=
"GBPosition" default=
""/>
7271 <param name=
"span" type=
"GBSpan" default=
""/>
7272 <param name=
"excludeItem" type=
"GBSizerItem" default=
"NULL"/>
7277 #---------------------------------------------------------------------------
7279 <class name=
"IndividualLayoutConstraint" oldname=
"wxIndividualLayoutConstraint" module=
"core">
7280 <docstring>Objects of this class are stored in the wx.LayoutConstraint class as one of
7281 eight possible constraints that a window can be involved in. You will never
7282 need to create an instance of wx.IndividualLayoutConstraint, rather you should
7283 use create a wx.LayoutContstraints instance and use the individual contstraints
7286 Constraints are initially set to have the relationship wx.Unconstrained, which
7287 means that their values should be calculated by looking at known constraints.
7289 The Edge specifies the type of edge or dimension of a window.
7293 wx.Left The left edge.
7294 wx.Top The top edge.
7295 wx.Right The right edge.
7296 wx.Bottom The bottom edge.
7297 wx.CentreX The x-coordinate of the centre of the window.
7298 wx.CentreY The y-coordinate of the centre of the window.
7301 The Relationship specifies the relationship that this edge or dimension has
7302 with another specified edge or dimension. Normally, the user doesn't use these
7303 directly because functions such as Below and RightOf are a convenience for
7304 using the more general Set function.
7308 wx.Unconstrained The edge or dimension is unconstrained
7309 (the default for edges.)
7310 wx.AsIs The edge or dimension is to be taken from the current
7311 window position or size (the default for dimensions.)
7312 wx.Above The edge should be above another edge.
7313 wx.Below The edge should be below another edge.
7314 wx.LeftOf The edge should be to the left of another edge.
7315 wx.RightOf The edge should be to the right of another edge.
7316 wx.SameAs The edge or dimension should be the same as another edge
7318 wx.PercentOf The edge or dimension should be a percentage of another
7320 wx.Absolute The edge or dimension should be a given absolute value.
7323 <baseclass name=
"Object"/>
7324 <method name=
"Set" type=
"" overloaded=
"no">
7325 <autodoc>Set(int rel, Window otherW, int otherE, int val=
0, int marg=wxLAYOUT_DEFAULT_MARGIN)
</autodoc>
7327 <param name=
"rel" type=
"wxRelationship" default=
""/>
7328 <param name=
"otherW" type=
"Window" default=
""/>
7329 <param name=
"otherE" type=
"wxEdge" default=
""/>
7330 <param name=
"val" type=
"int" default=
"0"/>
7331 <param name=
"marg" type=
"int" default=
"wxLAYOUT_DEFAULT_MARGIN"/>
7334 <method name=
"LeftOf" type=
"" overloaded=
"no">
7335 <autodoc>LeftOf(Window sibling, int marg=
0)
</autodoc>
7336 <docstring>Sibling relationship
</docstring>
7338 <param name=
"sibling" type=
"Window" default=
""/>
7339 <param name=
"marg" type=
"int" default=
"0"/>
7342 <method name=
"RightOf" type=
"" overloaded=
"no">
7343 <autodoc>RightOf(Window sibling, int marg=
0)
</autodoc>
7344 <docstring>Sibling relationship
</docstring>
7346 <param name=
"sibling" type=
"Window" default=
""/>
7347 <param name=
"marg" type=
"int" default=
"0"/>
7350 <method name=
"Above" type=
"" overloaded=
"no">
7351 <autodoc>Above(Window sibling, int marg=
0)
</autodoc>
7352 <docstring>Sibling relationship
</docstring>
7354 <param name=
"sibling" type=
"Window" default=
""/>
7355 <param name=
"marg" type=
"int" default=
"0"/>
7358 <method name=
"Below" type=
"" overloaded=
"no">
7359 <autodoc>Below(Window sibling, int marg=
0)
</autodoc>
7360 <docstring>Sibling relationship
</docstring>
7362 <param name=
"sibling" type=
"Window" default=
""/>
7363 <param name=
"marg" type=
"int" default=
"0"/>
7366 <method name=
"SameAs" type=
"" overloaded=
"no">
7367 <autodoc>SameAs(Window otherW, int edge, int marg=
0)
</autodoc>
7368 <docstring>'Same edge' alignment
</docstring>
7370 <param name=
"otherW" type=
"Window" default=
""/>
7371 <param name=
"edge" type=
"wxEdge" default=
""/>
7372 <param name=
"marg" type=
"int" default=
"0"/>
7375 <method name=
"PercentOf" type=
"" overloaded=
"no">
7376 <autodoc>PercentOf(Window otherW, int wh, int per)
</autodoc>
7377 <docstring>The edge is a percentage of the other window's edge
</docstring>
7379 <param name=
"otherW" type=
"Window" default=
""/>
7380 <param name=
"wh" type=
"wxEdge" default=
""/>
7381 <param name=
"per" type=
"int" default=
""/>
7384 <method name=
"Absolute" type=
"" overloaded=
"no">
7385 <autodoc>Absolute(int val)
</autodoc>
7386 <docstring>Edge has absolute value
</docstring>
7388 <param name=
"val" type=
"int" default=
""/>
7391 <method name=
"Unconstrained" type=
"" overloaded=
"no">
7392 <autodoc>Unconstrained()
</autodoc>
7393 <docstring>Dimension is unconstrained
</docstring>
7395 <method name=
"AsIs" type=
"" overloaded=
"no">
7396 <autodoc>AsIs()
</autodoc>
7397 <docstring>Dimension is 'as is' (use current size settings)
</docstring>
7399 <method name=
"GetOtherWindow" type=
"Window" overloaded=
"no">
7400 <autodoc>GetOtherWindow() -
> Window
</autodoc>
7402 <method name=
"GetMyEdge" type=
"wxEdge" overloaded=
"no">
7403 <autodoc>GetMyEdge() -
> int
</autodoc>
7405 <method name=
"SetEdge" type=
"" overloaded=
"no">
7406 <autodoc>SetEdge(int which)
</autodoc>
7408 <param name=
"which" type=
"wxEdge" default=
""/>
7411 <method name=
"SetValue" type=
"" overloaded=
"no">
7412 <autodoc>SetValue(int v)
</autodoc>
7414 <param name=
"v" type=
"int" default=
""/>
7417 <method name=
"GetMargin" type=
"int" overloaded=
"no">
7418 <autodoc>GetMargin() -
> int
</autodoc>
7420 <method name=
"SetMargin" type=
"" overloaded=
"no">
7421 <autodoc>SetMargin(int m)
</autodoc>
7423 <param name=
"m" type=
"int" default=
""/>
7426 <method name=
"GetValue" type=
"int" overloaded=
"no">
7427 <autodoc>GetValue() -
> int
</autodoc>
7429 <method name=
"GetPercent" type=
"int" overloaded=
"no">
7430 <autodoc>GetPercent() -
> int
</autodoc>
7432 <method name=
"GetOtherEdge" type=
"int" overloaded=
"no">
7433 <autodoc>GetOtherEdge() -
> int
</autodoc>
7435 <method name=
"GetDone" type=
"bool" overloaded=
"no">
7436 <autodoc>GetDone() -
> bool
</autodoc>
7438 <method name=
"SetDone" type=
"" overloaded=
"no">
7439 <autodoc>SetDone(bool d)
</autodoc>
7441 <param name=
"d" type=
"bool" default=
""/>
7444 <method name=
"GetRelationship" type=
"wxRelationship" overloaded=
"no">
7445 <autodoc>GetRelationship() -
> int
</autodoc>
7447 <method name=
"SetRelationship" type=
"" overloaded=
"no">
7448 <autodoc>SetRelationship(int r)
</autodoc>
7450 <param name=
"r" type=
"wxRelationship" default=
""/>
7453 <method name=
"ResetIfWin" type=
"bool" overloaded=
"no">
7454 <autodoc>ResetIfWin(Window otherW) -
> bool
</autodoc>
7455 <docstring>Reset constraint if it mentions otherWin
</docstring>
7457 <param name=
"otherW" type=
"Window" default=
""/>
7460 <method name=
"SatisfyConstraint" type=
"bool" overloaded=
"no">
7461 <autodoc>SatisfyConstraint(LayoutConstraints constraints, Window win) -
> bool
</autodoc>
7462 <docstring>Try to satisfy constraint
</docstring>
7464 <param name=
"constraints" type=
"wxLayoutConstraints" default=
""/>
7465 <param name=
"win" type=
"Window" default=
""/>
7468 <method name=
"GetEdge" type=
"int" overloaded=
"no">
7469 <autodoc>GetEdge(int which, Window thisWin, Window other) -
> int
</autodoc>
7470 <docstring>Get the value of this edge or dimension, or if this
7471 is not determinable, -
1.
</docstring>
7473 <param name=
"which" type=
"wxEdge" default=
""/>
7474 <param name=
"thisWin" type=
"Window" default=
""/>
7475 <param name=
"other" type=
"Window" default=
""/>
7479 <class name=
"LayoutConstraints" oldname=
"wxLayoutConstraints" module=
"core">
7480 <docstring>Note: constraints are now deprecated and you should use sizers instead.
7482 Objects of this class can be associated with a window to define its layout
7483 constraints, with respect to siblings or its parent.
7485 The class consists of the following eight constraints of class
7486 wx.IndividualLayoutConstraint, some or all of which should be accessed
7487 directly to set the appropriate constraints.
7489 * left: represents the left hand edge of the window
7490 * right: represents the right hand edge of the window
7491 * top: represents the top edge of the window
7492 * bottom: represents the bottom edge of the window
7493 * width: represents the width of the window
7494 * height: represents the height of the window
7495 * centreX: represents the horizontal centre point of the window
7496 * centreY: represents the vertical centre point of the window
7498 Most constraints are initially set to have the relationship wxUnconstrained,
7499 which means that their values should be calculated by looking at known
7500 constraints. The exceptions are width and height, which are set to wxAsIs to
7501 ensure that if the user does not specify a constraint, the existing width and
7502 height will be used, to be compatible with panel items which often have take a
7503 default size. If the constraint is wxAsIs, the dimension will not be changed.
7505 <baseclass name=
"Object"/>
7506 <constructor name=
"LayoutConstraints" overloaded=
"no">
7507 <autodoc>__init__() -
> LayoutConstraints
</autodoc>
7509 <property name=
"left" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7510 <property name=
"top" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7511 <property name=
"right" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7512 <property name=
"bottom" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7513 <property name=
"width" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7514 <property name=
"height" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7515 <property name=
"centreX" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7516 <property name=
"centreY" type=
"IndividualLayoutConstraint" readonly=
"yes"/>
7517 <method name=
"SatisfyConstraints" type=
"bool" overloaded=
"no">
7518 <autodoc>SatisfyConstraints(Window win) -
> (areSatisfied, noChanges)
</autodoc>
7520 <param name=
"win" type=
"Window" default=
""/>
7521 <param name=
"OUTPUT" type=
"int" default=
""/>
7524 <method name=
"AreSatisfied" type=
"bool" overloaded=
"no">
7525 <autodoc>AreSatisfied() -
> bool
</autodoc>
7528 <pythoncode>#----------------------------------------------------------------------------
7530 # Use Python's bool constants if available, make some if not
7534 __builtins__.True =
1==
1
7535 __builtins__.False =
1==
0
7539 # workarounds for bad wxRTTI names
7540 __wxPyPtrTypeMap['wxGauge95'] = 'wxGauge'
7541 __wxPyPtrTypeMap['wxSlider95'] = 'wxSlider'
7542 __wxPyPtrTypeMap['wxStatusBar95'] = 'wxStatusBar'
7545 #----------------------------------------------------------------------------
7546 # Load version numbers from __version__... Ensure that major and minor
7547 # versions are the same for both wxPython and wxWindows.
7549 from __version__ import *
7550 __version__ = VERSION_STRING
7552 assert MAJOR_VERSION == _core.MAJOR_VERSION, "wxPython/wxWindows version mismatch"
7553 assert MINOR_VERSION == _core.MINOR_VERSION, "wxPython/wxWindows version mismatch"
7554 if RELEASE_VERSION != _core.RELEASE_VERSION:
7556 warnings.warn("wxPython/wxWindows release number mismatch")
7558 #----------------------------------------------------------------------------
7560 class PyDeadObjectError(AttributeError):
7563 class _wxPyDeadObject(object):
7565 Instances of wx objects that are OOR capable will have their __class__
7566 changed to this class when the C++ object is deleted. This should help
7567 prevent crashes due to referencing a bogus C++ pointer.
7569 reprStr = "wxPython wrapper for DELETED %s object! (The C++ object no longer exists.)"
7570 attrStr = "The C++ part of the %s object has been deleted, attribute access no longer allowed."
7573 if not hasattr(self, "_name"):
7574 self._name = "[unknown]"
7575 return self.reprStr % self._name
7577 def __getattr__(self, *args):
7578 if not hasattr(self, "_name"):
7579 self._name = "[unknown]"
7580 raise PyDeadObjectError(self.attrStr % self._name)
7582 def __nonzero__(self):
7587 class PyUnbornObjectError(AttributeError):
7590 class _wxPyUnbornObject(object):
7592 Some stock objects are created when the wx.core module is
7593 imported, but their C++ instance is not created until the wx.App
7594 object is created and initialized. These object instances will
7595 temporarily have their __class__ changed to this class so an
7596 exception will be raised if they are used before the C++ instance
7600 reprStr = "wxPython wrapper for UNBORN object! (The C++ object is not initialized yet.)"
7601 attrStr = "The C++ part of this object has not been initialized, attribute access not allowed."
7604 #if not hasattr(self, "_name"):
7605 # self._name = "[unknown]"
7606 return self.reprStr #% self._name
7608 def __getattr__(self, *args):
7609 #if not hasattr(self, "_name"):
7610 # self._name = "[unknown]"
7611 raise PyUnbornObjectError(self.attrStr) # % self._name )
7613 def __nonzero__(self):
7617 #----------------------------------------------------------------------------
7618 _wxPyCallAfterId = None
7620 def CallAfter(callable, *args, **kw):
7622 Call the specified function after the current and pending event
7623 handlers have been completed. This is also good for making GUI
7624 method calls from non-GUI threads.
7627 assert app, 'No wxApp created yet'
7629 global _wxPyCallAfterId
7630 if _wxPyCallAfterId is None:
7631 _wxPyCallAfterId = wx.NewEventType()
7632 app.Connect(-
1, -
1, _wxPyCallAfterId,
7633 lambda event: event.callable(*event.args, **event.kw) )
7635 evt.SetEventType(_wxPyCallAfterId)
7636 evt.callable = callable
7639 wx.PostEvent(app, evt)
7642 #----------------------------------------------------------------------------
7647 A convenience class for wxTimer, that calls the given callable
7648 object once after the given amount of milliseconds, passing any
7649 positional or keyword args. The return value of the callable is
7650 availbale after it has been run with the GetResult method.
7652 If you don't need to get the return value or restart the timer
7653 then there is no need to hold a reference to this object. It will
7654 hold a reference to itself while the timer is running (the timer
7655 has a reference to self.Notify) but the cycle will be broken when
7656 the timer completes, automatically cleaning up the wx.FutureCall
7659 def __init__(self, millis, callable, *args, **kwargs):
7660 self.millis = millis
7661 self.callable = callable
7662 self.SetArgs(*args, **kwargs)
7673 def Start(self, millis=None, *args, **kwargs):
7678 if millis is not None:
7679 self.millis = millis
7681 self.SetArgs(*args, **kwargs)
7683 self.timer = wx.PyTimer(self.Notify)
7684 self.timer.Start(self.millis, wx.TIMER_ONE_SHOT)
7690 Stop and destroy the timer.
7692 if self.timer is not None:
7697 def GetInterval(self):
7698 if self.timer is not None:
7699 return self.timer.GetInterval()
7704 def IsRunning(self):
7705 return self.timer is not None and self.timer.IsRunning()
7708 def SetArgs(self, *args, **kwargs):
7710 (Re)set the args passed to the callable object. This is
7711 useful in conjunction with Restart if you want to schedule a
7712 new call to the same callable object but with different
7716 self.kwargs = kwargs
7722 def GetResult(self):
7727 The timer has expired so call the callable.
7729 if self.callable and getattr(self.callable, 'im_self', True):
7731 self.result = self.callable(*self.args, **self.kwargs)
7733 wx.CallAfter(self.Stop)
7736 #----------------------------------------------------------------------------
7737 #----------------------------------------------------------------------------
7739 # Import other modules in this package that should show up in the
7740 # "core" wx namespace
7742 from windows import *
7743 from controls import *
7747 # Fixup the stock objects since they can't be used yet. (They will be
7748 # restored in wx.PyApp.OnInit.)
7749 _core._wxPyFixStockObjects()
7751 #----------------------------------------------------------------------------
7752 #----------------------------------------------------------------------------
7756 <import name=
"core"/>
7757 <pythoncode> wx = core
</pythoncode>
7759 #---------------------------------------------------------------------------
7761 <class name=
"GDIObject" oldname=
"wxGDIObject" module=
"gdi">
7762 <baseclass name=
"Object"/>
7763 <constructor name=
"GDIObject" overloaded=
"no">
7764 <autodoc>__init__() -
> GDIObject
</autodoc>
7766 <destructor name=
"~wxGDIObject" overloaded=
"no">
7767 <autodoc>__del__()
</autodoc>
7769 <method name=
"GetVisible" type=
"bool" overloaded=
"no">
7770 <autodoc>GetVisible() -
> bool
</autodoc>
7772 <method name=
"SetVisible" type=
"" overloaded=
"no">
7773 <autodoc>SetVisible(bool visible)
</autodoc>
7775 <param name=
"visible" type=
"bool" default=
""/>
7778 <method name=
"IsNull" type=
"bool" overloaded=
"no">
7779 <autodoc>IsNull() -
> bool
</autodoc>
7783 #---------------------------------------------------------------------------
7785 <class name=
"Colour" oldname=
"wxColour" module=
"gdi">
7786 <docstring>A colour is an object representing a combination of Red, Green, and Blue (RGB)
7787 intensity values, and is used to determine drawing colours, window colours,
7788 etc. Valid RGB values are in the range
0 to
255.
7790 In wxPython there are typemaps that will automatically convert from a colour
7791 name, or from a "#RRGGBB" colour hex value string to a wx.Colour object when
7792 calling C++ methods that expect a wxColour. This means that the following are
7795 win.SetBackgroundColour(wxColour(
0,
0,
255))
7796 win.SetBackgroundColour("BLUE")
7797 win.SetBackgroundColour("#
0000FF")
7799 You can retrieve the various current system colour settings with
7800 wx.SystemSettings.GetColour.
</docstring>
7801 <baseclass name=
"Object"/>
7802 <constructor name=
"Colour" overloaded=
"no">
7803 <autodoc>__init__(unsigned char red=
0, unsigned char green=
0, unsigned char blue=
0) -
> Colour
</autodoc>
7804 <docstring>Constructs a colour from red, green and blue values.
</docstring>
7806 <param name=
"red" type=
"unsigned char" default=
"0"/>
7807 <param name=
"green" type=
"unsigned char" default=
"0"/>
7808 <param name=
"blue" type=
"unsigned char" default=
"0"/>
7811 <constructor name=
"NamedColour" overloaded=
"no">
7812 <autodoc>NamedColour(String colorName) -
> Colour
</autodoc>
7813 <docstring>Constructs a colour object using a colour name listed in wx.TheColourDatabase.
</docstring>
7815 <param name=
"colorName" type=
"String" default=
""/>
7818 <constructor name=
"ColourRGB" overloaded=
"no">
7819 <autodoc>ColourRGB(unsigned long colRGB) -
> Colour
</autodoc>
7820 <docstring>Constructs a colour from a packed RGB value.
</docstring>
7822 <param name=
"colRGB" type=
"unsigned long" default=
""/>
7825 <destructor name=
"~wxColour" overloaded=
"no">
7826 <autodoc>__del__()
</autodoc>
7828 <method name=
"Red" type=
"unsigned char" overloaded=
"no">
7829 <autodoc>Red() -
> unsigned char
</autodoc>
7830 <docstring>Returns the red intensity.
</docstring>
7832 <method name=
"Green" type=
"unsigned char" overloaded=
"no">
7833 <autodoc>Green() -
> unsigned char
</autodoc>
7834 <docstring>Returns the green intensity.
</docstring>
7836 <method name=
"Blue" type=
"unsigned char" overloaded=
"no">
7837 <autodoc>Blue() -
> unsigned char
</autodoc>
7838 <docstring>Returns the blue intensity.
</docstring>
7840 <method name=
"Ok" type=
"bool" overloaded=
"no">
7841 <autodoc>Ok() -
> bool
</autodoc>
7842 <docstring>Returns True if the colour object is valid (the colour has been
7843 initialised with RGB values).
</docstring>
7845 <method name=
"Set" type=
"" overloaded=
"no">
7846 <autodoc>Set(unsigned char red, unsigned char green, unsigned char blue)
</autodoc>
7847 <docstring>Sets the RGB intensity values.
</docstring>
7849 <param name=
"red" type=
"unsigned char" default=
""/>
7850 <param name=
"green" type=
"unsigned char" default=
""/>
7851 <param name=
"blue" type=
"unsigned char" default=
""/>
7854 <method name=
"SetRGB" type=
"" overloaded=
"no">
7855 <autodoc>SetRGB(unsigned long colRGB)
</autodoc>
7856 <docstring>Sets the RGB intensity values from a packed RGB value.
</docstring>
7858 <param name=
"colRGB" type=
"unsigned long" default=
""/>
7861 <method name=
"SetFromName" type=
"" overloaded=
"no">
7862 <autodoc>SetFromName(String colourName)
</autodoc>
7863 <docstring>Sets the RGB intensity values using a colour name listed in wx.TheColourDatabase.
</docstring>
7865 <param name=
"colourName" type=
"String" default=
""/>
7868 <method name=
"GetPixel" type=
"long" overloaded=
"no">
7869 <autodoc>GetPixel() -
> long
</autodoc>
7870 <docstring>Returns a pixel value which is platform-dependent. On Windows, a
7871 COLORREF is returned. On X, an allocated pixel value is returned.
7872 -
1 is returned if the pixel is invalid (on X, unallocated).
</docstring>
7874 <method name=
"__eq__" type=
"bool" overloaded=
"no">
7875 <autodoc>__eq__(Colour colour) -
> bool
</autodoc>
7876 <docstring>Compare colours for equality
</docstring>
7878 <param name=
"colour" type=
"Colour" default=
""/>
7881 <method name=
"__ne__" type=
"bool" overloaded=
"no">
7882 <autodoc>__ne__(Colour colour) -
> bool
</autodoc>
7883 <docstring>Compare colours for inequality
</docstring>
7885 <param name=
"colour" type=
"Colour" default=
""/>
7888 <method name=
"Get" type=
"PyObject" overloaded=
"no">
7889 <autodoc>Get() -
> (r, g, b)
</autodoc>
7890 <docstring>Returns the RGB intensity values as a tuple.
</docstring>
7892 <method name=
"GetRGB" type=
"unsigned long" overloaded=
"no">
7893 <autodoc>GetRGB() -
> unsigned long
</autodoc>
7894 <docstring>Return the colour as a packed RGB value
</docstring>
7899 NamedColor = NamedColour
7900 ColorRGB = ColourRGB
7902 <class name=
"Palette" oldname=
"wxPalette" module=
"gdi">
7903 <baseclass name=
"GDIObject"/>
7904 <constructor name=
"Palette" overloaded=
"no">
7905 <autodoc>__init__(int n, unsigned char red, unsigned char green, unsigned char blue) -
> Palette
</autodoc>
7907 <param name=
"n" type=
"int" default=
""/>
7908 <param name=
"red" type=
"unsigned char" default=
""/>
7909 <param name=
"green" type=
"unsigned char" default=
""/>
7910 <param name=
"blue" type=
"unsigned char" default=
""/>
7913 <destructor name=
"~wxPalette" overloaded=
"no">
7914 <autodoc>__del__()
</autodoc>
7916 <method name=
"GetPixel" type=
"int" overloaded=
"no">
7917 <autodoc>GetPixel(byte red, byte green, byte blue) -
> int
</autodoc>
7919 <param name=
"red" type=
"byte" default=
""/>
7920 <param name=
"green" type=
"byte" default=
""/>
7921 <param name=
"blue" type=
"byte" default=
""/>
7924 <method name=
"GetRGB" type=
"bool" overloaded=
"no">
7925 <autodoc>GetRGB(int pixel) -
> (R,G,B)
</autodoc>
7927 <param name=
"pixel" type=
"int" default=
""/>
7928 <param name=
"OUTPUT" type=
"byte" default=
""/>
7929 <param name=
"OUTPUT" type=
"byte" default=
""/>
7930 <param name=
"OUTPUT" type=
"byte" default=
""/>
7933 <method name=
"Ok" type=
"bool" overloaded=
"no">
7934 <autodoc>Ok() -
> bool
</autodoc>
7938 #---------------------------------------------------------------------------
7940 <class name=
"Pen" oldname=
"wxPen" module=
"gdi">
7941 <baseclass name=
"GDIObject"/>
7942 <constructor name=
"Pen" overloaded=
"no">
7943 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> Pen
</autodoc>
7945 <param name=
"colour" type=
"Colour" default=
""/>
7946 <param name=
"width" type=
"int" default=
"1"/>
7947 <param name=
"style" type=
"int" default=
"wxSOLID"/>
7950 <destructor name=
"~wxPen" overloaded=
"no">
7951 <autodoc>__del__()
</autodoc>
7953 <method name=
"GetCap" type=
"int" overloaded=
"no">
7954 <autodoc>GetCap() -
> int
</autodoc>
7956 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
7957 <autodoc>GetColour() -
> Colour
</autodoc>
7959 <method name=
"GetJoin" type=
"int" overloaded=
"no">
7960 <autodoc>GetJoin() -
> int
</autodoc>
7962 <method name=
"GetStyle" type=
"int" overloaded=
"no">
7963 <autodoc>GetStyle() -
> int
</autodoc>
7965 <method name=
"GetWidth" type=
"int" overloaded=
"no">
7966 <autodoc>GetWidth() -
> int
</autodoc>
7968 <method name=
"Ok" type=
"bool" overloaded=
"no">
7969 <autodoc>Ok() -
> bool
</autodoc>
7971 <method name=
"SetCap" type=
"" overloaded=
"no">
7972 <autodoc>SetCap(int cap_style)
</autodoc>
7974 <param name=
"cap_style" type=
"int" default=
""/>
7977 <method name=
"SetColour" type=
"" overloaded=
"no">
7978 <autodoc>SetColour(Colour colour)
</autodoc>
7980 <param name=
"colour" type=
"Colour" default=
""/>
7983 <method name=
"SetJoin" type=
"" overloaded=
"no">
7984 <autodoc>SetJoin(int join_style)
</autodoc>
7986 <param name=
"join_style" type=
"int" default=
""/>
7989 <method name=
"SetStyle" type=
"" overloaded=
"no">
7990 <autodoc>SetStyle(int style)
</autodoc>
7992 <param name=
"style" type=
"int" default=
""/>
7995 <method name=
"SetWidth" type=
"" overloaded=
"no">
7996 <autodoc>SetWidth(int width)
</autodoc>
7998 <param name=
"width" type=
"int" default=
""/>
8001 <method name=
"SetDashes" type=
"" overloaded=
"no">
8002 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
8004 <param name=
"dashes" type=
"int" default=
""/>
8005 <param name=
"dashes_array" type=
"wxDash" default=
""/>
8008 <method name=
"GetDashes" type=
"PyObject" overloaded=
"no">
8009 <autodoc>GetDashes() -
> PyObject
</autodoc>
8011 <method name=
"__eq__" type=
"bool" overloaded=
"no">
8012 <autodoc>__eq__(Pen other) -
> bool
</autodoc>
8014 <param name=
"other" type=
"Pen" default=
""/>
8017 <method name=
"__ne__" type=
"bool" overloaded=
"no">
8018 <autodoc>__ne__(Pen other) -
> bool
</autodoc>
8020 <param name=
"other" type=
"Pen" default=
""/>
8023 <method name=
"GetDashCount" type=
"int" overloaded=
"no">
8024 <autodoc>GetDashCount() -
> int
</autodoc>
8027 <class name=
"PyPen" oldname=
"wxPyPen" module=
"gdi">
8028 <baseclass name=
"Pen"/>
8029 <constructor name=
"PyPen" overloaded=
"no">
8030 <autodoc>__init__(Colour colour, int width=
1, int style=SOLID) -
> PyPen
</autodoc>
8032 <param name=
"colour" type=
"Colour" default=
""/>
8033 <param name=
"width" type=
"int" default=
"1"/>
8034 <param name=
"style" type=
"int" default=
"wxSOLID"/>
8037 <destructor name=
"~wxPyPen" overloaded=
"no">
8038 <autodoc>__del__()
</autodoc>
8040 <method name=
"SetDashes" type=
"" overloaded=
"no">
8041 <autodoc>SetDashes(int dashes, wxDash dashes_array)
</autodoc>
8043 <param name=
"dashes" type=
"int" default=
""/>
8044 <param name=
"dashes_array" type=
"wxDash" default=
""/>
8048 <pythoncode> Pen = PyPen
</pythoncode>
8050 #---------------------------------------------------------------------------
8052 <class name=
"Brush" oldname=
"wxBrush" module=
"gdi">
8053 <docstring>A brush is a drawing tool for filling in areas. It is used for painting the
8054 background of rectangles, ellipses, etc. It has a colour and a style.
</docstring>
8055 <baseclass name=
"GDIObject"/>
8056 <constructor name=
"Brush" overloaded=
"no">
8057 <autodoc>__init__(Colour colour, int style=SOLID) -
> Brush
</autodoc>
8058 <docstring>Constructs a brush from a colour object and style.
</docstring>
8060 <param name=
"colour" type=
"Colour" default=
""/>
8061 <param name=
"style" type=
"int" default=
"wxSOLID"/>
8064 <destructor name=
"~wxBrush" overloaded=
"no">
8065 <autodoc>__del__()
</autodoc>
8067 <method name=
"SetColour" type=
"" overloaded=
"no">
8068 <autodoc>SetColour(Colour col)
</autodoc>
8070 <param name=
"col" type=
"Colour" default=
""/>
8073 <method name=
"SetStyle" type=
"" overloaded=
"no">
8074 <autodoc>SetStyle(int style)
</autodoc>
8076 <param name=
"style" type=
"int" default=
""/>
8079 <method name=
"SetStipple" type=
"" overloaded=
"no">
8080 <autodoc>SetStipple(Bitmap stipple)
</autodoc>
8082 <param name=
"stipple" type=
"wxBitmap" default=
""/>
8085 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
8086 <autodoc>GetColour() -
> Colour
</autodoc>
8088 <method name=
"GetStyle" type=
"int" overloaded=
"no">
8089 <autodoc>GetStyle() -
> int
</autodoc>
8091 <method name=
"GetStipple" type=
"wxBitmap" overloaded=
"no">
8092 <autodoc>GetStipple() -
> Bitmap
</autodoc>
8094 <method name=
"Ok" type=
"bool" overloaded=
"no">
8095 <autodoc>Ok() -
> bool
</autodoc>
8098 <class name=
"Bitmap" oldname=
"wxBitmap" module=
"gdi">
8099 <baseclass name=
"GDIObject"/>
8100 <constructor name=
"Bitmap" overloaded=
"no">
8101 <autodoc>__init__(String name, int type=BITMAP_TYPE_ANY) -
> Bitmap
</autodoc>
8102 <docstring>Loads a bitmap from a file.
</docstring>
8104 <param name=
"name" type=
"String" default=
""/>
8105 <param name=
"type" type=
"wxBitmapType" default=
"wxBITMAP_TYPE_ANY"/>
8108 <constructor name=
"EmptyBitmap" overloaded=
"no">
8109 <autodoc>EmptyBitmap(int width, int height, int depth=-
1) -
> Bitmap
</autodoc>
8110 <docstring>Creates a new bitmap of the given size. A depth of -
1 indicates the depth of
8111 the current screen or visual. Some platforms only support
1 for monochrome and
8112 -
1 for the current colour setting.
</docstring>
8114 <param name=
"width" type=
"int" default=
""/>
8115 <param name=
"height" type=
"int" default=
""/>
8116 <param name=
"depth" type=
"int" default=
"-1"/>
8119 <constructor name=
"BitmapFromIcon" overloaded=
"no">
8120 <autodoc>BitmapFromIcon(Icon icon) -
> Bitmap
</autodoc>
8121 <docstring>Create a new bitmap from an Icon object.
</docstring>
8123 <param name=
"icon" type=
"wxIcon" default=
""/>
8126 <constructor name=
"BitmapFromImage" overloaded=
"no">
8127 <autodoc>BitmapFromImage(Image image, int depth=-
1) -
> Bitmap
</autodoc>
8128 <docstring>Creates bitmap object from the image. This has to be done to actually display
8129 an image as you cannot draw an image directly on a window. The resulting
8130 bitmap will use the provided colour depth (or that of the current system if
8131 depth is -
1) which entails that a colour reduction has to take place.
</docstring>
8133 <param name=
"image" type=
"Image" default=
""/>
8134 <param name=
"depth" type=
"int" default=
"-1"/>
8137 <constructor name=
"BitmapFromXPMData" overloaded=
"no">
8138 <autodoc>BitmapFromXPMData(PyObject listOfStrings) -
> Bitmap
</autodoc>
8139 <docstring>Construct a Bitmap from a list of strings formatted as XPM data.
</docstring>
8141 <param name=
"listOfStrings" type=
"PyObject" default=
""/>
8144 <constructor name=
"BitmapFromBits" overloaded=
"no">
8145 <autodoc>BitmapFromBits(PyObject bits, int width, int height, int depth=
1) -
> Bitmap
</autodoc>
8146 <docstring>Creates a bitmap from an array of bits. You should only use this function for
8147 monochrome bitmaps (depth
1) in portable programs: in this case the bits
8148 parameter should contain an XBM image. For other bit depths, the behaviour is
8149 platform dependent.
</docstring>
8151 <param name=
"bits" type=
"PyObject" default=
""/>
8152 <param name=
"width" type=
"int" default=
""/>
8153 <param name=
"height" type=
"int" default=
""/>
8154 <param name=
"depth" type=
"int" default=
"1"/>
8157 <destructor name=
"~wxBitmap" overloaded=
"no">
8158 <autodoc>__del__()
</autodoc>
8160 <method name=
"Ok" type=
"bool" overloaded=
"no">
8161 <autodoc>Ok() -
> bool
</autodoc>
8163 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8164 <autodoc>GetWidth() -
> int
</autodoc>
8165 <docstring>Gets the width of the bitmap in pixels.
</docstring>
8167 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8168 <autodoc>GetHeight() -
> int
</autodoc>
8169 <docstring>Gets the height of the bitmap in pixels.
</docstring>
8171 <method name=
"GetDepth" type=
"int" overloaded=
"no">
8172 <autodoc>GetDepth() -
> int
</autodoc>
8173 <docstring>Gets the colour depth of the bitmap. A value of
1 indicates a
8174 monochrome bitmap.
</docstring>
8176 <method name=
"ConvertToImage" type=
"Image" overloaded=
"no">
8177 <autodoc>ConvertToImage() -
> Image
</autodoc>
8178 <docstring>Creates a platform-independent image from a platform-dependent bitmap. This
8179 preserves mask information so that bitmaps and images can be converted back
8180 and forth without loss in that respect.
</docstring>
8182 <method name=
"GetMask" type=
"wxMask" overloaded=
"no">
8183 <autodoc>GetMask() -
> Mask
</autodoc>
8184 <docstring>Gets the associated mask (if any) which may have been loaded from a file
8185 or explpicitly set for the bitmap.
</docstring>
8187 <method name=
"SetMask" type=
"" overloaded=
"no">
8188 <autodoc>SetMask(Mask mask)
</autodoc>
8189 <docstring>Sets the mask for this bitmap.
</docstring>
8191 <param name=
"mask" type=
"wxMask" default=
""/>
8194 <method name=
"SetMaskColour" type=
"" overloaded=
"no">
8195 <autodoc>SetMaskColour(Colour colour)
</autodoc>
8196 <docstring>Create a Mask based on a specified colour in the Bitmap.
</docstring>
8198 <param name=
"colour" type=
"Colour" default=
""/>
8201 <method name=
"GetSubBitmap" type=
"Bitmap" overloaded=
"no">
8202 <autodoc>GetSubBitmap(Rect rect) -
> Bitmap
</autodoc>
8203 <docstring>Returns a sub bitmap of the current one as long as the rect belongs entirely
8204 to the bitmap. This function preserves bit depth and mask information.
</docstring>
8206 <param name=
"rect" type=
"Rect" default=
""/>
8209 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
8210 <autodoc>SaveFile(String name, int type, Palette palette=(wxPalette *) NULL) -
> bool
</autodoc>
8211 <docstring>Saves a bitmap in the named file.
</docstring>
8213 <param name=
"name" type=
"String" default=
""/>
8214 <param name=
"type" type=
"wxBitmapType" default=
""/>
8215 <param name=
"palette" type=
"Palette" default=
"(wxPalette *) NULL"/>
8218 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
8219 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
8220 <docstring>Loads a bitmap from a file
</docstring>
8222 <param name=
"name" type=
"String" default=
""/>
8223 <param name=
"type" type=
"wxBitmapType" default=
""/>
8226 <method name=
"CopyFromIcon" type=
"bool" overloaded=
"no">
8227 <autodoc>CopyFromIcon(Icon icon) -
> bool
</autodoc>
8229 <param name=
"icon" type=
"wxIcon" default=
""/>
8232 <method name=
"SetHeight" type=
"" overloaded=
"no">
8233 <autodoc>SetHeight(int height)
</autodoc>
8234 <docstring>Set the height property (does not affect the bitmap data).
</docstring>
8236 <param name=
"height" type=
"int" default=
""/>
8239 <method name=
"SetWidth" type=
"" overloaded=
"no">
8240 <autodoc>SetWidth(int width)
</autodoc>
8241 <docstring>Set the width property (does not affect the bitmap data).
</docstring>
8243 <param name=
"width" type=
"int" default=
""/>
8246 <method name=
"SetDepth" type=
"" overloaded=
"no">
8247 <autodoc>SetDepth(int depth)
</autodoc>
8248 <docstring>Set the depth property (does not affect the bitmap data).
</docstring>
8250 <param name=
"depth" type=
"int" default=
""/>
8254 <class name=
"Mask" oldname=
"wxMask" module=
"gdi">
8255 <docstring>This class encapsulates a monochrome mask bitmap, where the masked area is
8256 black and the unmasked area is white. When associated with a bitmap and drawn
8257 in a device context, the unmasked area of the bitmap will be drawn, and the
8258 masked area will not be drawn.
</docstring>
8259 <baseclass name=
"Object"/>
8260 <constructor name=
"Mask" overloaded=
"no">
8261 <autodoc>__init__(Bitmap bitmap, Colour colour=NullColour) -
> Mask
</autodoc>
8262 <docstring>Constructs a mask from a bitmap and a colour in that bitmap that indicates
8263 the transparent portions of the mask, by default BLACK is used.
</docstring>
8265 <param name=
"bitmap" type=
"Bitmap" default=
""/>
8266 <param name=
"colour" type=
"Colour" default=
"wxNullColour"/>
8270 <pythoncode> MaskColour = Mask
</pythoncode>
8271 <class name=
"Icon" oldname=
"wxIcon" module=
"gdi">
8272 <baseclass name=
"GDIObject"/>
8273 <constructor name=
"Icon" overloaded=
"no">
8274 <autodoc>__init__(String name, int type, int desiredWidth=-
1, int desiredHeight=-
1) -
> Icon
</autodoc>
8276 <param name=
"name" type=
"String" default=
""/>
8277 <param name=
"type" type=
"wxBitmapType" default=
""/>
8278 <param name=
"desiredWidth" type=
"int" default=
"-1"/>
8279 <param name=
"desiredHeight" type=
"int" default=
"-1"/>
8282 <constructor name=
"EmptyIcon" overloaded=
"no">
8283 <autodoc>EmptyIcon() -
> Icon
</autodoc>
8285 <constructor name=
"IconFromLocation" overloaded=
"no">
8286 <autodoc>IconFromLocation(IconLocation loc) -
> Icon
</autodoc>
8288 <param name=
"loc" type=
"wxIconLocation" default=
""/>
8291 <constructor name=
"IconFromBitmap" overloaded=
"no">
8292 <autodoc>IconFromBitmap(Bitmap bmp) -
> Icon
</autodoc>
8294 <param name=
"bmp" type=
"Bitmap" default=
""/>
8297 <constructor name=
"IconFromXPMData" overloaded=
"no">
8298 <autodoc>IconFromXPMData(PyObject listOfStrings) -
> Icon
</autodoc>
8300 <param name=
"listOfStrings" type=
"PyObject" default=
""/>
8303 <destructor name=
"~wxIcon" overloaded=
"no">
8304 <autodoc>__del__()
</autodoc>
8306 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
8307 <autodoc>LoadFile(String name, int type) -
> bool
</autodoc>
8309 <param name=
"name" type=
"String" default=
""/>
8310 <param name=
"type" type=
"wxBitmapType" default=
""/>
8313 <method name=
"Ok" type=
"bool" overloaded=
"no">
8314 <autodoc>Ok() -
> bool
</autodoc>
8316 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8317 <autodoc>GetWidth() -
> int
</autodoc>
8319 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8320 <autodoc>GetHeight() -
> int
</autodoc>
8322 <method name=
"GetDepth" type=
"int" overloaded=
"no">
8323 <autodoc>GetDepth() -
> int
</autodoc>
8325 <method name=
"SetWidth" type=
"" overloaded=
"no">
8326 <autodoc>SetWidth(int w)
</autodoc>
8328 <param name=
"w" type=
"int" default=
""/>
8331 <method name=
"SetHeight" type=
"" overloaded=
"no">
8332 <autodoc>SetHeight(int h)
</autodoc>
8334 <param name=
"h" type=
"int" default=
""/>
8337 <method name=
"SetDepth" type=
"" overloaded=
"no">
8338 <autodoc>SetDepth(int d)
</autodoc>
8340 <param name=
"d" type=
"int" default=
""/>
8343 <method name=
"CopyFromBitmap" type=
"" overloaded=
"no">
8344 <autodoc>CopyFromBitmap(Bitmap bmp)
</autodoc>
8346 <param name=
"bmp" type=
"Bitmap" default=
""/>
8350 <class name=
"IconLocation" oldname=
"wxIconLocation" module=
"gdi">
8351 <constructor name=
"IconLocation" overloaded=
"no">
8352 <autodoc>__init__(String filename=
&wxPyEmptyString, int num=
0) -
> IconLocation
</autodoc>
8354 <param name=
"filename" type=
"String" default=
"&wxPyEmptyString"/>
8355 <param name=
"num" type=
"int" default=
"0"/>
8358 <destructor name=
"~wxIconLocation" overloaded=
"no">
8359 <autodoc>__del__()
</autodoc>
8361 <method name=
"IsOk" type=
"bool" overloaded=
"no">
8362 <autodoc>IsOk() -
> bool
</autodoc>
8364 <method name=
"SetFileName" type=
"" overloaded=
"no">
8365 <autodoc>SetFileName(String filename)
</autodoc>
8367 <param name=
"filename" type=
"String" default=
""/>
8370 <method name=
"GetFileName" type=
"String" overloaded=
"no">
8371 <autodoc>GetFileName() -
> String
</autodoc>
8373 <method name=
"SetIndex" type=
"" overloaded=
"no">
8374 <autodoc>SetIndex(int num)
</autodoc>
8376 <param name=
"num" type=
"int" default=
""/>
8379 <method name=
"GetIndex" type=
"int" overloaded=
"no">
8380 <autodoc>GetIndex() -
> int
</autodoc>
8383 <class name=
"IconBundle" oldname=
"wxIconBundle" module=
"gdi">
8384 <constructor name=
"IconBundle" overloaded=
"no">
8385 <autodoc>__init__() -
> IconBundle
</autodoc>
8387 <constructor name=
"IconBundleFromFile" overloaded=
"no">
8388 <autodoc>IconBundleFromFile(String file, long type) -
> IconBundle
</autodoc>
8390 <param name=
"file" type=
"String" default=
""/>
8391 <param name=
"type" type=
"long" default=
""/>
8394 <constructor name=
"IconBundleFromIcon" overloaded=
"no">
8395 <autodoc>IconBundleFromIcon(Icon icon) -
> IconBundle
</autodoc>
8397 <param name=
"icon" type=
"Icon" default=
""/>
8400 <destructor name=
"~wxIconBundle" overloaded=
"no">
8401 <autodoc>__del__()
</autodoc>
8403 <method name=
"AddIcon" type=
"" overloaded=
"no">
8404 <autodoc>AddIcon(Icon icon)
</autodoc>
8406 <param name=
"icon" type=
"Icon" default=
""/>
8409 <method name=
"AddIconFromFile" type=
"" overloaded=
"no">
8410 <autodoc>AddIconFromFile(String file, long type)
</autodoc>
8412 <param name=
"file" type=
"String" default=
""/>
8413 <param name=
"type" type=
"long" default=
""/>
8416 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
8417 <autodoc>GetIcon(Size size) -
> Icon
</autodoc>
8419 <param name=
"size" type=
"Size" default=
""/>
8423 <class name=
"Cursor" oldname=
"wxCursor" module=
"gdi">
8424 <docstring>A cursor is a small bitmap usually used for denoting where the
8425 mouse pointer is, with a picture that might indicate the
8426 interpretation of a mouse click.
8428 A single cursor object may be used in many windows (any subwindow
8429 type). The wxWindows convention is to set the cursor for a
8430 window, as in X, rather than to set it globally as in MS Windows,
8431 although a global wx.SetCursor function is also available for use
8432 on MS Windows.
</docstring>
8433 <baseclass name=
"GDIObject"/>
8434 <constructor name=
"Cursor" overloaded=
"no">
8435 <autodoc>__init__(String cursorName, long type, int hotSpotX=
0, int hotSpotY=
0) -
> Cursor
</autodoc>
8436 <docstring>Construct a Cursor from a file. Specify the type of file using
8437 wx.BITAMP_TYPE* constants, and specify the hotspot if not using a
8440 This cursor is not available on wxGTK, use wx.StockCursor,
8441 wx.CursorFromImage, or wx.CursorFromBits instead.
</docstring>
8443 <param name=
"cursorName" type=
"String" default=
""/>
8444 <param name=
"type" type=
"long" default=
""/>
8445 <param name=
"hotSpotX" type=
"int" default=
"0"/>
8446 <param name=
"hotSpotY" type=
"int" default=
"0"/>
8449 <constructor name=
"StockCursor" overloaded=
"no">
8450 <autodoc>StockCursor(int id) -
> Cursor
</autodoc>
8451 <docstring>Create a cursor using one of the stock cursors. Note that not
8452 all cursors are available on all platforms.
</docstring>
8456 wx.CURSOR_ARROW A standard arrow cursor.
8457 wx.CURSOR_RIGHT_ARROW A standard arrow cursor pointing to the right.
8458 wx.CURSOR_BLANK Transparent cursor.
8459 wx.CURSOR_BULLSEYE Bullseye cursor.
8460 wx.CURSOR_CHAR Rectangular character cursor.
8461 wx.CURSOR_CROSS A cross cursor.
8462 wx.CURSOR_HAND A hand cursor.
8463 wx.CURSOR_IBEAM An I-beam cursor (vertical line).
8464 wx.CURSOR_LEFT_BUTTON Represents a mouse with the left button depressed.
8465 wx.CURSOR_MAGNIFIER A magnifier icon.
8466 wx.CURSOR_MIDDLE_BUTTON Represents a mouse with the middle button depressed.
8467 wx.CURSOR_NO_ENTRY A no-entry sign cursor.
8468 wx.CURSOR_PAINT_BRUSH A paintbrush cursor.
8469 wx.CURSOR_PENCIL A pencil cursor.
8470 wx.CURSOR_POINT_LEFT A cursor that points left.
8471 wx.CURSOR_POINT_RIGHT A cursor that points right.
8472 wx.CURSOR_QUESTION_ARROW An arrow and question mark.
8473 wx.CURSOR_RIGHT_BUTTON Represents a mouse with the right button depressed.
8474 wx.CURSOR_SIZENESW A sizing cursor pointing NE-SW.
8475 wx.CURSOR_SIZENS A sizing cursor pointing N-S.
8476 wx.CURSOR_SIZENWSE A sizing cursor pointing NW-SE.
8477 wx.CURSOR_SIZEWE A sizing cursor pointing W-E.
8478 wx.CURSOR_SIZING A general sizing cursor.
8479 wx.CURSOR_SPRAYCAN A spraycan cursor.
8480 wx.CURSOR_WAIT A wait cursor.
8481 wx.CURSOR_WATCH A watch cursor.
8482 wx.CURSOR_ARROWWAIT A cursor with both an arrow and an hourglass, (windows.)
8486 <param name=
"id" type=
"int" default=
""/>
8489 <constructor name=
"CursorFromImage" overloaded=
"no">
8490 <autodoc>CursorFromImage(Image image) -
> Cursor
</autodoc>
8491 <docstring>Constructs a cursor from a wxImage. The cursor is monochrome,
8492 colors with the RGB elements all greater than
127 will be
8493 foreground, colors less than this background. The mask (if any)
8494 will be used as transparent.
8496 In MSW the foreground will be white and the background black. The
8497 cursor is resized to
32x32 In GTK, the two most frequent colors
8498 will be used for foreground and background. The cursor will be
8499 displayed at the size of the image. On MacOS the cursor is
8500 resized to
16x16 and currently only shown as black/white (mask
8501 respected).
</docstring>
8503 <param name=
"image" type=
"Image" default=
""/>
8506 <destructor name=
"~wxCursor" overloaded=
"no">
8507 <autodoc>__del__()
</autodoc>
8509 <method name=
"Ok" type=
"bool" overloaded=
"no">
8510 <autodoc>Ok() -
> bool
</autodoc>
8514 #---------------------------------------------------------------------------
8516 <class name=
"Region" oldname=
"wxRegion" module=
"gdi">
8517 <baseclass name=
"GDIObject"/>
8518 <constructor name=
"Region" overloaded=
"no">
8519 <autodoc>__init__(int x=
0, int y=
0, int width=
0, int height=
0) -
> Region
</autodoc>
8521 <param name=
"x" type=
"int" default=
"0"/>
8522 <param name=
"y" type=
"int" default=
"0"/>
8523 <param name=
"width" type=
"int" default=
"0"/>
8524 <param name=
"height" type=
"int" default=
"0"/>
8527 <constructor name=
"RegionFromBitmap" overloaded=
"no">
8528 <autodoc>RegionFromBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> Region
</autodoc>
8530 <param name=
"bmp" type=
"Bitmap" default=
""/>
8531 <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/>
8532 <param name=
"tolerance" type=
"int" default=
"0"/>
8535 <constructor name=
"RegionFromPoints" overloaded=
"no">
8536 <autodoc>RegionFromPoints(int points, Point points_array, int fillStyle=WINDING_RULE) -
> Region
</autodoc>
8538 <param name=
"points" type=
"int" default=
""/>
8539 <param name=
"points_array" type=
"Point" default=
""/>
8540 <param name=
"fillStyle" type=
"int" default=
"wxWINDING_RULE"/>
8543 <destructor name=
"~wxRegion" overloaded=
"no">
8544 <autodoc>__del__()
</autodoc>
8546 <method name=
"Clear" type=
"" overloaded=
"no">
8547 <autodoc>Clear()
</autodoc>
8549 <method name=
"Offset" type=
"bool" overloaded=
"no">
8550 <autodoc>Offset(int x, int y) -
> bool
</autodoc>
8552 <param name=
"x" type=
"int" default=
""/>
8553 <param name=
"y" type=
"int" default=
""/>
8556 <method name=
"Contains" type=
"wxRegionContain" overloaded=
"no">
8557 <autodoc>Contains(int x, int y) -
> int
</autodoc>
8559 <param name=
"x" type=
"int" default=
""/>
8560 <param name=
"y" type=
"int" default=
""/>
8563 <method name=
"ContainsPoint" type=
"wxRegionContain" overloaded=
"no">
8564 <autodoc>ContainsPoint(Point pt) -
> int
</autodoc>
8566 <param name=
"pt" type=
"Point" default=
""/>
8569 <method name=
"ContainsRect" type=
"wxRegionContain" overloaded=
"no">
8570 <autodoc>ContainsRect(Rect rect) -
> int
</autodoc>
8572 <param name=
"rect" type=
"Rect" default=
""/>
8575 <method name=
"ContainsRectDim" type=
"wxRegionContain" overloaded=
"no">
8576 <autodoc>ContainsRectDim(int x, int y, int w, int h) -
> int
</autodoc>
8578 <param name=
"x" type=
"int" default=
""/>
8579 <param name=
"y" type=
"int" default=
""/>
8580 <param name=
"w" type=
"int" default=
""/>
8581 <param name=
"h" type=
"int" default=
""/>
8584 <method name=
"GetBox" type=
"Rect" overloaded=
"no">
8585 <autodoc>GetBox() -
> Rect
</autodoc>
8587 <method name=
"Intersect" type=
"bool" overloaded=
"no">
8588 <autodoc>Intersect(int x, int y, int width, int height) -
> bool
</autodoc>
8590 <param name=
"x" type=
"int" default=
""/>
8591 <param name=
"y" type=
"int" default=
""/>
8592 <param name=
"width" type=
"int" default=
""/>
8593 <param name=
"height" type=
"int" default=
""/>
8596 <method name=
"IntersectRect" type=
"bool" overloaded=
"no">
8597 <autodoc>IntersectRect(Rect rect) -
> bool
</autodoc>
8599 <param name=
"rect" type=
"Rect" default=
""/>
8602 <method name=
"IntersectRegion" type=
"bool" overloaded=
"no">
8603 <autodoc>IntersectRegion(Region region) -
> bool
</autodoc>
8605 <param name=
"region" type=
"Region" default=
""/>
8608 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
8609 <autodoc>IsEmpty() -
> bool
</autodoc>
8611 <method name=
"Union" type=
"bool" overloaded=
"no">
8612 <autodoc>Union(int x, int y, int width, int height) -
> bool
</autodoc>
8614 <param name=
"x" type=
"int" default=
""/>
8615 <param name=
"y" type=
"int" default=
""/>
8616 <param name=
"width" type=
"int" default=
""/>
8617 <param name=
"height" type=
"int" default=
""/>
8620 <method name=
"UnionRect" type=
"bool" overloaded=
"no">
8621 <autodoc>UnionRect(Rect rect) -
> bool
</autodoc>
8623 <param name=
"rect" type=
"Rect" default=
""/>
8626 <method name=
"UnionRegion" type=
"bool" overloaded=
"no">
8627 <autodoc>UnionRegion(Region region) -
> bool
</autodoc>
8629 <param name=
"region" type=
"Region" default=
""/>
8632 <method name=
"Subtract" type=
"bool" overloaded=
"no">
8633 <autodoc>Subtract(int x, int y, int width, int height) -
> bool
</autodoc>
8635 <param name=
"x" type=
"int" default=
""/>
8636 <param name=
"y" type=
"int" default=
""/>
8637 <param name=
"width" type=
"int" default=
""/>
8638 <param name=
"height" type=
"int" default=
""/>
8641 <method name=
"SubtractRect" type=
"bool" overloaded=
"no">
8642 <autodoc>SubtractRect(Rect rect) -
> bool
</autodoc>
8644 <param name=
"rect" type=
"Rect" default=
""/>
8647 <method name=
"SubtractRegion" type=
"bool" overloaded=
"no">
8648 <autodoc>SubtractRegion(Region region) -
> bool
</autodoc>
8650 <param name=
"region" type=
"Region" default=
""/>
8653 <method name=
"Xor" type=
"bool" overloaded=
"no">
8654 <autodoc>Xor(int x, int y, int width, int height) -
> bool
</autodoc>
8656 <param name=
"x" type=
"int" default=
""/>
8657 <param name=
"y" type=
"int" default=
""/>
8658 <param name=
"width" type=
"int" default=
""/>
8659 <param name=
"height" type=
"int" default=
""/>
8662 <method name=
"XorRect" type=
"bool" overloaded=
"no">
8663 <autodoc>XorRect(Rect rect) -
> bool
</autodoc>
8665 <param name=
"rect" type=
"Rect" default=
""/>
8668 <method name=
"XorRegion" type=
"bool" overloaded=
"no">
8669 <autodoc>XorRegion(Region region) -
> bool
</autodoc>
8671 <param name=
"region" type=
"Region" default=
""/>
8674 <method name=
"ConvertToBitmap" type=
"Bitmap" overloaded=
"no">
8675 <autodoc>ConvertToBitmap() -
> Bitmap
</autodoc>
8677 <method name=
"UnionBitmap" type=
"bool" overloaded=
"no">
8678 <autodoc>UnionBitmap(Bitmap bmp, Colour transColour=NullColour, int tolerance=
0) -
> bool
</autodoc>
8680 <param name=
"bmp" type=
"Bitmap" default=
""/>
8681 <param name=
"transColour" type=
"Colour" default=
"wxNullColour"/>
8682 <param name=
"tolerance" type=
"int" default=
"0"/>
8686 <class name=
"RegionIterator" oldname=
"wxRegionIterator" module=
"gdi">
8687 <baseclass name=
"Object"/>
8688 <constructor name=
"RegionIterator" overloaded=
"no">
8689 <autodoc>__init__(Region region) -
> RegionIterator
</autodoc>
8691 <param name=
"region" type=
"Region" default=
""/>
8694 <destructor name=
"~wxRegionIterator" overloaded=
"no">
8695 <autodoc>__del__()
</autodoc>
8697 <method name=
"GetX" type=
"int" overloaded=
"no">
8698 <autodoc>GetX() -
> int
</autodoc>
8700 <method name=
"GetY" type=
"int" overloaded=
"no">
8701 <autodoc>GetY() -
> int
</autodoc>
8703 <method name=
"GetW" type=
"int" overloaded=
"no">
8704 <autodoc>GetW() -
> int
</autodoc>
8706 <method name=
"GetWidth" type=
"int" overloaded=
"no">
8707 <autodoc>GetWidth() -
> int
</autodoc>
8709 <method name=
"GetH" type=
"int" overloaded=
"no">
8710 <autodoc>GetH() -
> int
</autodoc>
8712 <method name=
"GetHeight" type=
"int" overloaded=
"no">
8713 <autodoc>GetHeight() -
> int
</autodoc>
8715 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
8716 <autodoc>GetRect() -
> Rect
</autodoc>
8718 <method name=
"HaveRects" type=
"bool" overloaded=
"no">
8719 <autodoc>HaveRects() -
> bool
</autodoc>
8721 <method name=
"Reset" type=
"" overloaded=
"no">
8722 <autodoc>Reset()
</autodoc>
8724 <method name=
"Next" type=
"" overloaded=
"no">
8725 <autodoc>Next()
</autodoc>
8727 <method name=
"__nonzero__" type=
"bool" overloaded=
"no">
8728 <autodoc>__nonzero__() -
> bool
</autodoc>
8732 #---------------------------------------------------------------------------
8735 #---------------------------------------------------------------------------
8737 <class name=
"NativeFontInfo" oldname=
"wxNativeFontInfo" module=
"gdi">
8738 <constructor name=
"NativeFontInfo" overloaded=
"no">
8739 <autodoc>__init__() -
> NativeFontInfo
</autodoc>
8741 <destructor name=
"~wxNativeFontInfo" overloaded=
"no">
8742 <autodoc>__del__()
</autodoc>
8744 <method name=
"Init" type=
"" overloaded=
"no">
8745 <autodoc>Init()
</autodoc>
8747 <method name=
"InitFromFont" type=
"" overloaded=
"no">
8748 <autodoc>InitFromFont(Font font)
</autodoc>
8750 <param name=
"font" type=
"wxFont" default=
""/>
8753 <method name=
"GetPointSize" type=
"int" overloaded=
"no">
8754 <autodoc>GetPointSize() -
> int
</autodoc>
8756 <method name=
"GetStyle" type=
"wxFontStyle" overloaded=
"no">
8757 <autodoc>GetStyle() -
> int
</autodoc>
8759 <method name=
"GetWeight" type=
"wxFontWeight" overloaded=
"no">
8760 <autodoc>GetWeight() -
> int
</autodoc>
8762 <method name=
"GetUnderlined" type=
"bool" overloaded=
"no">
8763 <autodoc>GetUnderlined() -
> bool
</autodoc>
8765 <method name=
"GetFaceName" type=
"String" overloaded=
"no">
8766 <autodoc>GetFaceName() -
> String
</autodoc>
8768 <method name=
"GetFamily" type=
"wxFontFamily" overloaded=
"no">
8769 <autodoc>GetFamily() -
> int
</autodoc>
8771 <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
8772 <autodoc>GetEncoding() -
> int
</autodoc>
8774 <method name=
"SetPointSize" type=
"" overloaded=
"no">
8775 <autodoc>SetPointSize(int pointsize)
</autodoc>
8777 <param name=
"pointsize" type=
"int" default=
""/>
8780 <method name=
"SetStyle" type=
"" overloaded=
"no">
8781 <autodoc>SetStyle(int style)
</autodoc>
8783 <param name=
"style" type=
"wxFontStyle" default=
""/>
8786 <method name=
"SetWeight" type=
"" overloaded=
"no">
8787 <autodoc>SetWeight(int weight)
</autodoc>
8789 <param name=
"weight" type=
"wxFontWeight" default=
""/>
8792 <method name=
"SetUnderlined" type=
"" overloaded=
"no">
8793 <autodoc>SetUnderlined(bool underlined)
</autodoc>
8795 <param name=
"underlined" type=
"bool" default=
""/>
8798 <method name=
"SetFaceName" type=
"" overloaded=
"no">
8799 <autodoc>SetFaceName(String facename)
</autodoc>
8801 <param name=
"facename" type=
"String" default=
""/>
8804 <method name=
"SetFamily" type=
"" overloaded=
"no">
8805 <autodoc>SetFamily(int family)
</autodoc>
8807 <param name=
"family" type=
"wxFontFamily" default=
""/>
8810 <method name=
"SetEncoding" type=
"" overloaded=
"no">
8811 <autodoc>SetEncoding(int encoding)
</autodoc>
8813 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8816 <method name=
"FromString" type=
"bool" overloaded=
"no">
8817 <autodoc>FromString(String s) -
> bool
</autodoc>
8819 <param name=
"s" type=
"String" default=
""/>
8822 <method name=
"ToString" type=
"String" overloaded=
"no">
8823 <autodoc>ToString() -
> String
</autodoc>
8825 <method name=
"__str__" type=
"String" overloaded=
"no">
8826 <autodoc>__str__() -
> String
</autodoc>
8828 <method name=
"FromUserString" type=
"bool" overloaded=
"no">
8829 <autodoc>FromUserString(String s) -
> bool
</autodoc>
8831 <param name=
"s" type=
"String" default=
""/>
8834 <method name=
"ToUserString" type=
"String" overloaded=
"no">
8835 <autodoc>ToUserString() -
> String
</autodoc>
8838 <class name=
"NativeEncodingInfo" oldname=
"wxNativeEncodingInfo" module=
"gdi">
8839 <constructor name=
"NativeEncodingInfo" overloaded=
"no">
8840 <autodoc>__init__() -
> NativeEncodingInfo
</autodoc>
8842 <destructor name=
"~wxNativeEncodingInfo" overloaded=
"no">
8843 <autodoc>__del__()
</autodoc>
8845 <property name=
"facename" type=
"String" readonly=
"no"/>
8846 <property name=
"encoding" type=
"wxFontEncoding" readonly=
"no"/>
8847 <method name=
"FromString" type=
"bool" overloaded=
"no">
8848 <autodoc>FromString(String s) -
> bool
</autodoc>
8850 <param name=
"s" type=
"String" default=
""/>
8853 <method name=
"ToString" type=
"String" overloaded=
"no">
8854 <autodoc>ToString() -
> String
</autodoc>
8857 <method name=
"GetNativeFontEncoding" oldname=
"wxGetNativeFontEncoding" type=
"NativeEncodingInfo" overloaded=
"no">
8858 <autodoc>GetNativeFontEncoding(int encoding) -
> NativeEncodingInfo
</autodoc>
8860 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8863 <method name=
"TestFontEncoding" oldname=
"wxTestFontEncoding" type=
"bool" overloaded=
"no">
8864 <autodoc>TestFontEncoding(NativeEncodingInfo info) -
> bool
</autodoc>
8866 <param name=
"info" type=
"NativeEncodingInfo" default=
""/>
8870 #---------------------------------------------------------------------------
8872 <class name=
"FontMapper" oldname=
"wxFontMapper" module=
"gdi">
8873 <constructor name=
"FontMapper" overloaded=
"no">
8874 <autodoc>__init__() -
> FontMapper
</autodoc>
8876 <destructor name=
"~wxFontMapper" overloaded=
"no">
8877 <autodoc>__del__()
</autodoc>
8879 <staticmethod name=
"Get" type=
"FontMapper" overloaded=
"no">
8880 <autodoc>Get() -
> FontMapper
</autodoc>
8882 <staticmethod name=
"Set" type=
"FontMapper" overloaded=
"no">
8883 <autodoc>Set(FontMapper mapper) -
> FontMapper
</autodoc>
8885 <param name=
"mapper" type=
"FontMapper" default=
""/>
8888 <method name=
"CharsetToEncoding" type=
"wxFontEncoding" overloaded=
"no">
8889 <autodoc>CharsetToEncoding(String charset, bool interactive=True) -
> int
</autodoc>
8891 <param name=
"charset" type=
"String" default=
""/>
8892 <param name=
"interactive" type=
"bool" default=
"True"/>
8895 <staticmethod name=
"GetSupportedEncodingsCount" type=
"size_t" overloaded=
"no">
8896 <autodoc>GetSupportedEncodingsCount() -
> size_t
</autodoc>
8898 <staticmethod name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
8899 <autodoc>GetEncoding(size_t n) -
> int
</autodoc>
8901 <param name=
"n" type=
"size_t" default=
""/>
8904 <staticmethod name=
"GetEncodingName" type=
"String" overloaded=
"no">
8905 <autodoc>GetEncodingName(int encoding) -
> String
</autodoc>
8907 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8910 <staticmethod name=
"GetEncodingDescription" type=
"String" overloaded=
"no">
8911 <autodoc>GetEncodingDescription(int encoding) -
> String
</autodoc>
8913 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8916 <method name=
"SetConfig" type=
"" overloaded=
"no">
8917 <autodoc>SetConfig(ConfigBase config)
</autodoc>
8919 <param name=
"config" type=
"wxConfigBase" default=
""/>
8922 <method name=
"SetConfigPath" type=
"" overloaded=
"no">
8923 <autodoc>SetConfigPath(String prefix)
</autodoc>
8925 <param name=
"prefix" type=
"String" default=
""/>
8928 <staticmethod name=
"GetDefaultConfigPath" type=
"String" overloaded=
"no">
8929 <autodoc>GetDefaultConfigPath() -
> String
</autodoc>
8931 <method name=
"GetAltForEncoding" type=
"PyObject" overloaded=
"no">
8932 <autodoc>GetAltForEncoding(int encoding, String facename=EmptyString, bool interactive=True) -
> PyObject
</autodoc>
8934 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8935 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
8936 <param name=
"interactive" type=
"bool" default=
"True"/>
8939 <method name=
"IsEncodingAvailable" type=
"bool" overloaded=
"no">
8940 <autodoc>IsEncodingAvailable(int encoding, String facename=EmptyString) -
> bool
</autodoc>
8942 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
8943 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
8946 <method name=
"SetDialogParent" type=
"" overloaded=
"no">
8947 <autodoc>SetDialogParent(Window parent)
</autodoc>
8949 <param name=
"parent" type=
"Window" default=
""/>
8952 <method name=
"SetDialogTitle" type=
"" overloaded=
"no">
8953 <autodoc>SetDialogTitle(String title)
</autodoc>
8955 <param name=
"title" type=
"String" default=
""/>
8960 #---------------------------------------------------------------------------
8962 <class name=
"Font" oldname=
"wxFont" module=
"gdi">
8963 <baseclass name=
"GDIObject"/>
8964 <constructor name=
"Font" overloaded=
"no">
8965 <autodoc>__init__(int pointSize, int family, int style, int weight, bool underline=False,
8966 String face=EmptyString,
8967 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
8969 <param name=
"pointSize" type=
"int" default=
""/>
8970 <param name=
"family" type=
"int" default=
""/>
8971 <param name=
"style" type=
"int" default=
""/>
8972 <param name=
"weight" type=
"int" default=
""/>
8973 <param name=
"underline" type=
"bool" default=
"False"/>
8974 <param name=
"face" type=
"String" default=
"wxPyEmptyString"/>
8975 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
8978 <constructor name=
"FontFromNativeInfo" overloaded=
"no">
8979 <autodoc>FontFromNativeInfo(NativeFontInfo info) -
> Font
</autodoc>
8981 <param name=
"info" type=
"NativeFontInfo" default=
""/>
8984 <constructor name=
"FontFromNativeInfoString" overloaded=
"no">
8985 <autodoc>FontFromNativeInfoString(String info) -
> Font
</autodoc>
8987 <param name=
"info" type=
"String" default=
""/>
8990 <constructor name=
"Font2" overloaded=
"no">
8991 <autodoc>Font2(int pointSize, int family, int flags=FONTFLAG_DEFAULT,
8992 String face=EmptyString, int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
8994 <param name=
"pointSize" type=
"int" default=
""/>
8995 <param name=
"family" type=
"wxFontFamily" default=
""/>
8996 <param name=
"flags" type=
"int" default=
"wxFONTFLAG_DEFAULT"/>
8997 <param name=
"face" type=
"String" default=
"wxPyEmptyString"/>
8998 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
9001 <destructor name=
"~wxFont" overloaded=
"no">
9002 <autodoc>__del__()
</autodoc>
9004 <method name=
"Ok" type=
"bool" overloaded=
"no">
9005 <autodoc>Ok() -
> bool
</autodoc>
9007 <method name=
"__eq__" type=
"bool" overloaded=
"no">
9008 <autodoc>__eq__(Font other) -
> bool
</autodoc>
9010 <param name=
"other" type=
"Font" default=
""/>
9013 <method name=
"__ne__" type=
"bool" overloaded=
"no">
9014 <autodoc>__ne__(Font other) -
> bool
</autodoc>
9016 <param name=
"other" type=
"Font" default=
""/>
9019 <method name=
"GetPointSize" type=
"int" overloaded=
"no">
9020 <autodoc>GetPointSize() -
> int
</autodoc>
9022 <method name=
"GetFamily" type=
"int" overloaded=
"no">
9023 <autodoc>GetFamily() -
> int
</autodoc>
9025 <method name=
"GetStyle" type=
"int" overloaded=
"no">
9026 <autodoc>GetStyle() -
> int
</autodoc>
9028 <method name=
"GetWeight" type=
"int" overloaded=
"no">
9029 <autodoc>GetWeight() -
> int
</autodoc>
9031 <method name=
"GetUnderlined" type=
"bool" overloaded=
"no">
9032 <autodoc>GetUnderlined() -
> bool
</autodoc>
9034 <method name=
"GetFaceName" type=
"String" overloaded=
"no">
9035 <autodoc>GetFaceName() -
> String
</autodoc>
9037 <method name=
"GetEncoding" type=
"wxFontEncoding" overloaded=
"no">
9038 <autodoc>GetEncoding() -
> int
</autodoc>
9040 <method name=
"GetNativeFontInfo" type=
"NativeFontInfo" overloaded=
"no">
9041 <autodoc>GetNativeFontInfo() -
> NativeFontInfo
</autodoc>
9043 <method name=
"IsFixedWidth" type=
"bool" overloaded=
"no">
9044 <autodoc>IsFixedWidth() -
> bool
</autodoc>
9046 <method name=
"GetNativeFontInfoDesc" type=
"String" overloaded=
"no">
9047 <autodoc>GetNativeFontInfoDesc() -
> String
</autodoc>
9049 <method name=
"GetNativeFontInfoUserDesc" type=
"String" overloaded=
"no">
9050 <autodoc>GetNativeFontInfoUserDesc() -
> String
</autodoc>
9052 <method name=
"SetPointSize" type=
"" overloaded=
"no">
9053 <autodoc>SetPointSize(int pointSize)
</autodoc>
9055 <param name=
"pointSize" type=
"int" default=
""/>
9058 <method name=
"SetFamily" type=
"" overloaded=
"no">
9059 <autodoc>SetFamily(int family)
</autodoc>
9061 <param name=
"family" type=
"int" default=
""/>
9064 <method name=
"SetStyle" type=
"" overloaded=
"no">
9065 <autodoc>SetStyle(int style)
</autodoc>
9067 <param name=
"style" type=
"int" default=
""/>
9070 <method name=
"SetWeight" type=
"" overloaded=
"no">
9071 <autodoc>SetWeight(int weight)
</autodoc>
9073 <param name=
"weight" type=
"int" default=
""/>
9076 <method name=
"SetFaceName" type=
"" overloaded=
"no">
9077 <autodoc>SetFaceName(String faceName)
</autodoc>
9079 <param name=
"faceName" type=
"String" default=
""/>
9082 <method name=
"SetUnderlined" type=
"" overloaded=
"no">
9083 <autodoc>SetUnderlined(bool underlined)
</autodoc>
9085 <param name=
"underlined" type=
"bool" default=
""/>
9088 <method name=
"SetEncoding" type=
"" overloaded=
"no">
9089 <autodoc>SetEncoding(int encoding)
</autodoc>
9091 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
9094 <method name=
"SetNativeFontInfo" type=
"" overloaded=
"no">
9095 <autodoc>SetNativeFontInfo(NativeFontInfo info)
</autodoc>
9097 <param name=
"info" type=
"NativeFontInfo" default=
""/>
9100 <method name=
"SetNativeFontInfoFromString" type=
"" overloaded=
"no">
9101 <autodoc>SetNativeFontInfoFromString(String info)
</autodoc>
9103 <param name=
"info" type=
"String" default=
""/>
9106 <method name=
"SetNativeFontInfoUserDesc" type=
"" overloaded=
"no">
9107 <autodoc>SetNativeFontInfoUserDesc(String info)
</autodoc>
9109 <param name=
"info" type=
"String" default=
""/>
9112 <method name=
"GetFamilyString" type=
"String" overloaded=
"no">
9113 <autodoc>GetFamilyString() -
> String
</autodoc>
9115 <method name=
"GetStyleString" type=
"String" overloaded=
"no">
9116 <autodoc>GetStyleString() -
> String
</autodoc>
9118 <method name=
"GetWeightString" type=
"String" overloaded=
"no">
9119 <autodoc>GetWeightString() -
> String
</autodoc>
9121 <method name=
"SetNoAntiAliasing" type=
"" overloaded=
"no">
9122 <autodoc>SetNoAntiAliasing(bool no=True)
</autodoc>
9124 <param name=
"no" type=
"bool" default=
"True"/>
9127 <method name=
"GetNoAntiAliasing" type=
"bool" overloaded=
"no">
9128 <autodoc>GetNoAntiAliasing() -
> bool
</autodoc>
9130 <staticmethod name=
"GetDefaultEncoding" type=
"wxFontEncoding" overloaded=
"no">
9131 <autodoc>GetDefaultEncoding() -
> int
</autodoc>
9133 <staticmethod name=
"SetDefaultEncoding" type=
"" overloaded=
"no">
9134 <autodoc>SetDefaultEncoding(int encoding)
</autodoc>
9136 <param name=
"encoding" type=
"wxFontEncoding" default=
""/>
9141 #---------------------------------------------------------------------------
9143 <class name=
"FontEnumerator" oldname=
"wxPyFontEnumerator" module=
"gdi">
9144 <constructor name=
"wxPyFontEnumerator" overloaded=
"no">
9145 <autodoc>__init__() -
> FontEnumerator
</autodoc>
9147 <destructor name=
"~wxPyFontEnumerator" overloaded=
"no">
9148 <autodoc>__del__()
</autodoc>
9150 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
9151 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, bool incref)
</autodoc>
9153 <param name=
"self" type=
"PyObject" default=
""/>
9154 <param name=
"_class" type=
"PyObject" default=
""/>
9155 <param name=
"incref" type=
"bool" default=
""/>
9158 <method name=
"EnumerateFacenames" type=
"bool" overloaded=
"no">
9159 <autodoc>EnumerateFacenames(int encoding=FONTENCODING_SYSTEM, bool fixedWidthOnly=False) -
> bool
</autodoc>
9161 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_SYSTEM"/>
9162 <param name=
"fixedWidthOnly" type=
"bool" default=
"False"/>
9165 <method name=
"EnumerateEncodings" type=
"bool" overloaded=
"no">
9166 <autodoc>EnumerateEncodings(String facename=EmptyString) -
> bool
</autodoc>
9168 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
9171 <method name=
"GetEncodings" type=
"PyObject" overloaded=
"no">
9172 <autodoc>GetEncodings() -
> PyObject
</autodoc>
9174 <method name=
"GetFacenames" type=
"PyObject" overloaded=
"no">
9175 <autodoc>GetFacenames() -
> PyObject
</autodoc>
9179 #---------------------------------------------------------------------------
9181 <class name=
"LanguageInfo" oldname=
"wxLanguageInfo" module=
"gdi">
9182 <property name=
"Language" type=
"int" readonly=
"no"/>
9183 <property name=
"CanonicalName" type=
"String" readonly=
"no"/>
9184 <property name=
"Description" type=
"String" readonly=
"no"/>
9186 <class name=
"Locale" oldname=
"wxLocale" module=
"gdi">
9187 <constructor name=
"Locale" overloaded=
"no">
9188 <autodoc>__init__(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> Locale
</autodoc>
9190 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
9191 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
9194 <destructor name=
"~wxLocale" overloaded=
"no">
9195 <autodoc>__del__()
</autodoc>
9197 <method name=
"Init1" type=
"bool" overloaded=
"no">
9198 <autodoc>Init1(String szName, String szShort=EmptyString, String szLocale=EmptyString,
9199 bool bLoadDefault=True,
9200 bool bConvertEncoding=False) -
> bool
</autodoc>
9202 <param name=
"szName" type=
"String" default=
""/>
9203 <param name=
"szShort" type=
"String" default=
"wxPyEmptyString"/>
9204 <param name=
"szLocale" type=
"String" default=
"wxPyEmptyString"/>
9205 <param name=
"bLoadDefault" type=
"bool" default=
"True"/>
9206 <param name=
"bConvertEncoding" type=
"bool" default=
"False"/>
9209 <method name=
"Init2" type=
"bool" overloaded=
"no">
9210 <autodoc>Init2(int language=LANGUAGE_DEFAULT, int flags=wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING) -
> bool
</autodoc>
9212 <param name=
"language" type=
"int" default=
"wxLANGUAGE_DEFAULT"/>
9213 <param name=
"flags" type=
"int" default=
"wxLOCALE_LOAD_DEFAULT|wxLOCALE_CONV_ENCODING"/>
9216 <staticmethod name=
"GetSystemLanguage" type=
"int" overloaded=
"no">
9217 <autodoc>GetSystemLanguage() -
> int
</autodoc>
9219 <staticmethod name=
"GetSystemEncoding" type=
"wxFontEncoding" overloaded=
"no">
9220 <autodoc>GetSystemEncoding() -
> int
</autodoc>
9222 <staticmethod name=
"GetSystemEncodingName" type=
"String" overloaded=
"no">
9223 <autodoc>GetSystemEncodingName() -
> String
</autodoc>
9225 <method name=
"IsOk" type=
"bool" overloaded=
"no">
9226 <autodoc>IsOk() -
> bool
</autodoc>
9228 <method name=
"GetLocale" type=
"String" overloaded=
"no">
9229 <autodoc>GetLocale() -
> String
</autodoc>
9231 <method name=
"GetLanguage" type=
"int" overloaded=
"no">
9232 <autodoc>GetLanguage() -
> int
</autodoc>
9234 <method name=
"GetSysName" type=
"String" overloaded=
"no">
9235 <autodoc>GetSysName() -
> String
</autodoc>
9237 <method name=
"GetCanonicalName" type=
"String" overloaded=
"no">
9238 <autodoc>GetCanonicalName() -
> String
</autodoc>
9240 <staticmethod name=
"AddCatalogLookupPathPrefix" type=
"" overloaded=
"no">
9241 <autodoc>AddCatalogLookupPathPrefix(String prefix)
</autodoc>
9243 <param name=
"prefix" type=
"String" default=
""/>
9246 <method name=
"AddCatalog" type=
"bool" overloaded=
"no">
9247 <autodoc>AddCatalog(String szDomain) -
> bool
</autodoc>
9249 <param name=
"szDomain" type=
"String" default=
""/>
9252 <method name=
"IsLoaded" type=
"bool" overloaded=
"no">
9253 <autodoc>IsLoaded(String szDomain) -
> bool
</autodoc>
9255 <param name=
"szDomain" type=
"String" default=
""/>
9258 <staticmethod name=
"GetLanguageInfo" type=
"LanguageInfo" overloaded=
"no">
9259 <autodoc>GetLanguageInfo(int lang) -
> LanguageInfo
</autodoc>
9261 <param name=
"lang" type=
"int" default=
""/>
9264 <staticmethod name=
"GetLanguageName" type=
"String" overloaded=
"no">
9265 <autodoc>GetLanguageName(int lang) -
> String
</autodoc>
9267 <param name=
"lang" type=
"int" default=
""/>
9270 <staticmethod name=
"FindLanguageInfo" type=
"LanguageInfo" overloaded=
"no">
9271 <autodoc>FindLanguageInfo(String locale) -
> LanguageInfo
</autodoc>
9273 <param name=
"locale" type=
"String" default=
""/>
9276 <staticmethod name=
"AddLanguage" type=
"" overloaded=
"no">
9277 <autodoc>AddLanguage(LanguageInfo info)
</autodoc>
9279 <param name=
"info" type=
"LanguageInfo" default=
""/>
9282 <method name=
"GetString" type=
"String" overloaded=
"no">
9283 <autodoc>GetString(String szOrigString, String szDomain=EmptyString) -
> String
</autodoc>
9285 <param name=
"szOrigString" type=
"String" default=
""/>
9286 <param name=
"szDomain" type=
"String" default=
"wxPyEmptyString"/>
9289 <method name=
"GetName" type=
"String" overloaded=
"no">
9290 <autodoc>GetName() -
> String
</autodoc>
9293 <method name=
"GetLocale" oldname=
"wxGetLocale" type=
"Locale" overloaded=
"no">
9294 <autodoc>GetLocale() -
> Locale
</autodoc>
9296 <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes">
9298 <param name=
"str" type=
"String" default=
""/>
9301 <method name=
"GetTranslation" oldname=
"wxGetTranslation" type=
"String" overloaded=
"yes">
9302 <autodoc>GetTranslation(String str) -
> String
9303 GetTranslation(String str, String strPlural, size_t n) -
> String
</autodoc>
9305 <param name=
"str" type=
"String" default=
""/>
9306 <param name=
"strPlural" type=
"String" default=
""/>
9307 <param name=
"n" type=
"size_t" default=
""/>
9311 #---------------------------------------------------------------------------
9313 <class name=
"EncodingConverter" oldname=
"wxEncodingConverter" module=
"gdi">
9314 <baseclass name=
"Object"/>
9315 <constructor name=
"EncodingConverter" overloaded=
"no">
9316 <autodoc>__init__() -
> EncodingConverter
</autodoc>
9318 <destructor name=
"~wxEncodingConverter" overloaded=
"no">
9319 <autodoc>__del__()
</autodoc>
9321 <method name=
"Init" type=
"bool" overloaded=
"no">
9322 <autodoc>Init(int input_enc, int output_enc, int method=CONVERT_STRICT) -
> bool
</autodoc>
9324 <param name=
"input_enc" type=
"wxFontEncoding" default=
""/>
9325 <param name=
"output_enc" type=
"wxFontEncoding" default=
""/>
9326 <param name=
"method" type=
"int" default=
"wxCONVERT_STRICT"/>
9329 <method name=
"Convert" type=
"String" overloaded=
"no">
9330 <autodoc>Convert(String input) -
> String
</autodoc>
9332 <param name=
"input" type=
"String" default=
""/>
9335 <staticmethod name=
"GetPlatformEquivalents" type=
"wxFontEncodingArray" overloaded=
"no">
9336 <autodoc>GetPlatformEquivalents(int enc, int platform=PLATFORM_CURRENT) -
> wxFontEncodingArray
</autodoc>
9338 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
9339 <param name=
"platform" type=
"int" default=
"wxPLATFORM_CURRENT"/>
9342 <staticmethod name=
"GetAllEquivalents" type=
"wxFontEncodingArray" overloaded=
"no">
9343 <autodoc>GetAllEquivalents(int enc) -
> wxFontEncodingArray
</autodoc>
9345 <param name=
"enc" type=
"wxFontEncoding" default=
""/>
9348 <staticmethod name=
"CanConvert" type=
"bool" overloaded=
"no">
9349 <autodoc>CanConvert(int encIn, int encOut) -
> bool
</autodoc>
9351 <param name=
"encIn" type=
"wxFontEncoding" default=
""/>
9352 <param name=
"encOut" type=
"wxFontEncoding" default=
""/>
9356 <pythoncode>#----------------------------------------------------------------------------
9357 # wxGTK sets the locale when initialized. Doing this at the Python
9358 # level should set it up to match what GTK is doing at the C level.
9359 if wx.Platform == "__WXGTK__":
9362 locale.setlocale(locale.LC_ALL, "")
9366 # On MSW add the directory where the wxWindows catalogs were installed
9367 # to the default catalog path.
9368 if wx.Platform == "__WXMSW__":
9370 localedir = os.path.join(os.path.split(__file__)[
0], "locale")
9371 Locale_AddCatalogLookupPathPrefix(localedir)
9374 #----------------------------------------------------------------------------
9377 #---------------------------------------------------------------------------
9379 <class name=
"DC" oldname=
"wxDC" module=
"gdi">
9380 <baseclass name=
"Object"/>
9381 <destructor name=
"~wxDC" overloaded=
"no">
9382 <autodoc>__del__()
</autodoc>
9384 <method name=
"BeginDrawing" type=
"" overloaded=
"no">
9385 <autodoc>BeginDrawing()
</autodoc>
9387 <method name=
"EndDrawing" type=
"" overloaded=
"no">
9388 <autodoc>EndDrawing()
</autodoc>
9390 <method name=
"FloodFillXY" type=
"bool" overloaded=
"no">
9391 <autodoc>FloodFillXY(int x, int y, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
9393 <param name=
"x" type=
"int" default=
""/>
9394 <param name=
"y" type=
"int" default=
""/>
9395 <param name=
"col" type=
"Colour" default=
""/>
9396 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
9399 <method name=
"FloodFill" type=
"bool" overloaded=
"no">
9400 <autodoc>FloodFill(Point pt, Colour col, int style=FLOOD_SURFACE) -
> bool
</autodoc>
9402 <param name=
"pt" type=
"Point" default=
""/>
9403 <param name=
"col" type=
"Colour" default=
""/>
9404 <param name=
"style" type=
"int" default=
"wxFLOOD_SURFACE"/>
9407 <method name=
"GetPixelXY" type=
"Colour" overloaded=
"no">
9408 <autodoc>GetPixelXY(int x, int y) -
> Colour
</autodoc>
9410 <param name=
"x" type=
"int" default=
""/>
9411 <param name=
"y" type=
"int" default=
""/>
9414 <method name=
"GetPixel" type=
"Colour" overloaded=
"no">
9415 <autodoc>GetPixel(Point pt) -
> Colour
</autodoc>
9417 <param name=
"pt" type=
"Point" default=
""/>
9420 <method name=
"DrawLineXY" type=
"" overloaded=
"no">
9421 <autodoc>DrawLineXY(int x1, int y1, int x2, int y2)
</autodoc>
9423 <param name=
"x1" type=
"int" default=
""/>
9424 <param name=
"y1" type=
"int" default=
""/>
9425 <param name=
"x2" type=
"int" default=
""/>
9426 <param name=
"y2" type=
"int" default=
""/>
9429 <method name=
"DrawLine" type=
"" overloaded=
"no">
9430 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
9432 <param name=
"pt1" type=
"Point" default=
""/>
9433 <param name=
"pt2" type=
"Point" default=
""/>
9436 <method name=
"CrossHairXY" type=
"" overloaded=
"no">
9437 <autodoc>CrossHairXY(int x, int y)
</autodoc>
9439 <param name=
"x" type=
"int" default=
""/>
9440 <param name=
"y" type=
"int" default=
""/>
9443 <method name=
"CrossHair" type=
"" overloaded=
"no">
9444 <autodoc>CrossHair(Point pt)
</autodoc>
9446 <param name=
"pt" type=
"Point" default=
""/>
9449 <method name=
"DrawArcXY" type=
"" overloaded=
"no">
9450 <autodoc>DrawArcXY(int x1, int y1, int x2, int y2, int xc, int yc)
</autodoc>
9452 <param name=
"x1" type=
"int" default=
""/>
9453 <param name=
"y1" type=
"int" default=
""/>
9454 <param name=
"x2" type=
"int" default=
""/>
9455 <param name=
"y2" type=
"int" default=
""/>
9456 <param name=
"xc" type=
"int" default=
""/>
9457 <param name=
"yc" type=
"int" default=
""/>
9460 <method name=
"DrawArc" type=
"" overloaded=
"no">
9461 <autodoc>DrawArc(Point pt1, Point pt2, Point centre)
</autodoc>
9463 <param name=
"pt1" type=
"Point" default=
""/>
9464 <param name=
"pt2" type=
"Point" default=
""/>
9465 <param name=
"centre" type=
"Point" default=
""/>
9468 <method name=
"DrawCheckMarkXY" type=
"" overloaded=
"no">
9469 <autodoc>DrawCheckMarkXY(int x, int y, int width, int height)
</autodoc>
9471 <param name=
"x" type=
"int" default=
""/>
9472 <param name=
"y" type=
"int" default=
""/>
9473 <param name=
"width" type=
"int" default=
""/>
9474 <param name=
"height" type=
"int" default=
""/>
9477 <method name=
"DrawCheckMark" type=
"" overloaded=
"no">
9478 <autodoc>DrawCheckMark(Rect rect)
</autodoc>
9480 <param name=
"rect" type=
"Rect" default=
""/>
9483 <method name=
"DrawEllipticArcXY" type=
"" overloaded=
"no">
9484 <autodoc>DrawEllipticArcXY(int x, int y, int w, int h, double sa, double ea)
</autodoc>
9486 <param name=
"x" type=
"int" default=
""/>
9487 <param name=
"y" type=
"int" default=
""/>
9488 <param name=
"w" type=
"int" default=
""/>
9489 <param name=
"h" type=
"int" default=
""/>
9490 <param name=
"sa" type=
"double" default=
""/>
9491 <param name=
"ea" type=
"double" default=
""/>
9494 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
9495 <autodoc>DrawEllipticArc(Point pt, Size sz, double sa, double ea)
</autodoc>
9497 <param name=
"pt" type=
"Point" default=
""/>
9498 <param name=
"sz" type=
"Size" default=
""/>
9499 <param name=
"sa" type=
"double" default=
""/>
9500 <param name=
"ea" type=
"double" default=
""/>
9503 <method name=
"DrawPointXY" type=
"" overloaded=
"no">
9504 <autodoc>DrawPointXY(int x, int y)
</autodoc>
9506 <param name=
"x" type=
"int" default=
""/>
9507 <param name=
"y" type=
"int" default=
""/>
9510 <method name=
"DrawPoint" type=
"" overloaded=
"no">
9511 <autodoc>DrawPoint(Point pt)
</autodoc>
9513 <param name=
"pt" type=
"Point" default=
""/>
9516 <method name=
"DrawRectangleXY" type=
"" overloaded=
"no">
9517 <autodoc>DrawRectangleXY(int x, int y, int width, int height)
</autodoc>
9519 <param name=
"x" type=
"int" default=
""/>
9520 <param name=
"y" type=
"int" default=
""/>
9521 <param name=
"width" type=
"int" default=
""/>
9522 <param name=
"height" type=
"int" default=
""/>
9525 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
9526 <autodoc>DrawRectangle(Point pt, Size sz)
</autodoc>
9528 <param name=
"pt" type=
"Point" default=
""/>
9529 <param name=
"sz" type=
"Size" default=
""/>
9532 <method name=
"DrawRectangleRect" type=
"" overloaded=
"no">
9533 <autodoc>DrawRectangleRect(Rect rect)
</autodoc>
9535 <param name=
"rect" type=
"Rect" default=
""/>
9538 <method name=
"DrawRoundedRectangleXY" type=
"" overloaded=
"no">
9539 <autodoc>DrawRoundedRectangleXY(int x, int y, int width, int height, double radius)
</autodoc>
9541 <param name=
"x" type=
"int" default=
""/>
9542 <param name=
"y" type=
"int" default=
""/>
9543 <param name=
"width" type=
"int" default=
""/>
9544 <param name=
"height" type=
"int" default=
""/>
9545 <param name=
"radius" type=
"double" default=
""/>
9548 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
9549 <autodoc>DrawRoundedRectangle(Point pt, Size sz, double radius)
</autodoc>
9551 <param name=
"pt" type=
"Point" default=
""/>
9552 <param name=
"sz" type=
"Size" default=
""/>
9553 <param name=
"radius" type=
"double" default=
""/>
9556 <method name=
"DrawRoundedRectangleRect" type=
"" overloaded=
"no">
9557 <autodoc>DrawRoundedRectangleRect(Rect r, double radius)
</autodoc>
9559 <param name=
"r" type=
"Rect" default=
""/>
9560 <param name=
"radius" type=
"double" default=
""/>
9563 <method name=
"DrawCircleXY" type=
"" overloaded=
"no">
9564 <autodoc>DrawCircleXY(int x, int y, int radius)
</autodoc>
9566 <param name=
"x" type=
"int" default=
""/>
9567 <param name=
"y" type=
"int" default=
""/>
9568 <param name=
"radius" type=
"int" default=
""/>
9571 <method name=
"DrawCircle" type=
"" overloaded=
"no">
9572 <autodoc>DrawCircle(Point pt, int radius)
</autodoc>
9574 <param name=
"pt" type=
"Point" default=
""/>
9575 <param name=
"radius" type=
"int" default=
""/>
9578 <method name=
"DrawEllipseXY" type=
"" overloaded=
"no">
9579 <autodoc>DrawEllipseXY(int x, int y, int width, int height)
</autodoc>
9581 <param name=
"x" type=
"int" default=
""/>
9582 <param name=
"y" type=
"int" default=
""/>
9583 <param name=
"width" type=
"int" default=
""/>
9584 <param name=
"height" type=
"int" default=
""/>
9587 <method name=
"DrawEllipse" type=
"" overloaded=
"no">
9588 <autodoc>DrawEllipse(Point pt, Size sz)
</autodoc>
9590 <param name=
"pt" type=
"Point" default=
""/>
9591 <param name=
"sz" type=
"Size" default=
""/>
9594 <method name=
"DrawEllipseRect" type=
"" overloaded=
"no">
9595 <autodoc>DrawEllipseRect(Rect rect)
</autodoc>
9597 <param name=
"rect" type=
"Rect" default=
""/>
9600 <method name=
"DrawIconXY" type=
"" overloaded=
"no">
9601 <autodoc>DrawIconXY(Icon icon, int x, int y)
</autodoc>
9603 <param name=
"icon" type=
"Icon" default=
""/>
9604 <param name=
"x" type=
"int" default=
""/>
9605 <param name=
"y" type=
"int" default=
""/>
9608 <method name=
"DrawIcon" type=
"" overloaded=
"no">
9609 <autodoc>DrawIcon(Icon icon, Point pt)
</autodoc>
9611 <param name=
"icon" type=
"Icon" default=
""/>
9612 <param name=
"pt" type=
"Point" default=
""/>
9615 <method name=
"DrawBitmapXY" type=
"" overloaded=
"no">
9616 <autodoc>DrawBitmapXY(Bitmap bmp, int x, int y, bool useMask=False)
</autodoc>
9618 <param name=
"bmp" type=
"Bitmap" default=
""/>
9619 <param name=
"x" type=
"int" default=
""/>
9620 <param name=
"y" type=
"int" default=
""/>
9621 <param name=
"useMask" type=
"bool" default=
"False"/>
9624 <method name=
"DrawBitmap" type=
"" overloaded=
"no">
9625 <autodoc>DrawBitmap(Bitmap bmp, Point pt, bool useMask=False)
</autodoc>
9627 <param name=
"bmp" type=
"Bitmap" default=
""/>
9628 <param name=
"pt" type=
"Point" default=
""/>
9629 <param name=
"useMask" type=
"bool" default=
"False"/>
9632 <method name=
"DrawTextXY" type=
"" overloaded=
"no">
9633 <autodoc>DrawTextXY(String text, int x, int y)
</autodoc>
9635 <param name=
"text" type=
"String" default=
""/>
9636 <param name=
"x" type=
"int" default=
""/>
9637 <param name=
"y" type=
"int" default=
""/>
9640 <method name=
"DrawText" type=
"" overloaded=
"no">
9641 <autodoc>DrawText(String text, Point pt)
</autodoc>
9643 <param name=
"text" type=
"String" default=
""/>
9644 <param name=
"pt" type=
"Point" default=
""/>
9647 <method name=
"DrawRotatedTextXY" type=
"" overloaded=
"no">
9648 <autodoc>DrawRotatedTextXY(String text, int x, int y, double angle)
</autodoc>
9650 <param name=
"text" type=
"String" default=
""/>
9651 <param name=
"x" type=
"int" default=
""/>
9652 <param name=
"y" type=
"int" default=
""/>
9653 <param name=
"angle" type=
"double" default=
""/>
9656 <method name=
"DrawRotatedText" type=
"" overloaded=
"no">
9657 <autodoc>DrawRotatedText(String text, Point pt, double angle)
</autodoc>
9659 <param name=
"text" type=
"String" default=
""/>
9660 <param name=
"pt" type=
"Point" default=
""/>
9661 <param name=
"angle" type=
"double" default=
""/>
9664 <method name=
"BlitXY" type=
"bool" overloaded=
"no">
9665 <autodoc>BlitXY(int xdest, int ydest, int width, int height, DC source,
9666 int xsrc, int ysrc, int rop=COPY, bool useMask=False,
9667 int xsrcMask=-
1, int ysrcMask=-
1) -
> bool
</autodoc>
9669 <param name=
"xdest" type=
"int" default=
""/>
9670 <param name=
"ydest" type=
"int" default=
""/>
9671 <param name=
"width" type=
"int" default=
""/>
9672 <param name=
"height" type=
"int" default=
""/>
9673 <param name=
"source" type=
"DC" default=
""/>
9674 <param name=
"xsrc" type=
"int" default=
""/>
9675 <param name=
"ysrc" type=
"int" default=
""/>
9676 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
9677 <param name=
"useMask" type=
"bool" default=
"False"/>
9678 <param name=
"xsrcMask" type=
"int" default=
"-1"/>
9679 <param name=
"ysrcMask" type=
"int" default=
"-1"/>
9682 <method name=
"Blit" type=
"bool" overloaded=
"no">
9683 <autodoc>Blit(Point destPt, Size sz, DC source, Point srcPt, int rop=COPY,
9684 bool useMask=False, Point srcPtMask=DefaultPosition) -
> bool
</autodoc>
9686 <param name=
"destPt" type=
"Point" default=
""/>
9687 <param name=
"sz" type=
"Size" default=
""/>
9688 <param name=
"source" type=
"DC" default=
""/>
9689 <param name=
"srcPt" type=
"Point" default=
""/>
9690 <param name=
"rop" type=
"int" default=
"wxCOPY"/>
9691 <param name=
"useMask" type=
"bool" default=
"False"/>
9692 <param name=
"srcPtMask" type=
"Point" default=
"wxDefaultPosition"/>
9695 <method name=
"DrawLines" type=
"" overloaded=
"no">
9696 <autodoc>DrawLines(int points, Point points_array, int xoffset=
0, int yoffset=
0)
</autodoc>
9698 <param name=
"points" type=
"int" default=
""/>
9699 <param name=
"points_array" type=
"Point" default=
""/>
9700 <param name=
"xoffset" type=
"int" default=
"0"/>
9701 <param name=
"yoffset" type=
"int" default=
"0"/>
9704 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
9705 <autodoc>DrawPolygon(int points, Point points_array, int xoffset=
0, int yoffset=
0,
9706 int fillStyle=ODDEVEN_RULE)
</autodoc>
9708 <param name=
"points" type=
"int" default=
""/>
9709 <param name=
"points_array" type=
"Point" default=
""/>
9710 <param name=
"xoffset" type=
"int" default=
"0"/>
9711 <param name=
"yoffset" type=
"int" default=
"0"/>
9712 <param name=
"fillStyle" type=
"int" default=
"wxODDEVEN_RULE"/>
9715 <method name=
"DrawLabel" type=
"" overloaded=
"no">
9716 <autodoc>DrawLabel(String text, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
9717 int indexAccel=-
1)
</autodoc>
9719 <param name=
"text" type=
"String" default=
""/>
9720 <param name=
"rect" type=
"Rect" default=
""/>
9721 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
9722 <param name=
"indexAccel" type=
"int" default=
"-1"/>
9725 <method name=
"DrawImageLabel" type=
"Rect" overloaded=
"no">
9726 <autodoc>DrawImageLabel(String text, Bitmap image, Rect rect, int alignment=wxALIGN_LEFT|wxALIGN_TOP,
9727 int indexAccel=-
1) -
> Rect
</autodoc>
9729 <param name=
"text" type=
"String" default=
""/>
9730 <param name=
"image" type=
"Bitmap" default=
""/>
9731 <param name=
"rect" type=
"Rect" default=
""/>
9732 <param name=
"alignment" type=
"int" default=
"wxALIGN_LEFT|wxALIGN_TOP"/>
9733 <param name=
"indexAccel" type=
"int" default=
"-1"/>
9736 <method name=
"DrawSpline" type=
"" overloaded=
"no">
9737 <autodoc>DrawSpline(int points, Point points_array)
</autodoc>
9739 <param name=
"points" type=
"int" default=
""/>
9740 <param name=
"points_array" type=
"Point" default=
""/>
9743 <method name=
"Clear" type=
"" overloaded=
"no">
9744 <autodoc>Clear()
</autodoc>
9746 <method name=
"StartDoc" type=
"bool" overloaded=
"no">
9747 <autodoc>StartDoc(String message) -
> bool
</autodoc>
9749 <param name=
"message" type=
"String" default=
""/>
9752 <method name=
"EndDoc" type=
"" overloaded=
"no">
9753 <autodoc>EndDoc()
</autodoc>
9755 <method name=
"StartPage" type=
"" overloaded=
"no">
9756 <autodoc>StartPage()
</autodoc>
9758 <method name=
"EndPage" type=
"" overloaded=
"no">
9759 <autodoc>EndPage()
</autodoc>
9761 <method name=
"SetFont" type=
"" overloaded=
"no">
9762 <autodoc>SetFont(Font font)
</autodoc>
9764 <param name=
"font" type=
"Font" default=
""/>
9767 <method name=
"SetPen" type=
"" overloaded=
"no">
9768 <autodoc>SetPen(Pen pen)
</autodoc>
9770 <param name=
"pen" type=
"Pen" default=
""/>
9773 <method name=
"SetBrush" type=
"" overloaded=
"no">
9774 <autodoc>SetBrush(Brush brush)
</autodoc>
9776 <param name=
"brush" type=
"Brush" default=
""/>
9779 <method name=
"SetBackground" type=
"" overloaded=
"no">
9780 <autodoc>SetBackground(Brush brush)
</autodoc>
9782 <param name=
"brush" type=
"Brush" default=
""/>
9785 <method name=
"SetBackgroundMode" type=
"" overloaded=
"no">
9786 <autodoc>SetBackgroundMode(int mode)
</autodoc>
9788 <param name=
"mode" type=
"int" default=
""/>
9791 <method name=
"SetPalette" type=
"" overloaded=
"no">
9792 <autodoc>SetPalette(Palette palette)
</autodoc>
9794 <param name=
"palette" type=
"Palette" default=
""/>
9797 <method name=
"SetClippingRegionXY" type=
"" overloaded=
"no">
9798 <autodoc>SetClippingRegionXY(int x, int y, int width, int height)
</autodoc>
9800 <param name=
"x" type=
"int" default=
""/>
9801 <param name=
"y" type=
"int" default=
""/>
9802 <param name=
"width" type=
"int" default=
""/>
9803 <param name=
"height" type=
"int" default=
""/>
9806 <method name=
"SetClippingRegion" type=
"" overloaded=
"no">
9807 <autodoc>SetClippingRegion(Point pt, Size sz)
</autodoc>
9809 <param name=
"pt" type=
"Point" default=
""/>
9810 <param name=
"sz" type=
"Size" default=
""/>
9813 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
9814 <autodoc>SetClippingRect(Rect rect)
</autodoc>
9816 <param name=
"rect" type=
"Rect" default=
""/>
9819 <method name=
"SetClippingRegionAsRegion" type=
"" overloaded=
"no">
9820 <autodoc>SetClippingRegionAsRegion(Region region)
</autodoc>
9822 <param name=
"region" type=
"Region" default=
""/>
9825 <method name=
"DestroyClippingRegion" type=
"" overloaded=
"no">
9826 <autodoc>DestroyClippingRegion()
</autodoc>
9828 <method name=
"GetClippingBox" type=
"" overloaded=
"no">
9829 <autodoc>GetClippingBox() -
> (x, y, width, height)
</autodoc>
9831 <param name=
"OUTPUT" type=
"int" default=
""/>
9832 <param name=
"OUTPUT" type=
"int" default=
""/>
9833 <param name=
"OUTPUT" type=
"int" default=
""/>
9834 <param name=
"OUTPUT" type=
"int" default=
""/>
9837 <method name=
"GetClippingRect" type=
"Rect" overloaded=
"no">
9838 <autodoc>GetClippingRect() -
> Rect
</autodoc>
9840 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
9841 <autodoc>GetCharHeight() -
> int
</autodoc>
9843 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
9844 <autodoc>GetCharWidth() -
> int
</autodoc>
9846 <method name=
"GetTextExtent" type=
"" overloaded=
"no">
9847 <autodoc>GetTextExtent(wxString string) -
> (width, height)
</autodoc>
9848 <docstring>Get the width and height of the text using the current font.
9849 Only works for single line strings.
</docstring>
9851 <param name=
"string" type=
"String" default=
""/>
9852 <param name=
"OUTPUT" type=
"int" default=
""/>
9853 <param name=
"OUTPUT" type=
"int" default=
""/>
9856 <method name=
"GetFullTextExtent" type=
"" overloaded=
"no">
9857 <autodoc>GetFullTextExtent(wxString string, Font font=None) -
>
9858 (width, height, descent, externalLeading)
</autodoc>
9859 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
9860 Only works for single line strings.
</docstring>
9862 <param name=
"string" type=
"String" default=
""/>
9863 <param name=
"OUTPUT" type=
"int" default=
""/>
9864 <param name=
"OUTPUT" type=
"int" default=
""/>
9865 <param name=
"OUTPUT" type=
"int" default=
""/>
9866 <param name=
"OUTPUT" type=
"int" default=
""/>
9867 <param name=
"font" type=
"Font" default=
"NULL"/>
9870 <method name=
"GetMultiLineTextExtent" type=
"" overloaded=
"no">
9871 <autodoc>GetMultiLineTextExtent(wxString string, Font font=None) -
>
9872 (width, height, descent, externalLeading)
</autodoc>
9873 <docstring>Get the width, height, decent and leading of the text using the current or specified font.
9874 Works for single as well as multi-line strings.
</docstring>
9876 <param name=
"text" type=
"String" default=
""/>
9877 <param name=
"OUTPUT" type=
"int" default=
""/>
9878 <param name=
"OUTPUT" type=
"int" default=
""/>
9879 <param name=
"OUTPUT" type=
"int" default=
""/>
9880 <param name=
"font" type=
"Font" default=
"NULL"/>
9883 <method name=
"GetPartialTextExtents" type=
"wxArrayInt" overloaded=
"no">
9884 <autodoc>GetPartialTextExtents(String text) -
> wxArrayInt
</autodoc>
9886 <param name=
"text" type=
"String" default=
""/>
9889 <method name=
"GetSize" type=
"Size" overloaded=
"no">
9890 <autodoc>GetSize() -
> Size
</autodoc>
9891 <docstring>Get the DC size in device units.
</docstring>
9893 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
9894 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
9895 <docstring>Get the DC size in device units.
</docstring>
9897 <param name=
"OUTPUT" type=
"int" default=
""/>
9898 <param name=
"OUTPUT" type=
"int" default=
""/>
9901 <method name=
"GetSizeMM" type=
"Size" overloaded=
"no">
9902 <autodoc>GetSizeMM() -
> Size
</autodoc>
9903 <docstring>Get the DC size in milimeters.
</docstring>
9905 <method name=
"GetSizeMMTuple" type=
"" overloaded=
"no">
9906 <autodoc>GetSizeMMTuple() -
> (width, height)
</autodoc>
9907 <docstring>Get the DC size in milimeters.
</docstring>
9909 <param name=
"OUTPUT" type=
"int" default=
""/>
9910 <param name=
"OUTPUT" type=
"int" default=
""/>
9913 <method name=
"DeviceToLogicalX" type=
"int" overloaded=
"no">
9914 <autodoc>DeviceToLogicalX(int x) -
> int
</autodoc>
9916 <param name=
"x" type=
"int" default=
""/>
9919 <method name=
"DeviceToLogicalY" type=
"int" overloaded=
"no">
9920 <autodoc>DeviceToLogicalY(int y) -
> int
</autodoc>
9922 <param name=
"y" type=
"int" default=
""/>
9925 <method name=
"DeviceToLogicalXRel" type=
"int" overloaded=
"no">
9926 <autodoc>DeviceToLogicalXRel(int x) -
> int
</autodoc>
9928 <param name=
"x" type=
"int" default=
""/>
9931 <method name=
"DeviceToLogicalYRel" type=
"int" overloaded=
"no">
9932 <autodoc>DeviceToLogicalYRel(int y) -
> int
</autodoc>
9934 <param name=
"y" type=
"int" default=
""/>
9937 <method name=
"LogicalToDeviceX" type=
"int" overloaded=
"no">
9938 <autodoc>LogicalToDeviceX(int x) -
> int
</autodoc>
9940 <param name=
"x" type=
"int" default=
""/>
9943 <method name=
"LogicalToDeviceY" type=
"int" overloaded=
"no">
9944 <autodoc>LogicalToDeviceY(int y) -
> int
</autodoc>
9946 <param name=
"y" type=
"int" default=
""/>
9949 <method name=
"LogicalToDeviceXRel" type=
"int" overloaded=
"no">
9950 <autodoc>LogicalToDeviceXRel(int x) -
> int
</autodoc>
9952 <param name=
"x" type=
"int" default=
""/>
9955 <method name=
"LogicalToDeviceYRel" type=
"int" overloaded=
"no">
9956 <autodoc>LogicalToDeviceYRel(int y) -
> int
</autodoc>
9958 <param name=
"y" type=
"int" default=
""/>
9961 <method name=
"CanDrawBitmap" type=
"bool" overloaded=
"no">
9962 <autodoc>CanDrawBitmap() -
> bool
</autodoc>
9964 <method name=
"CanGetTextExtent" type=
"bool" overloaded=
"no">
9965 <autodoc>CanGetTextExtent() -
> bool
</autodoc>
9967 <method name=
"GetDepth" type=
"int" overloaded=
"no">
9968 <autodoc>GetDepth() -
> int
</autodoc>
9970 <method name=
"GetPPI" type=
"Size" overloaded=
"no">
9971 <autodoc>GetPPI() -
> Size
</autodoc>
9973 <method name=
"Ok" type=
"bool" overloaded=
"no">
9974 <autodoc>Ok() -
> bool
</autodoc>
9976 <method name=
"GetBackgroundMode" type=
"int" overloaded=
"no">
9977 <autodoc>GetBackgroundMode() -
> int
</autodoc>
9979 <method name=
"GetBackground" type=
"Brush" overloaded=
"no">
9980 <autodoc>GetBackground() -
> Brush
</autodoc>
9982 <method name=
"GetBrush" type=
"Brush" overloaded=
"no">
9983 <autodoc>GetBrush() -
> Brush
</autodoc>
9985 <method name=
"GetFont" type=
"Font" overloaded=
"no">
9986 <autodoc>GetFont() -
> Font
</autodoc>
9988 <method name=
"GetPen" type=
"Pen" overloaded=
"no">
9989 <autodoc>GetPen() -
> Pen
</autodoc>
9991 <method name=
"GetTextBackground" type=
"Colour" overloaded=
"no">
9992 <autodoc>GetTextBackground() -
> Colour
</autodoc>
9994 <method name=
"GetTextForeground" type=
"Colour" overloaded=
"no">
9995 <autodoc>GetTextForeground() -
> Colour
</autodoc>
9997 <method name=
"SetTextForeground" type=
"" overloaded=
"no">
9998 <autodoc>SetTextForeground(Colour colour)
</autodoc>
10000 <param name=
"colour" type=
"Colour" default=
""/>
10003 <method name=
"SetTextBackground" type=
"" overloaded=
"no">
10004 <autodoc>SetTextBackground(Colour colour)
</autodoc>
10006 <param name=
"colour" type=
"Colour" default=
""/>
10009 <method name=
"GetMapMode" type=
"int" overloaded=
"no">
10010 <autodoc>GetMapMode() -
> int
</autodoc>
10012 <method name=
"SetMapMode" type=
"" overloaded=
"no">
10013 <autodoc>SetMapMode(int mode)
</autodoc>
10015 <param name=
"mode" type=
"int" default=
""/>
10018 <method name=
"GetUserScale" type=
"" overloaded=
"no">
10019 <autodoc>GetUserScale() -
> (xScale, yScale)
</autodoc>
10021 <param name=
"OUTPUT" type=
"double" default=
""/>
10022 <param name=
"OUTPUT" type=
"double" default=
""/>
10025 <method name=
"SetUserScale" type=
"" overloaded=
"no">
10026 <autodoc>SetUserScale(double x, double y)
</autodoc>
10028 <param name=
"x" type=
"double" default=
""/>
10029 <param name=
"y" type=
"double" default=
""/>
10032 <method name=
"GetLogicalScale" type=
"" overloaded=
"no">
10033 <autodoc>GetLogicalScale() -
> (xScale, yScale)
</autodoc>
10035 <param name=
"OUTPUT" type=
"double" default=
""/>
10036 <param name=
"OUTPUT" type=
"double" default=
""/>
10039 <method name=
"SetLogicalScale" type=
"" overloaded=
"no">
10040 <autodoc>SetLogicalScale(double x, double y)
</autodoc>
10042 <param name=
"x" type=
"double" default=
""/>
10043 <param name=
"y" type=
"double" default=
""/>
10046 <method name=
"GetLogicalOrigin" type=
"Point" overloaded=
"no">
10047 <autodoc>GetLogicalOrigin() -
> Point
</autodoc>
10049 <method name=
"GetLogicalOriginTuple" type=
"" overloaded=
"no">
10050 <autodoc>GetLogicalOriginTuple() -
> (x,y)
</autodoc>
10052 <param name=
"OUTPUT" type=
"int" default=
""/>
10053 <param name=
"OUTPUT" type=
"int" default=
""/>
10056 <method name=
"SetLogicalOrigin" type=
"" overloaded=
"no">
10057 <autodoc>SetLogicalOrigin(int x, int y)
</autodoc>
10059 <param name=
"x" type=
"int" default=
""/>
10060 <param name=
"y" type=
"int" default=
""/>
10063 <method name=
"GetDeviceOrigin" type=
"Point" overloaded=
"no">
10064 <autodoc>GetDeviceOrigin() -
> Point
</autodoc>
10066 <method name=
"GetDeviceOriginTuple" type=
"" overloaded=
"no">
10067 <autodoc>GetDeviceOriginTuple() -
> (x,y)
</autodoc>
10069 <param name=
"OUTPUT" type=
"int" default=
""/>
10070 <param name=
"OUTPUT" type=
"int" default=
""/>
10073 <method name=
"SetDeviceOrigin" type=
"" overloaded=
"no">
10074 <autodoc>SetDeviceOrigin(int x, int y)
</autodoc>
10076 <param name=
"x" type=
"int" default=
""/>
10077 <param name=
"y" type=
"int" default=
""/>
10080 <method name=
"SetAxisOrientation" type=
"" overloaded=
"no">
10081 <autodoc>SetAxisOrientation(bool xLeftRight, bool yBottomUp)
</autodoc>
10083 <param name=
"xLeftRight" type=
"bool" default=
""/>
10084 <param name=
"yBottomUp" type=
"bool" default=
""/>
10087 <method name=
"GetLogicalFunction" type=
"int" overloaded=
"no">
10088 <autodoc>GetLogicalFunction() -
> int
</autodoc>
10090 <method name=
"SetLogicalFunction" type=
"" overloaded=
"no">
10091 <autodoc>SetLogicalFunction(int function)
</autodoc>
10093 <param name=
"function" type=
"int" default=
""/>
10096 <method name=
"SetOptimization" type=
"" overloaded=
"no">
10097 <autodoc>SetOptimization(bool opt)
</autodoc>
10099 <param name=
"opt" type=
"bool" default=
""/>
10102 <method name=
"GetOptimization" type=
"bool" overloaded=
"no">
10103 <autodoc>GetOptimization() -
> bool
</autodoc>
10105 <method name=
"CalcBoundingBox" type=
"" overloaded=
"no">
10106 <autodoc>CalcBoundingBox(int x, int y)
</autodoc>
10108 <param name=
"x" type=
"int" default=
""/>
10109 <param name=
"y" type=
"int" default=
""/>
10112 <method name=
"ResetBoundingBox" type=
"" overloaded=
"no">
10113 <autodoc>ResetBoundingBox()
</autodoc>
10115 <method name=
"MinX" type=
"int" overloaded=
"no">
10116 <autodoc>MinX() -
> int
</autodoc>
10118 <method name=
"MaxX" type=
"int" overloaded=
"no">
10119 <autodoc>MaxX() -
> int
</autodoc>
10121 <method name=
"MinY" type=
"int" overloaded=
"no">
10122 <autodoc>MinY() -
> int
</autodoc>
10124 <method name=
"MaxY" type=
"int" overloaded=
"no">
10125 <autodoc>MaxY() -
> int
</autodoc>
10127 <method name=
"GetBoundingBox" type=
"" overloaded=
"no">
10128 <autodoc>GetBoundingBox() -
> (x1,y1, x2,y2)
</autodoc>
10130 <param name=
"OUTPUT" type=
"int" default=
""/>
10131 <param name=
"OUTPUT" type=
"int" default=
""/>
10132 <param name=
"OUTPUT" type=
"int" default=
""/>
10133 <param name=
"OUTPUT" type=
"int" default=
""/>
10136 <method name=
"_DrawPointList" type=
"PyObject" overloaded=
"no">
10137 <autodoc>_DrawPointList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10139 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10140 <param name=
"pyPens" type=
"PyObject" default=
""/>
10141 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10144 <method name=
"_DrawLineList" type=
"PyObject" overloaded=
"no">
10145 <autodoc>_DrawLineList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10147 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10148 <param name=
"pyPens" type=
"PyObject" default=
""/>
10149 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10152 <method name=
"_DrawRectangleList" type=
"PyObject" overloaded=
"no">
10153 <autodoc>_DrawRectangleList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10155 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10156 <param name=
"pyPens" type=
"PyObject" default=
""/>
10157 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10160 <method name=
"_DrawEllipseList" type=
"PyObject" overloaded=
"no">
10161 <autodoc>_DrawEllipseList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10163 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10164 <param name=
"pyPens" type=
"PyObject" default=
""/>
10165 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10168 <method name=
"_DrawPolygonList" type=
"PyObject" overloaded=
"no">
10169 <autodoc>_DrawPolygonList(PyObject pyCoords, PyObject pyPens, PyObject pyBrushes) -
> PyObject
</autodoc>
10171 <param name=
"pyCoords" type=
"PyObject" default=
""/>
10172 <param name=
"pyPens" type=
"PyObject" default=
""/>
10173 <param name=
"pyBrushes" type=
"PyObject" default=
""/>
10176 <method name=
"_DrawTextList" type=
"PyObject" overloaded=
"no">
10177 <autodoc>_DrawTextList(PyObject textList, PyObject pyPoints, PyObject foregroundList,
10178 PyObject backgroundList) -
> PyObject
</autodoc>
10180 <param name=
"textList" type=
"PyObject" default=
""/>
10181 <param name=
"pyPoints" type=
"PyObject" default=
""/>
10182 <param name=
"foregroundList" type=
"PyObject" default=
""/>
10183 <param name=
"backgroundList" type=
"PyObject" default=
""/>
10188 #---------------------------------------------------------------------------
10190 <class name=
"MemoryDC" oldname=
"wxMemoryDC" module=
"gdi">
10191 <baseclass name=
"DC"/>
10192 <constructor name=
"MemoryDC" overloaded=
"no">
10193 <autodoc>__init__() -
> MemoryDC
</autodoc>
10195 <constructor name=
"MemoryDCFromDC" overloaded=
"no">
10196 <autodoc>MemoryDCFromDC(DC oldDC) -
> MemoryDC
</autodoc>
10198 <param name=
"oldDC" type=
"DC" default=
""/>
10201 <method name=
"SelectObject" type=
"" overloaded=
"no">
10202 <autodoc>SelectObject(Bitmap bitmap)
</autodoc>
10204 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10209 #---------------------------------------------------------------------------
10211 <class name=
"BufferedDC" oldname=
"wxBufferedDC" module=
"gdi">
10212 <baseclass name=
"MemoryDC"/>
10213 <constructor name=
"BufferedDC" overloaded=
"yes">
10215 <param name=
"dc" type=
"DC" default=
""/>
10216 <param name=
"buffer" type=
"Bitmap" default=
""/>
10219 <constructor name=
"BufferedDC" overloaded=
"yes">
10220 <autodoc>__init__(DC dc, Bitmap buffer) -
> BufferedDC
10221 __init__(DC dc, Size area) -
> BufferedDC
</autodoc>
10223 <param name=
"dc" type=
"DC" default=
""/>
10224 <param name=
"area" type=
"Size" default=
""/>
10227 <constructor name=
"BufferedDCInternalBuffer" overloaded=
"no">
10228 <autodoc>BufferedDCInternalBuffer(DC dc, Size area) -
> BufferedDC
</autodoc>
10230 <param name=
"dc" type=
"DC" default=
""/>
10231 <param name=
"area" type=
"Size" default=
""/>
10234 <destructor name=
"~wxBufferedDC" overloaded=
"no">
10235 <autodoc>__del__()
</autodoc>
10237 <method name=
"UnMask" type=
"" overloaded=
"no">
10238 <autodoc>UnMask()
</autodoc>
10241 <class name=
"BufferedPaintDC" oldname=
"wxBufferedPaintDC" module=
"gdi">
10242 <baseclass name=
"BufferedDC"/>
10243 <constructor name=
"BufferedPaintDC" overloaded=
"no">
10244 <autodoc>__init__(Window window, Bitmap buffer=NullBitmap) -
> BufferedPaintDC
</autodoc>
10246 <param name=
"window" type=
"Window" default=
""/>
10247 <param name=
"buffer" type=
"Bitmap" default=
"wxNullBitmap"/>
10252 #---------------------------------------------------------------------------
10254 <class name=
"ScreenDC" oldname=
"wxScreenDC" module=
"gdi">
10255 <baseclass name=
"DC"/>
10256 <constructor name=
"ScreenDC" overloaded=
"no">
10257 <autodoc>__init__() -
> ScreenDC
</autodoc>
10259 <method name=
"StartDrawingOnTopWin" type=
"bool" overloaded=
"no">
10260 <autodoc>StartDrawingOnTopWin(Window window) -
> bool
</autodoc>
10262 <param name=
"window" type=
"Window" default=
""/>
10265 <method name=
"StartDrawingOnTop" type=
"bool" overloaded=
"no">
10266 <autodoc>StartDrawingOnTop(Rect rect=None) -
> bool
</autodoc>
10268 <param name=
"rect" type=
"Rect" default=
"NULL"/>
10271 <method name=
"EndDrawingOnTop" type=
"bool" overloaded=
"no">
10272 <autodoc>EndDrawingOnTop() -
> bool
</autodoc>
10276 #---------------------------------------------------------------------------
10278 <class name=
"ClientDC" oldname=
"wxClientDC" module=
"gdi">
10279 <baseclass name=
"DC"/>
10280 <constructor name=
"ClientDC" overloaded=
"no">
10281 <autodoc>__init__(Window win) -
> ClientDC
</autodoc>
10283 <param name=
"win" type=
"Window" default=
""/>
10288 #---------------------------------------------------------------------------
10290 <class name=
"PaintDC" oldname=
"wxPaintDC" module=
"gdi">
10291 <baseclass name=
"DC"/>
10292 <constructor name=
"PaintDC" overloaded=
"no">
10293 <autodoc>__init__(Window win) -
> PaintDC
</autodoc>
10295 <param name=
"win" type=
"Window" default=
""/>
10300 #---------------------------------------------------------------------------
10302 <class name=
"WindowDC" oldname=
"wxWindowDC" module=
"gdi">
10303 <baseclass name=
"DC"/>
10304 <constructor name=
"WindowDC" overloaded=
"no">
10305 <autodoc>__init__(Window win) -
> WindowDC
</autodoc>
10307 <param name=
"win" type=
"Window" default=
""/>
10312 #---------------------------------------------------------------------------
10314 <class name=
"MirrorDC" oldname=
"wxMirrorDC" module=
"gdi">
10315 <baseclass name=
"DC"/>
10316 <constructor name=
"MirrorDC" overloaded=
"no">
10317 <autodoc>__init__(DC dc, bool mirror) -
> MirrorDC
</autodoc>
10319 <param name=
"dc" type=
"DC" default=
""/>
10320 <param name=
"mirror" type=
"bool" default=
""/>
10325 #---------------------------------------------------------------------------
10327 <class name=
"PostScriptDC" oldname=
"wxPostScriptDC" module=
"gdi">
10328 <baseclass name=
"DC"/>
10329 <constructor name=
"PostScriptDC" overloaded=
"no">
10330 <autodoc>__init__(wxPrintData printData) -
> PostScriptDC
</autodoc>
10332 <param name=
"printData" type=
"wxPrintData" default=
""/>
10335 <method name=
"GetPrintData" type=
"wxPrintData" overloaded=
"no">
10336 <autodoc>GetPrintData() -
> wxPrintData
</autodoc>
10338 <method name=
"SetPrintData" type=
"" overloaded=
"no">
10339 <autodoc>SetPrintData(wxPrintData data)
</autodoc>
10341 <param name=
"data" type=
"wxPrintData" default=
""/>
10344 <staticmethod name=
"SetResolution" type=
"" overloaded=
"no">
10345 <autodoc>SetResolution(int ppi)
</autodoc>
10347 <param name=
"ppi" type=
"int" default=
""/>
10350 <staticmethod name=
"GetResolution" type=
"int" overloaded=
"no">
10351 <autodoc>GetResolution() -
> int
</autodoc>
10355 #---------------------------------------------------------------------------
10357 <class name=
"MetaFile" oldname=
"wxMetaFile" module=
"gdi">
10358 <baseclass name=
"Object"/>
10359 <constructor name=
"MetaFile" overloaded=
"no">
10360 <autodoc>__init__(String filename=EmptyString) -
> MetaFile
</autodoc>
10362 <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/>
10366 <class name=
"MetaFileDC" oldname=
"wxMetaFileDC" module=
"gdi">
10367 <baseclass name=
"DC"/>
10368 <constructor name=
"MetaFileDC" overloaded=
"no">
10369 <autodoc>__init__(String filename=EmptyString, int width=
0, int height=
0,
10370 String description=EmptyString) -
> MetaFileDC
</autodoc>
10372 <param name=
"filename" type=
"String" default=
"wxPyEmptyString"/>
10373 <param name=
"width" type=
"int" default=
"0"/>
10374 <param name=
"height" type=
"int" default=
"0"/>
10375 <param name=
"description" type=
"String" default=
"wxPyEmptyString"/>
10379 <class name=
"PrinterDC" oldname=
"wxPrinterDC" module=
"gdi">
10380 <baseclass name=
"DC"/>
10381 <constructor name=
"PrinterDC" overloaded=
"no">
10382 <autodoc>__init__(wxPrintData printData) -
> PrinterDC
</autodoc>
10384 <param name=
"printData" type=
"wxPrintData" default=
""/>
10390 """DC class that has methods with
2.4 compatible parameters."""
10391 FloodFill = DC.FloodFillXY
10392 GetPixel = DC.GetPixelXY
10393 DrawLine = DC.DrawLineXY
10394 CrossHair = DC.CrossHairXY
10395 DrawArc = DC.DrawArcXY
10396 DrawCheckMark = DC.DrawCheckMarkXY
10397 DrawEllipticArc = DC.DrawEllipticArcXY
10398 DrawPoint = DC.DrawPointXY
10399 DrawRectangle = DC.DrawRectangleXY
10400 DrawRoundedRectangle = DC.DrawRoundedRectangleXY
10401 DrawCircle = DC.DrawCircleXY
10402 DrawEllipse = DC.DrawEllipseXY
10403 DrawIcon = DC.DrawIconXY
10404 DrawBitmap = DC.DrawBitmapXY
10405 DrawText = DC.DrawTextXY
10406 DrawRotatedText = DC.DrawRotatedTextXY
10410 class MemoryDC_old(MemoryDC):
10411 """DC class that has methods with
2.4 compatible parameters."""
10412 FloodFill = MemoryDC.FloodFillXY
10413 GetPixel = MemoryDC.GetPixelXY
10414 DrawLine = MemoryDC.DrawLineXY
10415 CrossHair = MemoryDC.CrossHairXY
10416 DrawArc = MemoryDC.DrawArcXY
10417 DrawCheckMark = MemoryDC.DrawCheckMarkXY
10418 DrawEllipticArc = MemoryDC.DrawEllipticArcXY
10419 DrawPoint = MemoryDC.DrawPointXY
10420 DrawRectangle = MemoryDC.DrawRectangleXY
10421 DrawRoundedRectangle = MemoryDC.DrawRoundedRectangleXY
10422 DrawCircle = MemoryDC.DrawCircleXY
10423 DrawEllipse = MemoryDC.DrawEllipseXY
10424 DrawIcon = MemoryDC.DrawIconXY
10425 DrawBitmap = MemoryDC.DrawBitmapXY
10426 DrawText = MemoryDC.DrawTextXY
10427 DrawRotatedText = MemoryDC.DrawRotatedTextXY
10428 Blit = MemoryDC.BlitXY
10431 class BufferedDC_old(BufferedDC):
10432 """DC class that has methods with
2.4 compatible parameters."""
10433 FloodFill = BufferedDC.FloodFillXY
10434 GetPixel = BufferedDC.GetPixelXY
10435 DrawLine = BufferedDC.DrawLineXY
10436 CrossHair = BufferedDC.CrossHairXY
10437 DrawArc = BufferedDC.DrawArcXY
10438 DrawCheckMark = BufferedDC.DrawCheckMarkXY
10439 DrawEllipticArc = BufferedDC.DrawEllipticArcXY
10440 DrawPoint = BufferedDC.DrawPointXY
10441 DrawRectangle = BufferedDC.DrawRectangleXY
10442 DrawRoundedRectangle = BufferedDC.DrawRoundedRectangleXY
10443 DrawCircle = BufferedDC.DrawCircleXY
10444 DrawEllipse = BufferedDC.DrawEllipseXY
10445 DrawIcon = BufferedDC.DrawIconXY
10446 DrawBitmap = BufferedDC.DrawBitmapXY
10447 DrawText = BufferedDC.DrawTextXY
10448 DrawRotatedText = BufferedDC.DrawRotatedTextXY
10449 Blit = BufferedDC.BlitXY
10452 class BufferedPaintDC_old(BufferedPaintDC):
10453 """DC class that has methods with
2.4 compatible parameters."""
10454 FloodFill = BufferedPaintDC.FloodFillXY
10455 GetPixel = BufferedPaintDC.GetPixelXY
10456 DrawLine = BufferedPaintDC.DrawLineXY
10457 CrossHair = BufferedPaintDC.CrossHairXY
10458 DrawArc = BufferedPaintDC.DrawArcXY
10459 DrawCheckMark = BufferedPaintDC.DrawCheckMarkXY
10460 DrawEllipticArc = BufferedPaintDC.DrawEllipticArcXY
10461 DrawPoint = BufferedPaintDC.DrawPointXY
10462 DrawRectangle = BufferedPaintDC.DrawRectangleXY
10463 DrawRoundedRectangle = BufferedPaintDC.DrawRoundedRectangleXY
10464 DrawCircle = BufferedPaintDC.DrawCircleXY
10465 DrawEllipse = BufferedPaintDC.DrawEllipseXY
10466 DrawIcon = BufferedPaintDC.DrawIconXY
10467 DrawBitmap = BufferedPaintDC.DrawBitmapXY
10468 DrawText = BufferedPaintDC.DrawTextXY
10469 DrawRotatedText = BufferedPaintDC.DrawRotatedTextXY
10470 Blit = BufferedPaintDC.BlitXY
10473 class ScreenDC_old(ScreenDC):
10474 """DC class that has methods with
2.4 compatible parameters."""
10475 FloodFill = ScreenDC.FloodFillXY
10476 GetPixel = ScreenDC.GetPixelXY
10477 DrawLine = ScreenDC.DrawLineXY
10478 CrossHair = ScreenDC.CrossHairXY
10479 DrawArc = ScreenDC.DrawArcXY
10480 DrawCheckMark = ScreenDC.DrawCheckMarkXY
10481 DrawEllipticArc = ScreenDC.DrawEllipticArcXY
10482 DrawPoint = ScreenDC.DrawPointXY
10483 DrawRectangle = ScreenDC.DrawRectangleXY
10484 DrawRoundedRectangle = ScreenDC.DrawRoundedRectangleXY
10485 DrawCircle = ScreenDC.DrawCircleXY
10486 DrawEllipse = ScreenDC.DrawEllipseXY
10487 DrawIcon = ScreenDC.DrawIconXY
10488 DrawBitmap = ScreenDC.DrawBitmapXY
10489 DrawText = ScreenDC.DrawTextXY
10490 DrawRotatedText = ScreenDC.DrawRotatedTextXY
10491 Blit = ScreenDC.BlitXY
10494 class ClientDC_old(ClientDC):
10495 """DC class that has methods with
2.4 compatible parameters."""
10496 FloodFill = ClientDC.FloodFillXY
10497 GetPixel = ClientDC.GetPixelXY
10498 DrawLine = ClientDC.DrawLineXY
10499 CrossHair = ClientDC.CrossHairXY
10500 DrawArc = ClientDC.DrawArcXY
10501 DrawCheckMark = ClientDC.DrawCheckMarkXY
10502 DrawEllipticArc = ClientDC.DrawEllipticArcXY
10503 DrawPoint = ClientDC.DrawPointXY
10504 DrawRectangle = ClientDC.DrawRectangleXY
10505 DrawRoundedRectangle = ClientDC.DrawRoundedRectangleXY
10506 DrawCircle = ClientDC.DrawCircleXY
10507 DrawEllipse = ClientDC.DrawEllipseXY
10508 DrawIcon = ClientDC.DrawIconXY
10509 DrawBitmap = ClientDC.DrawBitmapXY
10510 DrawText = ClientDC.DrawTextXY
10511 DrawRotatedText = ClientDC.DrawRotatedTextXY
10512 Blit = ClientDC.BlitXY
10515 class PaintDC_old(PaintDC):
10516 """DC class that has methods with
2.4 compatible parameters."""
10517 FloodFill = PaintDC.FloodFillXY
10518 GetPixel = PaintDC.GetPixelXY
10519 DrawLine = PaintDC.DrawLineXY
10520 CrossHair = PaintDC.CrossHairXY
10521 DrawArc = PaintDC.DrawArcXY
10522 DrawCheckMark = PaintDC.DrawCheckMarkXY
10523 DrawEllipticArc = PaintDC.DrawEllipticArcXY
10524 DrawPoint = PaintDC.DrawPointXY
10525 DrawRectangle = PaintDC.DrawRectangleXY
10526 DrawRoundedRectangle = PaintDC.DrawRoundedRectangleXY
10527 DrawCircle = PaintDC.DrawCircleXY
10528 DrawEllipse = PaintDC.DrawEllipseXY
10529 DrawIcon = PaintDC.DrawIconXY
10530 DrawBitmap = PaintDC.DrawBitmapXY
10531 DrawText = PaintDC.DrawTextXY
10532 DrawRotatedText = PaintDC.DrawRotatedTextXY
10533 Blit = PaintDC.BlitXY
10536 class WindowDC_old(WindowDC):
10537 """DC class that has methods with
2.4 compatible parameters."""
10538 FloodFill = WindowDC.FloodFillXY
10539 GetPixel = WindowDC.GetPixelXY
10540 DrawLine = WindowDC.DrawLineXY
10541 CrossHair = WindowDC.CrossHairXY
10542 DrawArc = WindowDC.DrawArcXY
10543 DrawCheckMark = WindowDC.DrawCheckMarkXY
10544 DrawEllipticArc = WindowDC.DrawEllipticArcXY
10545 DrawPoint = WindowDC.DrawPointXY
10546 DrawRectangle = WindowDC.DrawRectangleXY
10547 DrawRoundedRectangle = WindowDC.DrawRoundedRectangleXY
10548 DrawCircle = WindowDC.DrawCircleXY
10549 DrawEllipse = WindowDC.DrawEllipseXY
10550 DrawIcon = WindowDC.DrawIconXY
10551 DrawBitmap = WindowDC.DrawBitmapXY
10552 DrawText = WindowDC.DrawTextXY
10553 DrawRotatedText = WindowDC.DrawRotatedTextXY
10554 Blit = WindowDC.BlitXY
10557 class MirrorDC_old(MirrorDC):
10558 """DC class that has methods with
2.4 compatible parameters."""
10559 FloodFill = MirrorDC.FloodFillXY
10560 GetPixel = MirrorDC.GetPixelXY
10561 DrawLine = MirrorDC.DrawLineXY
10562 CrossHair = MirrorDC.CrossHairXY
10563 DrawArc = MirrorDC.DrawArcXY
10564 DrawCheckMark = MirrorDC.DrawCheckMarkXY
10565 DrawEllipticArc = MirrorDC.DrawEllipticArcXY
10566 DrawPoint = MirrorDC.DrawPointXY
10567 DrawRectangle = MirrorDC.DrawRectangleXY
10568 DrawRoundedRectangle = MirrorDC.DrawRoundedRectangleXY
10569 DrawCircle = MirrorDC.DrawCircleXY
10570 DrawEllipse = MirrorDC.DrawEllipseXY
10571 DrawIcon = MirrorDC.DrawIconXY
10572 DrawBitmap = MirrorDC.DrawBitmapXY
10573 DrawText = MirrorDC.DrawTextXY
10574 DrawRotatedText = MirrorDC.DrawRotatedTextXY
10575 Blit = MirrorDC.BlitXY
10578 class PostScriptDC_old(PostScriptDC):
10579 """DC class that has methods with
2.4 compatible parameters."""
10580 FloodFill = PostScriptDC.FloodFillXY
10581 GetPixel = PostScriptDC.GetPixelXY
10582 DrawLine = PostScriptDC.DrawLineXY
10583 CrossHair = PostScriptDC.CrossHairXY
10584 DrawArc = PostScriptDC.DrawArcXY
10585 DrawCheckMark = PostScriptDC.DrawCheckMarkXY
10586 DrawEllipticArc = PostScriptDC.DrawEllipticArcXY
10587 DrawPoint = PostScriptDC.DrawPointXY
10588 DrawRectangle = PostScriptDC.DrawRectangleXY
10589 DrawRoundedRectangle = PostScriptDC.DrawRoundedRectangleXY
10590 DrawCircle = PostScriptDC.DrawCircleXY
10591 DrawEllipse = PostScriptDC.DrawEllipseXY
10592 DrawIcon = PostScriptDC.DrawIconXY
10593 DrawBitmap = PostScriptDC.DrawBitmapXY
10594 DrawText = PostScriptDC.DrawTextXY
10595 DrawRotatedText = PostScriptDC.DrawRotatedTextXY
10596 Blit = PostScriptDC.BlitXY
10599 class MetaFileDC_old(MetaFileDC):
10600 """DC class that has methods with
2.4 compatible parameters."""
10601 FloodFill = MetaFileDC.FloodFillXY
10602 GetPixel = MetaFileDC.GetPixelXY
10603 DrawLine = MetaFileDC.DrawLineXY
10604 CrossHair = MetaFileDC.CrossHairXY
10605 DrawArc = MetaFileDC.DrawArcXY
10606 DrawCheckMark = MetaFileDC.DrawCheckMarkXY
10607 DrawEllipticArc = MetaFileDC.DrawEllipticArcXY
10608 DrawPoint = MetaFileDC.DrawPointXY
10609 DrawRectangle = MetaFileDC.DrawRectangleXY
10610 DrawRoundedRectangle = MetaFileDC.DrawRoundedRectangleXY
10611 DrawCircle = MetaFileDC.DrawCircleXY
10612 DrawEllipse = MetaFileDC.DrawEllipseXY
10613 DrawIcon = MetaFileDC.DrawIconXY
10614 DrawBitmap = MetaFileDC.DrawBitmapXY
10615 DrawText = MetaFileDC.DrawTextXY
10616 DrawRotatedText = MetaFileDC.DrawRotatedTextXY
10617 Blit = MetaFileDC.BlitXY
10620 class PrinterDC_old(PrinterDC):
10621 """DC class that has methods with
2.4 compatible parameters."""
10622 FloodFill = PrinterDC.FloodFillXY
10623 GetPixel = PrinterDC.GetPixelXY
10624 DrawLine = PrinterDC.DrawLineXY
10625 CrossHair = PrinterDC.CrossHairXY
10626 DrawArc = PrinterDC.DrawArcXY
10627 DrawCheckMark = PrinterDC.DrawCheckMarkXY
10628 DrawEllipticArc = PrinterDC.DrawEllipticArcXY
10629 DrawPoint = PrinterDC.DrawPointXY
10630 DrawRectangle = PrinterDC.DrawRectangleXY
10631 DrawRoundedRectangle = PrinterDC.DrawRoundedRectangleXY
10632 DrawCircle = PrinterDC.DrawCircleXY
10633 DrawEllipse = PrinterDC.DrawEllipseXY
10634 DrawIcon = PrinterDC.DrawIconXY
10635 DrawBitmap = PrinterDC.DrawBitmapXY
10636 DrawText = PrinterDC.DrawTextXY
10637 DrawRotatedText = PrinterDC.DrawRotatedTextXY
10638 Blit = PrinterDC.BlitXY
10641 #---------------------------------------------------------------------------
10643 <class name=
"ImageList" oldname=
"wxImageList" module=
"gdi">
10644 <baseclass name=
"Object"/>
10645 <constructor name=
"ImageList" overloaded=
"no">
10646 <autodoc>__init__(int width, int height, int mask=True, int initialCount=
1) -
> ImageList
</autodoc>
10648 <param name=
"width" type=
"int" default=
""/>
10649 <param name=
"height" type=
"int" default=
""/>
10650 <param name=
"mask" type=
"int" default=
"True"/>
10651 <param name=
"initialCount" type=
"int" default=
"1"/>
10654 <destructor name=
"~wxImageList" overloaded=
"no">
10655 <autodoc>__del__()
</autodoc>
10657 <method name=
"Add" type=
"int" overloaded=
"no">
10658 <autodoc>Add(Bitmap bitmap, Bitmap mask=NullBitmap) -
> int
</autodoc>
10660 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10661 <param name=
"mask" type=
"Bitmap" default=
"wxNullBitmap"/>
10664 <method name=
"AddWithColourMask" type=
"int" overloaded=
"no">
10665 <autodoc>AddWithColourMask(Bitmap bitmap, Colour maskColour) -
> int
</autodoc>
10667 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10668 <param name=
"maskColour" type=
"Colour" default=
""/>
10671 <method name=
"AddIcon" type=
"int" overloaded=
"no">
10672 <autodoc>AddIcon(Icon icon) -
> int
</autodoc>
10674 <param name=
"icon" type=
"Icon" default=
""/>
10677 <method name=
"Replace" type=
"bool" overloaded=
"no">
10678 <autodoc>Replace(int index, Bitmap bitmap) -
> bool
</autodoc>
10680 <param name=
"index" type=
"int" default=
""/>
10681 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10684 <method name=
"Draw" type=
"bool" overloaded=
"no">
10685 <autodoc>Draw(int index, DC dc, int x, int x, int flags=IMAGELIST_DRAW_NORMAL,
10686 bool solidBackground=False) -
> bool
</autodoc>
10688 <param name=
"index" type=
"int" default=
""/>
10689 <param name=
"dc" type=
"DC" default=
""/>
10690 <param name=
"x" type=
"int" default=
""/>
10691 <param name=
"x" type=
"int" default=
""/>
10692 <param name=
"flags" type=
"int" default=
"wxIMAGELIST_DRAW_NORMAL"/>
10693 <param name=
"solidBackground" type=
"bool" default=
"False"/>
10696 <method name=
"GetImageCount" type=
"int" overloaded=
"no">
10697 <autodoc>GetImageCount() -
> int
</autodoc>
10699 <method name=
"Remove" type=
"bool" overloaded=
"no">
10700 <autodoc>Remove(int index) -
> bool
</autodoc>
10702 <param name=
"index" type=
"int" default=
""/>
10705 <method name=
"RemoveAll" type=
"bool" overloaded=
"no">
10706 <autodoc>RemoveAll() -
> bool
</autodoc>
10708 <method name=
"GetSize" type=
"" overloaded=
"no">
10709 <autodoc>GetSize() -
> (width,height)
</autodoc>
10711 <param name=
"index" type=
"int" default=
""/>
10712 <param name=
"OUTPUT" type=
"int" default=
""/>
10713 <param name=
"OUTPUT" type=
"int" default=
""/>
10718 #---------------------------------------------------------------------------
10720 <class name=
"PenList" oldname=
"wxPenList" module=
"gdi">
10721 <baseclass name=
"Object"/>
10722 <method name=
"AddPen" type=
"" overloaded=
"no">
10723 <autodoc>AddPen(Pen pen)
</autodoc>
10725 <param name=
"pen" type=
"Pen" default=
""/>
10728 <method name=
"FindOrCreatePen" type=
"Pen" overloaded=
"no">
10729 <autodoc>FindOrCreatePen(Colour colour, int width, int style) -
> Pen
</autodoc>
10731 <param name=
"colour" type=
"Colour" default=
""/>
10732 <param name=
"width" type=
"int" default=
""/>
10733 <param name=
"style" type=
"int" default=
""/>
10736 <method name=
"RemovePen" type=
"" overloaded=
"no">
10737 <autodoc>RemovePen(Pen pen)
</autodoc>
10739 <param name=
"pen" type=
"Pen" default=
""/>
10742 <method name=
"GetCount" type=
"int" overloaded=
"no">
10743 <autodoc>GetCount() -
> int
</autodoc>
10746 <class name=
"BrushList" oldname=
"wxBrushList" module=
"gdi">
10747 <baseclass name=
"Object"/>
10748 <method name=
"AddBrush" type=
"" overloaded=
"no">
10749 <autodoc>AddBrush(Brush brush)
</autodoc>
10751 <param name=
"brush" type=
"Brush" default=
""/>
10754 <method name=
"FindOrCreateBrush" type=
"Brush" overloaded=
"no">
10755 <autodoc>FindOrCreateBrush(Colour colour, int style) -
> Brush
</autodoc>
10757 <param name=
"colour" type=
"Colour" default=
""/>
10758 <param name=
"style" type=
"int" default=
""/>
10761 <method name=
"RemoveBrush" type=
"" overloaded=
"no">
10762 <autodoc>RemoveBrush(Brush brush)
</autodoc>
10764 <param name=
"brush" type=
"Brush" default=
""/>
10767 <method name=
"GetCount" type=
"int" overloaded=
"no">
10768 <autodoc>GetCount() -
> int
</autodoc>
10771 <class name=
"ColourDatabase" oldname=
"wxColourDatabase" module=
"gdi">
10772 <baseclass name=
"Object"/>
10773 <constructor name=
"ColourDatabase" overloaded=
"no">
10774 <autodoc>__init__() -
> ColourDatabase
</autodoc>
10776 <destructor name=
"~wxColourDatabase" overloaded=
"no">
10777 <autodoc>__del__()
</autodoc>
10779 <method name=
"Find" type=
"Colour" overloaded=
"no">
10780 <autodoc>Find(String name) -
> Colour
</autodoc>
10782 <param name=
"name" type=
"String" default=
""/>
10785 <method name=
"FindName" type=
"String" overloaded=
"no">
10786 <autodoc>FindName(Colour colour) -
> String
</autodoc>
10788 <param name=
"colour" type=
"Colour" default=
""/>
10791 <method name=
"AddColour" type=
"" overloaded=
"no">
10792 <autodoc>AddColour(String name, Colour colour)
</autodoc>
10794 <param name=
"name" type=
"String" default=
""/>
10795 <param name=
"colour" type=
"Colour" default=
""/>
10798 <method name=
"Append" type=
"" overloaded=
"no">
10799 <autodoc>Append(String name, int red, int green, int blue)
</autodoc>
10801 <param name=
"name" type=
"String" default=
""/>
10802 <param name=
"red" type=
"int" default=
""/>
10803 <param name=
"green" type=
"int" default=
""/>
10804 <param name=
"blue" type=
"int" default=
""/>
10808 <class name=
"FontList" oldname=
"wxFontList" module=
"gdi">
10809 <baseclass name=
"Object"/>
10810 <method name=
"AddFont" type=
"" overloaded=
"no">
10811 <autodoc>AddFont(Font font)
</autodoc>
10813 <param name=
"font" type=
"Font" default=
""/>
10816 <method name=
"FindOrCreateFont" type=
"Font" overloaded=
"no">
10817 <autodoc>FindOrCreateFont(int point_size, int family, int style, int weight,
10818 bool underline=False, String facename=EmptyString,
10819 int encoding=FONTENCODING_DEFAULT) -
> Font
</autodoc>
10821 <param name=
"point_size" type=
"int" default=
""/>
10822 <param name=
"family" type=
"int" default=
""/>
10823 <param name=
"style" type=
"int" default=
""/>
10824 <param name=
"weight" type=
"int" default=
""/>
10825 <param name=
"underline" type=
"bool" default=
"False"/>
10826 <param name=
"facename" type=
"String" default=
"wxPyEmptyString"/>
10827 <param name=
"encoding" type=
"wxFontEncoding" default=
"wxFONTENCODING_DEFAULT"/>
10830 <method name=
"RemoveFont" type=
"" overloaded=
"no">
10831 <autodoc>RemoveFont(Font font)
</autodoc>
10833 <param name=
"font" type=
"Font" default=
""/>
10836 <method name=
"GetCount" type=
"int" overloaded=
"no">
10837 <autodoc>GetCount() -
> int
</autodoc>
10841 #---------------------------------------------------------------------------
10843 <pythoncode> NullColor = NullColour
</pythoncode>
10845 #---------------------------------------------------------------------------
10847 <class name=
"Effects" oldname=
"wxEffects" module=
"gdi">
10848 <baseclass name=
"Object"/>
10849 <constructor name=
"Effects" overloaded=
"no">
10850 <autodoc>__init__() -
> Effects
</autodoc>
10852 <method name=
"GetHighlightColour" type=
"Colour" overloaded=
"no">
10853 <autodoc>GetHighlightColour() -
> Colour
</autodoc>
10855 <method name=
"GetLightShadow" type=
"Colour" overloaded=
"no">
10856 <autodoc>GetLightShadow() -
> Colour
</autodoc>
10858 <method name=
"GetFaceColour" type=
"Colour" overloaded=
"no">
10859 <autodoc>GetFaceColour() -
> Colour
</autodoc>
10861 <method name=
"GetMediumShadow" type=
"Colour" overloaded=
"no">
10862 <autodoc>GetMediumShadow() -
> Colour
</autodoc>
10864 <method name=
"GetDarkShadow" type=
"Colour" overloaded=
"no">
10865 <autodoc>GetDarkShadow() -
> Colour
</autodoc>
10867 <method name=
"SetHighlightColour" type=
"" overloaded=
"no">
10868 <autodoc>SetHighlightColour(Colour c)
</autodoc>
10870 <param name=
"c" type=
"Colour" default=
""/>
10873 <method name=
"SetLightShadow" type=
"" overloaded=
"no">
10874 <autodoc>SetLightShadow(Colour c)
</autodoc>
10876 <param name=
"c" type=
"Colour" default=
""/>
10879 <method name=
"SetFaceColour" type=
"" overloaded=
"no">
10880 <autodoc>SetFaceColour(Colour c)
</autodoc>
10882 <param name=
"c" type=
"Colour" default=
""/>
10885 <method name=
"SetMediumShadow" type=
"" overloaded=
"no">
10886 <autodoc>SetMediumShadow(Colour c)
</autodoc>
10888 <param name=
"c" type=
"Colour" default=
""/>
10891 <method name=
"SetDarkShadow" type=
"" overloaded=
"no">
10892 <autodoc>SetDarkShadow(Colour c)
</autodoc>
10894 <param name=
"c" type=
"Colour" default=
""/>
10897 <method name=
"Set" type=
"" overloaded=
"no">
10898 <autodoc>Set(Colour highlightColour, Colour lightShadow, Colour faceColour,
10899 Colour mediumShadow, Colour darkShadow)
</autodoc>
10901 <param name=
"highlightColour" type=
"Colour" default=
""/>
10902 <param name=
"lightShadow" type=
"Colour" default=
""/>
10903 <param name=
"faceColour" type=
"Colour" default=
""/>
10904 <param name=
"mediumShadow" type=
"Colour" default=
""/>
10905 <param name=
"darkShadow" type=
"Colour" default=
""/>
10908 <method name=
"DrawSunkenEdge" type=
"" overloaded=
"no">
10909 <autodoc>DrawSunkenEdge(DC dc, Rect rect, int borderSize=
1)
</autodoc>
10911 <param name=
"dc" type=
"DC" default=
""/>
10912 <param name=
"rect" type=
"Rect" default=
""/>
10913 <param name=
"borderSize" type=
"int" default=
"1"/>
10916 <method name=
"TileBitmap" type=
"bool" overloaded=
"no">
10917 <autodoc>TileBitmap(Rect rect, DC dc, Bitmap bitmap) -
> bool
</autodoc>
10919 <param name=
"rect" type=
"Rect" default=
""/>
10920 <param name=
"dc" type=
"DC" default=
""/>
10921 <param name=
"bitmap" type=
"Bitmap" default=
""/>
10926 <module name=
"windows">
10927 <import name=
"core"/>
10928 <pythoncode> wx = core
</pythoncode>
10930 #---------------------------------------------------------------------------
10932 <class name=
"Panel" oldname=
"wxPanel" module=
"windows">
10933 <baseclass name=
"Window"/>
10934 <constructor name=
"Panel" overloaded=
"no">
10935 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
10936 Size size=DefaultSize, long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10937 String name=PanelNameStr) -
> Panel
</autodoc>
10939 <param name=
"parent" type=
"Window" default=
""/>
10940 <param name=
"id" type=
"int" default=
"-1"/>
10941 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10942 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10943 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10944 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
10947 <constructor name=
"PrePanel" overloaded=
"no">
10948 <autodoc>PrePanel() -
> Panel
</autodoc>
10950 <method name=
"Create" type=
"bool" overloaded=
"no">
10951 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
10952 long style=wxTAB_TRAVERSAL|wxNO_BORDER,
10953 String name=PanelNameStr) -
> bool
</autodoc>
10954 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
10956 <param name=
"parent" type=
"Window" default=
""/>
10957 <param name=
"id" type=
"int" default=
""/>
10958 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10959 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10960 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL|wxNO_BORDER"/>
10961 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
10964 <method name=
"InitDialog" type=
"" overloaded=
"no">
10965 <autodoc>InitDialog()
</autodoc>
10969 #---------------------------------------------------------------------------
10971 <class name=
"ScrolledWindow" oldname=
"wxScrolledWindow" module=
"windows">
10972 <baseclass name=
"Panel"/>
10973 <constructor name=
"ScrolledWindow" overloaded=
"no">
10974 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
10975 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
10976 String name=PanelNameStr) -
> ScrolledWindow
</autodoc>
10978 <param name=
"parent" type=
"Window" default=
""/>
10979 <param name=
"id" type=
"int" default=
"-1"/>
10980 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10981 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10982 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
10983 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
10986 <constructor name=
"PreScrolledWindow" overloaded=
"no">
10987 <autodoc>PreScrolledWindow() -
> ScrolledWindow
</autodoc>
10989 <method name=
"Create" type=
"bool" overloaded=
"no">
10990 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
10991 Size size=DefaultSize, long style=wxHSCROLL|wxVSCROLL,
10992 String name=PanelNameStr) -
> bool
</autodoc>
10993 <docstring>Create the GUI part of the Window for
2-phase creation mode.
</docstring>
10995 <param name=
"parent" type=
"Window" default=
""/>
10996 <param name=
"id" type=
"int" default=
"-1"/>
10997 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
10998 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
10999 <param name=
"style" type=
"long" default=
"wxHSCROLL|wxVSCROLL"/>
11000 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
11003 <method name=
"SetScrollbars" type=
"" overloaded=
"no">
11004 <autodoc>SetScrollbars(int pixelsPerUnitX, int pixelsPerUnitY, int noUnitsX,
11005 int noUnitsY, int xPos=
0, int yPos=
0, bool noRefresh=False)
</autodoc>
11007 <param name=
"pixelsPerUnitX" type=
"int" default=
""/>
11008 <param name=
"pixelsPerUnitY" type=
"int" default=
""/>
11009 <param name=
"noUnitsX" type=
"int" default=
""/>
11010 <param name=
"noUnitsY" type=
"int" default=
""/>
11011 <param name=
"xPos" type=
"int" default=
"0"/>
11012 <param name=
"yPos" type=
"int" default=
"0"/>
11013 <param name=
"noRefresh" type=
"bool" default=
"False"/>
11016 <method name=
"Scroll" type=
"" overloaded=
"no">
11017 <autodoc>Scroll(int x, int y)
</autodoc>
11019 <param name=
"x" type=
"int" default=
""/>
11020 <param name=
"y" type=
"int" default=
""/>
11023 <method name=
"GetScrollPageSize" type=
"int" overloaded=
"no">
11024 <autodoc>GetScrollPageSize(int orient) -
> int
</autodoc>
11026 <param name=
"orient" type=
"int" default=
""/>
11029 <method name=
"SetScrollPageSize" type=
"" overloaded=
"no">
11030 <autodoc>SetScrollPageSize(int orient, int pageSize)
</autodoc>
11032 <param name=
"orient" type=
"int" default=
""/>
11033 <param name=
"pageSize" type=
"int" default=
""/>
11036 <method name=
"SetScrollRate" type=
"" overloaded=
"no">
11037 <autodoc>SetScrollRate(int xstep, int ystep)
</autodoc>
11039 <param name=
"xstep" type=
"int" default=
""/>
11040 <param name=
"ystep" type=
"int" default=
""/>
11043 <method name=
"GetScrollPixelsPerUnit" type=
"" overloaded=
"no">
11044 <autodoc>GetScrollPixelsPerUnit() -
> (xUnit, yUnit)
</autodoc>
11045 <docstring>Get the size of one logical unit in physical units.
</docstring>
11047 <param name=
"OUTPUT" type=
"int" default=
""/>
11048 <param name=
"OUTPUT" type=
"int" default=
""/>
11051 <method name=
"EnableScrolling" type=
"" overloaded=
"no">
11052 <autodoc>EnableScrolling(bool x_scrolling, bool y_scrolling)
</autodoc>
11054 <param name=
"x_scrolling" type=
"bool" default=
""/>
11055 <param name=
"y_scrolling" type=
"bool" default=
""/>
11058 <method name=
"GetViewStart" type=
"" overloaded=
"no">
11059 <autodoc>GetViewStart() -
> (x,y)
</autodoc>
11060 <docstring>Get the view start
</docstring>
11062 <param name=
"OUTPUT" type=
"int" default=
""/>
11063 <param name=
"OUTPUT" type=
"int" default=
""/>
11066 <method name=
"SetScale" type=
"" overloaded=
"no">
11067 <autodoc>SetScale(double xs, double ys)
</autodoc>
11069 <param name=
"xs" type=
"double" default=
""/>
11070 <param name=
"ys" type=
"double" default=
""/>
11073 <method name=
"GetScaleX" type=
"double" overloaded=
"no">
11074 <autodoc>GetScaleX() -
> double
</autodoc>
11076 <method name=
"GetScaleY" type=
"double" overloaded=
"no">
11077 <autodoc>GetScaleY() -
> double
</autodoc>
11079 <method name=
"CalcScrolledPosition" type=
"Point" overloaded=
"yes">
11080 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11082 <param name=
"pt" type=
"Point" default=
""/>
11085 <method name=
"CalcScrolledPosition" type=
"" overloaded=
"yes">
11086 <autodoc>CalcScrolledPosition(Point pt) -
> Point
11087 CalcScrolledPosition(int x, int y) -
> (sx, sy)
</autodoc>
11088 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11090 <param name=
"x" type=
"int" default=
""/>
11091 <param name=
"y" type=
"int" default=
""/>
11092 <param name=
"OUTPUT" type=
"int" default=
""/>
11093 <param name=
"OUTPUT" type=
"int" default=
""/>
11096 <method name=
"CalcUnscrolledPosition" type=
"Point" overloaded=
"yes">
11097 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11099 <param name=
"pt" type=
"Point" default=
""/>
11102 <method name=
"CalcUnscrolledPosition" type=
"" overloaded=
"yes">
11103 <autodoc>CalcUnscrolledPosition(Point pt) -
> Point
11104 CalcUnscrolledPosition(int x, int y) -
> (ux, uy)
</autodoc>
11105 <docstring>Translate between scrolled and unscrolled coordinates.
</docstring>
11107 <param name=
"x" type=
"int" default=
""/>
11108 <param name=
"y" type=
"int" default=
""/>
11109 <param name=
"OUTPUT" type=
"int" default=
""/>
11110 <param name=
"OUTPUT" type=
"int" default=
""/>
11113 <method name=
"AdjustScrollbars" type=
"" overloaded=
"no">
11114 <autodoc>AdjustScrollbars()
</autodoc>
11116 <method name=
"CalcScrollInc" type=
"int" overloaded=
"no">
11117 <autodoc>CalcScrollInc(ScrollWinEvent event) -
> int
</autodoc>
11119 <param name=
"event" type=
"ScrollWinEvent" default=
""/>
11122 <method name=
"SetTargetWindow" type=
"" overloaded=
"no">
11123 <autodoc>SetTargetWindow(Window target)
</autodoc>
11125 <param name=
"target" type=
"Window" default=
""/>
11128 <method name=
"GetTargetWindow" type=
"Window" overloaded=
"no">
11129 <autodoc>GetTargetWindow() -
> Window
</autodoc>
11133 #---------------------------------------------------------------------------
11135 <class name=
"TopLevelWindow" oldname=
"wxTopLevelWindow" module=
"windows">
11136 <baseclass name=
"Window"/>
11137 <method name=
"Maximize" type=
"" overloaded=
"no">
11138 <autodoc>Maximize(bool maximize=True)
</autodoc>
11140 <param name=
"maximize" type=
"bool" default=
"True"/>
11143 <method name=
"Restore" type=
"" overloaded=
"no">
11144 <autodoc>Restore()
</autodoc>
11146 <method name=
"Iconize" type=
"" overloaded=
"no">
11147 <autodoc>Iconize(bool iconize=True)
</autodoc>
11149 <param name=
"iconize" type=
"bool" default=
"True"/>
11152 <method name=
"IsMaximized" type=
"bool" overloaded=
"no">
11153 <autodoc>IsMaximized() -
> bool
</autodoc>
11155 <method name=
"IsIconized" type=
"bool" overloaded=
"no">
11156 <autodoc>IsIconized() -
> bool
</autodoc>
11158 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
11159 <autodoc>GetIcon() -
> Icon
</autodoc>
11161 <method name=
"SetIcon" type=
"" overloaded=
"no">
11162 <autodoc>SetIcon(Icon icon)
</autodoc>
11164 <param name=
"icon" type=
"Icon" default=
""/>
11167 <method name=
"SetIcons" type=
"" overloaded=
"no">
11168 <autodoc>SetIcons(wxIconBundle icons)
</autodoc>
11170 <param name=
"icons" type=
"IconBundle" default=
""/>
11173 <method name=
"ShowFullScreen" type=
"bool" overloaded=
"no">
11174 <autodoc>ShowFullScreen(bool show, long style=FULLSCREEN_ALL) -
> bool
</autodoc>
11176 <param name=
"show" type=
"bool" default=
""/>
11177 <param name=
"style" type=
"long" default=
"wxFULLSCREEN_ALL"/>
11180 <method name=
"IsFullScreen" type=
"bool" overloaded=
"no">
11181 <autodoc>IsFullScreen() -
> bool
</autodoc>
11183 <method name=
"SetTitle" type=
"" overloaded=
"no">
11184 <autodoc>SetTitle(String title)
</autodoc>
11185 <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring>
11187 <param name=
"title" type=
"String" default=
""/>
11190 <method name=
"GetTitle" type=
"String" overloaded=
"no">
11191 <autodoc>GetTitle() -
> String
</autodoc>
11192 <docstring>Gets the window's title. Applicable only to frames and dialogs.
</docstring>
11194 <method name=
"SetShape" type=
"bool" overloaded=
"no">
11195 <autodoc>SetShape(Region region) -
> bool
</autodoc>
11197 <param name=
"region" type=
"Region" default=
""/>
11202 #---------------------------------------------------------------------------
11204 <class name=
"Frame" oldname=
"wxFrame" module=
"windows">
11205 <baseclass name=
"TopLevelWindow"/>
11206 <constructor name=
"Frame" overloaded=
"no">
11207 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11208 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11209 String name=FrameNameStr) -
> Frame
</autodoc>
11211 <param name=
"parent" type=
"Window" default=
""/>
11212 <param name=
"id" type=
"int" default=
""/>
11213 <param name=
"title" type=
"String" default=
""/>
11214 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11215 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11216 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11217 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11220 <constructor name=
"PreFrame" overloaded=
"no">
11221 <autodoc>PreFrame() -
> Frame
</autodoc>
11223 <method name=
"Create" type=
"bool" overloaded=
"no">
11224 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11225 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11226 String name=FrameNameStr) -
> bool
</autodoc>
11228 <param name=
"parent" type=
"Window" default=
""/>
11229 <param name=
"id" type=
"int" default=
""/>
11230 <param name=
"title" type=
"String" default=
""/>
11231 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11232 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11233 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11234 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11237 <method name=
"GetClientAreaOrigin" type=
"Point" overloaded=
"no">
11238 <autodoc>GetClientAreaOrigin() -
> Point
</autodoc>
11239 <docstring>Get the origin of the client area of the window relative to the
11240 window's top left corner (the client area may be shifted because of
11241 the borders, scrollbars, other decorations...)
</docstring>
11243 <method name=
"SendSizeEvent" type=
"" overloaded=
"no">
11244 <autodoc>SendSizeEvent()
</autodoc>
11246 <method name=
"SetMenuBar" type=
"" overloaded=
"no">
11247 <autodoc>SetMenuBar(MenuBar menubar)
</autodoc>
11249 <param name=
"menubar" type=
"MenuBar" default=
""/>
11252 <method name=
"GetMenuBar" type=
"MenuBar" overloaded=
"no">
11253 <autodoc>GetMenuBar() -
> MenuBar
</autodoc>
11255 <method name=
"ProcessCommand" type=
"bool" overloaded=
"no">
11256 <autodoc>ProcessCommand(int winid) -
> bool
</autodoc>
11258 <param name=
"winid" type=
"int" default=
""/>
11261 <method name=
"CreateStatusBar" type=
"wxStatusBar" overloaded=
"no">
11262 <autodoc>CreateStatusBar(int number=
1, long style=ST_SIZEGRIP, int winid=
0,
11263 String name=StatusLineNameStr) -
> StatusBar
</autodoc>
11265 <param name=
"number" type=
"int" default=
"1"/>
11266 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
11267 <param name=
"winid" type=
"int" default=
"0"/>
11268 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11271 <method name=
"GetStatusBar" type=
"wxStatusBar" overloaded=
"no">
11272 <autodoc>GetStatusBar() -
> StatusBar
</autodoc>
11274 <method name=
"SetStatusBar" type=
"" overloaded=
"no">
11275 <autodoc>SetStatusBar(StatusBar statBar)
</autodoc>
11277 <param name=
"statBar" type=
"wxStatusBar" default=
""/>
11280 <method name=
"SetStatusText" type=
"" overloaded=
"no">
11281 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
11283 <param name=
"text" type=
"String" default=
""/>
11284 <param name=
"number" type=
"int" default=
"0"/>
11287 <method name=
"SetStatusWidths" type=
"" overloaded=
"no">
11288 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
11290 <param name=
"widths" type=
"int" default=
""/>
11291 <param name=
"widths_field" type=
"int" default=
""/>
11294 <method name=
"PushStatusText" type=
"" overloaded=
"no">
11295 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
11297 <param name=
"text" type=
"String" default=
""/>
11298 <param name=
"number" type=
"int" default=
"0"/>
11301 <method name=
"PopStatusText" type=
"" overloaded=
"no">
11302 <autodoc>PopStatusText(int number=
0)
</autodoc>
11304 <param name=
"number" type=
"int" default=
"0"/>
11307 <method name=
"SetStatusBarPane" type=
"" overloaded=
"no">
11308 <autodoc>SetStatusBarPane(int n)
</autodoc>
11310 <param name=
"n" type=
"int" default=
""/>
11313 <method name=
"GetStatusBarPane" type=
"int" overloaded=
"no">
11314 <autodoc>GetStatusBarPane() -
> int
</autodoc>
11316 <method name=
"CreateToolBar" type=
"wxToolBar" overloaded=
"no">
11317 <autodoc>CreateToolBar(long style=-
1, int winid=-
1, String name=ToolBarNameStr) -
> wxToolBar
</autodoc>
11319 <param name=
"style" type=
"long" default=
"-1"/>
11320 <param name=
"winid" type=
"int" default=
"-1"/>
11321 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
11324 <method name=
"GetToolBar" type=
"wxToolBar" overloaded=
"no">
11325 <autodoc>GetToolBar() -
> wxToolBar
</autodoc>
11327 <method name=
"SetToolBar" type=
"" overloaded=
"no">
11328 <autodoc>SetToolBar(wxToolBar toolbar)
</autodoc>
11330 <param name=
"toolbar" type=
"wxToolBar" default=
""/>
11333 <method name=
"DoGiveHelp" type=
"" overloaded=
"no">
11334 <autodoc>DoGiveHelp(String text, bool show)
</autodoc>
11336 <param name=
"text" type=
"String" default=
""/>
11337 <param name=
"show" type=
"bool" default=
""/>
11340 <method name=
"DoMenuUpdates" type=
"" overloaded=
"no">
11341 <autodoc>DoMenuUpdates(Menu menu=None)
</autodoc>
11343 <param name=
"menu" type=
"Menu" default=
"NULL"/>
11348 #---------------------------------------------------------------------------
11350 <class name=
"Dialog" oldname=
"wxDialog" module=
"windows">
11351 <baseclass name=
"TopLevelWindow"/>
11352 <constructor name=
"Dialog" overloaded=
"no">
11353 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11354 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
11355 String name=DialogNameStr) -
> Dialog
</autodoc>
11357 <param name=
"parent" type=
"Window" default=
""/>
11358 <param name=
"id" type=
"int" default=
""/>
11359 <param name=
"title" type=
"String" default=
""/>
11360 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11361 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11362 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
11363 <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/>
11366 <constructor name=
"PreDialog" overloaded=
"no">
11367 <autodoc>PreDialog() -
> Dialog
</autodoc>
11369 <method name=
"Create" type=
"bool" overloaded=
"no">
11370 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11371 Size size=DefaultSize, long style=DEFAULT_DIALOG_STYLE,
11372 String name=DialogNameStr) -
> bool
</autodoc>
11374 <param name=
"parent" type=
"Window" default=
""/>
11375 <param name=
"id" type=
"int" default=
""/>
11376 <param name=
"title" type=
"String" default=
""/>
11377 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11378 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11379 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
11380 <param name=
"name" type=
"String" default=
"wxPyDialogNameStr"/>
11383 <method name=
"SetReturnCode" type=
"" overloaded=
"no">
11384 <autodoc>SetReturnCode(int returnCode)
</autodoc>
11386 <param name=
"returnCode" type=
"int" default=
""/>
11389 <method name=
"GetReturnCode" type=
"int" overloaded=
"no">
11390 <autodoc>GetReturnCode() -
> int
</autodoc>
11392 <method name=
"CreateTextSizer" type=
"Sizer" overloaded=
"no">
11393 <autodoc>CreateTextSizer(String message) -
> Sizer
</autodoc>
11395 <param name=
"message" type=
"String" default=
""/>
11398 <method name=
"CreateButtonSizer" type=
"Sizer" overloaded=
"no">
11399 <autodoc>CreateButtonSizer(long flags) -
> Sizer
</autodoc>
11401 <param name=
"flags" type=
"long" default=
""/>
11404 <method name=
"IsModal" type=
"bool" overloaded=
"no">
11405 <autodoc>IsModal() -
> bool
</autodoc>
11407 <method name=
"ShowModal" type=
"int" overloaded=
"no">
11408 <autodoc>ShowModal() -
> int
</autodoc>
11410 <method name=
"EndModal" type=
"" overloaded=
"no">
11411 <autodoc>EndModal(int retCode)
</autodoc>
11413 <param name=
"retCode" type=
"int" default=
""/>
11416 <method name=
"IsModalShowing" type=
"bool" overloaded=
"no">
11417 <autodoc>IsModalShowing() -
> bool
</autodoc>
11421 #---------------------------------------------------------------------------
11423 <class name=
"MiniFrame" oldname=
"wxMiniFrame" module=
"windows">
11424 <baseclass name=
"Frame"/>
11425 <constructor name=
"MiniFrame" overloaded=
"no">
11426 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
11427 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11428 String name=FrameNameStr) -
> MiniFrame
</autodoc>
11430 <param name=
"parent" type=
"Window" default=
""/>
11431 <param name=
"id" type=
"int" default=
""/>
11432 <param name=
"title" type=
"String" default=
""/>
11433 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11434 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11435 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11436 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11439 <constructor name=
"PreMiniFrame" overloaded=
"no">
11440 <autodoc>PreMiniFrame() -
> MiniFrame
</autodoc>
11442 <method name=
"Create" type=
"bool" overloaded=
"no">
11443 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
11444 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
11445 String name=FrameNameStr) -
> bool
</autodoc>
11447 <param name=
"parent" type=
"Window" default=
""/>
11448 <param name=
"id" type=
"int" default=
""/>
11449 <param name=
"title" type=
"String" default=
""/>
11450 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11451 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11452 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
11453 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
11458 #---------------------------------------------------------------------------
11460 <class name=
"SplashScreenWindow" oldname=
"wxSplashScreenWindow" module=
"windows">
11461 <baseclass name=
"Window"/>
11462 <constructor name=
"SplashScreenWindow" overloaded=
"no">
11463 <autodoc>__init__(Bitmap bitmap, Window parent, int id, Point pos=DefaultPosition,
11464 Size size=DefaultSize, long style=NO_BORDER) -
> SplashScreenWindow
</autodoc>
11466 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11467 <param name=
"parent" type=
"Window" default=
""/>
11468 <param name=
"id" type=
"int" default=
""/>
11469 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11470 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11471 <param name=
"style" type=
"long" default=
"wxNO_BORDER"/>
11474 <method name=
"SetBitmap" type=
"" overloaded=
"no">
11475 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
11477 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11480 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
11481 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
11484 <class name=
"SplashScreen" oldname=
"wxSplashScreen" module=
"windows">
11485 <baseclass name=
"Frame"/>
11486 <constructor name=
"SplashScreen" overloaded=
"no">
11487 <autodoc>__init__(Bitmap bitmap, long splashStyle, int milliseconds,
11488 Window parent, int id, Point pos=DefaultPosition,
11489 Size size=DefaultSize, long style=wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP) -
> SplashScreen
</autodoc>
11491 <param name=
"bitmap" type=
"Bitmap" default=
""/>
11492 <param name=
"splashStyle" type=
"long" default=
""/>
11493 <param name=
"milliseconds" type=
"int" default=
""/>
11494 <param name=
"parent" type=
"Window" default=
""/>
11495 <param name=
"id" type=
"int" default=
""/>
11496 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11497 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11498 <param name=
"style" type=
"long" default=
"wxSIMPLE_BORDER|wxFRAME_NO_TASKBAR|wxSTAY_ON_TOP"/>
11501 <method name=
"GetSplashStyle" type=
"long" overloaded=
"no">
11502 <autodoc>GetSplashStyle() -
> long
</autodoc>
11504 <method name=
"GetSplashWindow" type=
"SplashScreenWindow" overloaded=
"no">
11505 <autodoc>GetSplashWindow() -
> SplashScreenWindow
</autodoc>
11507 <method name=
"GetTimeout" type=
"int" overloaded=
"no">
11508 <autodoc>GetTimeout() -
> int
</autodoc>
11512 #---------------------------------------------------------------------------
11514 <class name=
"StatusBar" oldname=
"wxStatusBar" module=
"windows">
11515 <baseclass name=
"Window"/>
11516 <constructor name=
"StatusBar" overloaded=
"no">
11517 <autodoc>__init__(Window parent, int id=-
1, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> StatusBar
</autodoc>
11519 <param name=
"parent" type=
"Window" default=
""/>
11520 <param name=
"id" type=
"int" default=
"-1"/>
11521 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
11522 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11525 <constructor name=
"PreStatusBar" overloaded=
"no">
11526 <autodoc>PreStatusBar() -
> StatusBar
</autodoc>
11528 <method name=
"Create" type=
"bool" overloaded=
"no">
11529 <autodoc>Create(Window parent, int id, long style=ST_SIZEGRIP, String name=StatusLineNameStr) -
> bool
</autodoc>
11531 <param name=
"parent" type=
"Window" default=
""/>
11532 <param name=
"id" type=
"int" default=
""/>
11533 <param name=
"style" type=
"long" default=
"wxST_SIZEGRIP"/>
11534 <param name=
"name" type=
"String" default=
"wxPyStatusLineNameStr"/>
11537 <method name=
"SetFieldsCount" type=
"" overloaded=
"no">
11538 <autodoc>SetFieldsCount(int number=
1)
</autodoc>
11540 <param name=
"number" type=
"int" default=
"1"/>
11543 <method name=
"GetFieldsCount" type=
"int" overloaded=
"no">
11544 <autodoc>GetFieldsCount() -
> int
</autodoc>
11546 <method name=
"SetStatusText" type=
"" overloaded=
"no">
11547 <autodoc>SetStatusText(String text, int number=
0)
</autodoc>
11549 <param name=
"text" type=
"String" default=
""/>
11550 <param name=
"number" type=
"int" default=
"0"/>
11553 <method name=
"GetStatusText" type=
"String" overloaded=
"no">
11554 <autodoc>GetStatusText(int number=
0) -
> String
</autodoc>
11556 <param name=
"number" type=
"int" default=
"0"/>
11559 <method name=
"PushStatusText" type=
"" overloaded=
"no">
11560 <autodoc>PushStatusText(String text, int number=
0)
</autodoc>
11562 <param name=
"text" type=
"String" default=
""/>
11563 <param name=
"number" type=
"int" default=
"0"/>
11566 <method name=
"PopStatusText" type=
"" overloaded=
"no">
11567 <autodoc>PopStatusText(int number=
0)
</autodoc>
11569 <param name=
"number" type=
"int" default=
"0"/>
11572 <method name=
"SetStatusWidths" type=
"" overloaded=
"no">
11573 <autodoc>SetStatusWidths(int widths, int widths_field)
</autodoc>
11575 <param name=
"widths" type=
"int" default=
""/>
11576 <param name=
"widths_field" type=
"int" default=
""/>
11579 <method name=
"GetFieldRect" type=
"Rect" overloaded=
"no">
11580 <autodoc>GetFieldRect(int i) -
> Rect
</autodoc>
11582 <param name=
"i" type=
"int" default=
""/>
11585 <method name=
"SetMinHeight" type=
"" overloaded=
"no">
11586 <autodoc>SetMinHeight(int height)
</autodoc>
11588 <param name=
"height" type=
"int" default=
""/>
11591 <method name=
"GetBorderX" type=
"int" overloaded=
"no">
11592 <autodoc>GetBorderX() -
> int
</autodoc>
11594 <method name=
"GetBorderY" type=
"int" overloaded=
"no">
11595 <autodoc>GetBorderY() -
> int
</autodoc>
11599 #---------------------------------------------------------------------------
11601 <class name=
"SplitterWindow" oldname=
"wxSplitterWindow" module=
"windows">
11602 <baseclass name=
"Window"/>
11603 <constructor name=
"SplitterWindow" overloaded=
"no">
11604 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11605 long style=SP_3D, String name=SplitterNameStr) -
> SplitterWindow
</autodoc>
11607 <param name=
"parent" type=
"Window" default=
""/>
11608 <param name=
"id" type=
"int" default=
""/>
11609 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11610 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11611 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
11612 <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/>
11615 <constructor name=
"PreSplitterWindow" overloaded=
"no">
11616 <autodoc>PreSplitterWindow() -
> SplitterWindow
</autodoc>
11618 <method name=
"Create" type=
"bool" overloaded=
"no">
11619 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11620 long style=SP_3D, String name=SplitterNameStr) -
> bool
</autodoc>
11622 <param name=
"parent" type=
"Window" default=
""/>
11623 <param name=
"id" type=
"int" default=
""/>
11624 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11625 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11626 <param name=
"style" type=
"long" default=
"wxSP_3D"/>
11627 <param name=
"name" type=
"String" default=
"wxPySplitterNameStr"/>
11630 <method name=
"GetWindow1" type=
"Window" overloaded=
"no">
11631 <autodoc>GetWindow1() -
> Window
</autodoc>
11633 <method name=
"GetWindow2" type=
"Window" overloaded=
"no">
11634 <autodoc>GetWindow2() -
> Window
</autodoc>
11636 <method name=
"SetSplitMode" type=
"" overloaded=
"no">
11637 <autodoc>SetSplitMode(int mode)
</autodoc>
11639 <param name=
"mode" type=
"int" default=
""/>
11642 <method name=
"GetSplitMode" type=
"wxSplitMode" overloaded=
"no">
11643 <autodoc>GetSplitMode() -
> int
</autodoc>
11645 <method name=
"Initialize" type=
"" overloaded=
"no">
11646 <autodoc>Initialize(Window window)
</autodoc>
11648 <param name=
"window" type=
"Window" default=
""/>
11651 <method name=
"SplitVertically" type=
"bool" overloaded=
"no">
11652 <autodoc>SplitVertically(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
11654 <param name=
"window1" type=
"Window" default=
""/>
11655 <param name=
"window2" type=
"Window" default=
""/>
11656 <param name=
"sashPosition" type=
"int" default=
"0"/>
11659 <method name=
"SplitHorizontally" type=
"bool" overloaded=
"no">
11660 <autodoc>SplitHorizontally(Window window1, Window window2, int sashPosition=
0) -
> bool
</autodoc>
11662 <param name=
"window1" type=
"Window" default=
""/>
11663 <param name=
"window2" type=
"Window" default=
""/>
11664 <param name=
"sashPosition" type=
"int" default=
"0"/>
11667 <method name=
"Unsplit" type=
"bool" overloaded=
"no">
11668 <autodoc>Unsplit(Window toRemove=None) -
> bool
</autodoc>
11670 <param name=
"toRemove" type=
"Window" default=
"NULL"/>
11673 <method name=
"ReplaceWindow" type=
"bool" overloaded=
"no">
11674 <autodoc>ReplaceWindow(Window winOld, Window winNew) -
> bool
</autodoc>
11676 <param name=
"winOld" type=
"Window" default=
""/>
11677 <param name=
"winNew" type=
"Window" default=
""/>
11680 <method name=
"IsSplit" type=
"bool" overloaded=
"no">
11681 <autodoc>IsSplit() -
> bool
</autodoc>
11683 <method name=
"SetSashSize" type=
"" overloaded=
"no">
11684 <autodoc>SetSashSize(int width)
</autodoc>
11686 <param name=
"width" type=
"int" default=
""/>
11689 <method name=
"SetBorderSize" type=
"" overloaded=
"no">
11690 <autodoc>SetBorderSize(int width)
</autodoc>
11692 <param name=
"width" type=
"int" default=
""/>
11695 <method name=
"GetSashSize" type=
"int" overloaded=
"no">
11696 <autodoc>GetSashSize() -
> int
</autodoc>
11698 <method name=
"GetBorderSize" type=
"int" overloaded=
"no">
11699 <autodoc>GetBorderSize() -
> int
</autodoc>
11701 <method name=
"SetSashPosition" type=
"" overloaded=
"no">
11702 <autodoc>SetSashPosition(int position, bool redraw=True)
</autodoc>
11704 <param name=
"position" type=
"int" default=
""/>
11705 <param name=
"redraw" type=
"bool" default=
"True"/>
11708 <method name=
"GetSashPosition" type=
"int" overloaded=
"no">
11709 <autodoc>GetSashPosition() -
> int
</autodoc>
11711 <method name=
"SetMinimumPaneSize" type=
"" overloaded=
"no">
11712 <autodoc>SetMinimumPaneSize(int min)
</autodoc>
11714 <param name=
"min" type=
"int" default=
""/>
11717 <method name=
"GetMinimumPaneSize" type=
"int" overloaded=
"no">
11718 <autodoc>GetMinimumPaneSize() -
> int
</autodoc>
11720 <method name=
"SashHitTest" type=
"bool" overloaded=
"no">
11721 <autodoc>SashHitTest(int x, int y, int tolerance=
5) -
> bool
</autodoc>
11723 <param name=
"x" type=
"int" default=
""/>
11724 <param name=
"y" type=
"int" default=
""/>
11725 <param name=
"tolerance" type=
"int" default=
"5"/>
11728 <method name=
"SizeWindows" type=
"" overloaded=
"no">
11729 <autodoc>SizeWindows()
</autodoc>
11731 <method name=
"SetNeedUpdating" type=
"" overloaded=
"no">
11732 <autodoc>SetNeedUpdating(bool needUpdating)
</autodoc>
11734 <param name=
"needUpdating" type=
"bool" default=
""/>
11737 <method name=
"GetNeedUpdating" type=
"bool" overloaded=
"no">
11738 <autodoc>GetNeedUpdating() -
> bool
</autodoc>
11741 <class name=
"SplitterEvent" oldname=
"wxSplitterEvent" module=
"windows">
11742 <baseclass name=
"NotifyEvent"/>
11743 <constructor name=
"SplitterEvent" overloaded=
"no">
11744 <autodoc>__init__(wxEventType type=wxEVT_NULL, SplitterWindow splitter=(wxSplitterWindow *) NULL) -
> SplitterEvent
</autodoc>
11746 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
11747 <param name=
"splitter" type=
"SplitterWindow" default=
"(wxSplitterWindow *) NULL"/>
11750 <method name=
"SetSashPosition" type=
"" overloaded=
"no">
11751 <autodoc>SetSashPosition(int pos)
</autodoc>
11753 <param name=
"pos" type=
"int" default=
""/>
11756 <method name=
"GetSashPosition" type=
"int" overloaded=
"no">
11757 <autodoc>GetSashPosition() -
> int
</autodoc>
11759 <method name=
"GetWindowBeingRemoved" type=
"Window" overloaded=
"no">
11760 <autodoc>GetWindowBeingRemoved() -
> Window
</autodoc>
11762 <method name=
"GetX" type=
"int" overloaded=
"no">
11763 <autodoc>GetX() -
> int
</autodoc>
11765 <method name=
"GetY" type=
"int" overloaded=
"no">
11766 <autodoc>GetY() -
> int
</autodoc>
11770 EVT_SPLITTER_SASH_POS_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED,
1 )
11771 EVT_SPLITTER_SASH_POS_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING,
1 )
11772 EVT_SPLITTER_DOUBLECLICKED = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_DOUBLECLICKED,
1 )
11773 EVT_SPLITTER_UNSPLIT = wx.PyEventBinder( wxEVT_COMMAND_SPLITTER_UNSPLIT,
1 )
11776 #---------------------------------------------------------------------------
11778 <class name=
"SashWindow" oldname=
"wxSashWindow" module=
"windows">
11779 <baseclass name=
"Window"/>
11780 <constructor name=
"SashWindow" overloaded=
"no">
11781 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11782 long style=wxCLIP_CHILDREN|wxSW_3D,
11783 String name=SashNameStr) -
> SashWindow
</autodoc>
11785 <param name=
"parent" type=
"Window" default=
""/>
11786 <param name=
"id" type=
"int" default=
""/>
11787 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11788 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11789 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11790 <param name=
"name" type=
"String" default=
"wxPySashNameStr"/>
11793 <constructor name=
"PreSashWindow" overloaded=
"no">
11794 <autodoc>PreSashWindow() -
> SashWindow
</autodoc>
11796 <method name=
"Create" type=
"bool" overloaded=
"no">
11797 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
11798 long style=wxCLIP_CHILDREN|wxSW_3D,
11799 String name=SashNameStr) -
> bool
</autodoc>
11801 <param name=
"parent" type=
"Window" default=
""/>
11802 <param name=
"id" type=
"int" default=
""/>
11803 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
11804 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
11805 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
11806 <param name=
"name" type=
"String" default=
"wxPySashNameStr"/>
11809 <method name=
"SetSashVisible" type=
"" overloaded=
"no">
11810 <autodoc>SetSashVisible(int edge, bool sash)
</autodoc>
11812 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11813 <param name=
"sash" type=
"bool" default=
""/>
11816 <method name=
"GetSashVisible" type=
"bool" overloaded=
"no">
11817 <autodoc>GetSashVisible(int edge) -
> bool
</autodoc>
11819 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11822 <method name=
"SetSashBorder" type=
"" overloaded=
"no">
11823 <autodoc>SetSashBorder(int edge, bool border)
</autodoc>
11825 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11826 <param name=
"border" type=
"bool" default=
""/>
11829 <method name=
"HasBorder" type=
"bool" overloaded=
"no">
11830 <autodoc>HasBorder(int edge) -
> bool
</autodoc>
11832 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11835 <method name=
"GetEdgeMargin" type=
"int" overloaded=
"no">
11836 <autodoc>GetEdgeMargin(int edge) -
> int
</autodoc>
11838 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11841 <method name=
"SetDefaultBorderSize" type=
"" overloaded=
"no">
11842 <autodoc>SetDefaultBorderSize(int width)
</autodoc>
11844 <param name=
"width" type=
"int" default=
""/>
11847 <method name=
"GetDefaultBorderSize" type=
"int" overloaded=
"no">
11848 <autodoc>GetDefaultBorderSize() -
> int
</autodoc>
11850 <method name=
"SetExtraBorderSize" type=
"" overloaded=
"no">
11851 <autodoc>SetExtraBorderSize(int width)
</autodoc>
11853 <param name=
"width" type=
"int" default=
""/>
11856 <method name=
"GetExtraBorderSize" type=
"int" overloaded=
"no">
11857 <autodoc>GetExtraBorderSize() -
> int
</autodoc>
11859 <method name=
"SetMinimumSizeX" type=
"" overloaded=
"no">
11860 <autodoc>SetMinimumSizeX(int min)
</autodoc>
11862 <param name=
"min" type=
"int" default=
""/>
11865 <method name=
"SetMinimumSizeY" type=
"" overloaded=
"no">
11866 <autodoc>SetMinimumSizeY(int min)
</autodoc>
11868 <param name=
"min" type=
"int" default=
""/>
11871 <method name=
"GetMinimumSizeX" type=
"int" overloaded=
"no">
11872 <autodoc>GetMinimumSizeX() -
> int
</autodoc>
11874 <method name=
"GetMinimumSizeY" type=
"int" overloaded=
"no">
11875 <autodoc>GetMinimumSizeY() -
> int
</autodoc>
11877 <method name=
"SetMaximumSizeX" type=
"" overloaded=
"no">
11878 <autodoc>SetMaximumSizeX(int max)
</autodoc>
11880 <param name=
"max" type=
"int" default=
""/>
11883 <method name=
"SetMaximumSizeY" type=
"" overloaded=
"no">
11884 <autodoc>SetMaximumSizeY(int max)
</autodoc>
11886 <param name=
"max" type=
"int" default=
""/>
11889 <method name=
"GetMaximumSizeX" type=
"int" overloaded=
"no">
11890 <autodoc>GetMaximumSizeX() -
> int
</autodoc>
11892 <method name=
"GetMaximumSizeY" type=
"int" overloaded=
"no">
11893 <autodoc>GetMaximumSizeY() -
> int
</autodoc>
11895 <method name=
"SashHitTest" type=
"wxSashEdgePosition" overloaded=
"no">
11896 <autodoc>SashHitTest(int x, int y, int tolerance=
2) -
> int
</autodoc>
11898 <param name=
"x" type=
"int" default=
""/>
11899 <param name=
"y" type=
"int" default=
""/>
11900 <param name=
"tolerance" type=
"int" default=
"2"/>
11903 <method name=
"SizeWindows" type=
"" overloaded=
"no">
11904 <autodoc>SizeWindows()
</autodoc>
11907 <class name=
"SashEvent" oldname=
"wxSashEvent" module=
"windows">
11908 <baseclass name=
"CommandEvent"/>
11909 <constructor name=
"SashEvent" overloaded=
"no">
11910 <autodoc>__init__(int id=
0, int edge=SASH_NONE) -
> SashEvent
</autodoc>
11912 <param name=
"id" type=
"int" default=
"0"/>
11913 <param name=
"edge" type=
"wxSashEdgePosition" default=
"wxSASH_NONE"/>
11916 <method name=
"SetEdge" type=
"" overloaded=
"no">
11917 <autodoc>SetEdge(int edge)
</autodoc>
11919 <param name=
"edge" type=
"wxSashEdgePosition" default=
""/>
11922 <method name=
"GetEdge" type=
"wxSashEdgePosition" overloaded=
"no">
11923 <autodoc>GetEdge() -
> int
</autodoc>
11925 <method name=
"SetDragRect" type=
"" overloaded=
"no">
11926 <autodoc>SetDragRect(Rect rect)
</autodoc>
11928 <param name=
"rect" type=
"Rect" default=
""/>
11931 <method name=
"GetDragRect" type=
"Rect" overloaded=
"no">
11932 <autodoc>GetDragRect() -
> Rect
</autodoc>
11934 <method name=
"SetDragStatus" type=
"" overloaded=
"no">
11935 <autodoc>SetDragStatus(int status)
</autodoc>
11937 <param name=
"status" type=
"wxSashDragStatus" default=
""/>
11940 <method name=
"GetDragStatus" type=
"wxSashDragStatus" overloaded=
"no">
11941 <autodoc>GetDragStatus() -
> int
</autodoc>
11945 EVT_SASH_DRAGGED = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
1 )
11946 EVT_SASH_DRAGGED_RANGE = wx.PyEventBinder( wxEVT_SASH_DRAGGED,
2 )
11949 #---------------------------------------------------------------------------
11951 <class name=
"QueryLayoutInfoEvent" oldname=
"wxQueryLayoutInfoEvent" module=
"windows">
11952 <baseclass name=
"Event"/>
11953 <constructor name=
"QueryLayoutInfoEvent" overloaded=
"no">
11954 <autodoc>__init__(int id=
0) -
> QueryLayoutInfoEvent
</autodoc>
11956 <param name=
"id" type=
"int" default=
"0"/>
11959 <method name=
"SetRequestedLength" type=
"" overloaded=
"no">
11960 <autodoc>SetRequestedLength(int length)
</autodoc>
11962 <param name=
"length" type=
"int" default=
""/>
11965 <method name=
"GetRequestedLength" type=
"int" overloaded=
"no">
11966 <autodoc>GetRequestedLength() -
> int
</autodoc>
11968 <method name=
"SetFlags" type=
"" overloaded=
"no">
11969 <autodoc>SetFlags(int flags)
</autodoc>
11971 <param name=
"flags" type=
"int" default=
""/>
11974 <method name=
"GetFlags" type=
"int" overloaded=
"no">
11975 <autodoc>GetFlags() -
> int
</autodoc>
11977 <method name=
"SetSize" type=
"" overloaded=
"no">
11978 <autodoc>SetSize(Size size)
</autodoc>
11980 <param name=
"size" type=
"Size" default=
""/>
11983 <method name=
"GetSize" type=
"Size" overloaded=
"no">
11984 <autodoc>GetSize() -
> Size
</autodoc>
11986 <method name=
"SetOrientation" type=
"" overloaded=
"no">
11987 <autodoc>SetOrientation(int orient)
</autodoc>
11989 <param name=
"orient" type=
"wxLayoutOrientation" default=
""/>
11992 <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no">
11993 <autodoc>GetOrientation() -
> int
</autodoc>
11995 <method name=
"SetAlignment" type=
"" overloaded=
"no">
11996 <autodoc>SetAlignment(int align)
</autodoc>
11998 <param name=
"align" type=
"wxLayoutAlignment" default=
""/>
12001 <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no">
12002 <autodoc>GetAlignment() -
> int
</autodoc>
12005 <class name=
"CalculateLayoutEvent" oldname=
"wxCalculateLayoutEvent" module=
"windows">
12006 <baseclass name=
"Event"/>
12007 <constructor name=
"CalculateLayoutEvent" overloaded=
"no">
12008 <autodoc>__init__(int id=
0) -
> CalculateLayoutEvent
</autodoc>
12010 <param name=
"id" type=
"int" default=
"0"/>
12013 <method name=
"SetFlags" type=
"" overloaded=
"no">
12014 <autodoc>SetFlags(int flags)
</autodoc>
12016 <param name=
"flags" type=
"int" default=
""/>
12019 <method name=
"GetFlags" type=
"int" overloaded=
"no">
12020 <autodoc>GetFlags() -
> int
</autodoc>
12022 <method name=
"SetRect" type=
"" overloaded=
"no">
12023 <autodoc>SetRect(Rect rect)
</autodoc>
12025 <param name=
"rect" type=
"Rect" default=
""/>
12028 <method name=
"GetRect" type=
"Rect" overloaded=
"no">
12029 <autodoc>GetRect() -
> Rect
</autodoc>
12033 EVT_QUERY_LAYOUT_INFO = wx.PyEventBinder( wxEVT_QUERY_LAYOUT_INFO )
12034 EVT_CALCULATE_LAYOUT = wx.PyEventBinder( wxEVT_CALCULATE_LAYOUT )
12036 <class name=
"SashLayoutWindow" oldname=
"wxSashLayoutWindow" module=
"windows">
12037 <baseclass name=
"SashWindow"/>
12038 <constructor name=
"SashLayoutWindow" overloaded=
"no">
12039 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12040 long style=wxCLIP_CHILDREN|wxSW_3D,
12041 String name=SashLayoutNameStr) -
> SashLayoutWindow
</autodoc>
12043 <param name=
"parent" type=
"Window" default=
""/>
12044 <param name=
"id" type=
"int" default=
""/>
12045 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12046 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12047 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
12048 <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/>
12051 <constructor name=
"PreSashLayoutWindow" overloaded=
"no">
12052 <autodoc>PreSashLayoutWindow() -
> SashLayoutWindow
</autodoc>
12054 <method name=
"Create" type=
"bool" overloaded=
"no">
12055 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
12056 long style=wxCLIP_CHILDREN|wxSW_3D,
12057 String name=SashLayoutNameStr) -
> bool
</autodoc>
12059 <param name=
"parent" type=
"Window" default=
""/>
12060 <param name=
"id" type=
"int" default=
""/>
12061 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12062 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12063 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxSW_3D"/>
12064 <param name=
"name" type=
"String" default=
"wxPySashLayoutNameStr"/>
12067 <method name=
"GetAlignment" type=
"wxLayoutAlignment" overloaded=
"no">
12068 <autodoc>GetAlignment() -
> int
</autodoc>
12070 <method name=
"GetOrientation" type=
"wxLayoutOrientation" overloaded=
"no">
12071 <autodoc>GetOrientation() -
> int
</autodoc>
12073 <method name=
"SetAlignment" type=
"" overloaded=
"no">
12074 <autodoc>SetAlignment(int alignment)
</autodoc>
12076 <param name=
"alignment" type=
"wxLayoutAlignment" default=
""/>
12079 <method name=
"SetDefaultSize" type=
"" overloaded=
"no">
12080 <autodoc>SetDefaultSize(Size size)
</autodoc>
12082 <param name=
"size" type=
"Size" default=
""/>
12085 <method name=
"SetOrientation" type=
"" overloaded=
"no">
12086 <autodoc>SetOrientation(int orientation)
</autodoc>
12088 <param name=
"orientation" type=
"wxLayoutOrientation" default=
""/>
12092 <class name=
"LayoutAlgorithm" oldname=
"wxLayoutAlgorithm" module=
"windows">
12093 <baseclass name=
"Object"/>
12094 <constructor name=
"LayoutAlgorithm" overloaded=
"no">
12095 <autodoc>__init__() -
> LayoutAlgorithm
</autodoc>
12097 <destructor name=
"~wxLayoutAlgorithm" overloaded=
"no">
12098 <autodoc>__del__()
</autodoc>
12100 <method name=
"LayoutMDIFrame" type=
"bool" overloaded=
"no">
12101 <autodoc>LayoutMDIFrame(MDIParentFrame frame, Rect rect=None) -
> bool
</autodoc>
12103 <param name=
"frame" type=
"wxMDIParentFrame" default=
""/>
12104 <param name=
"rect" type=
"Rect" default=
"NULL"/>
12107 <method name=
"LayoutFrame" type=
"bool" overloaded=
"no">
12108 <autodoc>LayoutFrame(Frame frame, Window mainWindow=None) -
> bool
</autodoc>
12110 <param name=
"frame" type=
"Frame" default=
""/>
12111 <param name=
"mainWindow" type=
"Window" default=
"NULL"/>
12114 <method name=
"LayoutWindow" type=
"bool" overloaded=
"no">
12115 <autodoc>LayoutWindow(Window parent, Window mainWindow=None) -
> bool
</autodoc>
12117 <param name=
"parent" type=
"Window" default=
""/>
12118 <param name=
"mainWindow" type=
"Window" default=
"NULL"/>
12123 #---------------------------------------------------------------------------
12125 <class name=
"PopupWindow" oldname=
"wxPopupWindow" module=
"windows">
12126 <baseclass name=
"Window"/>
12127 <constructor name=
"PopupWindow" overloaded=
"no">
12128 <autodoc>__init__(Window parent, int flags=BORDER_NONE) -
> PopupWindow
</autodoc>
12130 <param name=
"parent" type=
"Window" default=
""/>
12131 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
12134 <constructor name=
"PrePopupWindow" overloaded=
"no">
12135 <autodoc>PrePopupWindow() -
> PopupWindow
</autodoc>
12137 <method name=
"Create" type=
"bool" overloaded=
"no">
12138 <autodoc>Create(Window parent, int flags=BORDER_NONE) -
> bool
</autodoc>
12140 <param name=
"parent" type=
"Window" default=
""/>
12141 <param name=
"flags" type=
"int" default=
"wxBORDER_NONE"/>
12144 <method name=
"Position" type=
"" overloaded=
"no">
12145 <autodoc>Position(Point ptOrigin, Size size)
</autodoc>
12147 <param name=
"ptOrigin" type=
"Point" default=
""/>
12148 <param name=
"size" type=
"Size" default=
""/>
12153 #---------------------------------------------------------------------------
12155 <class name=
"PopupTransientWindow" oldname=
"wxPyPopupTransientWindow" module=
"windows">
12156 <baseclass name=
"PopupWindow"/>
12157 <constructor name=
"wxPyPopupTransientWindow" overloaded=
"no">
12158 <autodoc>__init__(Window parent, int style=BORDER_NONE) -
> PopupTransientWindow
</autodoc>
12160 <param name=
"parent" type=
"Window" default=
""/>
12161 <param name=
"style" type=
"int" default=
"wxBORDER_NONE"/>
12164 <constructor name=
"PrePopupTransientWindow" overloaded=
"no">
12165 <autodoc>PrePopupTransientWindow() -
> PopupTransientWindow
</autodoc>
12167 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12168 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12170 <param name=
"self" type=
"PyObject" default=
""/>
12171 <param name=
"_class" type=
"PyObject" default=
""/>
12174 <method name=
"Popup" type=
"" overloaded=
"no">
12175 <autodoc>Popup(Window focus=None)
</autodoc>
12177 <param name=
"focus" type=
"Window" default=
"NULL"/>
12180 <method name=
"Dismiss" type=
"" overloaded=
"no">
12181 <autodoc>Dismiss()
</autodoc>
12185 #---------------------------------------------------------------------------
12187 <class name=
"TipWindow" oldname=
"wxTipWindow" module=
"windows">
12188 <baseclass name=
"PopupTransientWindow"/>
12189 <constructor name=
"TipWindow" overloaded=
"no">
12190 <autodoc>__init__(Window parent, String text, int maxLength=
100, Rect rectBound=None) -
> TipWindow
</autodoc>
12192 <param name=
"parent" type=
"Window" default=
""/>
12193 <param name=
"text" type=
"String" default=
""/>
12194 <param name=
"maxLength" type=
"int" default=
"100"/>
12195 <param name=
"rectBound" type=
"Rect" default=
"NULL"/>
12198 <method name=
"SetBoundingRect" type=
"" overloaded=
"no">
12199 <autodoc>SetBoundingRect(Rect rectBound)
</autodoc>
12201 <param name=
"rectBound" type=
"Rect" default=
""/>
12204 <method name=
"Close" type=
"" overloaded=
"no">
12205 <autodoc>Close()
</autodoc>
12209 #---------------------------------------------------------------------------
12211 <class name=
"VScrolledWindow" oldname=
"wxPyVScrolledWindow" module=
"windows">
12212 <baseclass name=
"Panel"/>
12213 <constructor name=
"wxPyVScrolledWindow" overloaded=
"no">
12214 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12215 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> VScrolledWindow
</autodoc>
12217 <param name=
"parent" type=
"Window" default=
""/>
12218 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12219 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12220 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12221 <param name=
"style" type=
"long" default=
"0"/>
12222 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
12225 <constructor name=
"PreVScrolledWindow" overloaded=
"no">
12226 <autodoc>PreVScrolledWindow() -
> VScrolledWindow
</autodoc>
12228 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12229 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12231 <param name=
"self" type=
"PyObject" default=
""/>
12232 <param name=
"_class" type=
"PyObject" default=
""/>
12235 <method name=
"Create" type=
"bool" overloaded=
"no">
12236 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12237 Size size=DefaultSize, long style=
0, String name=PanelNameStr) -
> bool
</autodoc>
12239 <param name=
"parent" type=
"Window" default=
""/>
12240 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12241 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12242 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12243 <param name=
"style" type=
"long" default=
"0"/>
12244 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
12247 <method name=
"SetLineCount" type=
"" overloaded=
"no">
12248 <autodoc>SetLineCount(size_t count)
</autodoc>
12250 <param name=
"count" type=
"size_t" default=
""/>
12253 <method name=
"ScrollToLine" type=
"bool" overloaded=
"no">
12254 <autodoc>ScrollToLine(size_t line) -
> bool
</autodoc>
12256 <param name=
"line" type=
"size_t" default=
""/>
12259 <method name=
"ScrollLines" type=
"bool" overloaded=
"no">
12260 <autodoc>ScrollLines(int lines) -
> bool
</autodoc>
12261 <docstring>If the platform and window class supports it, scrolls the window by
12262 the given number of lines down, if lines is positive, or up if lines
12263 is negative. Returns True if the window was scrolled, False if it was
12264 already on top/bottom and nothing was done.
</docstring>
12266 <param name=
"lines" type=
"int" default=
""/>
12269 <method name=
"ScrollPages" type=
"bool" overloaded=
"no">
12270 <autodoc>ScrollPages(int pages) -
> bool
</autodoc>
12271 <docstring>If the platform and window class supports it, scrolls the window by
12272 the given number of pages down, if pages is positive, or up if pages
12273 is negative. Returns True if the window was scrolled, False if it was
12274 already on top/bottom and nothing was done.
</docstring>
12276 <param name=
"pages" type=
"int" default=
""/>
12279 <method name=
"RefreshLine" type=
"" overloaded=
"no">
12280 <autodoc>RefreshLine(size_t line)
</autodoc>
12282 <param name=
"line" type=
"size_t" default=
""/>
12285 <method name=
"RefreshLines" type=
"" overloaded=
"no">
12286 <autodoc>RefreshLines(size_t from, size_t to)
</autodoc>
12288 <param name=
"from" type=
"size_t" default=
""/>
12289 <param name=
"to" type=
"size_t" default=
""/>
12292 <method name=
"HitTestXT" type=
"int" overloaded=
"no">
12293 <autodoc>HitTestXT(int x, int y) -
> int
</autodoc>
12294 <docstring>Test where the given (in client coords) point lies
</docstring>
12296 <param name=
"x" type=
"int" default=
""/>
12297 <param name=
"y" type=
"int" default=
""/>
12300 <method name=
"HitTest" type=
"int" overloaded=
"no">
12301 <autodoc>HitTest(Point pt) -
> int
</autodoc>
12302 <docstring>Test where the given (in client coords) point lies
</docstring>
12304 <param name=
"pt" type=
"Point" default=
""/>
12307 <method name=
"RefreshAll" type=
"" overloaded=
"no">
12308 <autodoc>RefreshAll()
</autodoc>
12310 <method name=
"GetLineCount" type=
"size_t" overloaded=
"no">
12311 <autodoc>GetLineCount() -
> size_t
</autodoc>
12313 <method name=
"GetFirstVisibleLine" type=
"size_t" overloaded=
"no">
12314 <autodoc>GetFirstVisibleLine() -
> size_t
</autodoc>
12316 <method name=
"GetLastVisibleLine" type=
"size_t" overloaded=
"no">
12317 <autodoc>GetLastVisibleLine() -
> size_t
</autodoc>
12319 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
12320 <autodoc>IsVisible(size_t line) -
> bool
</autodoc>
12322 <param name=
"line" type=
"size_t" default=
""/>
12326 <class name=
"VListBox" oldname=
"wxPyVListBox" module=
"windows">
12327 <baseclass name=
"VScrolledWindow"/>
12328 <constructor name=
"wxPyVListBox" overloaded=
"no">
12329 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12330 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> VListBox
</autodoc>
12332 <param name=
"parent" type=
"Window" default=
""/>
12333 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12334 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12335 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12336 <param name=
"style" type=
"long" default=
"0"/>
12337 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12340 <constructor name=
"PreVListBox" overloaded=
"no">
12341 <autodoc>PreVListBox() -
> VListBox
</autodoc>
12343 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12344 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12346 <param name=
"self" type=
"PyObject" default=
""/>
12347 <param name=
"_class" type=
"PyObject" default=
""/>
12350 <method name=
"Create" type=
"bool" overloaded=
"no">
12351 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12352 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
12354 <param name=
"parent" type=
"Window" default=
""/>
12355 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12356 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12357 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12358 <param name=
"style" type=
"long" default=
"0"/>
12359 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12362 <method name=
"GetItemCount" type=
"size_t" overloaded=
"no">
12363 <autodoc>GetItemCount() -
> size_t
</autodoc>
12365 <method name=
"HasMultipleSelection" type=
"bool" overloaded=
"no">
12366 <autodoc>HasMultipleSelection() -
> bool
</autodoc>
12368 <method name=
"GetSelection" type=
"int" overloaded=
"no">
12369 <autodoc>GetSelection() -
> int
</autodoc>
12371 <method name=
"IsCurrent" type=
"bool" overloaded=
"no">
12372 <autodoc>IsCurrent(size_t item) -
> bool
</autodoc>
12374 <param name=
"item" type=
"size_t" default=
""/>
12377 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
12378 <autodoc>IsSelected(size_t item) -
> bool
</autodoc>
12380 <param name=
"item" type=
"size_t" default=
""/>
12383 <method name=
"GetSelectedCount" type=
"size_t" overloaded=
"no">
12384 <autodoc>GetSelectedCount() -
> size_t
</autodoc>
12386 <method name=
"GetFirstSelected" type=
"int" overloaded=
"no">
12387 <autodoc>GetFirstSelected(unsigned long cookie) -
> int
</autodoc>
12389 <param name=
"cookie" type=
"unsigned long" default=
""/>
12392 <method name=
"GetNextSelected" type=
"int" overloaded=
"no">
12393 <autodoc>GetNextSelected(unsigned long cookie) -
> int
</autodoc>
12395 <param name=
"cookie" type=
"unsigned long" default=
""/>
12398 <method name=
"GetMargins" type=
"Point" overloaded=
"no">
12399 <autodoc>GetMargins() -
> Point
</autodoc>
12401 <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no">
12402 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
12404 <method name=
"SetItemCount" type=
"" overloaded=
"no">
12405 <autodoc>SetItemCount(size_t count)
</autodoc>
12407 <param name=
"count" type=
"size_t" default=
""/>
12410 <method name=
"Clear" type=
"" overloaded=
"no">
12411 <autodoc>Clear()
</autodoc>
12413 <method name=
"SetSelection" type=
"" overloaded=
"no">
12414 <autodoc>SetSelection(int selection)
</autodoc>
12416 <param name=
"selection" type=
"int" default=
""/>
12419 <method name=
"Select" type=
"bool" overloaded=
"no">
12420 <autodoc>Select(size_t item, bool select=True) -
> bool
</autodoc>
12422 <param name=
"item" type=
"size_t" default=
""/>
12423 <param name=
"select" type=
"bool" default=
"True"/>
12426 <method name=
"SelectRange" type=
"bool" overloaded=
"no">
12427 <autodoc>SelectRange(size_t from, size_t to) -
> bool
</autodoc>
12429 <param name=
"from" type=
"size_t" default=
""/>
12430 <param name=
"to" type=
"size_t" default=
""/>
12433 <method name=
"Toggle" type=
"" overloaded=
"no">
12434 <autodoc>Toggle(size_t item)
</autodoc>
12436 <param name=
"item" type=
"size_t" default=
""/>
12439 <method name=
"SelectAll" type=
"bool" overloaded=
"no">
12440 <autodoc>SelectAll() -
> bool
</autodoc>
12442 <method name=
"DeselectAll" type=
"bool" overloaded=
"no">
12443 <autodoc>DeselectAll() -
> bool
</autodoc>
12445 <method name=
"SetMargins" type=
"" overloaded=
"no">
12446 <autodoc>SetMargins(Point pt)
</autodoc>
12448 <param name=
"pt" type=
"Point" default=
""/>
12451 <method name=
"SetMarginsXY" type=
"" overloaded=
"no">
12452 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
12454 <param name=
"x" type=
"int" default=
""/>
12455 <param name=
"y" type=
"int" default=
""/>
12458 <method name=
"SetSelectionBackground" type=
"" overloaded=
"no">
12459 <autodoc>SetSelectionBackground(Colour col)
</autodoc>
12461 <param name=
"col" type=
"Colour" default=
""/>
12465 <class name=
"HtmlListBox" oldname=
"wxPyHtmlListBox" module=
"windows">
12466 <baseclass name=
"VListBox"/>
12467 <constructor name=
"wxPyHtmlListBox" overloaded=
"no">
12468 <autodoc>__init__(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12469 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> HtmlListBox
</autodoc>
12471 <param name=
"parent" type=
"Window" default=
""/>
12472 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12473 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12474 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12475 <param name=
"style" type=
"long" default=
"0"/>
12476 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12479 <constructor name=
"PreHtmlListBox" overloaded=
"no">
12480 <autodoc>PreHtmlListBox() -
> HtmlListBox
</autodoc>
12482 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
12483 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
12485 <param name=
"self" type=
"PyObject" default=
""/>
12486 <param name=
"_class" type=
"PyObject" default=
""/>
12489 <method name=
"Create" type=
"bool" overloaded=
"no">
12490 <autodoc>Create(Window parent, int id=ID_ANY, Point pos=DefaultPosition,
12491 Size size=DefaultSize, long style=
0, String name=VListBoxNameStr) -
> bool
</autodoc>
12493 <param name=
"parent" type=
"Window" default=
""/>
12494 <param name=
"id" type=
"int" default=
"wxID_ANY"/>
12495 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12496 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12497 <param name=
"style" type=
"long" default=
"0"/>
12498 <param name=
"name" type=
"String" default=
"wxPyVListBoxNameStr"/>
12501 <method name=
"RefreshAll" type=
"" overloaded=
"no">
12502 <autodoc>RefreshAll()
</autodoc>
12504 <method name=
"SetItemCount" type=
"" overloaded=
"no">
12505 <autodoc>SetItemCount(size_t count)
</autodoc>
12507 <param name=
"count" type=
"size_t" default=
""/>
12512 #---------------------------------------------------------------------------
12514 <class name=
"TaskBarIcon" oldname=
"wxTaskBarIcon" module=
"windows">
12515 <baseclass name=
"EvtHandler"/>
12516 <constructor name=
"TaskBarIcon" overloaded=
"no">
12517 <autodoc>__init__() -
> TaskBarIcon
</autodoc>
12519 <destructor name=
"~wxTaskBarIcon" overloaded=
"no">
12520 <autodoc>__del__()
</autodoc>
12522 <method name=
"IsOk" type=
"bool" overloaded=
"no">
12523 <autodoc>IsOk() -
> bool
</autodoc>
12525 <method name=
"IsIconInstalled" type=
"bool" overloaded=
"no">
12526 <autodoc>IsIconInstalled() -
> bool
</autodoc>
12528 <method name=
"SetIcon" type=
"bool" overloaded=
"no">
12529 <autodoc>SetIcon(Icon icon, String tooltip=EmptyString) -
> bool
</autodoc>
12531 <param name=
"icon" type=
"Icon" default=
""/>
12532 <param name=
"tooltip" type=
"String" default=
"wxPyEmptyString"/>
12535 <method name=
"RemoveIcon" type=
"bool" overloaded=
"no">
12536 <autodoc>RemoveIcon() -
> bool
</autodoc>
12538 <method name=
"PopupMenu" type=
"bool" overloaded=
"no">
12539 <autodoc>PopupMenu(Menu menu) -
> bool
</autodoc>
12541 <param name=
"menu" type=
"Menu" default=
""/>
12545 <class name=
"TaskBarIconEvent" oldname=
"wxTaskBarIconEvent" module=
"windows">
12546 <baseclass name=
"Event"/>
12547 <constructor name=
"TaskBarIconEvent" overloaded=
"no">
12548 <autodoc>__init__(wxEventType evtType, TaskBarIcon tbIcon) -
> TaskBarIconEvent
</autodoc>
12550 <param name=
"evtType" type=
"wxEventType" default=
""/>
12551 <param name=
"tbIcon" type=
"TaskBarIcon" default=
""/>
12556 EVT_TASKBAR_MOVE = wx.PyEventBinder ( wxEVT_TASKBAR_MOVE )
12557 EVT_TASKBAR_LEFT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DOWN )
12558 EVT_TASKBAR_LEFT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_UP )
12559 EVT_TASKBAR_RIGHT_DOWN = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DOWN )
12560 EVT_TASKBAR_RIGHT_UP = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_UP )
12561 EVT_TASKBAR_LEFT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_LEFT_DCLICK )
12562 EVT_TASKBAR_RIGHT_DCLICK = wx.PyEventBinder ( wxEVT_TASKBAR_RIGHT_DCLICK )
12565 #---------------------------------------------------------------------------
12567 <class name=
"ColourData" oldname=
"wxColourData" module=
"windows">
12568 <docstring>This class holds a variety of information related to colour dialogs.
</docstring>
12569 <baseclass name=
"Object"/>
12570 <constructor name=
"ColourData" overloaded=
"no">
12571 <autodoc>__init__() -
> ColourData
</autodoc>
12572 <docstring>Constructor, sets default values.
</docstring>
12574 <destructor name=
"~wxColourData" overloaded=
"no">
12575 <autodoc>__del__()
</autodoc>
12577 <method name=
"GetChooseFull" type=
"bool" overloaded=
"no">
12578 <autodoc>GetChooseFull() -
> bool
</autodoc>
12579 <docstring>Under Windows, determines whether the Windows colour dialog will display
12580 the full dialog with custom colour selection controls. Has no meaning
12581 under other platforms. The default value is true.
</docstring>
12583 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
12584 <autodoc>GetColour() -
> Colour
</autodoc>
12585 <docstring>Gets the colour (pre)selected by the dialog.
</docstring>
12587 <method name=
"GetCustomColour" type=
"Colour" overloaded=
"no">
12588 <autodoc>GetCustomColour(int i) -
> Colour
</autodoc>
12589 <docstring>Gets the i'th custom colour associated with the colour dialog. i should
12590 be an integer between
0 and
15. The default custom colours are all white.
</docstring>
12592 <param name=
"i" type=
"int" default=
""/>
12595 <method name=
"SetChooseFull" type=
"" overloaded=
"no">
12596 <autodoc>SetChooseFull(int flag)
</autodoc>
12597 <docstring>Under Windows, tells the Windows colour dialog to display the full dialog
12598 with custom colour selection controls. Under other platforms, has no effect.
12599 The default value is true.
</docstring>
12601 <param name=
"flag" type=
"int" default=
""/>
12604 <method name=
"SetColour" type=
"" overloaded=
"no">
12605 <autodoc>SetColour(Colour colour)
</autodoc>
12606 <docstring>Sets the default colour for the colour dialog. The default colour is black.
</docstring>
12608 <param name=
"colour" type=
"Colour" default=
""/>
12611 <method name=
"SetCustomColour" type=
"" overloaded=
"no">
12612 <autodoc>SetCustomColour(int i, Colour colour)
</autodoc>
12613 <docstring>Sets the i'th custom colour for the colour dialog. i should be an integer
12614 between
0 and
15. The default custom colours are all white.
</docstring>
12616 <param name=
"i" type=
"int" default=
""/>
12617 <param name=
"colour" type=
"Colour" default=
""/>
12621 <class name=
"ColourDialog" oldname=
"wxColourDialog" module=
"windows">
12622 <docstring>This class represents the colour chooser dialog.
</docstring>
12623 <baseclass name=
"Dialog"/>
12624 <constructor name=
"ColourDialog" overloaded=
"no">
12625 <autodoc>__init__(Window parent, ColourData data=None) -
> ColourDialog
</autodoc>
12626 <docstring>Constructor. Pass a parent window, and optionally a ColourData, which
12627 will be copied to the colour dialog's internal ColourData instance.
</docstring>
12629 <param name=
"parent" type=
"Window" default=
""/>
12630 <param name=
"data" type=
"ColourData" default=
"NULL"/>
12633 <method name=
"GetColourData" type=
"ColourData" overloaded=
"no">
12634 <autodoc>GetColourData() -
> ColourData
</autodoc>
12635 <docstring>Returns a reference to the ColourData used by the dialog.
</docstring>
12638 <class name=
"DirDialog" oldname=
"wxDirDialog" module=
"windows">
12639 <docstring>This class represents the directory chooser dialog.
</docstring>
12642 wxDD_NEW_DIR_BUTTON Add "Create new directory" button and allow
12643 directory names to be editable. On Windows the new
12644 directory button is only available with recent
12645 versions of the common dialogs.
</refdoc>
12646 <baseclass name=
"Dialog"/>
12647 <constructor name=
"DirDialog" overloaded=
"no">
12648 <autodoc>__init__(Window parent, String message=DirSelectorPromptStr,
12649 String defaultPath=EmptyString, long style=
0,
12650 Point pos=DefaultPosition, Size size=DefaultSize,
12651 String name=DirDialogNameStr) -
> DirDialog
</autodoc>
12652 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12655 wxDD_NEW_DIR_BUTTON Add "Create new directory" button and allow
12656 directory names to be editable. On Windows the new
12657 directory button is only available with recent
12658 versions of the common dialogs.
</refdoc>
12660 <param name=
"parent" type=
"Window" default=
""/>
12661 <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/>
12662 <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/>
12663 <param name=
"style" type=
"long" default=
"0"/>
12664 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12665 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
12666 <param name=
"name" type=
"String" default=
"wxPyDirDialogNameStr"/>
12669 <method name=
"GetPath" type=
"String" overloaded=
"no">
12670 <autodoc>GetPath() -
> String
</autodoc>
12671 <docstring>Returns the default or user-selected path.
</docstring>
12673 <method name=
"GetMessage" type=
"String" overloaded=
"no">
12674 <autodoc>GetMessage() -
> String
</autodoc>
12675 <docstring>Returns the message that will be displayed on the dialog.
</docstring>
12677 <method name=
"GetStyle" type=
"long" overloaded=
"no">
12678 <autodoc>GetStyle() -
> long
</autodoc>
12679 <docstring>Returns the dialog style.
</docstring>
12681 <method name=
"SetMessage" type=
"" overloaded=
"no">
12682 <autodoc>SetMessage(String message)
</autodoc>
12683 <docstring>Sets the message that will be displayed on the dialog.
</docstring>
12685 <param name=
"message" type=
"String" default=
""/>
12688 <method name=
"SetPath" type=
"" overloaded=
"no">
12689 <autodoc>SetPath(String path)
</autodoc>
12690 <docstring>Sets the default path.
</docstring>
12692 <param name=
"path" type=
"String" default=
""/>
12696 <class name=
"FileDialog" oldname=
"wxFileDialog" module=
"windows">
12697 <docstring>This class represents the file chooser dialog.
</docstring>
12699 In Windows, this is the common file selector dialog. In X, this is a file
12700 selector box with somewhat less functionality. The path and filename are
12701 distinct elements of a full file pathname. If path is "", the current
12702 directory will be used. If filename is "", no default filename will be
12703 supplied. The wildcard determines what files are displayed in the file
12704 selector, and file extension supplies a type extension for the required
12707 Both the X and Windows versions implement a wildcard filter. Typing a filename
12708 containing wildcards (*, ?) in the filename text item, and clicking on Ok,
12709 will result in only those files matching the pattern being displayed. The
12710 wildcard may be a specification for multiple types of file with a description
12713 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
12716 wx.OPEN This is an open dialog.
12718 wx.SAVE This is a save dialog.
12720 wx.HIDE_READONLY For open dialog only: hide the checkbox allowing to
12721 open the file in read-only mode.
12723 wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation if a
12724 file will be overwritten.
12726 wx.MULTIPLE For open dialog only: allows selecting multiple files.
12728 wx.CHANGE_DIR Change the current working directory to the directory
12729 where the file(s) chosen by the user are.
12731 <baseclass name=
"Dialog"/>
12732 <constructor name=
"FileDialog" overloaded=
"no">
12733 <autodoc>__init__(Window parent, String message=FileSelectorPromptStr,
12734 String defaultDir=EmptyString, String defaultFile=EmptyString,
12735 String wildcard=FileSelectorDefaultWildcardStr,
12736 long style=
0, Point pos=DefaultPosition) -
> FileDialog
</autodoc>
12737 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12739 In Windows, this is the common file selector dialog. In X, this is a file
12740 selector box with somewhat less functionality. The path and filename are
12741 distinct elements of a full file pathname. If path is "", the current
12742 directory will be used. If filename is "", no default filename will be
12743 supplied. The wildcard determines what files are displayed in the file
12744 selector, and file extension supplies a type extension for the required
12747 Both the X and Windows versions implement a wildcard filter. Typing a filename
12748 containing wildcards (*, ?) in the filename text item, and clicking on Ok,
12749 will result in only those files matching the pattern being displayed. The
12750 wildcard may be a specification for multiple types of file with a description
12753 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
12756 wx.OPEN This is an open dialog.
12758 wx.SAVE This is a save dialog.
12760 wx.HIDE_READONLY For open dialog only: hide the checkbox allowing to
12761 open the file in read-only mode.
12763 wx.OVERWRITE_PROMPT For save dialog only: prompt for a confirmation if a
12764 file will be overwritten.
12766 wx.MULTIPLE For open dialog only: allows selecting multiple files.
12768 wx.CHANGE_DIR Change the current working directory to the directory
12769 where the file(s) chosen by the user are.
12772 <param name=
"parent" type=
"Window" default=
""/>
12773 <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/>
12774 <param name=
"defaultDir" type=
"String" default=
"wxPyEmptyString"/>
12775 <param name=
"defaultFile" type=
"String" default=
"wxPyEmptyString"/>
12776 <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/>
12777 <param name=
"style" type=
"long" default=
"0"/>
12778 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12781 <method name=
"SetMessage" type=
"" overloaded=
"no">
12782 <autodoc>SetMessage(String message)
</autodoc>
12783 <docstring>Sets the message that will be displayed on the dialog.
</docstring>
12785 <param name=
"message" type=
"String" default=
""/>
12788 <method name=
"SetPath" type=
"" overloaded=
"no">
12789 <autodoc>SetPath(String path)
</autodoc>
12790 <docstring>Sets the path (the combined directory and filename that will
12791 be returned when the dialog is dismissed).
</docstring>
12793 <param name=
"path" type=
"String" default=
""/>
12796 <method name=
"SetDirectory" type=
"" overloaded=
"no">
12797 <autodoc>SetDirectory(String dir)
</autodoc>
12798 <docstring>Sets the default directory.
</docstring>
12800 <param name=
"dir" type=
"String" default=
""/>
12803 <method name=
"SetFilename" type=
"" overloaded=
"no">
12804 <autodoc>SetFilename(String name)
</autodoc>
12805 <docstring>Sets the default filename.
</docstring>
12807 <param name=
"name" type=
"String" default=
""/>
12810 <method name=
"SetWildcard" type=
"" overloaded=
"no">
12811 <autodoc>SetWildcard(String wildCard)
</autodoc>
12812 <docstring>Sets the wildcard, which can contain multiple file types, for example:
12813 "BMP files (*.bmp)|*.bmp|GIF files (*.gif)|*.gif"
</docstring>
12815 <param name=
"wildCard" type=
"String" default=
""/>
12818 <method name=
"SetStyle" type=
"" overloaded=
"no">
12819 <autodoc>SetStyle(long style)
</autodoc>
12820 <docstring>Sets the dialog style.
</docstring>
12822 <param name=
"style" type=
"long" default=
""/>
12825 <method name=
"SetFilterIndex" type=
"" overloaded=
"no">
12826 <autodoc>SetFilterIndex(int filterIndex)
</autodoc>
12827 <docstring>Sets the default filter index, starting from zero.
</docstring>
12829 <param name=
"filterIndex" type=
"int" default=
""/>
12832 <method name=
"GetMessage" type=
"String" overloaded=
"no">
12833 <autodoc>GetMessage() -
> String
</autodoc>
12834 <docstring>Returns the message that will be displayed on the dialog.
</docstring>
12836 <method name=
"GetPath" type=
"String" overloaded=
"no">
12837 <autodoc>GetPath() -
> String
</autodoc>
12838 <docstring>Returns the full path (directory and filename) of the selected file.
</docstring>
12840 <method name=
"GetDirectory" type=
"String" overloaded=
"no">
12841 <autodoc>GetDirectory() -
> String
</autodoc>
12842 <docstring>Returns the default directory.
</docstring>
12844 <method name=
"GetFilename" type=
"String" overloaded=
"no">
12845 <autodoc>GetFilename() -
> String
</autodoc>
12846 <docstring>Returns the default filename.
</docstring>
12848 <method name=
"GetWildcard" type=
"String" overloaded=
"no">
12849 <autodoc>GetWildcard() -
> String
</autodoc>
12850 <docstring>Returns the file dialog wildcard.
</docstring>
12852 <method name=
"GetStyle" type=
"long" overloaded=
"no">
12853 <autodoc>GetStyle() -
> long
</autodoc>
12854 <docstring>Returns the dialog style.
</docstring>
12856 <method name=
"GetFilterIndex" type=
"int" overloaded=
"no">
12857 <autodoc>GetFilterIndex() -
> int
</autodoc>
12858 <docstring>Returns the index into the list of filters supplied, optionally, in
12859 the wildcard parameter. Before the dialog is shown, this is the index
12860 which will be used when the dialog is first displayed. After the dialog
12861 is shown, this is the index selected by the user.
</docstring>
12863 <method name=
"GetFilenames" type=
"PyObject" overloaded=
"no">
12864 <autodoc>GetFilenames() -
> PyObject
</autodoc>
12865 <docstring>Returns a list of filenames chosen in the dialog. This function should
12866 only be used with the dialogs which have wx.MULTIPLE style, use
12867 GetFilename for the others.
</docstring>
12869 <method name=
"GetPaths" type=
"PyObject" overloaded=
"no">
12870 <autodoc>GetPaths() -
> PyObject
</autodoc>
12871 <docstring>Fills the array paths with the full paths of the files chosen. This
12872 function should only be used with the dialogs which have wx.MULTIPLE style,
12873 use GetPath for the others.
</docstring>
12876 <class name=
"MultiChoiceDialog" oldname=
"wxMultiChoiceDialog" module=
"windows">
12877 <docstring>A simple dialog with a multi selection listbox.
</docstring>
12878 <baseclass name=
"Dialog"/>
12879 <constructor name=
"MultiChoiceDialog" overloaded=
"no">
12880 <autodoc>__init__(Window parent, String message, String caption,
12881 List choices=[], long style=CHOICEDLG_STYLE,
12882 Point pos=DefaultPosition) -
> MultiChoiceDialog
</autodoc>
12883 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12885 <param name=
"parent" type=
"Window" default=
""/>
12886 <param name=
"message" type=
"String" default=
""/>
12887 <param name=
"caption" type=
"String" default=
""/>
12888 <param name=
"choices" type=
"int" default=
"0"/>
12889 <param name=
"choices_array" type=
"String" default=
""/>
12890 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
12891 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12894 <method name=
"SetSelections" type=
"" overloaded=
"no">
12895 <autodoc>SetSelections(List selections)
</autodoc>
12896 <docstring>Specify the items in the list that shoudl be selected, using a list of integers.
</docstring>
12898 <param name=
"selections" type=
"wxArrayInt" default=
""/>
12901 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
12902 <autodoc>GetSelections() -
> [selections]
</autodoc>
12903 <docstring>Returns a list of integers representing the items that are selected.
</docstring>
12906 <class name=
"SingleChoiceDialog" oldname=
"wxSingleChoiceDialog" module=
"windows">
12907 <docstring>A simple dialog with a single selection listbox.
</docstring>
12908 <baseclass name=
"Dialog"/>
12909 <constructor name=
"SingleChoiceDialog" overloaded=
"no">
12910 <autodoc>__init__(Window parent, String message, String caption,
12911 List choices=[], long style=CHOICEDLG_STYLE,
12912 Point pos=DefaultPosition) -
> SingleChoiceDialog
</autodoc>
12913 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12915 <param name=
"parent" type=
"Window" default=
""/>
12916 <param name=
"message" type=
"String" default=
""/>
12917 <param name=
"caption" type=
"String" default=
""/>
12918 <param name=
"choices" type=
"int" default=
""/>
12919 <param name=
"choices_array" type=
"String" default=
""/>
12920 <param name=
"style" type=
"long" default=
"wxCHOICEDLG_STYLE"/>
12921 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12924 <method name=
"GetSelection" type=
"int" overloaded=
"no">
12925 <autodoc>GetSelection() -
> int
</autodoc>
12926 <docstring>Get the index of teh currently selected item.
</docstring>
12928 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
12929 <autodoc>GetStringSelection() -
> String
</autodoc>
12930 <docstring>Returns the string value of the currently selected item
</docstring>
12932 <method name=
"SetSelection" type=
"" overloaded=
"no">
12933 <autodoc>SetSelection(int sel)
</autodoc>
12934 <docstring>Set the current selected item to sel
</docstring>
12936 <param name=
"sel" type=
"int" default=
""/>
12940 <class name=
"TextEntryDialog" oldname=
"wxTextEntryDialog" module=
"windows">
12941 <docstring>A dialog with text control, [ok] and [cancel] buttons
</docstring>
12942 <baseclass name=
"Dialog"/>
12943 <constructor name=
"TextEntryDialog" overloaded=
"no">
12944 <autodoc>__init__(Window parent, String message, String caption=GetTextFromUserPromptStr,
12945 String defaultValue=EmptyString,
12946 long style=wxOK|wxCANCEL|wxCENTRE, Point pos=DefaultPosition) -
> TextEntryDialog
</autodoc>
12947 <docstring>Constructor. Use ShowModal method to show the dialog.
</docstring>
12949 <param name=
"parent" type=
"Window" default=
""/>
12950 <param name=
"message" type=
"String" default=
""/>
12951 <param name=
"caption" type=
"String" default=
"wxPyGetTextFromUserPromptStr"/>
12952 <param name=
"defaultValue" type=
"String" default=
"wxPyEmptyString"/>
12953 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
12954 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
12957 <method name=
"GetValue" type=
"String" overloaded=
"no">
12958 <autodoc>GetValue() -
> String
</autodoc>
12959 <docstring>Returns the text that the user has entered if the user has pressed OK,
12960 or the original value if the user has pressed Cancel.
</docstring>
12962 <method name=
"SetValue" type=
"" overloaded=
"no">
12963 <autodoc>SetValue(String value)
</autodoc>
12964 <docstring>Sets the default text value.
</docstring>
12966 <param name=
"value" type=
"String" default=
""/>
12970 <class name=
"FontData" oldname=
"wxFontData" module=
"windows">
12971 <docstring>This class holds a variety of information related to font dialogs.
</docstring>
12972 <baseclass name=
"Object"/>
12973 <constructor name=
"FontData" overloaded=
"no">
12974 <autodoc>__init__() -
> FontData
</autodoc>
12975 <docstring>This class holds a variety of information related to font dialogs.
</docstring>
12977 <destructor name=
"~wxFontData" overloaded=
"no">
12978 <autodoc>__del__()
</autodoc>
12980 <method name=
"EnableEffects" type=
"" overloaded=
"no">
12981 <autodoc>EnableEffects(bool enable)
</autodoc>
12982 <docstring>Enables or disables 'effects' under MS Windows only. This refers
12983 to the controls for manipulating colour, strikeout and underline
12984 properties. The default value is true.
</docstring>
12986 <param name=
"enable" type=
"bool" default=
""/>
12989 <method name=
"GetAllowSymbols" type=
"bool" overloaded=
"no">
12990 <autodoc>GetAllowSymbols() -
> bool
</autodoc>
12991 <docstring>Under MS Windows, returns a flag determining whether symbol fonts can be
12992 selected. Has no effect on other platforms. The default value is true.
</docstring>
12994 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
12995 <autodoc>GetColour() -
> Colour
</autodoc>
12996 <docstring>Gets the colour associated with the font dialog. The default value is black.
</docstring>
12998 <method name=
"GetChosenFont" type=
"Font" overloaded=
"no">
12999 <autodoc>GetChosenFont() -
> Font
</autodoc>
13000 <docstring>Gets the font chosen by the user.
</docstring>
13002 <method name=
"GetEnableEffects" type=
"bool" overloaded=
"no">
13003 <autodoc>GetEnableEffects() -
> bool
</autodoc>
13004 <docstring>Determines whether 'effects' are enabled under Windows.
</docstring>
13006 <method name=
"GetInitialFont" type=
"Font" overloaded=
"no">
13007 <autodoc>GetInitialFont() -
> Font
</autodoc>
13008 <docstring>Gets the font that will be initially used by the font dialog. This should have
13009 previously been set by the application.
</docstring>
13011 <method name=
"GetShowHelp" type=
"bool" overloaded=
"no">
13012 <autodoc>GetShowHelp() -
> bool
</autodoc>
13013 <docstring>Returns true if the Help button will be shown (Windows only). The default
13014 value is false.
</docstring>
13016 <method name=
"SetAllowSymbols" type=
"" overloaded=
"no">
13017 <autodoc>SetAllowSymbols(bool allowSymbols)
</autodoc>
13018 <docstring>Under MS Windows, determines whether symbol fonts can be selected. Has no
13019 effect on other platforms. The default value is true.
</docstring>
13021 <param name=
"allowSymbols" type=
"bool" default=
""/>
13024 <method name=
"SetChosenFont" type=
"" overloaded=
"no">
13025 <autodoc>SetChosenFont(Font font)
</autodoc>
13026 <docstring>Sets the font that will be returned to the user (for internal use only).
</docstring>
13028 <param name=
"font" type=
"Font" default=
""/>
13031 <method name=
"SetColour" type=
"" overloaded=
"no">
13032 <autodoc>SetColour(Colour colour)
</autodoc>
13033 <docstring>Sets the colour that will be used for the font foreground colour. The default
13034 colour is black.
</docstring>
13036 <param name=
"colour" type=
"Colour" default=
""/>
13039 <method name=
"SetInitialFont" type=
"" overloaded=
"no">
13040 <autodoc>SetInitialFont(Font font)
</autodoc>
13041 <docstring>Sets the font that will be initially used by the font dialog.
</docstring>
13043 <param name=
"font" type=
"Font" default=
""/>
13046 <method name=
"SetRange" type=
"" overloaded=
"no">
13047 <autodoc>SetRange(int min, int max)
</autodoc>
13048 <docstring>Sets the valid range for the font point size (Windows only). The default is
13049 0,
0 (unrestricted range).
</docstring>
13051 <param name=
"min" type=
"int" default=
""/>
13052 <param name=
"max" type=
"int" default=
""/>
13055 <method name=
"SetShowHelp" type=
"" overloaded=
"no">
13056 <autodoc>SetShowHelp(bool showHelp)
</autodoc>
13057 <docstring>Determines whether the Help button will be displayed in the font dialog
13058 (Windows only). The default value is false.
</docstring>
13060 <param name=
"showHelp" type=
"bool" default=
""/>
13064 <class name=
"FontDialog" oldname=
"wxFontDialog" module=
"windows">
13065 <docstring>This class represents the font chooser dialog.
</docstring>
13066 <baseclass name=
"Dialog"/>
13067 <constructor name=
"FontDialog" overloaded=
"no">
13068 <autodoc>__init__(Window parent, FontData data) -
> FontDialog
</autodoc>
13069 <docstring>Constructor. Pass a parent window and the FontData object to be
13070 used to initialize the dialog controls.
</docstring>
13072 <param name=
"parent" type=
"Window" default=
""/>
13073 <param name=
"data" type=
"FontData" default=
""/>
13076 <method name=
"GetFontData" type=
"FontData" overloaded=
"no">
13077 <autodoc>GetFontData() -
> FontData
</autodoc>
13078 <docstring>Returns a reference to the internal FontData used by the FontDialog.
</docstring>
13081 <class name=
"MessageDialog" oldname=
"wxMessageDialog" module=
"windows">
13082 <docstring>This class provides a dialog that shows a single or multi-line message, with
13083 a choice of OK, Yes, No and Cancel buttons.
</docstring>
13086 wx.OK: Show an OK button.
13088 wx.CANCEL: Show a Cancel button.
13090 wx.YES_NO: Show Yes and No buttons.
13092 wx.YES_DEFAULT: Used with wxYES_NO, makes Yes button the default - which is the default behaviour.
13094 wx.NO_DEFAULT: Used with wxYES_NO, makes No button the default.
13096 wx.ICON_EXCLAMATION: Shows an exclamation mark icon.
13098 wx.ICON_HAND: Shows an error icon.
13100 wx.ICON_ERROR: Shows an error icon - the same as wxICON_HAND.
13102 wx.ICON_QUESTION: Shows a question mark icon.
13104 wx.ICON_INFORMATION: Shows an information (i) icon.
13106 wx.STAY_ON_TOP: The message box stays on top of all other window, even those of the other applications (Windows only).
13108 <baseclass name=
"Dialog"/>
13109 <constructor name=
"MessageDialog" overloaded=
"no">
13110 <autodoc>__init__(Window parent, String message, String caption=MessageBoxCaptionStr,
13111 long style=wxOK|wxCANCEL|wxCENTRE,
13112 Point pos=DefaultPosition) -
> MessageDialog
</autodoc>
13113 <docstring>This class provides a dialog that shows a single or multi-line message, with
13114 a choice of OK, Yes, No and Cancel buttons.
</docstring>
13117 wx.OK: Show an OK button.
13119 wx.CANCEL: Show a Cancel button.
13121 wx.YES_NO: Show Yes and No buttons.
13123 wx.YES_DEFAULT: Used with wxYES_NO, makes Yes button the default - which is the default behaviour.
13125 wx.NO_DEFAULT: Used with wxYES_NO, makes No button the default.
13127 wx.ICON_EXCLAMATION: Shows an exclamation mark icon.
13129 wx.ICON_HAND: Shows an error icon.
13131 wx.ICON_ERROR: Shows an error icon - the same as wxICON_HAND.
13133 wx.ICON_QUESTION: Shows a question mark icon.
13135 wx.ICON_INFORMATION: Shows an information (i) icon.
13137 wx.STAY_ON_TOP: The message box stays on top of all other window, even those of the other applications (Windows only).
13140 <param name=
"parent" type=
"Window" default=
""/>
13141 <param name=
"message" type=
"String" default=
""/>
13142 <param name=
"caption" type=
"String" default=
"wxPyMessageBoxCaptionStr"/>
13143 <param name=
"style" type=
"long" default=
"wxOK|wxCANCEL|wxCENTRE"/>
13144 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13148 <class name=
"ProgressDialog" oldname=
"wxProgressDialog" module=
"windows">
13149 <docstring>A dialog that shows a short message and a progress bar. Optionally, it can
13150 display an ABORT button.
</docstring>
13154 wx.PD_APP_MODAL: Make the progress dialog modal. If this flag is
13155 not given, it is only "locally" modal - that is
13156 the input to the parent window is disabled,
13157 but not to the other ones.
13159 wx.PD_AUTO_HIDE: Causes the progress dialog to disappear from screen
13160 as soon as the maximum value of the progress
13161 meter has been reached.
13163 wx.PD_CAN_ABORT: This flag tells the dialog that it should have
13164 a "Cancel" button which the user may press. If
13165 this happens, the next call to Update() will
13168 wx.PD_ELAPSED_TIME: This flag tells the dialog that it should show
13169 elapsed time (since creating the dialog).
13171 wx.PD_ESTIMATED_TIME: This flag tells the dialog that it should show
13174 wx.PD_REMAINING_TIME: This flag tells the dialog that it should show
13177 <baseclass name=
"Frame"/>
13178 <constructor name=
"ProgressDialog" overloaded=
"no">
13179 <autodoc>__init__(String title, String message, int maximum=
100, Window parent=None,
13180 int style=wxPD_AUTO_HIDE|wxPD_APP_MODAL) -
> ProgressDialog
</autodoc>
13181 <docstring>Constructor. Creates the dialog, displays it and disables user input for other
13182 windows, or, if wxPD_APP_MODAL flag is not given, for its parent window only.
</docstring>
13186 wx.PD_APP_MODAL: Make the progress dialog modal. If this flag is
13187 not given, it is only "locally" modal - that is
13188 the input to the parent window is disabled,
13189 but not to the other ones.
13191 wx.PD_AUTO_HIDE: Causes the progress dialog to disappear from screen
13192 as soon as the maximum value of the progress
13193 meter has been reached.
13195 wx.PD_CAN_ABORT: This flag tells the dialog that it should have
13196 a "Cancel" button which the user may press. If
13197 this happens, the next call to Update() will
13200 wx.PD_ELAPSED_TIME: This flag tells the dialog that it should show
13201 elapsed time (since creating the dialog).
13203 wx.PD_ESTIMATED_TIME: This flag tells the dialog that it should show
13206 wx.PD_REMAINING_TIME: This flag tells the dialog that it should show
13210 <param name=
"title" type=
"String" default=
""/>
13211 <param name=
"message" type=
"String" default=
""/>
13212 <param name=
"maximum" type=
"int" default=
"100"/>
13213 <param name=
"parent" type=
"Window" default=
"NULL"/>
13214 <param name=
"style" type=
"int" default=
"wxPD_AUTO_HIDE|wxPD_APP_MODAL"/>
13217 <method name=
"Update" type=
"bool" overloaded=
"no">
13218 <autodoc>Update(int value, String newmsg=EmptyString) -
> bool
</autodoc>
13219 <docstring>Updates the dialog, setting the progress bar to the new value and, if given
13220 changes the message above it. Returns true unless the Cancel button has been
13223 If false is returned, the application can either immediately destroy the
13224 dialog or ask the user for the confirmation and if the abort is not confirmed
13225 the dialog may be resumed with Resume function.
</docstring>
13227 <param name=
"value" type=
"int" default=
""/>
13228 <param name=
"newmsg" type=
"String" default=
"wxPyEmptyString"/>
13231 <method name=
"Resume" type=
"" overloaded=
"no">
13232 <autodoc>Resume()
</autodoc>
13233 <docstring>Can be used to continue with the dialog, after the user had chosen to abort.
</docstring>
13237 EVT_FIND = wx.PyEventBinder( wxEVT_COMMAND_FIND,
1 )
13238 EVT_FIND_NEXT = wx.PyEventBinder( wxEVT_COMMAND_FIND_NEXT,
1 )
13239 EVT_FIND_REPLACE = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE,
1 )
13240 EVT_FIND_REPLACE_ALL = wx.PyEventBinder( wxEVT_COMMAND_FIND_REPLACE_ALL,
1 )
13241 EVT_FIND_CLOSE = wx.PyEventBinder( wxEVT_COMMAND_FIND_CLOSE,
1 )
13243 # For backwards compatibility. Should they be removed?
13244 EVT_COMMAND_FIND = EVT_FIND
13245 EVT_COMMAND_FIND_NEXT = EVT_FIND_NEXT
13246 EVT_COMMAND_FIND_REPLACE = EVT_FIND_REPLACE
13247 EVT_COMMAND_FIND_REPLACE_ALL = EVT_FIND_REPLACE_ALL
13248 EVT_COMMAND_FIND_CLOSE = EVT_FIND_CLOSE
13250 <class name=
"FindDialogEvent" oldname=
"wxFindDialogEvent" module=
"windows">
13251 <docstring>Events for the FindReplaceDialog
</docstring>
13252 <baseclass name=
"CommandEvent"/>
13253 <constructor name=
"FindDialogEvent" overloaded=
"no">
13254 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> FindDialogEvent
</autodoc>
13255 <docstring>Events for the FindReplaceDialog
</docstring>
13257 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
13258 <param name=
"id" type=
"int" default=
"0"/>
13261 <method name=
"GetFlags" type=
"int" overloaded=
"no">
13262 <autodoc>GetFlags() -
> int
</autodoc>
13263 <docstring>Get the currently selected flags: this is the combination of
13264 wx.FR_DOWN, wx.FR_WHOLEWORD and wx.FR_MATCHCASE flags.
</docstring>
13266 <method name=
"GetFindString" type=
"String" overloaded=
"no">
13267 <autodoc>GetFindString() -
> String
</autodoc>
13268 <docstring>Return the string to find (never empty).
</docstring>
13270 <method name=
"GetReplaceString" type=
"String" overloaded=
"no">
13271 <autodoc>GetReplaceString() -
> String
</autodoc>
13272 <docstring>Return the string to replace the search string with (only
13273 for replace and replace all events).
</docstring>
13275 <method name=
"GetDialog" type=
"wxFindReplaceDialog" overloaded=
"no">
13276 <autodoc>GetDialog() -
> FindReplaceDialog
</autodoc>
13277 <docstring>Return the pointer to the dialog which generated this event.
</docstring>
13279 <method name=
"SetFlags" type=
"" overloaded=
"no">
13280 <autodoc>SetFlags(int flags)
</autodoc>
13282 <param name=
"flags" type=
"int" default=
""/>
13285 <method name=
"SetFindString" type=
"" overloaded=
"no">
13286 <autodoc>SetFindString(String str)
</autodoc>
13288 <param name=
"str" type=
"String" default=
""/>
13291 <method name=
"SetReplaceString" type=
"" overloaded=
"no">
13292 <autodoc>SetReplaceString(String str)
</autodoc>
13294 <param name=
"str" type=
"String" default=
""/>
13298 <class name=
"FindReplaceData" oldname=
"wxFindReplaceData" module=
"windows">
13299 <docstring>FindReplaceData holds the data for FindReplaceDialog. It is used to initialize
13300 the dialog with the default values and will keep the last values from the
13301 dialog when it is closed. It is also updated each time a wxFindDialogEvent is
13302 generated so instead of using the wxFindDialogEvent methods you can also
13303 directly query this object.
13305 Note that all SetXXX() methods may only be called before showing the dialog
13306 and calling them has no effect later.
13309 wxFR_DOWN: downward search/replace selected (otherwise, upwards)
13311 wxFR_WHOLEWORD: whole word search/replace selected
13313 wxFR_MATCHCASE: case sensitive search/replace selected (otherwise,
13316 <baseclass name=
"Object"/>
13317 <constructor name=
"FindReplaceData" overloaded=
"no">
13318 <autodoc>__init__(int flags=
0) -
> FindReplaceData
</autodoc>
13319 <docstring>Constuctor initializes the flags to default value (
0).
</docstring>
13321 <param name=
"flags" type=
"int" default=
"0"/>
13324 <destructor name=
"~wxFindReplaceData" overloaded=
"no">
13325 <autodoc>__del__()
</autodoc>
13327 <method name=
"GetFindString" type=
"String" overloaded=
"no">
13328 <autodoc>GetFindString() -
> String
</autodoc>
13329 <docstring>Get the string to find.
</docstring>
13331 <method name=
"GetReplaceString" type=
"String" overloaded=
"no">
13332 <autodoc>GetReplaceString() -
> String
</autodoc>
13333 <docstring>Get the replacement string.
</docstring>
13335 <method name=
"GetFlags" type=
"int" overloaded=
"no">
13336 <autodoc>GetFlags() -
> int
</autodoc>
13337 <docstring>Get the combination of flag values.
</docstring>
13339 <method name=
"SetFlags" type=
"" overloaded=
"no">
13340 <autodoc>SetFlags(int flags)
</autodoc>
13341 <docstring>Set the flags to use to initialize the controls of the dialog.
</docstring>
13343 <param name=
"flags" type=
"int" default=
""/>
13346 <method name=
"SetFindString" type=
"" overloaded=
"no">
13347 <autodoc>SetFindString(String str)
</autodoc>
13348 <docstring>Set the string to find (used as initial value by the dialog).
</docstring>
13350 <param name=
"str" type=
"String" default=
""/>
13353 <method name=
"SetReplaceString" type=
"" overloaded=
"no">
13354 <autodoc>SetReplaceString(String str)
</autodoc>
13355 <docstring>Set the replacement string (used as initial value by the dialog).
</docstring>
13357 <param name=
"str" type=
"String" default=
""/>
13361 <class name=
"FindReplaceDialog" oldname=
"wxFindReplaceDialog" module=
"windows">
13362 <docstring>FindReplaceDialog is a standard modeless dialog which is used to allow the
13363 user to search for some text (and possibly replace it with something
13364 else). The actual searching is supposed to be done in the owner window which
13365 is the parent of this dialog. Note that it means that unlike for the other
13366 standard dialogs this one must have a parent window. Also note that there is
13367 no way to use this dialog in a modal way; it is always, by design and
13368 implementation, modeless.
</docstring>
13371 wx.FR_REPLACEDIALOG: replace dialog (otherwise find dialog)
13373 wx.FR_NOUPDOWN: don't allow changing the search direction
13375 wx.FR_NOMATCHCASE: don't allow case sensitive searching
13377 wx.FR_NOWHOLEWORD: don't allow whole word searching
13379 <baseclass name=
"Dialog"/>
13380 <constructor name=
"FindReplaceDialog" overloaded=
"no">
13381 <autodoc>__init__(Window parent, FindReplaceData data, String title,
13382 int style=
0) -
> FindReplaceDialog
</autodoc>
13383 <docstring>Create a FindReplaceDialog. The parent and data parameters must be
13384 non-None. Use Show to display the dialog.
</docstring>
13387 wx.FR_REPLACEDIALOG: replace dialog (otherwise find dialog)
13389 wx.FR_NOUPDOWN: don't allow changing the search direction
13391 wx.FR_NOMATCHCASE: don't allow case sensitive searching
13393 wx.FR_NOWHOLEWORD: don't allow whole word searching
13396 <param name=
"parent" type=
"Window" default=
""/>
13397 <param name=
"data" type=
"FindReplaceData" default=
""/>
13398 <param name=
"title" type=
"String" default=
""/>
13399 <param name=
"style" type=
"int" default=
"0"/>
13402 <constructor name=
"PreFindReplaceDialog" overloaded=
"no">
13403 <autodoc>PreFindReplaceDialog() -
> FindReplaceDialog
</autodoc>
13404 <docstring>Precreate a FindReplaceDialog for
2-phase creation
</docstring>
13407 wx.FR_REPLACEDIALOG: replace dialog (otherwise find dialog)
13409 wx.FR_NOUPDOWN: don't allow changing the search direction
13411 wx.FR_NOMATCHCASE: don't allow case sensitive searching
13413 wx.FR_NOWHOLEWORD: don't allow whole word searching
13416 <method name=
"Create" type=
"bool" overloaded=
"no">
13417 <autodoc>Create(Window parent, FindReplaceData data, String title,
13418 int style=
0) -
> bool
</autodoc>
13419 <docstring>Create the dialog, for
2-phase create.
</docstring>
13421 <param name=
"parent" type=
"Window" default=
""/>
13422 <param name=
"data" type=
"FindReplaceData" default=
""/>
13423 <param name=
"title" type=
"String" default=
""/>
13424 <param name=
"style" type=
"int" default=
"0"/>
13427 <method name=
"GetData" type=
"FindReplaceData" overloaded=
"no">
13428 <autodoc>GetData() -
> FindReplaceData
</autodoc>
13429 <docstring>Get the FindReplaceData object used by this dialog.
</docstring>
13431 <method name=
"SetData" type=
"" overloaded=
"no">
13432 <autodoc>SetData(FindReplaceData data)
</autodoc>
13433 <docstring>Set the FindReplaceData object used by this dialog.
</docstring>
13435 <param name=
"data" type=
"FindReplaceData" default=
""/>
13440 #---------------------------------------------------------------------------
13442 <class name=
"MDIParentFrame" oldname=
"wxMDIParentFrame" module=
"windows">
13443 <baseclass name=
"Frame"/>
13444 <constructor name=
"MDIParentFrame" overloaded=
"no">
13445 <autodoc>__init__(Window parent, int id, String title, Point pos=DefaultPosition,
13446 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
13447 String name=FrameNameStr) -
> MDIParentFrame
</autodoc>
13449 <param name=
"parent" type=
"Window" default=
""/>
13450 <param name=
"id" type=
"int" default=
""/>
13451 <param name=
"title" type=
"String" default=
""/>
13452 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13453 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13454 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
13455 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13458 <constructor name=
"PreMDIParentFrame" overloaded=
"no">
13459 <autodoc>PreMDIParentFrame() -
> MDIParentFrame
</autodoc>
13461 <method name=
"Create" type=
"bool" overloaded=
"no">
13462 <autodoc>Create(Window parent, int id, String title, Point pos=DefaultPosition,
13463 Size size=DefaultSize, long style=wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL,
13464 String name=FrameNameStr) -
> bool
</autodoc>
13466 <param name=
"parent" type=
"Window" default=
""/>
13467 <param name=
"id" type=
"int" default=
""/>
13468 <param name=
"title" type=
"String" default=
""/>
13469 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13470 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13471 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE|wxVSCROLL|wxHSCROLL"/>
13472 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13475 <method name=
"ActivateNext" type=
"" overloaded=
"no">
13476 <autodoc>ActivateNext()
</autodoc>
13478 <method name=
"ActivatePrevious" type=
"" overloaded=
"no">
13479 <autodoc>ActivatePrevious()
</autodoc>
13481 <method name=
"ArrangeIcons" type=
"" overloaded=
"no">
13482 <autodoc>ArrangeIcons()
</autodoc>
13484 <method name=
"Cascade" type=
"" overloaded=
"no">
13485 <autodoc>Cascade()
</autodoc>
13487 <method name=
"GetActiveChild" type=
"wxMDIChildFrame" overloaded=
"no">
13488 <autodoc>GetActiveChild() -
> MDIChildFrame
</autodoc>
13490 <method name=
"GetClientWindow" type=
"wxMDIClientWindow" overloaded=
"no">
13491 <autodoc>GetClientWindow() -
> MDIClientWindow
</autodoc>
13493 <method name=
"GetToolBar" type=
"Window" overloaded=
"no">
13494 <autodoc>GetToolBar() -
> Window
</autodoc>
13496 <method name=
"Tile" type=
"" overloaded=
"no">
13497 <autodoc>Tile()
</autodoc>
13500 <class name=
"MDIChildFrame" oldname=
"wxMDIChildFrame" module=
"windows">
13501 <baseclass name=
"Frame"/>
13502 <constructor name=
"MDIChildFrame" overloaded=
"no">
13503 <autodoc>__init__(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
13504 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
13505 String name=FrameNameStr) -
> MDIChildFrame
</autodoc>
13507 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13508 <param name=
"id" type=
"int" default=
""/>
13509 <param name=
"title" type=
"String" default=
""/>
13510 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13511 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13512 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13513 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13516 <constructor name=
"PreMDIChildFrame" overloaded=
"no">
13517 <autodoc>PreMDIChildFrame() -
> MDIChildFrame
</autodoc>
13519 <method name=
"Create" type=
"bool" overloaded=
"no">
13520 <autodoc>Create(MDIParentFrame parent, int id, String title, Point pos=DefaultPosition,
13521 Size size=DefaultSize, long style=DEFAULT_FRAME_STYLE,
13522 String name=FrameNameStr) -
> bool
</autodoc>
13524 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13525 <param name=
"id" type=
"int" default=
""/>
13526 <param name=
"title" type=
"String" default=
""/>
13527 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13528 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13529 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
13530 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
13533 <method name=
"Activate" type=
"" overloaded=
"no">
13534 <autodoc>Activate()
</autodoc>
13536 <method name=
"Maximize" type=
"" overloaded=
"no">
13537 <autodoc>Maximize(bool maximize)
</autodoc>
13539 <param name=
"maximize" type=
"bool" default=
""/>
13542 <method name=
"Restore" type=
"" overloaded=
"no">
13543 <autodoc>Restore()
</autodoc>
13546 <class name=
"MDIClientWindow" oldname=
"wxMDIClientWindow" module=
"windows">
13547 <baseclass name=
"Window"/>
13548 <constructor name=
"MDIClientWindow" overloaded=
"no">
13549 <autodoc>__init__(MDIParentFrame parent, long style=
0) -
> MDIClientWindow
</autodoc>
13551 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13552 <param name=
"style" type=
"long" default=
"0"/>
13555 <constructor name=
"PreMDIClientWindow" overloaded=
"no">
13556 <autodoc>PreMDIClientWindow() -
> MDIClientWindow
</autodoc>
13558 <method name=
"Create" type=
"bool" overloaded=
"no">
13559 <autodoc>Create(MDIParentFrame parent, long style=
0) -
> bool
</autodoc>
13561 <param name=
"parent" type=
"MDIParentFrame" default=
""/>
13562 <param name=
"style" type=
"long" default=
"0"/>
13567 #---------------------------------------------------------------------------
13569 <class name=
"PyWindow" oldname=
"wxPyWindow" module=
"windows">
13570 <baseclass name=
"Window"/>
13571 <constructor name=
"PyWindow" overloaded=
"no">
13572 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13573 long style=
0, String name=PanelNameStr) -
> PyWindow
</autodoc>
13575 <param name=
"parent" type=
"Window" default=
""/>
13576 <param name=
"id" type=
"int" default=
""/>
13577 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13578 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13579 <param name=
"style" type=
"long" default=
"0"/>
13580 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
13583 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
13584 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13586 <param name=
"self" type=
"PyObject" default=
""/>
13587 <param name=
"_class" type=
"PyObject" default=
""/>
13590 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
13591 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
13593 <param name=
"x" type=
"int" default=
""/>
13594 <param name=
"y" type=
"int" default=
""/>
13595 <param name=
"width" type=
"int" default=
""/>
13596 <param name=
"height" type=
"int" default=
""/>
13599 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
13600 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
13602 <param name=
"x" type=
"int" default=
""/>
13603 <param name=
"y" type=
"int" default=
""/>
13604 <param name=
"width" type=
"int" default=
""/>
13605 <param name=
"height" type=
"int" default=
""/>
13606 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
13609 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
13610 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
13612 <param name=
"width" type=
"int" default=
""/>
13613 <param name=
"height" type=
"int" default=
""/>
13616 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
13617 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
13619 <param name=
"x" type=
"int" default=
""/>
13620 <param name=
"y" type=
"int" default=
""/>
13623 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
13624 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
13626 <param name=
"OUTPUT" type=
"int" default=
""/>
13627 <param name=
"OUTPUT" type=
"int" default=
""/>
13630 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
13631 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
13633 <param name=
"OUTPUT" type=
"int" default=
""/>
13634 <param name=
"OUTPUT" type=
"int" default=
""/>
13637 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
13638 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
13640 <param name=
"OUTPUT" type=
"int" default=
""/>
13641 <param name=
"OUTPUT" type=
"int" default=
""/>
13644 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
13645 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
13647 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
13648 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
13650 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
13651 <autodoc>base_InitDialog()
</autodoc>
13653 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
13654 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
13656 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
13657 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
13659 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
13660 <autodoc>base_Validate() -
> bool
</autodoc>
13662 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
13663 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
13665 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
13666 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
13668 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
13669 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
13671 <method name=
"base_AddChild" type=
"" overloaded=
"no">
13672 <autodoc>base_AddChild(Window child)
</autodoc>
13674 <param name=
"child" type=
"Window" default=
""/>
13677 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
13678 <autodoc>base_RemoveChild(Window child)
</autodoc>
13680 <param name=
"child" type=
"Window" default=
""/>
13684 <class name=
"PyPanel" oldname=
"wxPyPanel" module=
"windows">
13685 <baseclass name=
"Panel"/>
13686 <constructor name=
"PyPanel" overloaded=
"no">
13687 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
13688 long style=
0, String name=PanelNameStr) -
> PyPanel
</autodoc>
13690 <param name=
"parent" type=
"Window" default=
""/>
13691 <param name=
"id" type=
"int" default=
""/>
13692 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
13693 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
13694 <param name=
"style" type=
"long" default=
"0"/>
13695 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
13698 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
13699 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
13701 <param name=
"self" type=
"PyObject" default=
""/>
13702 <param name=
"_class" type=
"PyObject" default=
""/>
13705 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
13706 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
13708 <param name=
"x" type=
"int" default=
""/>
13709 <param name=
"y" type=
"int" default=
""/>
13710 <param name=
"width" type=
"int" default=
""/>
13711 <param name=
"height" type=
"int" default=
""/>
13714 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
13715 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
13717 <param name=
"x" type=
"int" default=
""/>
13718 <param name=
"y" type=
"int" default=
""/>
13719 <param name=
"width" type=
"int" default=
""/>
13720 <param name=
"height" type=
"int" default=
""/>
13721 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
13724 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
13725 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
13727 <param name=
"width" type=
"int" default=
""/>
13728 <param name=
"height" type=
"int" default=
""/>
13731 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
13732 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
13734 <param name=
"x" type=
"int" default=
""/>
13735 <param name=
"y" type=
"int" default=
""/>
13738 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
13739 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
13741 <param name=
"OUTPUT" type=
"int" default=
""/>
13742 <param name=
"OUTPUT" type=
"int" default=
""/>
13745 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
13746 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
13748 <param name=
"OUTPUT" type=
"int" default=
""/>
13749 <param name=
"OUTPUT" type=
"int" default=
""/>
13752 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
13753 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
13755 <param name=
"OUTPUT" type=
"int" default=
""/>
13756 <param name=
"OUTPUT" type=
"int" default=
""/>
13759 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
13760 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
13762 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
13763 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
13765 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
13766 <autodoc>base_InitDialog()
</autodoc>
13768 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
13769 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
13771 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
13772 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
13774 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
13775 <autodoc>base_Validate() -
> bool
</autodoc>
13777 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
13778 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
13780 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
13781 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
13783 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
13784 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
13786 <method name=
"base_AddChild" type=
"" overloaded=
"no">
13787 <autodoc>base_AddChild(Window child)
</autodoc>
13789 <param name=
"child" type=
"Window" default=
""/>
13792 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
13793 <autodoc>base_RemoveChild(Window child)
</autodoc>
13795 <param name=
"child" type=
"Window" default=
""/>
13800 #---------------------------------------------------------------------------
13802 <class name=
"PrintData" oldname=
"wxPrintData" module=
"windows">
13803 <baseclass name=
"Object"/>
13804 <constructor name=
"PrintData" overloaded=
"no">
13805 <autodoc>__init__() -
> PrintData
</autodoc>
13807 <destructor name=
"~wxPrintData" overloaded=
"no">
13808 <autodoc>__del__()
</autodoc>
13810 <method name=
"GetNoCopies" type=
"int" overloaded=
"no">
13811 <autodoc>GetNoCopies() -
> int
</autodoc>
13813 <method name=
"GetCollate" type=
"bool" overloaded=
"no">
13814 <autodoc>GetCollate() -
> bool
</autodoc>
13816 <method name=
"GetOrientation" type=
"int" overloaded=
"no">
13817 <autodoc>GetOrientation() -
> int
</autodoc>
13819 <method name=
"Ok" type=
"bool" overloaded=
"no">
13820 <autodoc>Ok() -
> bool
</autodoc>
13822 <method name=
"GetPrinterName" type=
"String" overloaded=
"no">
13823 <autodoc>GetPrinterName() -
> String
</autodoc>
13825 <method name=
"GetColour" type=
"bool" overloaded=
"no">
13826 <autodoc>GetColour() -
> bool
</autodoc>
13828 <method name=
"GetDuplex" type=
"wxDuplexMode" overloaded=
"no">
13829 <autodoc>GetDuplex() -
> int
</autodoc>
13831 <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no">
13832 <autodoc>GetPaperId() -
> int
</autodoc>
13834 <method name=
"GetPaperSize" type=
"Size" overloaded=
"no">
13835 <autodoc>GetPaperSize() -
> Size
</autodoc>
13837 <method name=
"GetQuality" type=
"int" overloaded=
"no">
13838 <autodoc>GetQuality() -
> int
</autodoc>
13840 <method name=
"SetNoCopies" type=
"" overloaded=
"no">
13841 <autodoc>SetNoCopies(int v)
</autodoc>
13843 <param name=
"v" type=
"int" default=
""/>
13846 <method name=
"SetCollate" type=
"" overloaded=
"no">
13847 <autodoc>SetCollate(bool flag)
</autodoc>
13849 <param name=
"flag" type=
"bool" default=
""/>
13852 <method name=
"SetOrientation" type=
"" overloaded=
"no">
13853 <autodoc>SetOrientation(int orient)
</autodoc>
13855 <param name=
"orient" type=
"int" default=
""/>
13858 <method name=
"SetPrinterName" type=
"" overloaded=
"no">
13859 <autodoc>SetPrinterName(String name)
</autodoc>
13861 <param name=
"name" type=
"String" default=
""/>
13864 <method name=
"SetColour" type=
"" overloaded=
"no">
13865 <autodoc>SetColour(bool colour)
</autodoc>
13867 <param name=
"colour" type=
"bool" default=
""/>
13870 <method name=
"SetDuplex" type=
"" overloaded=
"no">
13871 <autodoc>SetDuplex(int duplex)
</autodoc>
13873 <param name=
"duplex" type=
"wxDuplexMode" default=
""/>
13876 <method name=
"SetPaperId" type=
"" overloaded=
"no">
13877 <autodoc>SetPaperId(int sizeId)
</autodoc>
13879 <param name=
"sizeId" type=
"wxPaperSize" default=
""/>
13882 <method name=
"SetPaperSize" type=
"" overloaded=
"no">
13883 <autodoc>SetPaperSize(Size sz)
</autodoc>
13885 <param name=
"sz" type=
"Size" default=
""/>
13888 <method name=
"SetQuality" type=
"" overloaded=
"no">
13889 <autodoc>SetQuality(int quality)
</autodoc>
13891 <param name=
"quality" type=
"int" default=
""/>
13894 <method name=
"GetPrinterCommand" type=
"String" overloaded=
"no">
13895 <autodoc>GetPrinterCommand() -
> String
</autodoc>
13897 <method name=
"GetPrinterOptions" type=
"String" overloaded=
"no">
13898 <autodoc>GetPrinterOptions() -
> String
</autodoc>
13900 <method name=
"GetPreviewCommand" type=
"String" overloaded=
"no">
13901 <autodoc>GetPreviewCommand() -
> String
</autodoc>
13903 <method name=
"GetFilename" type=
"String" overloaded=
"no">
13904 <autodoc>GetFilename() -
> String
</autodoc>
13906 <method name=
"GetFontMetricPath" type=
"String" overloaded=
"no">
13907 <autodoc>GetFontMetricPath() -
> String
</autodoc>
13909 <method name=
"GetPrinterScaleX" type=
"double" overloaded=
"no">
13910 <autodoc>GetPrinterScaleX() -
> double
</autodoc>
13912 <method name=
"GetPrinterScaleY" type=
"double" overloaded=
"no">
13913 <autodoc>GetPrinterScaleY() -
> double
</autodoc>
13915 <method name=
"GetPrinterTranslateX" type=
"long" overloaded=
"no">
13916 <autodoc>GetPrinterTranslateX() -
> long
</autodoc>
13918 <method name=
"GetPrinterTranslateY" type=
"long" overloaded=
"no">
13919 <autodoc>GetPrinterTranslateY() -
> long
</autodoc>
13921 <method name=
"GetPrintMode" type=
"wxPrintMode" overloaded=
"no">
13922 <autodoc>GetPrintMode() -
> int
</autodoc>
13924 <method name=
"SetPrinterCommand" type=
"" overloaded=
"no">
13925 <autodoc>SetPrinterCommand(String command)
</autodoc>
13927 <param name=
"command" type=
"String" default=
""/>
13930 <method name=
"SetPrinterOptions" type=
"" overloaded=
"no">
13931 <autodoc>SetPrinterOptions(String options)
</autodoc>
13933 <param name=
"options" type=
"String" default=
""/>
13936 <method name=
"SetPreviewCommand" type=
"" overloaded=
"no">
13937 <autodoc>SetPreviewCommand(String command)
</autodoc>
13939 <param name=
"command" type=
"String" default=
""/>
13942 <method name=
"SetFilename" type=
"" overloaded=
"no">
13943 <autodoc>SetFilename(String filename)
</autodoc>
13945 <param name=
"filename" type=
"String" default=
""/>
13948 <method name=
"SetFontMetricPath" type=
"" overloaded=
"no">
13949 <autodoc>SetFontMetricPath(String path)
</autodoc>
13951 <param name=
"path" type=
"String" default=
""/>
13954 <method name=
"SetPrinterScaleX" type=
"" overloaded=
"no">
13955 <autodoc>SetPrinterScaleX(double x)
</autodoc>
13957 <param name=
"x" type=
"double" default=
""/>
13960 <method name=
"SetPrinterScaleY" type=
"" overloaded=
"no">
13961 <autodoc>SetPrinterScaleY(double y)
</autodoc>
13963 <param name=
"y" type=
"double" default=
""/>
13966 <method name=
"SetPrinterScaling" type=
"" overloaded=
"no">
13967 <autodoc>SetPrinterScaling(double x, double y)
</autodoc>
13969 <param name=
"x" type=
"double" default=
""/>
13970 <param name=
"y" type=
"double" default=
""/>
13973 <method name=
"SetPrinterTranslateX" type=
"" overloaded=
"no">
13974 <autodoc>SetPrinterTranslateX(long x)
</autodoc>
13976 <param name=
"x" type=
"long" default=
""/>
13979 <method name=
"SetPrinterTranslateY" type=
"" overloaded=
"no">
13980 <autodoc>SetPrinterTranslateY(long y)
</autodoc>
13982 <param name=
"y" type=
"long" default=
""/>
13985 <method name=
"SetPrinterTranslation" type=
"" overloaded=
"no">
13986 <autodoc>SetPrinterTranslation(long x, long y)
</autodoc>
13988 <param name=
"x" type=
"long" default=
""/>
13989 <param name=
"y" type=
"long" default=
""/>
13992 <method name=
"SetPrintMode" type=
"" overloaded=
"no">
13993 <autodoc>SetPrintMode(int printMode)
</autodoc>
13995 <param name=
"printMode" type=
"wxPrintMode" default=
""/>
13998 <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no">
13999 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
14001 <method name=
"SetOutputStream" type=
"" overloaded=
"no">
14002 <autodoc>SetOutputStream(OutputStream outputstream)
</autodoc>
14004 <param name=
"outputstream" type=
"OutputStream" default=
""/>
14008 <class name=
"PageSetupDialogData" oldname=
"wxPageSetupDialogData" module=
"windows">
14009 <baseclass name=
"Object"/>
14010 <constructor name=
"PageSetupDialogData" overloaded=
"no">
14011 <autodoc>__init__() -
> PageSetupDialogData
</autodoc>
14013 <destructor name=
"~wxPageSetupDialogData" overloaded=
"no">
14014 <autodoc>__del__()
</autodoc>
14016 <method name=
"EnableHelp" type=
"" overloaded=
"no">
14017 <autodoc>EnableHelp(bool flag)
</autodoc>
14019 <param name=
"flag" type=
"bool" default=
""/>
14022 <method name=
"EnableMargins" type=
"" overloaded=
"no">
14023 <autodoc>EnableMargins(bool flag)
</autodoc>
14025 <param name=
"flag" type=
"bool" default=
""/>
14028 <method name=
"EnableOrientation" type=
"" overloaded=
"no">
14029 <autodoc>EnableOrientation(bool flag)
</autodoc>
14031 <param name=
"flag" type=
"bool" default=
""/>
14034 <method name=
"EnablePaper" type=
"" overloaded=
"no">
14035 <autodoc>EnablePaper(bool flag)
</autodoc>
14037 <param name=
"flag" type=
"bool" default=
""/>
14040 <method name=
"EnablePrinter" type=
"" overloaded=
"no">
14041 <autodoc>EnablePrinter(bool flag)
</autodoc>
14043 <param name=
"flag" type=
"bool" default=
""/>
14046 <method name=
"GetDefaultMinMargins" type=
"bool" overloaded=
"no">
14047 <autodoc>GetDefaultMinMargins() -
> bool
</autodoc>
14049 <method name=
"GetEnableMargins" type=
"bool" overloaded=
"no">
14050 <autodoc>GetEnableMargins() -
> bool
</autodoc>
14052 <method name=
"GetEnableOrientation" type=
"bool" overloaded=
"no">
14053 <autodoc>GetEnableOrientation() -
> bool
</autodoc>
14055 <method name=
"GetEnablePaper" type=
"bool" overloaded=
"no">
14056 <autodoc>GetEnablePaper() -
> bool
</autodoc>
14058 <method name=
"GetEnablePrinter" type=
"bool" overloaded=
"no">
14059 <autodoc>GetEnablePrinter() -
> bool
</autodoc>
14061 <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no">
14062 <autodoc>GetEnableHelp() -
> bool
</autodoc>
14064 <method name=
"GetDefaultInfo" type=
"bool" overloaded=
"no">
14065 <autodoc>GetDefaultInfo() -
> bool
</autodoc>
14067 <method name=
"GetMarginTopLeft" type=
"Point" overloaded=
"no">
14068 <autodoc>GetMarginTopLeft() -
> Point
</autodoc>
14070 <method name=
"GetMarginBottomRight" type=
"Point" overloaded=
"no">
14071 <autodoc>GetMarginBottomRight() -
> Point
</autodoc>
14073 <method name=
"GetMinMarginTopLeft" type=
"Point" overloaded=
"no">
14074 <autodoc>GetMinMarginTopLeft() -
> Point
</autodoc>
14076 <method name=
"GetMinMarginBottomRight" type=
"Point" overloaded=
"no">
14077 <autodoc>GetMinMarginBottomRight() -
> Point
</autodoc>
14079 <method name=
"GetPaperId" type=
"wxPaperSize" overloaded=
"no">
14080 <autodoc>GetPaperId() -
> int
</autodoc>
14082 <method name=
"GetPaperSize" type=
"Size" overloaded=
"no">
14083 <autodoc>GetPaperSize() -
> Size
</autodoc>
14085 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
14086 <autodoc>GetPrintData() -
> PrintData
</autodoc>
14088 <method name=
"Ok" type=
"bool" overloaded=
"no">
14089 <autodoc>Ok() -
> bool
</autodoc>
14091 <method name=
"SetDefaultInfo" type=
"" overloaded=
"no">
14092 <autodoc>SetDefaultInfo(bool flag)
</autodoc>
14094 <param name=
"flag" type=
"bool" default=
""/>
14097 <method name=
"SetDefaultMinMargins" type=
"" overloaded=
"no">
14098 <autodoc>SetDefaultMinMargins(bool flag)
</autodoc>
14100 <param name=
"flag" type=
"bool" default=
""/>
14103 <method name=
"SetMarginTopLeft" type=
"" overloaded=
"no">
14104 <autodoc>SetMarginTopLeft(Point pt)
</autodoc>
14106 <param name=
"pt" type=
"Point" default=
""/>
14109 <method name=
"SetMarginBottomRight" type=
"" overloaded=
"no">
14110 <autodoc>SetMarginBottomRight(Point pt)
</autodoc>
14112 <param name=
"pt" type=
"Point" default=
""/>
14115 <method name=
"SetMinMarginTopLeft" type=
"" overloaded=
"no">
14116 <autodoc>SetMinMarginTopLeft(Point pt)
</autodoc>
14118 <param name=
"pt" type=
"Point" default=
""/>
14121 <method name=
"SetMinMarginBottomRight" type=
"" overloaded=
"no">
14122 <autodoc>SetMinMarginBottomRight(Point pt)
</autodoc>
14124 <param name=
"pt" type=
"Point" default=
""/>
14127 <method name=
"SetPaperId" type=
"" overloaded=
"no">
14128 <autodoc>SetPaperId(int id)
</autodoc>
14130 <param name=
"id" type=
"wxPaperSize" default=
""/>
14133 <method name=
"SetPaperSize" type=
"" overloaded=
"no">
14134 <autodoc>SetPaperSize(Size size)
</autodoc>
14136 <param name=
"size" type=
"Size" default=
""/>
14139 <method name=
"SetPrintData" type=
"" overloaded=
"no">
14140 <autodoc>SetPrintData(PrintData printData)
</autodoc>
14142 <param name=
"printData" type=
"PrintData" default=
""/>
14146 <class name=
"PageSetupDialog" oldname=
"wxPageSetupDialog" module=
"windows">
14147 <baseclass name=
"Dialog"/>
14148 <constructor name=
"PageSetupDialog" overloaded=
"no">
14149 <autodoc>__init__(Window parent, PageSetupDialogData data=None) -
> PageSetupDialog
</autodoc>
14151 <param name=
"parent" type=
"Window" default=
""/>
14152 <param name=
"data" type=
"PageSetupDialogData" default=
"NULL"/>
14155 <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no">
14156 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
14158 <method name=
"ShowModal" type=
"int" overloaded=
"no">
14159 <autodoc>ShowModal() -
> int
</autodoc>
14162 <class name=
"PrintDialogData" oldname=
"wxPrintDialogData" module=
"windows">
14163 <baseclass name=
"Object"/>
14164 <constructor name=
"PrintDialogData" overloaded=
"no">
14165 <autodoc>__init__() -
> PrintDialogData
</autodoc>
14167 <destructor name=
"~wxPrintDialogData" overloaded=
"no">
14168 <autodoc>__del__()
</autodoc>
14170 <method name=
"GetFromPage" type=
"int" overloaded=
"no">
14171 <autodoc>GetFromPage() -
> int
</autodoc>
14173 <method name=
"GetToPage" type=
"int" overloaded=
"no">
14174 <autodoc>GetToPage() -
> int
</autodoc>
14176 <method name=
"GetMinPage" type=
"int" overloaded=
"no">
14177 <autodoc>GetMinPage() -
> int
</autodoc>
14179 <method name=
"GetMaxPage" type=
"int" overloaded=
"no">
14180 <autodoc>GetMaxPage() -
> int
</autodoc>
14182 <method name=
"GetNoCopies" type=
"int" overloaded=
"no">
14183 <autodoc>GetNoCopies() -
> int
</autodoc>
14185 <method name=
"GetAllPages" type=
"bool" overloaded=
"no">
14186 <autodoc>GetAllPages() -
> bool
</autodoc>
14188 <method name=
"GetSelection" type=
"bool" overloaded=
"no">
14189 <autodoc>GetSelection() -
> bool
</autodoc>
14191 <method name=
"GetCollate" type=
"bool" overloaded=
"no">
14192 <autodoc>GetCollate() -
> bool
</autodoc>
14194 <method name=
"GetPrintToFile" type=
"bool" overloaded=
"no">
14195 <autodoc>GetPrintToFile() -
> bool
</autodoc>
14197 <method name=
"GetSetupDialog" type=
"bool" overloaded=
"no">
14198 <autodoc>GetSetupDialog() -
> bool
</autodoc>
14200 <method name=
"SetFromPage" type=
"" overloaded=
"no">
14201 <autodoc>SetFromPage(int v)
</autodoc>
14203 <param name=
"v" type=
"int" default=
""/>
14206 <method name=
"SetToPage" type=
"" overloaded=
"no">
14207 <autodoc>SetToPage(int v)
</autodoc>
14209 <param name=
"v" type=
"int" default=
""/>
14212 <method name=
"SetMinPage" type=
"" overloaded=
"no">
14213 <autodoc>SetMinPage(int v)
</autodoc>
14215 <param name=
"v" type=
"int" default=
""/>
14218 <method name=
"SetMaxPage" type=
"" overloaded=
"no">
14219 <autodoc>SetMaxPage(int v)
</autodoc>
14221 <param name=
"v" type=
"int" default=
""/>
14224 <method name=
"SetNoCopies" type=
"" overloaded=
"no">
14225 <autodoc>SetNoCopies(int v)
</autodoc>
14227 <param name=
"v" type=
"int" default=
""/>
14230 <method name=
"SetAllPages" type=
"" overloaded=
"no">
14231 <autodoc>SetAllPages(bool flag)
</autodoc>
14233 <param name=
"flag" type=
"bool" default=
""/>
14236 <method name=
"SetSelection" type=
"" overloaded=
"no">
14237 <autodoc>SetSelection(bool flag)
</autodoc>
14239 <param name=
"flag" type=
"bool" default=
""/>
14242 <method name=
"SetCollate" type=
"" overloaded=
"no">
14243 <autodoc>SetCollate(bool flag)
</autodoc>
14245 <param name=
"flag" type=
"bool" default=
""/>
14248 <method name=
"SetPrintToFile" type=
"" overloaded=
"no">
14249 <autodoc>SetPrintToFile(bool flag)
</autodoc>
14251 <param name=
"flag" type=
"bool" default=
""/>
14254 <method name=
"SetSetupDialog" type=
"" overloaded=
"no">
14255 <autodoc>SetSetupDialog(bool flag)
</autodoc>
14257 <param name=
"flag" type=
"bool" default=
""/>
14260 <method name=
"EnablePrintToFile" type=
"" overloaded=
"no">
14261 <autodoc>EnablePrintToFile(bool flag)
</autodoc>
14263 <param name=
"flag" type=
"bool" default=
""/>
14266 <method name=
"EnableSelection" type=
"" overloaded=
"no">
14267 <autodoc>EnableSelection(bool flag)
</autodoc>
14269 <param name=
"flag" type=
"bool" default=
""/>
14272 <method name=
"EnablePageNumbers" type=
"" overloaded=
"no">
14273 <autodoc>EnablePageNumbers(bool flag)
</autodoc>
14275 <param name=
"flag" type=
"bool" default=
""/>
14278 <method name=
"EnableHelp" type=
"" overloaded=
"no">
14279 <autodoc>EnableHelp(bool flag)
</autodoc>
14281 <param name=
"flag" type=
"bool" default=
""/>
14284 <method name=
"GetEnablePrintToFile" type=
"bool" overloaded=
"no">
14285 <autodoc>GetEnablePrintToFile() -
> bool
</autodoc>
14287 <method name=
"GetEnableSelection" type=
"bool" overloaded=
"no">
14288 <autodoc>GetEnableSelection() -
> bool
</autodoc>
14290 <method name=
"GetEnablePageNumbers" type=
"bool" overloaded=
"no">
14291 <autodoc>GetEnablePageNumbers() -
> bool
</autodoc>
14293 <method name=
"GetEnableHelp" type=
"bool" overloaded=
"no">
14294 <autodoc>GetEnableHelp() -
> bool
</autodoc>
14296 <method name=
"Ok" type=
"bool" overloaded=
"no">
14297 <autodoc>Ok() -
> bool
</autodoc>
14299 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
14300 <autodoc>GetPrintData() -
> PrintData
</autodoc>
14302 <method name=
"SetPrintData" type=
"" overloaded=
"no">
14303 <autodoc>SetPrintData(PrintData printData)
</autodoc>
14305 <param name=
"printData" type=
"PrintData" default=
""/>
14309 <class name=
"PrintDialog" oldname=
"wxPrintDialog" module=
"windows">
14310 <baseclass name=
"Dialog"/>
14311 <constructor name=
"PrintDialog" overloaded=
"no">
14312 <autodoc>__init__(Window parent, PrintDialogData data=None) -
> PrintDialog
</autodoc>
14314 <param name=
"parent" type=
"Window" default=
""/>
14315 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14318 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14319 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14321 <method name=
"GetPrintDC" type=
"DC" overloaded=
"no">
14322 <autodoc>GetPrintDC() -
> DC
</autodoc>
14324 <method name=
"ShowModal" type=
"int" overloaded=
"no">
14325 <autodoc>ShowModal() -
> int
</autodoc>
14328 <class name=
"Printer" oldname=
"wxPrinter" module=
"windows">
14329 <baseclass name=
"Object"/>
14330 <constructor name=
"Printer" overloaded=
"no">
14331 <autodoc>__init__(PrintDialogData data=None) -
> Printer
</autodoc>
14333 <param name=
"data" type=
"PrintDialogData" default=
"NULL"/>
14336 <destructor name=
"~wxPrinter" overloaded=
"no">
14337 <autodoc>__del__()
</autodoc>
14339 <method name=
"CreateAbortWindow" type=
"" overloaded=
"no">
14340 <autodoc>CreateAbortWindow(Window parent, Printout printout)
</autodoc>
14342 <param name=
"parent" type=
"Window" default=
""/>
14343 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14346 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14347 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14349 <method name=
"Print" type=
"bool" overloaded=
"no">
14350 <autodoc>Print(Window parent, Printout printout, int prompt=True) -
> bool
</autodoc>
14352 <param name=
"parent" type=
"Window" default=
""/>
14353 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14354 <param name=
"prompt" type=
"int" default=
"True"/>
14357 <method name=
"PrintDialog" type=
"DC" overloaded=
"no">
14358 <autodoc>PrintDialog(Window parent) -
> DC
</autodoc>
14360 <param name=
"parent" type=
"Window" default=
""/>
14363 <method name=
"ReportError" type=
"" overloaded=
"no">
14364 <autodoc>ReportError(Window parent, Printout printout, String message)
</autodoc>
14366 <param name=
"parent" type=
"Window" default=
""/>
14367 <param name=
"printout" type=
"wxPyPrintout" default=
""/>
14368 <param name=
"message" type=
"String" default=
""/>
14371 <method name=
"Setup" type=
"bool" overloaded=
"no">
14372 <autodoc>Setup(Window parent) -
> bool
</autodoc>
14374 <param name=
"parent" type=
"Window" default=
""/>
14377 <method name=
"GetAbort" type=
"bool" overloaded=
"no">
14378 <autodoc>GetAbort() -
> bool
</autodoc>
14380 <staticmethod name=
"GetLastError" type=
"wxPrinterError" overloaded=
"no">
14381 <autodoc>GetLastError() -
> int
</autodoc>
14384 <class name=
"Printout" oldname=
"wxPyPrintout" module=
"windows">
14385 <baseclass name=
"Object"/>
14386 <constructor name=
"wxPyPrintout" overloaded=
"no">
14387 <autodoc>__init__(String title=PrintoutTitleStr) -
> Printout
</autodoc>
14389 <param name=
"title" type=
"String" default=
"wxPyPrintoutTitleStr"/>
14392 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14393 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14395 <param name=
"self" type=
"PyObject" default=
""/>
14396 <param name=
"_class" type=
"PyObject" default=
""/>
14399 <method name=
"GetTitle" type=
"String" overloaded=
"no">
14400 <autodoc>GetTitle() -
> String
</autodoc>
14402 <method name=
"GetDC" type=
"DC" overloaded=
"no">
14403 <autodoc>GetDC() -
> DC
</autodoc>
14405 <method name=
"SetDC" type=
"" overloaded=
"no">
14406 <autodoc>SetDC(DC dc)
</autodoc>
14408 <param name=
"dc" type=
"DC" default=
""/>
14411 <method name=
"SetPageSizePixels" type=
"" overloaded=
"no">
14412 <autodoc>SetPageSizePixels(int w, int h)
</autodoc>
14414 <param name=
"w" type=
"int" default=
""/>
14415 <param name=
"h" type=
"int" default=
""/>
14418 <method name=
"GetPageSizePixels" type=
"" overloaded=
"no">
14419 <autodoc>GetPageSizePixels() -
> (w, h)
</autodoc>
14421 <param name=
"OUTPUT" type=
"int" default=
""/>
14422 <param name=
"OUTPUT" type=
"int" default=
""/>
14425 <method name=
"SetPageSizeMM" type=
"" overloaded=
"no">
14426 <autodoc>SetPageSizeMM(int w, int h)
</autodoc>
14428 <param name=
"w" type=
"int" default=
""/>
14429 <param name=
"h" type=
"int" default=
""/>
14432 <method name=
"GetPageSizeMM" type=
"" overloaded=
"no">
14433 <autodoc>GetPageSizeMM() -
> (w, h)
</autodoc>
14435 <param name=
"OUTPUT" type=
"int" default=
""/>
14436 <param name=
"OUTPUT" type=
"int" default=
""/>
14439 <method name=
"SetPPIScreen" type=
"" overloaded=
"no">
14440 <autodoc>SetPPIScreen(int x, int y)
</autodoc>
14442 <param name=
"x" type=
"int" default=
""/>
14443 <param name=
"y" type=
"int" default=
""/>
14446 <method name=
"GetPPIScreen" type=
"" overloaded=
"no">
14447 <autodoc>GetPPIScreen() -
> (x,y)
</autodoc>
14449 <param name=
"OUTPUT" type=
"int" default=
""/>
14450 <param name=
"OUTPUT" type=
"int" default=
""/>
14453 <method name=
"SetPPIPrinter" type=
"" overloaded=
"no">
14454 <autodoc>SetPPIPrinter(int x, int y)
</autodoc>
14456 <param name=
"x" type=
"int" default=
""/>
14457 <param name=
"y" type=
"int" default=
""/>
14460 <method name=
"GetPPIPrinter" type=
"" overloaded=
"no">
14461 <autodoc>GetPPIPrinter() -
> (x,y)
</autodoc>
14463 <param name=
"OUTPUT" type=
"int" default=
""/>
14464 <param name=
"OUTPUT" type=
"int" default=
""/>
14467 <method name=
"IsPreview" type=
"bool" overloaded=
"no">
14468 <autodoc>IsPreview() -
> bool
</autodoc>
14470 <method name=
"SetIsPreview" type=
"" overloaded=
"no">
14471 <autodoc>SetIsPreview(bool p)
</autodoc>
14473 <param name=
"p" type=
"bool" default=
""/>
14476 <method name=
"base_OnBeginDocument" type=
"bool" overloaded=
"no">
14477 <autodoc>base_OnBeginDocument(int startPage, int endPage) -
> bool
</autodoc>
14479 <param name=
"startPage" type=
"int" default=
""/>
14480 <param name=
"endPage" type=
"int" default=
""/>
14483 <method name=
"base_OnEndDocument" type=
"" overloaded=
"no">
14484 <autodoc>base_OnEndDocument()
</autodoc>
14486 <method name=
"base_OnBeginPrinting" type=
"" overloaded=
"no">
14487 <autodoc>base_OnBeginPrinting()
</autodoc>
14489 <method name=
"base_OnEndPrinting" type=
"" overloaded=
"no">
14490 <autodoc>base_OnEndPrinting()
</autodoc>
14492 <method name=
"base_OnPreparePrinting" type=
"" overloaded=
"no">
14493 <autodoc>base_OnPreparePrinting()
</autodoc>
14495 <method name=
"base_HasPage" type=
"bool" overloaded=
"no">
14496 <autodoc>base_HasPage(int page) -
> bool
</autodoc>
14498 <param name=
"page" type=
"int" default=
""/>
14501 <method name=
"base_GetPageInfo" type=
"" overloaded=
"no">
14502 <autodoc>base_GetPageInfo() -
> (minPage, maxPage, pageFrom, pageTo)
</autodoc>
14504 <param name=
"OUTPUT" type=
"int" default=
""/>
14505 <param name=
"OUTPUT" type=
"int" default=
""/>
14506 <param name=
"OUTPUT" type=
"int" default=
""/>
14507 <param name=
"OUTPUT" type=
"int" default=
""/>
14511 <class name=
"PreviewCanvas" oldname=
"wxPreviewCanvas" module=
"windows">
14512 <baseclass name=
"ScrolledWindow"/>
14513 <constructor name=
"PreviewCanvas" overloaded=
"no">
14514 <autodoc>__init__(PrintPreview preview, Window parent, Point pos=DefaultPosition,
14515 Size size=DefaultSize, long style=
0,
14516 String name=PreviewCanvasNameStr) -
> PreviewCanvas
</autodoc>
14518 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14519 <param name=
"parent" type=
"Window" default=
""/>
14520 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14521 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14522 <param name=
"style" type=
"long" default=
"0"/>
14523 <param name=
"name" type=
"String" default=
"wxPyPreviewCanvasNameStr"/>
14527 <class name=
"PreviewFrame" oldname=
"wxPreviewFrame" module=
"windows">
14528 <baseclass name=
"Frame"/>
14529 <constructor name=
"PreviewFrame" overloaded=
"no">
14530 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
14531 Size size=DefaultSize,
14532 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PreviewFrame
</autodoc>
14534 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14535 <param name=
"parent" type=
"Frame" default=
""/>
14536 <param name=
"title" type=
"String" default=
""/>
14537 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14538 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14539 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
14540 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
14543 <method name=
"Initialize" type=
"" overloaded=
"no">
14544 <autodoc>Initialize()
</autodoc>
14546 <method name=
"CreateControlBar" type=
"" overloaded=
"no">
14547 <autodoc>CreateControlBar()
</autodoc>
14549 <method name=
"CreateCanvas" type=
"" overloaded=
"no">
14550 <autodoc>CreateCanvas()
</autodoc>
14552 <method name=
"GetControlBar" type=
"wxPreviewControlBar" overloaded=
"no">
14553 <autodoc>GetControlBar() -
> PreviewControlBar
</autodoc>
14556 <class name=
"PreviewControlBar" oldname=
"wxPreviewControlBar" module=
"windows">
14557 <baseclass name=
"Panel"/>
14558 <constructor name=
"PreviewControlBar" overloaded=
"no">
14559 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
14560 Point pos=DefaultPosition, Size size=DefaultSize,
14561 long style=TAB_TRAVERSAL, String name=PanelNameStr) -
> PreviewControlBar
</autodoc>
14563 <param name=
"preview" type=
"wxPrintPreview" default=
""/>
14564 <param name=
"buttons" type=
"long" default=
""/>
14565 <param name=
"parent" type=
"Window" default=
""/>
14566 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14567 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14568 <param name=
"style" type=
"long" default=
"wxTAB_TRAVERSAL"/>
14569 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
14572 <method name=
"GetZoomControl" type=
"int" overloaded=
"no">
14573 <autodoc>GetZoomControl() -
> int
</autodoc>
14575 <method name=
"SetZoomControl" type=
"" overloaded=
"no">
14576 <autodoc>SetZoomControl(int zoom)
</autodoc>
14578 <param name=
"zoom" type=
"int" default=
""/>
14581 <method name=
"GetPrintPreview" type=
"wxPrintPreview" overloaded=
"no">
14582 <autodoc>GetPrintPreview() -
> PrintPreview
</autodoc>
14584 <method name=
"OnNext" type=
"" overloaded=
"no">
14585 <autodoc>OnNext()
</autodoc>
14587 <method name=
"OnPrevious" type=
"" overloaded=
"no">
14588 <autodoc>OnPrevious()
</autodoc>
14590 <method name=
"OnFirst" type=
"" overloaded=
"no">
14591 <autodoc>OnFirst()
</autodoc>
14593 <method name=
"OnLast" type=
"" overloaded=
"no">
14594 <autodoc>OnLast()
</autodoc>
14596 <method name=
"OnGoto" type=
"" overloaded=
"no">
14597 <autodoc>OnGoto()
</autodoc>
14600 <class name=
"PrintPreview" oldname=
"wxPrintPreview" module=
"windows">
14601 <baseclass name=
"Object"/>
14602 <constructor name=
"PrintPreview" overloaded=
"no">
14603 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PrintPreview
</autodoc>
14605 <param name=
"printout" type=
"Printout" default=
""/>
14606 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14607 <param name=
"data" type=
"PrintData" default=
"NULL"/>
14610 <method name=
"SetCurrentPage" type=
"bool" overloaded=
"no">
14611 <autodoc>SetCurrentPage(int pageNum) -
> bool
</autodoc>
14613 <param name=
"pageNum" type=
"int" default=
""/>
14616 <method name=
"GetCurrentPage" type=
"int" overloaded=
"no">
14617 <autodoc>GetCurrentPage() -
> int
</autodoc>
14619 <method name=
"SetPrintout" type=
"" overloaded=
"no">
14620 <autodoc>SetPrintout(Printout printout)
</autodoc>
14622 <param name=
"printout" type=
"Printout" default=
""/>
14625 <method name=
"GetPrintout" type=
"Printout" overloaded=
"no">
14626 <autodoc>GetPrintout() -
> Printout
</autodoc>
14628 <method name=
"GetPrintoutForPrinting" type=
"Printout" overloaded=
"no">
14629 <autodoc>GetPrintoutForPrinting() -
> Printout
</autodoc>
14631 <method name=
"SetFrame" type=
"" overloaded=
"no">
14632 <autodoc>SetFrame(Frame frame)
</autodoc>
14634 <param name=
"frame" type=
"Frame" default=
""/>
14637 <method name=
"SetCanvas" type=
"" overloaded=
"no">
14638 <autodoc>SetCanvas(PreviewCanvas canvas)
</autodoc>
14640 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14643 <method name=
"GetFrame" type=
"Frame" overloaded=
"no">
14644 <autodoc>GetFrame() -
> Frame
</autodoc>
14646 <method name=
"GetCanvas" type=
"PreviewCanvas" overloaded=
"no">
14647 <autodoc>GetCanvas() -
> PreviewCanvas
</autodoc>
14649 <method name=
"PaintPage" type=
"bool" overloaded=
"no">
14650 <autodoc>PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14652 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14653 <param name=
"dc" type=
"DC" default=
""/>
14656 <method name=
"DrawBlankPage" type=
"bool" overloaded=
"no">
14657 <autodoc>DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14659 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14660 <param name=
"dc" type=
"DC" default=
""/>
14663 <method name=
"RenderPage" type=
"bool" overloaded=
"no">
14664 <autodoc>RenderPage(int pageNum) -
> bool
</autodoc>
14666 <param name=
"pageNum" type=
"int" default=
""/>
14669 <method name=
"AdjustScrollbars" type=
"" overloaded=
"no">
14670 <autodoc>AdjustScrollbars(PreviewCanvas canvas)
</autodoc>
14672 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14675 <method name=
"GetPrintDialogData" type=
"PrintDialogData" overloaded=
"no">
14676 <autodoc>GetPrintDialogData() -
> PrintDialogData
</autodoc>
14678 <method name=
"SetZoom" type=
"" overloaded=
"no">
14679 <autodoc>SetZoom(int percent)
</autodoc>
14681 <param name=
"percent" type=
"int" default=
""/>
14684 <method name=
"GetZoom" type=
"int" overloaded=
"no">
14685 <autodoc>GetZoom() -
> int
</autodoc>
14687 <method name=
"GetMaxPage" type=
"int" overloaded=
"no">
14688 <autodoc>GetMaxPage() -
> int
</autodoc>
14690 <method name=
"GetMinPage" type=
"int" overloaded=
"no">
14691 <autodoc>GetMinPage() -
> int
</autodoc>
14693 <method name=
"Ok" type=
"bool" overloaded=
"no">
14694 <autodoc>Ok() -
> bool
</autodoc>
14696 <method name=
"SetOk" type=
"" overloaded=
"no">
14697 <autodoc>SetOk(bool ok)
</autodoc>
14699 <param name=
"ok" type=
"bool" default=
""/>
14702 <method name=
"Print" type=
"bool" overloaded=
"no">
14703 <autodoc>Print(bool interactive) -
> bool
</autodoc>
14705 <param name=
"interactive" type=
"bool" default=
""/>
14708 <method name=
"DetermineScaling" type=
"" overloaded=
"no">
14709 <autodoc>DetermineScaling()
</autodoc>
14712 <class name=
"PyPrintPreview" oldname=
"wxPyPrintPreview" module=
"windows">
14713 <baseclass name=
"PrintPreview"/>
14714 <constructor name=
"PyPrintPreview" overloaded=
"no">
14715 <autodoc>__init__(Printout printout, Printout printoutForPrinting, PrintData data=None) -
> PyPrintPreview
</autodoc>
14717 <param name=
"printout" type=
"Printout" default=
""/>
14718 <param name=
"printoutForPrinting" type=
"Printout" default=
""/>
14719 <param name=
"data" type=
"PrintData" default=
"NULL"/>
14722 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14723 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14725 <param name=
"self" type=
"PyObject" default=
""/>
14726 <param name=
"_class" type=
"PyObject" default=
""/>
14729 <method name=
"base_SetCurrentPage" type=
"bool" overloaded=
"no">
14730 <autodoc>base_SetCurrentPage(int pageNum) -
> bool
</autodoc>
14732 <param name=
"pageNum" type=
"int" default=
""/>
14735 <method name=
"base_PaintPage" type=
"bool" overloaded=
"no">
14736 <autodoc>base_PaintPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14738 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14739 <param name=
"dc" type=
"DC" default=
""/>
14742 <method name=
"base_DrawBlankPage" type=
"bool" overloaded=
"no">
14743 <autodoc>base_DrawBlankPage(PreviewCanvas canvas, DC dc) -
> bool
</autodoc>
14745 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14746 <param name=
"dc" type=
"DC" default=
""/>
14749 <method name=
"base_RenderPage" type=
"bool" overloaded=
"no">
14750 <autodoc>base_RenderPage(int pageNum) -
> bool
</autodoc>
14752 <param name=
"pageNum" type=
"int" default=
""/>
14755 <method name=
"base_SetZoom" type=
"" overloaded=
"no">
14756 <autodoc>base_SetZoom(int percent)
</autodoc>
14758 <param name=
"percent" type=
"int" default=
""/>
14761 <method name=
"base_Print" type=
"bool" overloaded=
"no">
14762 <autodoc>base_Print(bool interactive) -
> bool
</autodoc>
14764 <param name=
"interactive" type=
"bool" default=
""/>
14767 <method name=
"base_DetermineScaling" type=
"" overloaded=
"no">
14768 <autodoc>base_DetermineScaling()
</autodoc>
14771 <class name=
"PyPreviewFrame" oldname=
"wxPyPreviewFrame" module=
"windows">
14772 <baseclass name=
"PreviewFrame"/>
14773 <constructor name=
"PyPreviewFrame" overloaded=
"no">
14774 <autodoc>__init__(PrintPreview preview, Frame parent, String title, Point pos=DefaultPosition,
14775 Size size=DefaultSize,
14776 long style=DEFAULT_FRAME_STYLE, String name=FrameNameStr) -
> PyPreviewFrame
</autodoc>
14778 <param name=
"preview" type=
"PrintPreview" default=
""/>
14779 <param name=
"parent" type=
"Frame" default=
""/>
14780 <param name=
"title" type=
"String" default=
""/>
14781 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14782 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14783 <param name=
"style" type=
"long" default=
"wxDEFAULT_FRAME_STYLE"/>
14784 <param name=
"name" type=
"String" default=
"wxPyFrameNameStr"/>
14787 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14788 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14790 <param name=
"self" type=
"PyObject" default=
""/>
14791 <param name=
"_class" type=
"PyObject" default=
""/>
14794 <method name=
"SetPreviewCanvas" type=
"" overloaded=
"no">
14795 <autodoc>SetPreviewCanvas(PreviewCanvas canvas)
</autodoc>
14797 <param name=
"canvas" type=
"PreviewCanvas" default=
""/>
14800 <method name=
"SetControlBar" type=
"" overloaded=
"no">
14801 <autodoc>SetControlBar(PreviewControlBar bar)
</autodoc>
14803 <param name=
"bar" type=
"PreviewControlBar" default=
""/>
14806 <method name=
"base_Initialize" type=
"" overloaded=
"no">
14807 <autodoc>base_Initialize()
</autodoc>
14809 <method name=
"base_CreateCanvas" type=
"" overloaded=
"no">
14810 <autodoc>base_CreateCanvas()
</autodoc>
14812 <method name=
"base_CreateControlBar" type=
"" overloaded=
"no">
14813 <autodoc>base_CreateControlBar()
</autodoc>
14816 <class name=
"PyPreviewControlBar" oldname=
"wxPyPreviewControlBar" module=
"windows">
14817 <baseclass name=
"PreviewControlBar"/>
14818 <constructor name=
"PyPreviewControlBar" overloaded=
"no">
14819 <autodoc>__init__(PrintPreview preview, long buttons, Window parent,
14820 Point pos=DefaultPosition, Size size=DefaultSize,
14821 long style=
0, String name=PanelNameStr) -
> PyPreviewControlBar
</autodoc>
14823 <param name=
"preview" type=
"PrintPreview" default=
""/>
14824 <param name=
"buttons" type=
"long" default=
""/>
14825 <param name=
"parent" type=
"Window" default=
""/>
14826 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14827 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14828 <param name=
"style" type=
"long" default=
"0"/>
14829 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
14832 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
14833 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
14835 <param name=
"self" type=
"PyObject" default=
""/>
14836 <param name=
"_class" type=
"PyObject" default=
""/>
14839 <method name=
"SetPrintPreview" type=
"" overloaded=
"no">
14840 <autodoc>SetPrintPreview(PrintPreview preview)
</autodoc>
14842 <param name=
"preview" type=
"PrintPreview" default=
""/>
14845 <method name=
"base_CreateButtons" type=
"" overloaded=
"no">
14846 <autodoc>base_CreateButtons()
</autodoc>
14848 <method name=
"base_SetZoomControl" type=
"" overloaded=
"no">
14849 <autodoc>base_SetZoomControl(int zoom)
</autodoc>
14851 <param name=
"zoom" type=
"int" default=
""/>
14856 <module name=
"controls">
14857 <import name=
"core"/>
14858 <pythoncode> wx = core
</pythoncode>
14860 #---------------------------------------------------------------------------
14862 <class name=
"Button" oldname=
"wxButton" module=
"controls">
14863 <docstring>A button is a control that contains a text string, and is one of the most
14864 common elements of a GUI. It may be placed on a dialog box or panel, or
14865 indeed almost any other window.
</docstring>
14868 wx.BU_LEFT: Left-justifies the label. WIN32 only.
14869 wx.BU_TOP: Aligns the label to the top of the button. WIN32 only.
14870 wx.BU_RIGHT: Right-justifies the bitmap label. WIN32 only.
14871 wx.BU_BOTTOM: Aligns the label to the bottom of the button. WIN32 only.
14872 wx.BU_EXACTFIT: Creates the button as small as possible instead of making
14873 it of the standard size (which is the default behaviour.)
14876 EVT_BUTTON: Sent when the button is clicked.
14878 <baseclass name=
"Control"/>
14879 <constructor name=
"Button" overloaded=
"no">
14880 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
14881 Size size=DefaultSize, long style=
0,
14882 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> Button
</autodoc>
14883 <docstring>Create and show a button.
</docstring>
14885 <param name=
"parent" type=
"Window" default=
""/>
14886 <param name=
"id" type=
"int" default=
""/>
14887 <param name=
"label" type=
"String" default=
""/>
14888 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14889 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14890 <param name=
"style" type=
"long" default=
"0"/>
14891 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14892 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14895 <constructor name=
"PreButton" overloaded=
"no">
14896 <autodoc>PreButton() -
> Button
</autodoc>
14897 <docstring>Precreate a Button for
2-phase creation.
</docstring>
14899 <method name=
"Create" type=
"bool" overloaded=
"no">
14900 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
14901 Size size=DefaultSize, long style=
0,
14902 Validator validator=DefaultValidator, String name=ButtonNameStr) -
> bool
</autodoc>
14903 <docstring>Acutally create the GUI Button for
2-phase creation.
</docstring>
14905 <param name=
"parent" type=
"Window" default=
""/>
14906 <param name=
"id" type=
"int" default=
""/>
14907 <param name=
"label" type=
"String" default=
""/>
14908 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14909 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14910 <param name=
"style" type=
"long" default=
"0"/>
14911 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14912 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14915 <method name=
"SetDefault" type=
"" overloaded=
"no">
14916 <autodoc>SetDefault()
</autodoc>
14917 <docstring>This sets the button to be the default item for the panel or dialog box.
</docstring>
14919 <staticmethod name=
"GetDefaultSize" type=
"Size" overloaded=
"no">
14920 <autodoc>GetDefaultSize() -
> Size
</autodoc>
14923 <class name=
"BitmapButton" oldname=
"wxBitmapButton" module=
"controls">
14924 <docstring>A Button that contains a bitmap. A bitmap button can be supplied with a
14925 single bitmap, and wxWindows will draw all button states using this bitmap. If
14926 the application needs more control, additional bitmaps for the selected state,
14927 unpressed focused state, and greyed-out state may be supplied.
14929 <baseclass name=
"Button"/>
14930 <constructor name=
"BitmapButton" overloaded=
"no">
14931 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
14932 Size size=DefaultSize, long style=BU_AUTODRAW,
14933 Validator validator=DefaultValidator,
14934 String name=ButtonNameStr) -
> BitmapButton
</autodoc>
14935 <docstring>Create and show a button with a bitmap for the label.
</docstring>
14937 <param name=
"parent" type=
"Window" default=
""/>
14938 <param name=
"id" type=
"int" default=
""/>
14939 <param name=
"bitmap" type=
"Bitmap" default=
""/>
14940 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14941 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14942 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
14943 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14944 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14947 <constructor name=
"PreBitmapButton" overloaded=
"no">
14948 <autodoc>PreBitmapButton() -
> BitmapButton
</autodoc>
14949 <docstring>Precreate a BitmapButton for
2-phase creation.
</docstring>
14951 <method name=
"Create" type=
"bool" overloaded=
"no">
14952 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
14953 Size size=DefaultSize, long style=BU_AUTODRAW,
14954 Validator validator=DefaultValidator,
14955 String name=ButtonNameStr) -
> bool
</autodoc>
14956 <docstring>Acutally create the GUI BitmapButton for
2-phase creation.
</docstring>
14958 <param name=
"parent" type=
"Window" default=
""/>
14959 <param name=
"id" type=
"int" default=
""/>
14960 <param name=
"bitmap" type=
"Bitmap" default=
""/>
14961 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
14962 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
14963 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
14964 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
14965 <param name=
"name" type=
"String" default=
"wxPyButtonNameStr"/>
14968 <method name=
"GetBitmapLabel" type=
"Bitmap" overloaded=
"no">
14969 <autodoc>GetBitmapLabel() -
> Bitmap
</autodoc>
14970 <docstring>Returns the label bitmap (the one passed to the constructor).
</docstring>
14972 <method name=
"GetBitmapDisabled" type=
"Bitmap" overloaded=
"no">
14973 <autodoc>GetBitmapDisabled() -
> Bitmap
</autodoc>
14974 <docstring>Returns the bitmap for the disabled state.
</docstring>
14976 <method name=
"GetBitmapFocus" type=
"Bitmap" overloaded=
"no">
14977 <autodoc>GetBitmapFocus() -
> Bitmap
</autodoc>
14978 <docstring>Returns the bitmap for the focused state.
</docstring>
14980 <method name=
"GetBitmapSelected" type=
"Bitmap" overloaded=
"no">
14981 <autodoc>GetBitmapSelected() -
> Bitmap
</autodoc>
14982 <docstring>Returns the bitmap for the selected state.
</docstring>
14984 <method name=
"SetBitmapDisabled" type=
"" overloaded=
"no">
14985 <autodoc>SetBitmapDisabled(Bitmap bitmap)
</autodoc>
14986 <docstring>Sets the bitmap for the disabled button appearance.
</docstring>
14988 <param name=
"bitmap" type=
"Bitmap" default=
""/>
14991 <method name=
"SetBitmapFocus" type=
"" overloaded=
"no">
14992 <autodoc>SetBitmapFocus(Bitmap bitmap)
</autodoc>
14993 <docstring>Sets the bitmap for the button appearance when it has the keyboard focus.
</docstring>
14995 <param name=
"bitmap" type=
"Bitmap" default=
""/>
14998 <method name=
"SetBitmapSelected" type=
"" overloaded=
"no">
14999 <autodoc>SetBitmapSelected(Bitmap bitmap)
</autodoc>
15000 <docstring>Sets the bitmap for the selected (depressed) button appearance.
</docstring>
15002 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15005 <method name=
"SetBitmapLabel" type=
"" overloaded=
"no">
15006 <autodoc>SetBitmapLabel(Bitmap bitmap)
</autodoc>
15007 <docstring>Sets the bitmap label for the button. This is the bitmap used for the
15008 unselected state, and for all other states if no other bitmaps are provided.
</docstring>
15010 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15013 <method name=
"SetMargins" type=
"" overloaded=
"no">
15014 <autodoc>SetMargins(int x, int y)
</autodoc>
15016 <param name=
"x" type=
"int" default=
""/>
15017 <param name=
"y" type=
"int" default=
""/>
15020 <method name=
"GetMarginX" type=
"int" overloaded=
"no">
15021 <autodoc>GetMarginX() -
> int
</autodoc>
15023 <method name=
"GetMarginY" type=
"int" overloaded=
"no">
15024 <autodoc>GetMarginY() -
> int
</autodoc>
15028 #---------------------------------------------------------------------------
15030 <class name=
"CheckBox" oldname=
"wxCheckBox" module=
"controls">
15031 <docstring>A checkbox is a labelled box which by default is either on (checkmark is
15032 visible) or off (no checkmark). Optionally (When the wxCHK_3STATE style flag
15033 is set) it can have a third state, called the mixed or undetermined
15034 state. Often this is used as a "Does Not Apply" state.
</docstring>
15037 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15038 wx.CHK_3STATE: Create a
3-state checkbox.
15039 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15040 checkbox to the third state. It can only
15041 be done from code. Using this flags
15042 allows the user to set the checkbox to
15043 the third state by clicking.
15044 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15047 EVT_CHECKBOX: Sent when checkbox is clicked.
15049 <baseclass name=
"Control"/>
15050 <constructor name=
"CheckBox" overloaded=
"no">
15051 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15052 Size size=DefaultSize, long style=
0,
15053 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> CheckBox
</autodoc>
15054 <docstring>Creates and shows a CheckBox control
</docstring>
15057 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15058 wx.CHK_3STATE: Create a
3-state checkbox.
15059 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15060 checkbox to the third state. It can only
15061 be done from code. Using this flags
15062 allows the user to set the checkbox to
15063 the third state by clicking.
15064 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15067 EVT_CHECKBOX: Sent when checkbox is clicked.
15070 <param name=
"parent" type=
"Window" default=
""/>
15071 <param name=
"id" type=
"int" default=
""/>
15072 <param name=
"label" type=
"String" default=
""/>
15073 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15074 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15075 <param name=
"style" type=
"long" default=
"0"/>
15076 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15077 <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/>
15080 <constructor name=
"PreCheckBox" overloaded=
"no">
15081 <autodoc>PreCheckBox() -
> CheckBox
</autodoc>
15082 <docstring>Precreate a CheckBox for
2-phase creation.
</docstring>
15085 wx.CHK_2STATE: Create a
2-state checkbox. This is the default.
15086 wx.CHK_3STATE: Create a
3-state checkbox.
15087 wx.CHK_ALLOW_3RD_STATE_FOR_USER: By default a user can't set a
3-state
15088 checkbox to the third state. It can only
15089 be done from code. Using this flags
15090 allows the user to set the checkbox to
15091 the third state by clicking.
15092 wx.ALIGN_RIGHT: Makes the text appear on the left of the checkbox.
15095 EVT_CHECKBOX: Sent when checkbox is clicked.
15098 <method name=
"Create" type=
"bool" overloaded=
"no">
15099 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15100 Size size=DefaultSize, long style=
0,
15101 Validator validator=DefaultValidator, String name=CheckBoxNameStr) -
> bool
</autodoc>
15102 <docstring>Actually create the GUI CheckBox for
2-phase creation.
</docstring>
15104 <param name=
"parent" type=
"Window" default=
""/>
15105 <param name=
"id" type=
"int" default=
""/>
15106 <param name=
"label" type=
"String" default=
""/>
15107 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15108 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15109 <param name=
"style" type=
"long" default=
"0"/>
15110 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15111 <param name=
"name" type=
"String" default=
"wxPyCheckBoxNameStr"/>
15114 <method name=
"GetValue" type=
"bool" overloaded=
"no">
15115 <autodoc>GetValue() -
> bool
</autodoc>
15116 <docstring>Gets the state of a
2-state CheckBox. Returns True if it is checked,
15117 False otherwise.
</docstring>
15119 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
15120 <autodoc>IsChecked() -
> bool
</autodoc>
15121 <docstring>Similar to GetValue, but raises an exception if it is not a
2-state CheckBox.
</docstring>
15123 <method name=
"SetValue" type=
"" overloaded=
"no">
15124 <autodoc>SetValue(bool state)
</autodoc>
15125 <docstring>Set the state of a
2-state CheckBox. Pass True for checked,
15126 False for unchecked.
</docstring>
15128 <param name=
"state" type=
"bool" default=
""/>
15131 <method name=
"Get3StateValue" type=
"wxCheckBoxState" overloaded=
"no">
15132 <autodoc>Get3StateValue() -
> int
</autodoc>
15133 <docstring>Returns wx.CHK_UNCHECKED when the CheckBox is unchecked, wx.CHK_CHECKED when
15134 it is checked and wx.CHK_UNDETERMINED when it's in the undetermined state.
15135 Raises an exceptiion when the function is used with a
2-state CheckBox.
</docstring>
15137 <method name=
"Set3StateValue" type=
"" overloaded=
"no">
15138 <autodoc>Set3StateValue(int state)
</autodoc>
15139 <docstring>Sets the CheckBox to the given state. The state parameter can be
15140 one of the following: wx.CHK_UNCHECKED (Check is off), wx.CHK_CHECKED
15141 (Check is on) or wx.CHK_UNDETERMINED (Check is mixed). Raises an
15142 exception when the CheckBox is a
2-state checkbox and setting the state
15143 to wx.CHK_UNDETERMINED.
</docstring>
15145 <param name=
"state" type=
"wxCheckBoxState" default=
""/>
15148 <method name=
"Is3State" type=
"bool" overloaded=
"no">
15149 <autodoc>Is3State() -
> bool
</autodoc>
15150 <docstring>Returns whether or not the CheckBox is a
3-state CheckBox.
</docstring>
15152 <method name=
"Is3rdStateAllowedForUser" type=
"bool" overloaded=
"no">
15153 <autodoc>Is3rdStateAllowedForUser() -
> bool
</autodoc>
15154 <docstring>Returns whether or not the user can set the CheckBox to the third state.
</docstring>
15158 #---------------------------------------------------------------------------
15160 <class name=
"Choice" oldname=
"wxChoice" module=
"controls">
15161 <docstring>A Choice control is used to select one of a list of strings. Unlike a ListBox,
15162 only the selection is visible until the user pulls down the menu of choices.
</docstring>
15165 EVT_CHOICE: Sent when an item in the list is selected.
15167 <baseclass name=
"ControlWithItems"/>
15168 <constructor name=
"Choice" overloaded=
"no">
15169 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15170 List choices=[], long style=
0, Validator validator=DefaultValidator,
15171 String name=ChoiceNameStr) -
> Choice
</autodoc>
15172 <docstring>Create and show a Choice control
</docstring>
15175 EVT_CHOICE: Sent when an item in the list is selected.
15178 <param name=
"parent" type=
"Window" default=
""/>
15179 <param name=
"id" type=
"int" default=
""/>
15180 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15181 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15182 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15183 <param name=
"style" type=
"long" default=
"0"/>
15184 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15185 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15188 <constructor name=
"PreChoice" overloaded=
"no">
15189 <autodoc>PreChoice() -
> Choice
</autodoc>
15190 <docstring>Precreate a Choice control for
2-phase creation.
</docstring>
15193 EVT_CHOICE: Sent when an item in the list is selected.
15196 <method name=
"Create" type=
"bool" overloaded=
"no">
15197 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15198 List choices=[], long style=
0, Validator validator=DefaultValidator,
15199 String name=ChoiceNameStr) -
> bool
</autodoc>
15200 <docstring>Actually create the GUI Choice control for
2-phase creation
</docstring>
15202 <param name=
"parent" type=
"Window" default=
""/>
15203 <param name=
"id" type=
"int" default=
""/>
15204 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15205 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15206 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15207 <param name=
"style" type=
"long" default=
"0"/>
15208 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15209 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15212 <method name=
"SetSelection" type=
"" overloaded=
"no">
15213 <autodoc>SetSelection(int n)
</autodoc>
15214 <docstring>Select the n'th item (zero based) in the list.
</docstring>
15216 <param name=
"n" type=
"int" default=
""/>
15219 <method name=
"SetStringSelection" type=
"" overloaded=
"no">
15220 <autodoc>SetStringSelection(String string)
</autodoc>
15221 <docstring>Select the item with the specifed string
</docstring>
15223 <param name=
"string" type=
"String" default=
""/>
15226 <method name=
"SetString" type=
"" overloaded=
"no">
15227 <autodoc>SetString(int n, String string)
</autodoc>
15228 <docstring>Set the label for the n'th item (zero based) in the list.
</docstring>
15230 <param name=
"n" type=
"int" default=
""/>
15231 <param name=
"string" type=
"String" default=
""/>
15236 #---------------------------------------------------------------------------
15238 <class name=
"ComboBox" oldname=
"wxComboBox" module=
"controls">
15239 <docstring>A combobox is like a combination of an edit control and a listbox. It can be
15240 displayed as static list with editable or read-only text field; or a drop-down
15241 list with text field.
</docstring>
15244 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15247 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15249 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15250 the combobox choices can be selected, it is impossible
15251 to select (even from a program) a string which is not in
15254 wx.CB_SORT: Sorts the entries in the list alphabetically.
15258 EVT_COMBOBOX: Sent when an item on the list is selected.
15259 EVT_TEXT: Sent when the combobox text changes.
15261 <baseclass name=
"Control"/>
15262 <baseclass name=
"ItemContainer"/>
15263 <constructor name=
"ComboBox" overloaded=
"no">
15264 <autodoc>__init__(Window parent, int id, String value=EmptyString,
15265 Point pos=DefaultPosition, Size size=DefaultSize,
15266 List choices=[], long style=
0, Validator validator=DefaultValidator,
15267 String name=ComboBoxNameStr) -
> ComboBox
</autodoc>
15268 <docstring>Constructor, creates and shows a ComboBox control.
</docstring>
15271 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15274 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15276 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15277 the combobox choices can be selected, it is impossible
15278 to select (even from a program) a string which is not in
15281 wx.CB_SORT: Sorts the entries in the list alphabetically.
15285 EVT_COMBOBOX: Sent when an item on the list is selected.
15286 EVT_TEXT: Sent when the combobox text changes.
15289 <param name=
"parent" type=
"Window" default=
""/>
15290 <param name=
"id" type=
"int" default=
""/>
15291 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
15292 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15293 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15294 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15295 <param name=
"style" type=
"long" default=
"0"/>
15296 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15297 <param name=
"name" type=
"String" default=
"wxPyComboBoxNameStr"/>
15300 <constructor name=
"PreComboBox" overloaded=
"no">
15301 <autodoc>PreComboBox() -
> ComboBox
</autodoc>
15302 <docstring>Precreate a ComboBox control for
2-phase creation.
</docstring>
15305 wx.CB_SIMPLE: Creates a combobox with a permanently displayed list.
15308 wx.CB_DROPDOWN: Creates a combobox with a drop-down list.
15310 wx.CB_READONLY: Same as wxCB_DROPDOWN but only the strings specified as
15311 the combobox choices can be selected, it is impossible
15312 to select (even from a program) a string which is not in
15315 wx.CB_SORT: Sorts the entries in the list alphabetically.
15319 EVT_COMBOBOX: Sent when an item on the list is selected.
15320 EVT_TEXT: Sent when the combobox text changes.
15323 <method name=
"Create" type=
"bool" overloaded=
"no">
15324 <autodoc>Create(Window parent, int id, String value=EmptyString,
15325 Point pos=DefaultPosition, Size size=DefaultSize,
15326 List choices=[], long style=
0, Validator validator=DefaultValidator,
15327 String name=ChoiceNameStr) -
> bool
</autodoc>
15328 <docstring>Actually create the GUI wxComboBox control for
2-phase creation
</docstring>
15330 <param name=
"parent" type=
"Window" default=
""/>
15331 <param name=
"id" type=
"int" default=
""/>
15332 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
15333 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15334 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15335 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15336 <param name=
"style" type=
"long" default=
"0"/>
15337 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15338 <param name=
"name" type=
"String" default=
"wxPyChoiceNameStr"/>
15341 <method name=
"GetValue" type=
"String" overloaded=
"no">
15342 <autodoc>GetValue() -
> String
</autodoc>
15343 <docstring>Returns the current value in the combobox text field.
</docstring>
15345 <method name=
"SetValue" type=
"" overloaded=
"no">
15346 <autodoc>SetValue(String value)
</autodoc>
15348 <param name=
"value" type=
"String" default=
""/>
15351 <method name=
"Copy" type=
"" overloaded=
"no">
15352 <autodoc>Copy()
</autodoc>
15353 <docstring>Copies the selected text to the clipboard.
</docstring>
15355 <method name=
"Cut" type=
"" overloaded=
"no">
15356 <autodoc>Cut()
</autodoc>
15357 <docstring>Copies the selected text to the clipboard and removes the selection.
</docstring>
15359 <method name=
"Paste" type=
"" overloaded=
"no">
15360 <autodoc>Paste()
</autodoc>
15361 <docstring>Pastes text from the clipboard to the text field.
</docstring>
15363 <method name=
"SetInsertionPoint" type=
"" overloaded=
"no">
15364 <autodoc>SetInsertionPoint(long pos)
</autodoc>
15365 <docstring>Sets the insertion point in the combobox text field.
</docstring>
15367 <param name=
"pos" type=
"long" default=
""/>
15370 <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no">
15371 <autodoc>GetInsertionPoint() -
> long
</autodoc>
15372 <docstring>Returns the insertion point for the combobox's text field.
</docstring>
15374 <method name=
"GetLastPosition" type=
"long" overloaded=
"no">
15375 <autodoc>GetLastPosition() -
> long
</autodoc>
15376 <docstring>Returns the last position in the combobox text field.
</docstring>
15378 <method name=
"Replace" type=
"" overloaded=
"no">
15379 <autodoc>Replace(long from, long to, String value)
</autodoc>
15380 <docstring>Replaces the text between two positions with the given text, in the
15381 combobox text field.
</docstring>
15383 <param name=
"from" type=
"long" default=
""/>
15384 <param name=
"to" type=
"long" default=
""/>
15385 <param name=
"value" type=
"String" default=
""/>
15388 <method name=
"SetSelection" type=
"" overloaded=
"no">
15389 <autodoc>SetSelection(int n)
</autodoc>
15390 <docstring>Selects the text between the two positions, in the combobox text field.
</docstring>
15392 <param name=
"n" type=
"int" default=
""/>
15395 <method name=
"SetMark" type=
"" overloaded=
"no">
15396 <autodoc>SetMark(long from, long to)
</autodoc>
15398 <param name=
"from" type=
"long" default=
""/>
15399 <param name=
"to" type=
"long" default=
""/>
15402 <method name=
"SetEditable" type=
"" overloaded=
"no">
15403 <autodoc>SetEditable(bool editable)
</autodoc>
15405 <param name=
"editable" type=
"bool" default=
""/>
15408 <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no">
15409 <autodoc>SetInsertionPointEnd()
</autodoc>
15410 <docstring>Sets the insertion point at the end of the combobox text field.
</docstring>
15412 <method name=
"Remove" type=
"" overloaded=
"no">
15413 <autodoc>Remove(long from, long to)
</autodoc>
15414 <docstring>Removes the text between the two positions in the combobox text field.
</docstring>
15416 <param name=
"from" type=
"long" default=
""/>
15417 <param name=
"to" type=
"long" default=
""/>
15422 #---------------------------------------------------------------------------
15424 <class name=
"Gauge" oldname=
"wxGauge" module=
"controls">
15425 <baseclass name=
"Control"/>
15426 <constructor name=
"Gauge" overloaded=
"no">
15427 <autodoc>__init__(Window parent, int id, int range, Point pos=DefaultPosition,
15428 Size size=DefaultSize, long style=GA_HORIZONTAL,
15429 Validator validator=DefaultValidator,
15430 String name=GaugeNameStr) -
> Gauge
</autodoc>
15432 <param name=
"parent" type=
"Window" default=
""/>
15433 <param name=
"id" type=
"int" default=
""/>
15434 <param name=
"range" type=
"int" default=
""/>
15435 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15436 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15437 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
15438 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15439 <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/>
15442 <constructor name=
"PreGauge" overloaded=
"no">
15443 <autodoc>PreGauge() -
> Gauge
</autodoc>
15445 <method name=
"Create" type=
"bool" overloaded=
"no">
15446 <autodoc>Create(Window parent, int id, int range, Point pos=DefaultPosition,
15447 Size size=DefaultSize, long style=GA_HORIZONTAL,
15448 Validator validator=DefaultValidator,
15449 String name=GaugeNameStr) -
> bool
</autodoc>
15451 <param name=
"parent" type=
"Window" default=
""/>
15452 <param name=
"id" type=
"int" default=
""/>
15453 <param name=
"range" type=
"int" default=
""/>
15454 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15455 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15456 <param name=
"style" type=
"long" default=
"wxGA_HORIZONTAL"/>
15457 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15458 <param name=
"name" type=
"String" default=
"wxPyGaugeNameStr"/>
15461 <method name=
"SetRange" type=
"" overloaded=
"no">
15462 <autodoc>SetRange(int range)
</autodoc>
15464 <param name=
"range" type=
"int" default=
""/>
15467 <method name=
"GetRange" type=
"int" overloaded=
"no">
15468 <autodoc>GetRange() -
> int
</autodoc>
15470 <method name=
"SetValue" type=
"" overloaded=
"no">
15471 <autodoc>SetValue(int pos)
</autodoc>
15473 <param name=
"pos" type=
"int" default=
""/>
15476 <method name=
"GetValue" type=
"int" overloaded=
"no">
15477 <autodoc>GetValue() -
> int
</autodoc>
15479 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
15480 <autodoc>IsVertical() -
> bool
</autodoc>
15482 <method name=
"SetShadowWidth" type=
"" overloaded=
"no">
15483 <autodoc>SetShadowWidth(int w)
</autodoc>
15485 <param name=
"w" type=
"int" default=
""/>
15488 <method name=
"GetShadowWidth" type=
"int" overloaded=
"no">
15489 <autodoc>GetShadowWidth() -
> int
</autodoc>
15491 <method name=
"SetBezelFace" type=
"" overloaded=
"no">
15492 <autodoc>SetBezelFace(int w)
</autodoc>
15494 <param name=
"w" type=
"int" default=
""/>
15497 <method name=
"GetBezelFace" type=
"int" overloaded=
"no">
15498 <autodoc>GetBezelFace() -
> int
</autodoc>
15502 #---------------------------------------------------------------------------
15504 <class name=
"StaticBox" oldname=
"wxStaticBox" module=
"controls">
15505 <baseclass name=
"Control"/>
15506 <constructor name=
"StaticBox" overloaded=
"no">
15507 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15508 Size size=DefaultSize, long style=
0,
15509 String name=StaticBoxNameStr) -
> StaticBox
</autodoc>
15511 <param name=
"parent" type=
"Window" default=
""/>
15512 <param name=
"id" type=
"int" default=
""/>
15513 <param name=
"label" type=
"String" default=
""/>
15514 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15515 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15516 <param name=
"style" type=
"long" default=
"0"/>
15517 <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/>
15520 <constructor name=
"PreStaticBox" overloaded=
"no">
15521 <autodoc>PreStaticBox() -
> StaticBox
</autodoc>
15523 <method name=
"Create" type=
"bool" overloaded=
"no">
15524 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15525 Size size=DefaultSize, long style=
0,
15526 String name=StaticBoxNameStr) -
> bool
</autodoc>
15528 <param name=
"parent" type=
"Window" default=
""/>
15529 <param name=
"id" type=
"int" default=
""/>
15530 <param name=
"label" type=
"String" default=
""/>
15531 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15532 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15533 <param name=
"style" type=
"long" default=
"0"/>
15534 <param name=
"name" type=
"String" default=
"wxPyStaticBoxNameStr"/>
15539 #---------------------------------------------------------------------------
15541 <class name=
"StaticLine" oldname=
"wxStaticLine" module=
"controls">
15542 <baseclass name=
"Control"/>
15543 <constructor name=
"StaticLine" overloaded=
"no">
15544 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15545 long style=LI_HORIZONTAL,
15546 String name=StaticTextNameStr) -
> StaticLine
</autodoc>
15548 <param name=
"parent" type=
"Window" default=
""/>
15549 <param name=
"id" type=
"int" default=
""/>
15550 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15551 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15552 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
15553 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15556 <constructor name=
"PreStaticLine" overloaded=
"no">
15557 <autodoc>PreStaticLine() -
> StaticLine
</autodoc>
15559 <method name=
"Create" type=
"bool" overloaded=
"no">
15560 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15561 long style=LI_HORIZONTAL,
15562 String name=StaticTextNameStr) -
> bool
</autodoc>
15564 <param name=
"parent" type=
"Window" default=
""/>
15565 <param name=
"id" type=
"int" default=
""/>
15566 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15567 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15568 <param name=
"style" type=
"long" default=
"wxLI_HORIZONTAL"/>
15569 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15572 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
15573 <autodoc>IsVertical() -
> bool
</autodoc>
15575 <staticmethod name=
"GetDefaultSize" type=
"int" overloaded=
"no">
15576 <autodoc>GetDefaultSize() -
> int
</autodoc>
15580 #---------------------------------------------------------------------------
15582 <class name=
"StaticText" oldname=
"wxStaticText" module=
"controls">
15583 <baseclass name=
"Control"/>
15584 <constructor name=
"StaticText" overloaded=
"no">
15585 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
15586 Size size=DefaultSize, long style=
0,
15587 String name=StaticTextNameStr) -
> StaticText
</autodoc>
15589 <param name=
"parent" type=
"Window" default=
""/>
15590 <param name=
"id" type=
"int" default=
""/>
15591 <param name=
"label" type=
"String" default=
""/>
15592 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15593 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15594 <param name=
"style" type=
"long" default=
"0"/>
15595 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15598 <constructor name=
"PreStaticText" overloaded=
"no">
15599 <autodoc>PreStaticText() -
> StaticText
</autodoc>
15601 <method name=
"Create" type=
"bool" overloaded=
"no">
15602 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
15603 Size size=DefaultSize, long style=
0,
15604 String name=StaticTextNameStr) -
> bool
</autodoc>
15606 <param name=
"parent" type=
"Window" default=
""/>
15607 <param name=
"id" type=
"int" default=
""/>
15608 <param name=
"label" type=
"String" default=
""/>
15609 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15610 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15611 <param name=
"style" type=
"long" default=
"0"/>
15612 <param name=
"name" type=
"String" default=
"wxPyStaticTextNameStr"/>
15617 #---------------------------------------------------------------------------
15619 <class name=
"StaticBitmap" oldname=
"wxStaticBitmap" module=
"controls">
15620 <baseclass name=
"Control"/>
15621 <constructor name=
"StaticBitmap" overloaded=
"no">
15622 <autodoc>__init__(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
15623 Size size=DefaultSize, long style=
0,
15624 String name=StaticBitmapNameStr) -
> StaticBitmap
</autodoc>
15626 <param name=
"parent" type=
"Window" default=
""/>
15627 <param name=
"id" type=
"int" default=
""/>
15628 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15629 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15630 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15631 <param name=
"style" type=
"long" default=
"0"/>
15632 <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/>
15635 <constructor name=
"PreStaticBitmap" overloaded=
"no">
15636 <autodoc>PreStaticBitmap() -
> StaticBitmap
</autodoc>
15638 <method name=
"Create" type=
"bool" overloaded=
"no">
15639 <autodoc>Create(Window parent, int id, Bitmap bitmap, Point pos=DefaultPosition,
15640 Size size=DefaultSize, long style=
0,
15641 String name=StaticBitmapNameStr) -
> bool
</autodoc>
15643 <param name=
"parent" type=
"Window" default=
""/>
15644 <param name=
"id" type=
"int" default=
""/>
15645 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15646 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15647 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15648 <param name=
"style" type=
"long" default=
"0"/>
15649 <param name=
"name" type=
"String" default=
"wxPyStaticBitmapNameStr"/>
15652 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
15653 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
15655 <method name=
"SetBitmap" type=
"" overloaded=
"no">
15656 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
15658 <param name=
"bitmap" type=
"Bitmap" default=
""/>
15661 <method name=
"SetIcon" type=
"" overloaded=
"no">
15662 <autodoc>SetIcon(Icon icon)
</autodoc>
15664 <param name=
"icon" type=
"Icon" default=
""/>
15669 #---------------------------------------------------------------------------
15671 <class name=
"ListBox" oldname=
"wxListBox" module=
"controls">
15672 <baseclass name=
"ControlWithItems"/>
15673 <constructor name=
"ListBox" overloaded=
"no">
15674 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15675 wxArrayString choices=wxPyEmptyStringArray,
15676 long style=
0, Validator validator=DefaultValidator,
15677 String name=ListBoxNameStr) -
> ListBox
</autodoc>
15679 <param name=
"parent" type=
"Window" default=
""/>
15680 <param name=
"id" type=
"int" default=
""/>
15681 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15682 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15683 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15684 <param name=
"style" type=
"long" default=
"0"/>
15685 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15686 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15689 <constructor name=
"PreListBox" overloaded=
"no">
15690 <autodoc>PreListBox() -
> ListBox
</autodoc>
15692 <method name=
"Create" type=
"bool" overloaded=
"no">
15693 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15694 wxArrayString choices=wxPyEmptyStringArray,
15695 long style=
0, Validator validator=DefaultValidator,
15696 String name=ListBoxNameStr) -
> bool
</autodoc>
15698 <param name=
"parent" type=
"Window" default=
""/>
15699 <param name=
"id" type=
"int" default=
""/>
15700 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15701 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15702 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15703 <param name=
"style" type=
"long" default=
"0"/>
15704 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15705 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15708 <method name=
"Insert" type=
"" overloaded=
"no">
15709 <autodoc>Insert(String item, int pos, PyObject clientData=None)
</autodoc>
15710 <docstring>Insert an item into the control before the item at the pos index,
15711 optionally associating some data object with the item.
</docstring>
15713 <param name=
"item" type=
"String" default=
""/>
15714 <param name=
"pos" type=
"int" default=
""/>
15715 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
15718 <method name=
"InsertItems" type=
"" overloaded=
"no">
15719 <autodoc>InsertItems(wxArrayString items, int pos)
</autodoc>
15721 <param name=
"items" type=
"wxArrayString" default=
""/>
15722 <param name=
"pos" type=
"int" default=
""/>
15725 <method name=
"Set" type=
"" overloaded=
"no">
15726 <autodoc>Set(wxArrayString items)
</autodoc>
15728 <param name=
"items" type=
"wxArrayString" default=
""/>
15731 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
15732 <autodoc>IsSelected(int n) -
> bool
</autodoc>
15734 <param name=
"n" type=
"int" default=
""/>
15737 <method name=
"SetSelection" type=
"" overloaded=
"no">
15738 <autodoc>SetSelection(int n, bool select=True)
</autodoc>
15740 <param name=
"n" type=
"int" default=
""/>
15741 <param name=
"select" type=
"bool" default=
"True"/>
15744 <method name=
"Select" type=
"" overloaded=
"no">
15745 <autodoc>Select(int n)
</autodoc>
15746 <docstring>Sets the item at index 'n' to be the selected item.
</docstring>
15748 <param name=
"n" type=
"int" default=
""/>
15751 <method name=
"Deselect" type=
"" overloaded=
"no">
15752 <autodoc>Deselect(int n)
</autodoc>
15754 <param name=
"n" type=
"int" default=
""/>
15757 <method name=
"DeselectAll" type=
"" overloaded=
"no">
15758 <autodoc>DeselectAll(int itemToLeaveSelected=-
1)
</autodoc>
15760 <param name=
"itemToLeaveSelected" type=
"int" default=
"-1"/>
15763 <method name=
"SetStringSelection" type=
"bool" overloaded=
"no">
15764 <autodoc>SetStringSelection(String s, bool select=True) -
> bool
</autodoc>
15766 <param name=
"s" type=
"String" default=
""/>
15767 <param name=
"select" type=
"bool" default=
"True"/>
15770 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
15771 <autodoc>GetSelections() -
> PyObject
</autodoc>
15773 <method name=
"SetFirstItem" type=
"" overloaded=
"no">
15774 <autodoc>SetFirstItem(int n)
</autodoc>
15776 <param name=
"n" type=
"int" default=
""/>
15779 <method name=
"SetFirstItemStr" type=
"" overloaded=
"no">
15780 <autodoc>SetFirstItemStr(String s)
</autodoc>
15782 <param name=
"s" type=
"String" default=
""/>
15785 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
15786 <autodoc>EnsureVisible(int n)
</autodoc>
15788 <param name=
"n" type=
"int" default=
""/>
15791 <method name=
"AppendAndEnsureVisible" type=
"" overloaded=
"no">
15792 <autodoc>AppendAndEnsureVisible(String s)
</autodoc>
15794 <param name=
"s" type=
"String" default=
""/>
15797 <method name=
"IsSorted" type=
"bool" overloaded=
"no">
15798 <autodoc>IsSorted() -
> bool
</autodoc>
15800 <method name=
"SetItemForegroundColour" type=
"" overloaded=
"no">
15801 <autodoc>SetItemForegroundColour(int item, Colour c)
</autodoc>
15803 <param name=
"item" type=
"int" default=
""/>
15804 <param name=
"c" type=
"Colour" default=
""/>
15807 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
15808 <autodoc>SetItemBackgroundColour(int item, Colour c)
</autodoc>
15810 <param name=
"item" type=
"int" default=
""/>
15811 <param name=
"c" type=
"Colour" default=
""/>
15814 <method name=
"SetItemFont" type=
"" overloaded=
"no">
15815 <autodoc>SetItemFont(int item, Font f)
</autodoc>
15817 <param name=
"item" type=
"int" default=
""/>
15818 <param name=
"f" type=
"Font" default=
""/>
15823 #---------------------------------------------------------------------------
15825 <class name=
"CheckListBox" oldname=
"wxCheckListBox" module=
"controls">
15826 <baseclass name=
"ListBox"/>
15827 <constructor name=
"CheckListBox" overloaded=
"no">
15828 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15829 wxArrayString choices=wxPyEmptyStringArray,
15830 long style=
0, Validator validator=DefaultValidator,
15831 String name=ListBoxNameStr) -
> CheckListBox
</autodoc>
15833 <param name=
"parent" type=
"Window" default=
""/>
15834 <param name=
"id" type=
"int" default=
""/>
15835 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15836 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15837 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15838 <param name=
"style" type=
"long" default=
"0"/>
15839 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15840 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15843 <constructor name=
"PreCheckListBox" overloaded=
"no">
15844 <autodoc>PreCheckListBox() -
> CheckListBox
</autodoc>
15846 <method name=
"Create" type=
"bool" overloaded=
"no">
15847 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
15848 wxArrayString choices=wxPyEmptyStringArray,
15849 long style=
0, Validator validator=DefaultValidator,
15850 String name=ListBoxNameStr) -
> bool
</autodoc>
15852 <param name=
"parent" type=
"Window" default=
""/>
15853 <param name=
"id" type=
"int" default=
""/>
15854 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
15855 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
15856 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
15857 <param name=
"style" type=
"long" default=
"0"/>
15858 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
15859 <param name=
"name" type=
"String" default=
"wxPyListBoxNameStr"/>
15862 <method name=
"IsChecked" type=
"bool" overloaded=
"no">
15863 <autodoc>IsChecked(int index) -
> bool
</autodoc>
15865 <param name=
"index" type=
"int" default=
""/>
15868 <method name=
"Check" type=
"" overloaded=
"no">
15869 <autodoc>Check(int index, int check=True)
</autodoc>
15871 <param name=
"index" type=
"int" default=
""/>
15872 <param name=
"check" type=
"int" default=
"True"/>
15875 <method name=
"GetItemHeight" type=
"int" overloaded=
"no">
15876 <autodoc>GetItemHeight() -
> int
</autodoc>
15878 <method name=
"HitTest" type=
"int" overloaded=
"no">
15879 <autodoc>HitTest(Point pt) -
> int
</autodoc>
15880 <docstring>Test where the given (in client coords) point lies
</docstring>
15882 <param name=
"pt" type=
"Point" default=
""/>
15885 <method name=
"HitTestXY" type=
"int" overloaded=
"no">
15886 <autodoc>HitTestXY(int x, int y) -
> int
</autodoc>
15887 <docstring>Test where the given (in client coords) point lies
</docstring>
15889 <param name=
"x" type=
"int" default=
""/>
15890 <param name=
"y" type=
"int" default=
""/>
15895 #---------------------------------------------------------------------------
15897 <class name=
"TextAttr" oldname=
"wxTextAttr" module=
"controls">
15898 <constructor name=
"TextAttr" overloaded=
"yes"/>
15899 <constructor name=
"TextAttr" overloaded=
"yes">
15900 <autodoc>__init__() -
> TextAttr
15901 __init__(Colour colText, Colour colBack=wxNullColour, Font font=wxNullFont,
15902 int alignment=TEXT_ALIGNMENT_DEFAULT) -
> TextAttr
</autodoc>
15904 <param name=
"colText" type=
"Colour" default=
""/>
15905 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
15906 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
15907 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
"wxTEXT_ALIGNMENT_DEFAULT"/>
15910 <destructor name=
"~wxTextAttr" overloaded=
"no">
15911 <autodoc>__del__()
</autodoc>
15913 <method name=
"Init" type=
"" overloaded=
"no">
15914 <autodoc>Init()
</autodoc>
15916 <method name=
"SetTextColour" type=
"" overloaded=
"no">
15917 <autodoc>SetTextColour(Colour colText)
</autodoc>
15919 <param name=
"colText" type=
"Colour" default=
""/>
15922 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
15923 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
15925 <param name=
"colBack" type=
"Colour" default=
""/>
15928 <method name=
"SetFont" type=
"" overloaded=
"no">
15929 <autodoc>SetFont(Font font, long flags=TEXT_ATTR_FONT)
</autodoc>
15931 <param name=
"font" type=
"Font" default=
""/>
15932 <param name=
"flags" type=
"long" default=
"wxTEXT_ATTR_FONT"/>
15935 <method name=
"SetAlignment" type=
"" overloaded=
"no">
15936 <autodoc>SetAlignment(int alignment)
</autodoc>
15938 <param name=
"alignment" type=
"wxTextAttrAlignment" default=
""/>
15941 <method name=
"SetTabs" type=
"" overloaded=
"no">
15942 <autodoc>SetTabs(wxArrayInt tabs)
</autodoc>
15944 <param name=
"tabs" type=
"wxArrayInt" default=
""/>
15947 <method name=
"SetLeftIndent" type=
"" overloaded=
"no">
15948 <autodoc>SetLeftIndent(int indent)
</autodoc>
15950 <param name=
"indent" type=
"int" default=
""/>
15953 <method name=
"SetRightIndent" type=
"" overloaded=
"no">
15954 <autodoc>SetRightIndent(int indent)
</autodoc>
15956 <param name=
"indent" type=
"int" default=
""/>
15959 <method name=
"SetFlags" type=
"" overloaded=
"no">
15960 <autodoc>SetFlags(long flags)
</autodoc>
15962 <param name=
"flags" type=
"long" default=
""/>
15965 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
15966 <autodoc>HasTextColour() -
> bool
</autodoc>
15968 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
15969 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
15971 <method name=
"HasFont" type=
"bool" overloaded=
"no">
15972 <autodoc>HasFont() -
> bool
</autodoc>
15974 <method name=
"HasAlignment" type=
"bool" overloaded=
"no">
15975 <autodoc>HasAlignment() -
> bool
</autodoc>
15977 <method name=
"HasTabs" type=
"bool" overloaded=
"no">
15978 <autodoc>HasTabs() -
> bool
</autodoc>
15980 <method name=
"HasLeftIndent" type=
"bool" overloaded=
"no">
15981 <autodoc>HasLeftIndent() -
> bool
</autodoc>
15983 <method name=
"HasRightIndent" type=
"bool" overloaded=
"no">
15984 <autodoc>HasRightIndent() -
> bool
</autodoc>
15986 <method name=
"HasFlag" type=
"bool" overloaded=
"no">
15987 <autodoc>HasFlag(long flag) -
> bool
</autodoc>
15989 <param name=
"flag" type=
"long" default=
""/>
15992 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
15993 <autodoc>GetTextColour() -
> Colour
</autodoc>
15995 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
15996 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
15998 <method name=
"GetFont" type=
"Font" overloaded=
"no">
15999 <autodoc>GetFont() -
> Font
</autodoc>
16001 <method name=
"GetAlignment" type=
"wxTextAttrAlignment" overloaded=
"no">
16002 <autodoc>GetAlignment() -
> int
</autodoc>
16004 <method name=
"GetTabs" type=
"wxArrayInt" overloaded=
"no">
16005 <autodoc>GetTabs() -
> wxArrayInt
</autodoc>
16007 <method name=
"GetLeftIndent" type=
"long" overloaded=
"no">
16008 <autodoc>GetLeftIndent() -
> long
</autodoc>
16010 <method name=
"GetRightIndent" type=
"long" overloaded=
"no">
16011 <autodoc>GetRightIndent() -
> long
</autodoc>
16013 <method name=
"GetFlags" type=
"long" overloaded=
"no">
16014 <autodoc>GetFlags() -
> long
</autodoc>
16016 <method name=
"IsDefault" type=
"bool" overloaded=
"no">
16017 <autodoc>IsDefault() -
> bool
</autodoc>
16019 <staticmethod name=
"Combine" type=
"TextAttr" overloaded=
"no">
16020 <autodoc>Combine(TextAttr attr, TextAttr attrDef, TextCtrl text) -
> TextAttr
</autodoc>
16022 <param name=
"attr" type=
"TextAttr" default=
""/>
16023 <param name=
"attrDef" type=
"TextAttr" default=
""/>
16024 <param name=
"text" type=
"wxTextCtrl" default=
""/>
16028 <class name=
"TextCtrl" oldname=
"wxTextCtrl" module=
"controls">
16029 <baseclass name=
"Control"/>
16030 <constructor name=
"TextCtrl" overloaded=
"no">
16031 <autodoc>__init__(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
16032 Size size=DefaultSize,
16033 long style=
0, Validator validator=DefaultValidator,
16034 String name=TextCtrlNameStr) -
> TextCtrl
</autodoc>
16036 <param name=
"parent" type=
"Window" default=
""/>
16037 <param name=
"id" type=
"int" default=
""/>
16038 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16039 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16040 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16041 <param name=
"style" type=
"long" default=
"0"/>
16042 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16043 <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/>
16046 <constructor name=
"PreTextCtrl" overloaded=
"no">
16047 <autodoc>PreTextCtrl() -
> TextCtrl
</autodoc>
16049 <method name=
"Create" type=
"bool" overloaded=
"no">
16050 <autodoc>Create(Window parent, int id, String value=EmptyString, Point pos=DefaultPosition,
16051 Size size=DefaultSize,
16052 long style=
0, Validator validator=DefaultValidator,
16053 String name=TextCtrlNameStr) -
> bool
</autodoc>
16055 <param name=
"parent" type=
"Window" default=
""/>
16056 <param name=
"id" type=
"int" default=
""/>
16057 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16058 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16059 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16060 <param name=
"style" type=
"long" default=
"0"/>
16061 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16062 <param name=
"name" type=
"String" default=
"wxPyTextCtrlNameStr"/>
16065 <method name=
"GetValue" type=
"String" overloaded=
"no">
16066 <autodoc>GetValue() -
> String
</autodoc>
16068 <method name=
"SetValue" type=
"" overloaded=
"no">
16069 <autodoc>SetValue(String value)
</autodoc>
16071 <param name=
"value" type=
"String" default=
""/>
16074 <method name=
"GetRange" type=
"String" overloaded=
"no">
16075 <autodoc>GetRange(long from, long to) -
> String
</autodoc>
16077 <param name=
"from" type=
"long" default=
""/>
16078 <param name=
"to" type=
"long" default=
""/>
16081 <method name=
"GetLineLength" type=
"int" overloaded=
"no">
16082 <autodoc>GetLineLength(long lineNo) -
> int
</autodoc>
16084 <param name=
"lineNo" type=
"long" default=
""/>
16087 <method name=
"GetLineText" type=
"String" overloaded=
"no">
16088 <autodoc>GetLineText(long lineNo) -
> String
</autodoc>
16090 <param name=
"lineNo" type=
"long" default=
""/>
16093 <method name=
"GetNumberOfLines" type=
"int" overloaded=
"no">
16094 <autodoc>GetNumberOfLines() -
> int
</autodoc>
16096 <method name=
"IsModified" type=
"bool" overloaded=
"no">
16097 <autodoc>IsModified() -
> bool
</autodoc>
16099 <method name=
"IsEditable" type=
"bool" overloaded=
"no">
16100 <autodoc>IsEditable() -
> bool
</autodoc>
16102 <method name=
"IsSingleLine" type=
"bool" overloaded=
"no">
16103 <autodoc>IsSingleLine() -
> bool
</autodoc>
16105 <method name=
"IsMultiLine" type=
"bool" overloaded=
"no">
16106 <autodoc>IsMultiLine() -
> bool
</autodoc>
16108 <method name=
"GetSelection" type=
"" overloaded=
"no">
16109 <autodoc>GetSelection() -
> (from, to)
</autodoc>
16110 <docstring>If the return values from and to are the same, there is no selection.
</docstring>
16112 <param name=
"OUTPUT" type=
"long" default=
""/>
16113 <param name=
"OUTPUT" type=
"long" default=
""/>
16116 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
16117 <autodoc>GetStringSelection() -
> String
</autodoc>
16119 <method name=
"Clear" type=
"" overloaded=
"no">
16120 <autodoc>Clear()
</autodoc>
16122 <method name=
"Replace" type=
"" overloaded=
"no">
16123 <autodoc>Replace(long from, long to, String value)
</autodoc>
16125 <param name=
"from" type=
"long" default=
""/>
16126 <param name=
"to" type=
"long" default=
""/>
16127 <param name=
"value" type=
"String" default=
""/>
16130 <method name=
"Remove" type=
"" overloaded=
"no">
16131 <autodoc>Remove(long from, long to)
</autodoc>
16133 <param name=
"from" type=
"long" default=
""/>
16134 <param name=
"to" type=
"long" default=
""/>
16137 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
16138 <autodoc>LoadFile(String file) -
> bool
</autodoc>
16140 <param name=
"file" type=
"String" default=
""/>
16143 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
16144 <autodoc>SaveFile(String file=EmptyString) -
> bool
</autodoc>
16146 <param name=
"file" type=
"String" default=
"wxPyEmptyString"/>
16149 <method name=
"MarkDirty" type=
"" overloaded=
"no">
16150 <autodoc>MarkDirty()
</autodoc>
16152 <method name=
"DiscardEdits" type=
"" overloaded=
"no">
16153 <autodoc>DiscardEdits()
</autodoc>
16155 <method name=
"SetMaxLength" type=
"" overloaded=
"no">
16156 <autodoc>SetMaxLength(unsigned long len)
</autodoc>
16158 <param name=
"len" type=
"unsigned long" default=
""/>
16161 <method name=
"WriteText" type=
"" overloaded=
"no">
16162 <autodoc>WriteText(String text)
</autodoc>
16164 <param name=
"text" type=
"String" default=
""/>
16167 <method name=
"AppendText" type=
"" overloaded=
"no">
16168 <autodoc>AppendText(String text)
</autodoc>
16170 <param name=
"text" type=
"String" default=
""/>
16173 <method name=
"EmulateKeyPress" type=
"bool" overloaded=
"no">
16174 <autodoc>EmulateKeyPress(KeyEvent event) -
> bool
</autodoc>
16176 <param name=
"event" type=
"KeyEvent" default=
""/>
16179 <method name=
"SetStyle" type=
"bool" overloaded=
"no">
16180 <autodoc>SetStyle(long start, long end, TextAttr style) -
> bool
</autodoc>
16182 <param name=
"start" type=
"long" default=
""/>
16183 <param name=
"end" type=
"long" default=
""/>
16184 <param name=
"style" type=
"TextAttr" default=
""/>
16187 <method name=
"GetStyle" type=
"bool" overloaded=
"no">
16188 <autodoc>GetStyle(long position, TextAttr style) -
> bool
</autodoc>
16190 <param name=
"position" type=
"long" default=
""/>
16191 <param name=
"style" type=
"TextAttr" default=
""/>
16194 <method name=
"SetDefaultStyle" type=
"bool" overloaded=
"no">
16195 <autodoc>SetDefaultStyle(TextAttr style) -
> bool
</autodoc>
16197 <param name=
"style" type=
"TextAttr" default=
""/>
16200 <method name=
"GetDefaultStyle" type=
"TextAttr" overloaded=
"no">
16201 <autodoc>GetDefaultStyle() -
> TextAttr
</autodoc>
16203 <method name=
"XYToPosition" type=
"long" overloaded=
"no">
16204 <autodoc>XYToPosition(long x, long y) -
> long
</autodoc>
16206 <param name=
"x" type=
"long" default=
""/>
16207 <param name=
"y" type=
"long" default=
""/>
16210 <method name=
"PositionToXY" type=
"" overloaded=
"no">
16211 <autodoc>PositionToXY(long pos) -
> (x, y)
</autodoc>
16213 <param name=
"pos" type=
"long" default=
""/>
16214 <param name=
"OUTPUT" type=
"long" default=
""/>
16215 <param name=
"OUTPUT" type=
"long" default=
""/>
16218 <method name=
"ShowPosition" type=
"" overloaded=
"no">
16219 <autodoc>ShowPosition(long pos)
</autodoc>
16221 <param name=
"pos" type=
"long" default=
""/>
16224 <method name=
"HitTest" type=
"wxTextCtrlHitTestResult" overloaded=
"no">
16225 <autodoc>HitTest(Point pt) -
> (result, row, col)
</autodoc>
16226 <docstring>Find the character at position given in pixels.
16227 NB: pt is in device coords (not adjusted for the client area
16228 origin nor scrolling)
</docstring>
16230 <param name=
"pt" type=
"Point" default=
""/>
16231 <param name=
"OUTPUT" type=
"long" default=
""/>
16232 <param name=
"OUTPUT" type=
"long" default=
""/>
16235 <method name=
"Copy" type=
"" overloaded=
"no">
16236 <autodoc>Copy()
</autodoc>
16238 <method name=
"Cut" type=
"" overloaded=
"no">
16239 <autodoc>Cut()
</autodoc>
16241 <method name=
"Paste" type=
"" overloaded=
"no">
16242 <autodoc>Paste()
</autodoc>
16244 <method name=
"CanCopy" type=
"bool" overloaded=
"no">
16245 <autodoc>CanCopy() -
> bool
</autodoc>
16247 <method name=
"CanCut" type=
"bool" overloaded=
"no">
16248 <autodoc>CanCut() -
> bool
</autodoc>
16250 <method name=
"CanPaste" type=
"bool" overloaded=
"no">
16251 <autodoc>CanPaste() -
> bool
</autodoc>
16253 <method name=
"Undo" type=
"" overloaded=
"no">
16254 <autodoc>Undo()
</autodoc>
16256 <method name=
"Redo" type=
"" overloaded=
"no">
16257 <autodoc>Redo()
</autodoc>
16259 <method name=
"CanUndo" type=
"bool" overloaded=
"no">
16260 <autodoc>CanUndo() -
> bool
</autodoc>
16262 <method name=
"CanRedo" type=
"bool" overloaded=
"no">
16263 <autodoc>CanRedo() -
> bool
</autodoc>
16265 <method name=
"SetInsertionPoint" type=
"" overloaded=
"no">
16266 <autodoc>SetInsertionPoint(long pos)
</autodoc>
16268 <param name=
"pos" type=
"long" default=
""/>
16271 <method name=
"SetInsertionPointEnd" type=
"" overloaded=
"no">
16272 <autodoc>SetInsertionPointEnd()
</autodoc>
16274 <method name=
"GetInsertionPoint" type=
"long" overloaded=
"no">
16275 <autodoc>GetInsertionPoint() -
> long
</autodoc>
16277 <method name=
"GetLastPosition" type=
"long" overloaded=
"no">
16278 <autodoc>GetLastPosition() -
> long
</autodoc>
16280 <method name=
"SetSelection" type=
"" overloaded=
"no">
16281 <autodoc>SetSelection(long from, long to)
</autodoc>
16283 <param name=
"from" type=
"long" default=
""/>
16284 <param name=
"to" type=
"long" default=
""/>
16287 <method name=
"SelectAll" type=
"" overloaded=
"no">
16288 <autodoc>SelectAll()
</autodoc>
16290 <method name=
"SetEditable" type=
"" overloaded=
"no">
16291 <autodoc>SetEditable(bool editable)
</autodoc>
16293 <param name=
"editable" type=
"bool" default=
""/>
16296 <method name=
"write" type=
"" overloaded=
"no">
16297 <autodoc>write(String text)
</autodoc>
16299 <param name=
"text" type=
"String" default=
""/>
16302 <method name=
"GetString" type=
"String" overloaded=
"no">
16303 <autodoc>GetString(long from, long to) -
> String
</autodoc>
16305 <param name=
"from" type=
"long" default=
""/>
16306 <param name=
"to" type=
"long" default=
""/>
16310 <class name=
"TextUrlEvent" oldname=
"wxTextUrlEvent" module=
"controls">
16311 <baseclass name=
"CommandEvent"/>
16312 <constructor name=
"TextUrlEvent" overloaded=
"no">
16313 <autodoc>__init__(int winid, MouseEvent evtMouse, long start, long end) -
> TextUrlEvent
</autodoc>
16315 <param name=
"winid" type=
"int" default=
""/>
16316 <param name=
"evtMouse" type=
"MouseEvent" default=
""/>
16317 <param name=
"start" type=
"long" default=
""/>
16318 <param name=
"end" type=
"long" default=
""/>
16321 <method name=
"GetMouseEvent" type=
"MouseEvent" overloaded=
"no">
16322 <autodoc>GetMouseEvent() -
> MouseEvent
</autodoc>
16324 <method name=
"GetURLStart" type=
"long" overloaded=
"no">
16325 <autodoc>GetURLStart() -
> long
</autodoc>
16327 <method name=
"GetURLEnd" type=
"long" overloaded=
"no">
16328 <autodoc>GetURLEnd() -
> long
</autodoc>
16332 EVT_TEXT = wx.PyEventBinder( wxEVT_COMMAND_TEXT_UPDATED,
1)
16333 EVT_TEXT_ENTER = wx.PyEventBinder( wxEVT_COMMAND_TEXT_ENTER,
1)
16334 EVT_TEXT_URL = wx.PyEventBinder( wxEVT_COMMAND_TEXT_URL,
1)
16335 EVT_TEXT_MAXLEN = wx.PyEventBinder( wxEVT_COMMAND_TEXT_MAXLEN,
1)
16338 #---------------------------------------------------------------------------
16340 <class name=
"ScrollBar" oldname=
"wxScrollBar" module=
"controls">
16341 <baseclass name=
"Control"/>
16342 <constructor name=
"ScrollBar" overloaded=
"no">
16343 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
16344 Size size=DefaultSize, long style=SB_HORIZONTAL,
16345 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> ScrollBar
</autodoc>
16347 <param name=
"parent" type=
"Window" default=
""/>
16348 <param name=
"id" type=
"int" default=
"-1"/>
16349 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16350 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16351 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
16352 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16353 <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/>
16356 <constructor name=
"PreScrollBar" overloaded=
"no">
16357 <autodoc>PreScrollBar() -
> ScrollBar
</autodoc>
16359 <method name=
"Create" type=
"bool" overloaded=
"no">
16360 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
16361 Size size=DefaultSize, long style=SB_HORIZONTAL,
16362 Validator validator=DefaultValidator, String name=ScrollBarNameStr) -
> bool
</autodoc>
16363 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
16365 <param name=
"parent" type=
"Window" default=
""/>
16366 <param name=
"id" type=
"int" default=
"-1"/>
16367 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16368 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16369 <param name=
"style" type=
"long" default=
"wxSB_HORIZONTAL"/>
16370 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16371 <param name=
"name" type=
"String" default=
"wxPyScrollBarNameStr"/>
16374 <method name=
"GetThumbPosition" type=
"int" overloaded=
"no">
16375 <autodoc>GetThumbPosition() -
> int
</autodoc>
16377 <method name=
"GetThumbSize" type=
"int" overloaded=
"no">
16378 <autodoc>GetThumbSize() -
> int
</autodoc>
16380 <method name=
"GetPageSize" type=
"int" overloaded=
"no">
16381 <autodoc>GetPageSize() -
> int
</autodoc>
16383 <method name=
"GetRange" type=
"int" overloaded=
"no">
16384 <autodoc>GetRange() -
> int
</autodoc>
16386 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
16387 <autodoc>IsVertical() -
> bool
</autodoc>
16389 <method name=
"SetThumbPosition" type=
"" overloaded=
"no">
16390 <autodoc>SetThumbPosition(int viewStart)
</autodoc>
16392 <param name=
"viewStart" type=
"int" default=
""/>
16395 <method name=
"SetScrollbar" type=
"" overloaded=
"no">
16396 <autodoc>SetScrollbar(int position, int thumbSize, int range, int pageSize,
16397 bool refresh=True)
</autodoc>
16398 <docstring>Sets the scrollbar properties of a built-in scrollbar.
16400 orientation: Determines the scrollbar whose page size is to be
16401 set. May be wx.HORIZONTAL or wx.VERTICAL.
16403 position: The position of the scrollbar in scroll units.
16405 thumbSize: The size of the thumb, or visible portion of the
16406 scrollbar, in scroll units.
16408 range: The maximum position of the scrollbar.
16410 refresh: True to redraw the scrollbar, false otherwise.
</docstring>
16412 <param name=
"position" type=
"int" default=
""/>
16413 <param name=
"thumbSize" type=
"int" default=
""/>
16414 <param name=
"range" type=
"int" default=
""/>
16415 <param name=
"pageSize" type=
"int" default=
""/>
16416 <param name=
"refresh" type=
"bool" default=
"True"/>
16421 #---------------------------------------------------------------------------
16423 <class name=
"SpinButton" oldname=
"wxSpinButton" module=
"controls">
16424 <baseclass name=
"Control"/>
16425 <constructor name=
"SpinButton" overloaded=
"no">
16426 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
16427 Size size=DefaultSize, long style=SP_HORIZONTAL,
16428 String name=SPIN_BUTTON_NAME) -
> SpinButton
</autodoc>
16430 <param name=
"parent" type=
"Window" default=
""/>
16431 <param name=
"id" type=
"int" default=
"-1"/>
16432 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16433 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16434 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
16435 <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/>
16438 <constructor name=
"PreSpinButton" overloaded=
"no">
16439 <autodoc>PreSpinButton() -
> SpinButton
</autodoc>
16441 <method name=
"Create" type=
"bool" overloaded=
"no">
16442 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
16443 Size size=DefaultSize, long style=SP_HORIZONTAL,
16444 String name=SPIN_BUTTON_NAME) -
> bool
</autodoc>
16446 <param name=
"parent" type=
"Window" default=
""/>
16447 <param name=
"id" type=
"int" default=
"-1"/>
16448 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16449 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16450 <param name=
"style" type=
"long" default=
"wxSP_HORIZONTAL"/>
16451 <param name=
"name" type=
"String" default=
"wxPySPIN_BUTTON_NAME"/>
16454 <method name=
"GetValue" type=
"int" overloaded=
"no">
16455 <autodoc>GetValue() -
> int
</autodoc>
16457 <method name=
"GetMin" type=
"int" overloaded=
"no">
16458 <autodoc>GetMin() -
> int
</autodoc>
16460 <method name=
"GetMax" type=
"int" overloaded=
"no">
16461 <autodoc>GetMax() -
> int
</autodoc>
16463 <method name=
"SetValue" type=
"" overloaded=
"no">
16464 <autodoc>SetValue(int val)
</autodoc>
16466 <param name=
"val" type=
"int" default=
""/>
16469 <method name=
"SetMin" type=
"" overloaded=
"no">
16470 <autodoc>SetMin(int minVal)
</autodoc>
16472 <param name=
"minVal" type=
"int" default=
""/>
16475 <method name=
"SetMax" type=
"" overloaded=
"no">
16476 <autodoc>SetMax(int maxVal)
</autodoc>
16478 <param name=
"maxVal" type=
"int" default=
""/>
16481 <method name=
"SetRange" type=
"" overloaded=
"no">
16482 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
16484 <param name=
"minVal" type=
"int" default=
""/>
16485 <param name=
"maxVal" type=
"int" default=
""/>
16488 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
16489 <autodoc>IsVertical() -
> bool
</autodoc>
16492 <class name=
"SpinCtrl" oldname=
"wxSpinCtrl" module=
"controls">
16493 <baseclass name=
"Control"/>
16494 <constructor name=
"SpinCtrl" overloaded=
"no">
16495 <autodoc>__init__(Window parent, int id=-
1, String value=EmptyString,
16496 Point pos=DefaultPosition, Size size=DefaultSize,
16497 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
16498 int initial=
0, String name=SpinCtrlNameStr) -
> SpinCtrl
</autodoc>
16500 <param name=
"parent" type=
"Window" default=
""/>
16501 <param name=
"id" type=
"int" default=
"-1"/>
16502 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16503 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16504 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16505 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
16506 <param name=
"min" type=
"int" default=
"0"/>
16507 <param name=
"max" type=
"int" default=
"100"/>
16508 <param name=
"initial" type=
"int" default=
"0"/>
16509 <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/>
16512 <constructor name=
"PreSpinCtrl" overloaded=
"no">
16513 <autodoc>PreSpinCtrl() -
> SpinCtrl
</autodoc>
16515 <method name=
"Create" type=
"bool" overloaded=
"no">
16516 <autodoc>Create(Window parent, int id=-
1, String value=EmptyString,
16517 Point pos=DefaultPosition, Size size=DefaultSize,
16518 long style=SP_ARROW_KEYS, int min=
0, int max=
100,
16519 int initial=
0, String name=SpinCtrlNameStr) -
> bool
</autodoc>
16521 <param name=
"parent" type=
"Window" default=
""/>
16522 <param name=
"id" type=
"int" default=
"-1"/>
16523 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
16524 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16525 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16526 <param name=
"style" type=
"long" default=
"wxSP_ARROW_KEYS"/>
16527 <param name=
"min" type=
"int" default=
"0"/>
16528 <param name=
"max" type=
"int" default=
"100"/>
16529 <param name=
"initial" type=
"int" default=
"0"/>
16530 <param name=
"name" type=
"String" default=
"wxPySpinCtrlNameStr"/>
16533 <method name=
"GetValue" type=
"int" overloaded=
"no">
16534 <autodoc>GetValue() -
> int
</autodoc>
16536 <method name=
"SetValue" type=
"" overloaded=
"no">
16537 <autodoc>SetValue(int value)
</autodoc>
16539 <param name=
"value" type=
"int" default=
""/>
16542 <method name=
"SetValueString" type=
"" overloaded=
"no">
16543 <autodoc>SetValueString(String text)
</autodoc>
16545 <param name=
"text" type=
"String" default=
""/>
16548 <method name=
"SetRange" type=
"" overloaded=
"no">
16549 <autodoc>SetRange(int minVal, int maxVal)
</autodoc>
16551 <param name=
"minVal" type=
"int" default=
""/>
16552 <param name=
"maxVal" type=
"int" default=
""/>
16555 <method name=
"GetMin" type=
"int" overloaded=
"no">
16556 <autodoc>GetMin() -
> int
</autodoc>
16558 <method name=
"GetMax" type=
"int" overloaded=
"no">
16559 <autodoc>GetMax() -
> int
</autodoc>
16561 <method name=
"SetSelection" type=
"" overloaded=
"no">
16562 <autodoc>SetSelection(long from, long to)
</autodoc>
16564 <param name=
"from" type=
"long" default=
""/>
16565 <param name=
"to" type=
"long" default=
""/>
16569 <class name=
"SpinEvent" oldname=
"wxSpinEvent" module=
"controls">
16570 <baseclass name=
"NotifyEvent"/>
16571 <constructor name=
"SpinEvent" overloaded=
"no">
16572 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int winid=
0) -
> SpinEvent
</autodoc>
16574 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
16575 <param name=
"winid" type=
"int" default=
"0"/>
16578 <method name=
"GetPosition" type=
"int" overloaded=
"no">
16579 <autodoc>GetPosition() -
> int
</autodoc>
16581 <method name=
"SetPosition" type=
"" overloaded=
"no">
16582 <autodoc>SetPosition(int pos)
</autodoc>
16584 <param name=
"pos" type=
"int" default=
""/>
16589 EVT_SPIN_UP = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEUP,
1)
16590 EVT_SPIN_DOWN = wx.PyEventBinder( wx.wxEVT_SCROLL_LINEDOWN,
1)
16591 EVT_SPIN = wx.PyEventBinder( wx.wxEVT_SCROLL_THUMBTRACK,
1)
16592 EVT_SPINCTRL = wx.PyEventBinder( wxEVT_COMMAND_SPINCTRL_UPDATED,
1)
16595 #---------------------------------------------------------------------------
16597 <class name=
"RadioBox" oldname=
"wxRadioBox" module=
"controls">
16598 <baseclass name=
"Control"/>
16599 <constructor name=
"RadioBox" overloaded=
"no">
16600 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16601 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
16602 int majorDimension=
0,
16603 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
16604 String name=RadioBoxNameStr) -
> RadioBox
</autodoc>
16606 <param name=
"parent" type=
"Window" default=
""/>
16607 <param name=
"id" type=
"int" default=
""/>
16608 <param name=
"label" type=
"String" default=
""/>
16609 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16610 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16611 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
16612 <param name=
"majorDimension" type=
"int" default=
"0"/>
16613 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
16614 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16615 <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/>
16618 <constructor name=
"PreRadioBox" overloaded=
"no">
16619 <autodoc>PreRadioBox() -
> RadioBox
</autodoc>
16621 <method name=
"Create" type=
"bool" overloaded=
"no">
16622 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16623 Size size=DefaultSize, wxArrayString choices=wxPyEmptyStringArray,
16624 int majorDimension=
0,
16625 long style=RA_HORIZONTAL, Validator validator=DefaultValidator,
16626 String name=RadioBoxNameStr) -
> bool
</autodoc>
16628 <param name=
"parent" type=
"Window" default=
""/>
16629 <param name=
"id" type=
"int" default=
""/>
16630 <param name=
"label" type=
"String" default=
""/>
16631 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16632 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16633 <param name=
"choices" type=
"wxArrayString" default=
"wxPyEmptyStringArray"/>
16634 <param name=
"majorDimension" type=
"int" default=
"0"/>
16635 <param name=
"style" type=
"long" default=
"wxRA_HORIZONTAL"/>
16636 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16637 <param name=
"name" type=
"String" default=
"wxPyRadioBoxNameStr"/>
16640 <method name=
"SetSelection" type=
"" overloaded=
"no">
16641 <autodoc>SetSelection(int n)
</autodoc>
16643 <param name=
"n" type=
"int" default=
""/>
16646 <method name=
"GetSelection" type=
"int" overloaded=
"no">
16647 <autodoc>GetSelection() -
> int
</autodoc>
16649 <method name=
"GetStringSelection" type=
"String" overloaded=
"no">
16650 <autodoc>GetStringSelection() -
> String
</autodoc>
16652 <method name=
"SetStringSelection" type=
"bool" overloaded=
"no">
16653 <autodoc>SetStringSelection(String s) -
> bool
</autodoc>
16655 <param name=
"s" type=
"String" default=
""/>
16658 <method name=
"GetCount" type=
"int" overloaded=
"no">
16659 <autodoc>GetCount() -
> int
</autodoc>
16661 <method name=
"FindString" type=
"int" overloaded=
"no">
16662 <autodoc>FindString(String s) -
> int
</autodoc>
16664 <param name=
"s" type=
"String" default=
""/>
16667 <method name=
"GetString" type=
"String" overloaded=
"no">
16668 <autodoc>GetString(int n) -
> String
</autodoc>
16670 <param name=
"n" type=
"int" default=
""/>
16673 <method name=
"SetString" type=
"" overloaded=
"no">
16674 <autodoc>SetString(int n, String label)
</autodoc>
16676 <param name=
"n" type=
"int" default=
""/>
16677 <param name=
"label" type=
"String" default=
""/>
16680 <method name=
"EnableItem" type=
"" overloaded=
"no">
16681 <autodoc>EnableItem(int n, bool enable=True)
</autodoc>
16683 <param name=
"n" type=
"int" default=
""/>
16684 <param name=
"enable" type=
"bool" default=
"True"/>
16687 <method name=
"ShowItem" type=
"" overloaded=
"no">
16688 <autodoc>ShowItem(int n, bool show=True)
</autodoc>
16690 <param name=
"n" type=
"int" default=
""/>
16691 <param name=
"show" type=
"bool" default=
"True"/>
16694 <method name=
"GetColumnCount" type=
"int" overloaded=
"no">
16695 <autodoc>GetColumnCount() -
> int
</autodoc>
16697 <method name=
"GetRowCount" type=
"int" overloaded=
"no">
16698 <autodoc>GetRowCount() -
> int
</autodoc>
16700 <method name=
"GetNextItem" type=
"int" overloaded=
"no">
16701 <autodoc>GetNextItem(int item, int dir, long style) -
> int
</autodoc>
16703 <param name=
"item" type=
"int" default=
""/>
16704 <param name=
"dir" type=
"wxDirection" default=
""/>
16705 <param name=
"style" type=
"long" default=
""/>
16710 #---------------------------------------------------------------------------
16712 <class name=
"RadioButton" oldname=
"wxRadioButton" module=
"controls">
16713 <baseclass name=
"Control"/>
16714 <constructor name=
"RadioButton" overloaded=
"no">
16715 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16716 Size size=DefaultSize, long style=
0,
16717 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> RadioButton
</autodoc>
16719 <param name=
"parent" type=
"Window" default=
""/>
16720 <param name=
"id" type=
"int" default=
""/>
16721 <param name=
"label" type=
"String" default=
""/>
16722 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16723 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16724 <param name=
"style" type=
"long" default=
"0"/>
16725 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16726 <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/>
16729 <constructor name=
"PreRadioButton" overloaded=
"no">
16730 <autodoc>PreRadioButton() -
> RadioButton
</autodoc>
16732 <method name=
"Create" type=
"bool" overloaded=
"no">
16733 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16734 Size size=DefaultSize, long style=
0,
16735 Validator validator=DefaultValidator, String name=RadioButtonNameStr) -
> bool
</autodoc>
16737 <param name=
"parent" type=
"Window" default=
""/>
16738 <param name=
"id" type=
"int" default=
""/>
16739 <param name=
"label" type=
"String" default=
""/>
16740 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16741 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16742 <param name=
"style" type=
"long" default=
"0"/>
16743 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16744 <param name=
"name" type=
"String" default=
"wxPyRadioButtonNameStr"/>
16747 <method name=
"GetValue" type=
"bool" overloaded=
"no">
16748 <autodoc>GetValue() -
> bool
</autodoc>
16750 <method name=
"SetValue" type=
"" overloaded=
"no">
16751 <autodoc>SetValue(bool value)
</autodoc>
16753 <param name=
"value" type=
"bool" default=
""/>
16758 #---------------------------------------------------------------------------
16760 <class name=
"Slider" oldname=
"wxSlider" module=
"controls">
16761 <baseclass name=
"Control"/>
16762 <constructor name=
"Slider" overloaded=
"no">
16763 <autodoc>__init__(Window parent, int id, int value, int minValue, int maxValue,
16764 Point pos=DefaultPosition, Size size=DefaultSize,
16765 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
16766 String name=SliderNameStr) -
> Slider
</autodoc>
16768 <param name=
"parent" type=
"Window" default=
""/>
16769 <param name=
"id" type=
"int" default=
""/>
16770 <param name=
"value" type=
"int" default=
""/>
16771 <param name=
"minValue" type=
"int" default=
""/>
16772 <param name=
"maxValue" type=
"int" default=
""/>
16773 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16774 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16775 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
16776 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16777 <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/>
16780 <constructor name=
"PreSlider" overloaded=
"no">
16781 <autodoc>PreSlider() -
> Slider
</autodoc>
16783 <method name=
"Create" type=
"bool" overloaded=
"no">
16784 <autodoc>Create(Window parent, int id, int value, int minValue, int maxValue,
16785 Point pos=DefaultPosition, Size size=DefaultSize,
16786 long style=SL_HORIZONTAL, Validator validator=DefaultValidator,
16787 String name=SliderNameStr) -
> bool
</autodoc>
16789 <param name=
"parent" type=
"Window" default=
""/>
16790 <param name=
"id" type=
"int" default=
""/>
16791 <param name=
"value" type=
"int" default=
""/>
16792 <param name=
"minValue" type=
"int" default=
""/>
16793 <param name=
"maxValue" type=
"int" default=
""/>
16794 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16795 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16796 <param name=
"style" type=
"long" default=
"wxSL_HORIZONTAL"/>
16797 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16798 <param name=
"name" type=
"String" default=
"wxPySliderNameStr"/>
16801 <method name=
"GetValue" type=
"int" overloaded=
"no">
16802 <autodoc>GetValue() -
> int
</autodoc>
16804 <method name=
"SetValue" type=
"" overloaded=
"no">
16805 <autodoc>SetValue(int value)
</autodoc>
16807 <param name=
"value" type=
"int" default=
""/>
16810 <method name=
"SetRange" type=
"" overloaded=
"no">
16811 <autodoc>SetRange(int minValue, int maxValue)
</autodoc>
16813 <param name=
"minValue" type=
"int" default=
""/>
16814 <param name=
"maxValue" type=
"int" default=
""/>
16817 <method name=
"GetMin" type=
"int" overloaded=
"no">
16818 <autodoc>GetMin() -
> int
</autodoc>
16820 <method name=
"GetMax" type=
"int" overloaded=
"no">
16821 <autodoc>GetMax() -
> int
</autodoc>
16823 <method name=
"SetMin" type=
"" overloaded=
"no">
16824 <autodoc>SetMin(int minValue)
</autodoc>
16826 <param name=
"minValue" type=
"int" default=
""/>
16829 <method name=
"SetMax" type=
"" overloaded=
"no">
16830 <autodoc>SetMax(int maxValue)
</autodoc>
16832 <param name=
"maxValue" type=
"int" default=
""/>
16835 <method name=
"SetLineSize" type=
"" overloaded=
"no">
16836 <autodoc>SetLineSize(int lineSize)
</autodoc>
16838 <param name=
"lineSize" type=
"int" default=
""/>
16841 <method name=
"SetPageSize" type=
"" overloaded=
"no">
16842 <autodoc>SetPageSize(int pageSize)
</autodoc>
16844 <param name=
"pageSize" type=
"int" default=
""/>
16847 <method name=
"GetLineSize" type=
"int" overloaded=
"no">
16848 <autodoc>GetLineSize() -
> int
</autodoc>
16850 <method name=
"GetPageSize" type=
"int" overloaded=
"no">
16851 <autodoc>GetPageSize() -
> int
</autodoc>
16853 <method name=
"SetThumbLength" type=
"" overloaded=
"no">
16854 <autodoc>SetThumbLength(int lenPixels)
</autodoc>
16856 <param name=
"lenPixels" type=
"int" default=
""/>
16859 <method name=
"GetThumbLength" type=
"int" overloaded=
"no">
16860 <autodoc>GetThumbLength() -
> int
</autodoc>
16862 <method name=
"SetTickFreq" type=
"" overloaded=
"no">
16863 <autodoc>SetTickFreq(int n, int pos=
1)
</autodoc>
16865 <param name=
"n" type=
"int" default=
""/>
16866 <param name=
"pos" type=
"int" default=
"1"/>
16869 <method name=
"GetTickFreq" type=
"int" overloaded=
"no">
16870 <autodoc>GetTickFreq() -
> int
</autodoc>
16872 <method name=
"ClearTicks" type=
"" overloaded=
"no">
16873 <autodoc>ClearTicks()
</autodoc>
16875 <method name=
"SetTick" type=
"" overloaded=
"no">
16876 <autodoc>SetTick(int tickPos)
</autodoc>
16878 <param name=
"tickPos" type=
"int" default=
""/>
16881 <method name=
"ClearSel" type=
"" overloaded=
"no">
16882 <autodoc>ClearSel()
</autodoc>
16884 <method name=
"GetSelEnd" type=
"int" overloaded=
"no">
16885 <autodoc>GetSelEnd() -
> int
</autodoc>
16887 <method name=
"GetSelStart" type=
"int" overloaded=
"no">
16888 <autodoc>GetSelStart() -
> int
</autodoc>
16890 <method name=
"SetSelection" type=
"" overloaded=
"no">
16891 <autodoc>SetSelection(int min, int max)
</autodoc>
16893 <param name=
"min" type=
"int" default=
""/>
16894 <param name=
"max" type=
"int" default=
""/>
16899 #---------------------------------------------------------------------------
16902 EVT_TOGGLEBUTTON = wx.PyEventBinder( wxEVT_COMMAND_TOGGLEBUTTON_CLICKED,
1)
16904 <class name=
"ToggleButton" oldname=
"wxToggleButton" module=
"controls">
16905 <baseclass name=
"Control"/>
16906 <constructor name=
"ToggleButton" overloaded=
"no">
16907 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
16908 Size size=DefaultSize, long style=
0,
16909 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> ToggleButton
</autodoc>
16911 <param name=
"parent" type=
"Window" default=
""/>
16912 <param name=
"id" type=
"int" default=
""/>
16913 <param name=
"label" type=
"String" default=
""/>
16914 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16915 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16916 <param name=
"style" type=
"long" default=
"0"/>
16917 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16918 <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/>
16921 <constructor name=
"PreToggleButton" overloaded=
"no">
16922 <autodoc>PreToggleButton() -
> ToggleButton
</autodoc>
16924 <method name=
"Create" type=
"bool" overloaded=
"no">
16925 <autodoc>Create(Window parent, int id, String label, Point pos=DefaultPosition,
16926 Size size=DefaultSize, long style=
0,
16927 Validator validator=DefaultValidator, String name=ToggleButtonNameStr) -
> bool
</autodoc>
16929 <param name=
"parent" type=
"Window" default=
""/>
16930 <param name=
"id" type=
"int" default=
""/>
16931 <param name=
"label" type=
"String" default=
""/>
16932 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
16933 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
16934 <param name=
"style" type=
"long" default=
"0"/>
16935 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
16936 <param name=
"name" type=
"String" default=
"wxPyToggleButtonNameStr"/>
16939 <method name=
"SetValue" type=
"" overloaded=
"no">
16940 <autodoc>SetValue(bool value)
</autodoc>
16942 <param name=
"value" type=
"bool" default=
""/>
16945 <method name=
"GetValue" type=
"bool" overloaded=
"no">
16946 <autodoc>GetValue() -
> bool
</autodoc>
16948 <method name=
"SetLabel" type=
"" overloaded=
"no">
16949 <autodoc>SetLabel(String label)
</autodoc>
16950 <docstring>Sets the item's text.
</docstring>
16952 <param name=
"label" type=
"String" default=
""/>
16957 #---------------------------------------------------------------------------
16959 <class name=
"BookCtrl" oldname=
"wxBookCtrl" module=
"controls">
16960 <baseclass name=
"Control"/>
16961 <method name=
"GetPageCount" type=
"size_t" overloaded=
"no">
16962 <autodoc>GetPageCount() -
> size_t
</autodoc>
16964 <method name=
"GetPage" type=
"Window" overloaded=
"no">
16965 <autodoc>GetPage(size_t n) -
> Window
</autodoc>
16967 <param name=
"n" type=
"size_t" default=
""/>
16970 <method name=
"GetSelection" type=
"int" overloaded=
"no">
16971 <autodoc>GetSelection() -
> int
</autodoc>
16973 <method name=
"SetPageText" type=
"bool" overloaded=
"no">
16974 <autodoc>SetPageText(size_t n, String strText) -
> bool
</autodoc>
16976 <param name=
"n" type=
"size_t" default=
""/>
16977 <param name=
"strText" type=
"String" default=
""/>
16980 <method name=
"GetPageText" type=
"String" overloaded=
"no">
16981 <autodoc>GetPageText(size_t n) -
> String
</autodoc>
16983 <param name=
"n" type=
"size_t" default=
""/>
16986 <method name=
"SetImageList" type=
"" overloaded=
"no">
16987 <autodoc>SetImageList(ImageList imageList)
</autodoc>
16989 <param name=
"imageList" type=
"ImageList" default=
""/>
16992 <method name=
"AssignImageList" type=
"" overloaded=
"no">
16993 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
16995 <param name=
"imageList" type=
"ImageList" default=
""/>
16998 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
16999 <autodoc>GetImageList() -
> ImageList
</autodoc>
17001 <method name=
"GetPageImage" type=
"int" overloaded=
"no">
17002 <autodoc>GetPageImage(size_t n) -
> int
</autodoc>
17004 <param name=
"n" type=
"size_t" default=
""/>
17007 <method name=
"SetPageImage" type=
"bool" overloaded=
"no">
17008 <autodoc>SetPageImage(size_t n, int imageId) -
> bool
</autodoc>
17010 <param name=
"n" type=
"size_t" default=
""/>
17011 <param name=
"imageId" type=
"int" default=
""/>
17014 <method name=
"SetPageSize" type=
"" overloaded=
"no">
17015 <autodoc>SetPageSize(Size size)
</autodoc>
17017 <param name=
"size" type=
"Size" default=
""/>
17020 <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no">
17021 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
17023 <param name=
"sizePage" type=
"Size" default=
""/>
17026 <method name=
"DeletePage" type=
"bool" overloaded=
"no">
17027 <autodoc>DeletePage(size_t n) -
> bool
</autodoc>
17029 <param name=
"n" type=
"size_t" default=
""/>
17032 <method name=
"RemovePage" type=
"bool" overloaded=
"no">
17033 <autodoc>RemovePage(size_t n) -
> bool
</autodoc>
17035 <param name=
"n" type=
"size_t" default=
""/>
17038 <method name=
"DeleteAllPages" type=
"bool" overloaded=
"no">
17039 <autodoc>DeleteAllPages() -
> bool
</autodoc>
17041 <method name=
"AddPage" type=
"bool" overloaded=
"no">
17042 <autodoc>AddPage(Window page, String text, bool select=False, int imageId=-
1) -
> bool
</autodoc>
17044 <param name=
"page" type=
"Window" default=
""/>
17045 <param name=
"text" type=
"String" default=
""/>
17046 <param name=
"select" type=
"bool" default=
"False"/>
17047 <param name=
"imageId" type=
"int" default=
"-1"/>
17050 <method name=
"InsertPage" type=
"bool" overloaded=
"no">
17051 <autodoc>InsertPage(size_t n, Window page, String text, bool select=False,
17052 int imageId=-
1) -
> bool
</autodoc>
17054 <param name=
"n" type=
"size_t" default=
""/>
17055 <param name=
"page" type=
"Window" default=
""/>
17056 <param name=
"text" type=
"String" default=
""/>
17057 <param name=
"select" type=
"bool" default=
"False"/>
17058 <param name=
"imageId" type=
"int" default=
"-1"/>
17061 <method name=
"SetSelection" type=
"int" overloaded=
"no">
17062 <autodoc>SetSelection(size_t n) -
> int
</autodoc>
17064 <param name=
"n" type=
"size_t" default=
""/>
17067 <method name=
"AdvanceSelection" type=
"" overloaded=
"no">
17068 <autodoc>AdvanceSelection(bool forward=True)
</autodoc>
17070 <param name=
"forward" type=
"bool" default=
"True"/>
17074 <class name=
"BookCtrlEvent" oldname=
"wxBookCtrlEvent" module=
"controls">
17075 <baseclass name=
"NotifyEvent"/>
17076 <constructor name=
"BookCtrlEvent" overloaded=
"no">
17077 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17078 int nOldSel=-
1) -
> BookCtrlEvent
</autodoc>
17080 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17081 <param name=
"id" type=
"int" default=
"0"/>
17082 <param name=
"nSel" type=
"int" default=
"-1"/>
17083 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17086 <method name=
"GetSelection" type=
"int" overloaded=
"no">
17087 <autodoc>GetSelection() -
> int
</autodoc>
17089 <method name=
"SetSelection" type=
"" overloaded=
"no">
17090 <autodoc>SetSelection(int nSel)
</autodoc>
17092 <param name=
"nSel" type=
"int" default=
""/>
17095 <method name=
"GetOldSelection" type=
"int" overloaded=
"no">
17096 <autodoc>GetOldSelection() -
> int
</autodoc>
17098 <method name=
"SetOldSelection" type=
"" overloaded=
"no">
17099 <autodoc>SetOldSelection(int nOldSel)
</autodoc>
17101 <param name=
"nOldSel" type=
"int" default=
""/>
17106 #---------------------------------------------------------------------------
17108 <class name=
"Notebook" oldname=
"wxNotebook" module=
"controls">
17109 <baseclass name=
"BookCtrl"/>
17110 <constructor name=
"Notebook" overloaded=
"no">
17111 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17112 long style=
0, String name=NOTEBOOK_NAME) -
> Notebook
</autodoc>
17114 <param name=
"parent" type=
"Window" default=
""/>
17115 <param name=
"id" type=
"int" default=
""/>
17116 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17117 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17118 <param name=
"style" type=
"long" default=
"0"/>
17119 <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/>
17122 <constructor name=
"PreNotebook" overloaded=
"no">
17123 <autodoc>PreNotebook() -
> Notebook
</autodoc>
17125 <method name=
"Create" type=
"bool" overloaded=
"no">
17126 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17127 long style=
0, String name=NOTEBOOK_NAME) -
> bool
</autodoc>
17129 <param name=
"parent" type=
"Window" default=
""/>
17130 <param name=
"id" type=
"int" default=
""/>
17131 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17132 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17133 <param name=
"style" type=
"long" default=
"0"/>
17134 <param name=
"name" type=
"String" default=
"wxPyNOTEBOOK_NAME"/>
17137 <method name=
"GetRowCount" type=
"int" overloaded=
"no">
17138 <autodoc>GetRowCount() -
> int
</autodoc>
17140 <method name=
"SetPadding" type=
"" overloaded=
"no">
17141 <autodoc>SetPadding(Size padding)
</autodoc>
17143 <param name=
"padding" type=
"Size" default=
""/>
17146 <method name=
"SetTabSize" type=
"" overloaded=
"no">
17147 <autodoc>SetTabSize(Size sz)
</autodoc>
17149 <param name=
"sz" type=
"Size" default=
""/>
17152 <method name=
"HitTest" type=
"int" overloaded=
"no">
17153 <autodoc>HitTest(Point pt) -
> (tab, where)
</autodoc>
17154 <docstring>Returns the tab which is hit, and flags indicating where using wx.NB_HITTEST_ flags.
</docstring>
17156 <param name=
"pt" type=
"Point" default=
""/>
17157 <param name=
"OUTPUT" type=
"long" default=
""/>
17160 <method name=
"CalcSizeFromPage" type=
"Size" overloaded=
"no">
17161 <autodoc>CalcSizeFromPage(Size sizePage) -
> Size
</autodoc>
17163 <param name=
"sizePage" type=
"Size" default=
""/>
17167 <class name=
"NotebookEvent" oldname=
"wxNotebookEvent" module=
"controls">
17168 <baseclass name=
"BookCtrlEvent"/>
17169 <constructor name=
"NotebookEvent" overloaded=
"no">
17170 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17171 int nOldSel=-
1) -
> NotebookEvent
</autodoc>
17173 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17174 <param name=
"id" type=
"int" default=
"0"/>
17175 <param name=
"nSel" type=
"int" default=
"-1"/>
17176 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17181 # wxNotebook events
17182 EVT_NOTEBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGED,
1 )
17183 EVT_NOTEBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_NOTEBOOK_PAGE_CHANGING,
1 )
17186 #----------------------------------------------------------------------------
17188 class NotebookPage(wx.Panel):
17190 There is an old (and apparently unsolvable) bug when placing a
17191 window with a nonstandard background colour in a wxNotebook on
17192 wxGTK, as the notbooks's background colour would always be used
17193 when the window is refreshed. The solution is to place a panel in
17194 the notbook and the coloured window on the panel, sized to cover
17195 the panel. This simple class does that for you, just put an
17196 instance of this in the notebook and make your regular window a
17197 child of this one and it will handle the resize for you.
17199 def __init__(self, parent, id=-
1,
17200 pos=wx.DefaultPosition, size=wx.DefaultSize,
17201 style=wx.TAB_TRAVERSAL,
name="panel"):
17202 wx.Panel.__init__(self, parent, id, pos, size, style, name)
17204 EVT_SIZE(self, self.OnSize)
17206 def OnSize(self, evt):
17207 if self.child is None:
17208 children = self.GetChildren()
17210 self.child = children[
0]
17212 self.child.SetPosition((
0,
0))
17213 self.child.SetSize(self.GetSize())
17217 #---------------------------------------------------------------------------
17219 <class name=
"Listbook" oldname=
"wxListbook" module=
"controls">
17220 <baseclass name=
"BookCtrl"/>
17221 <constructor name=
"Listbook" overloaded=
"no">
17222 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17223 long style=
0, String name=EmptyString) -
> Listbook
</autodoc>
17225 <param name=
"parent" type=
"Window" default=
""/>
17226 <param name=
"id" type=
"int" default=
""/>
17227 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17228 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17229 <param name=
"style" type=
"long" default=
"0"/>
17230 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
17233 <constructor name=
"PreListbook" overloaded=
"no">
17234 <autodoc>PreListbook() -
> Listbook
</autodoc>
17236 <method name=
"Create" type=
"bool" overloaded=
"no">
17237 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17238 long style=
0, String name=EmptyString) -
> bool
</autodoc>
17240 <param name=
"parent" type=
"Window" default=
""/>
17241 <param name=
"id" type=
"int" default=
""/>
17242 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17243 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17244 <param name=
"style" type=
"long" default=
"0"/>
17245 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
17248 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
17249 <autodoc>IsVertical() -
> bool
</autodoc>
17252 <class name=
"ListbookEvent" oldname=
"wxListbookEvent" module=
"controls">
17253 <baseclass name=
"BookCtrlEvent"/>
17254 <constructor name=
"ListbookEvent" overloaded=
"no">
17255 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0, int nSel=-
1,
17256 int nOldSel=-
1) -
> ListbookEvent
</autodoc>
17258 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17259 <param name=
"id" type=
"int" default=
"0"/>
17260 <param name=
"nSel" type=
"int" default=
"-1"/>
17261 <param name=
"nOldSel" type=
"int" default=
"-1"/>
17266 EVT_LISTBOOK_PAGE_CHANGED = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGED,
1 )
17267 EVT_LISTBOOK_PAGE_CHANGING = wx.PyEventBinder( wxEVT_COMMAND_LISTBOOK_PAGE_CHANGING,
1 )
17270 #---------------------------------------------------------------------------
17272 <class name=
"BookCtrlSizer" oldname=
"wxBookCtrlSizer" module=
"controls">
17273 <baseclass name=
"Sizer"/>
17274 <constructor name=
"BookCtrlSizer" overloaded=
"no">
17275 <autodoc>__init__(BookCtrl nb) -
> BookCtrlSizer
</autodoc>
17277 <param name=
"nb" type=
"BookCtrl" default=
""/>
17280 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
17281 <autodoc>RecalcSizes()
</autodoc>
17283 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
17284 <autodoc>CalcMin() -
> Size
</autodoc>
17286 <method name=
"GetControl" type=
"BookCtrl" overloaded=
"no">
17287 <autodoc>GetControl() -
> BookCtrl
</autodoc>
17290 <class name=
"NotebookSizer" oldname=
"wxNotebookSizer" module=
"controls">
17291 <baseclass name=
"Sizer"/>
17292 <constructor name=
"NotebookSizer" overloaded=
"no">
17293 <autodoc>__init__(Notebook nb) -
> NotebookSizer
</autodoc>
17295 <param name=
"nb" type=
"Notebook" default=
""/>
17298 <method name=
"RecalcSizes" type=
"" overloaded=
"no">
17299 <autodoc>RecalcSizes()
</autodoc>
17301 <method name=
"CalcMin" type=
"Size" overloaded=
"no">
17302 <autodoc>CalcMin() -
> Size
</autodoc>
17304 <method name=
"GetNotebook" type=
"Notebook" overloaded=
"no">
17305 <autodoc>GetNotebook() -
> Notebook
</autodoc>
17309 #---------------------------------------------------------------------------
17311 <class name=
"ToolBarToolBase" oldname=
"wxToolBarToolBase" module=
"controls">
17312 <baseclass name=
"Object"/>
17313 <method name=
"GetId" type=
"int" overloaded=
"no">
17314 <autodoc>GetId() -
> int
</autodoc>
17316 <method name=
"GetControl" type=
"Control" overloaded=
"no">
17317 <autodoc>GetControl() -
> Control
</autodoc>
17319 <method name=
"GetToolBar" type=
"wxToolBarBase" overloaded=
"no">
17320 <autodoc>GetToolBar() -
> ToolBarBase
</autodoc>
17322 <method name=
"IsButton" type=
"int" overloaded=
"no">
17323 <autodoc>IsButton() -
> int
</autodoc>
17325 <method name=
"IsControl" type=
"int" overloaded=
"no">
17326 <autodoc>IsControl() -
> int
</autodoc>
17328 <method name=
"IsSeparator" type=
"int" overloaded=
"no">
17329 <autodoc>IsSeparator() -
> int
</autodoc>
17331 <method name=
"GetStyle" type=
"int" overloaded=
"no">
17332 <autodoc>GetStyle() -
> int
</autodoc>
17334 <method name=
"GetKind" type=
"wxItemKind" overloaded=
"no">
17335 <autodoc>GetKind() -
> int
</autodoc>
17337 <method name=
"IsEnabled" type=
"bool" overloaded=
"no">
17338 <autodoc>IsEnabled() -
> bool
</autodoc>
17340 <method name=
"IsToggled" type=
"bool" overloaded=
"no">
17341 <autodoc>IsToggled() -
> bool
</autodoc>
17343 <method name=
"CanBeToggled" type=
"bool" overloaded=
"no">
17344 <autodoc>CanBeToggled() -
> bool
</autodoc>
17346 <method name=
"GetNormalBitmap" type=
"Bitmap" overloaded=
"no">
17347 <autodoc>GetNormalBitmap() -
> Bitmap
</autodoc>
17349 <method name=
"GetDisabledBitmap" type=
"Bitmap" overloaded=
"no">
17350 <autodoc>GetDisabledBitmap() -
> Bitmap
</autodoc>
17352 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
17353 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
17355 <method name=
"GetLabel" type=
"String" overloaded=
"no">
17356 <autodoc>GetLabel() -
> String
</autodoc>
17358 <method name=
"GetShortHelp" type=
"String" overloaded=
"no">
17359 <autodoc>GetShortHelp() -
> String
</autodoc>
17361 <method name=
"GetLongHelp" type=
"String" overloaded=
"no">
17362 <autodoc>GetLongHelp() -
> String
</autodoc>
17364 <method name=
"Enable" type=
"bool" overloaded=
"no">
17365 <autodoc>Enable(bool enable) -
> bool
</autodoc>
17367 <param name=
"enable" type=
"bool" default=
""/>
17370 <method name=
"Toggle" type=
"" overloaded=
"no">
17371 <autodoc>Toggle()
</autodoc>
17373 <method name=
"SetToggle" type=
"bool" overloaded=
"no">
17374 <autodoc>SetToggle(bool toggle) -
> bool
</autodoc>
17376 <param name=
"toggle" type=
"bool" default=
""/>
17379 <method name=
"SetShortHelp" type=
"bool" overloaded=
"no">
17380 <autodoc>SetShortHelp(String help) -
> bool
</autodoc>
17382 <param name=
"help" type=
"String" default=
""/>
17385 <method name=
"SetLongHelp" type=
"bool" overloaded=
"no">
17386 <autodoc>SetLongHelp(String help) -
> bool
</autodoc>
17388 <param name=
"help" type=
"String" default=
""/>
17391 <method name=
"SetNormalBitmap" type=
"" overloaded=
"no">
17392 <autodoc>SetNormalBitmap(Bitmap bmp)
</autodoc>
17394 <param name=
"bmp" type=
"Bitmap" default=
""/>
17397 <method name=
"SetDisabledBitmap" type=
"" overloaded=
"no">
17398 <autodoc>SetDisabledBitmap(Bitmap bmp)
</autodoc>
17400 <param name=
"bmp" type=
"Bitmap" default=
""/>
17403 <method name=
"SetLabel" type=
"" overloaded=
"no">
17404 <autodoc>SetLabel(String label)
</autodoc>
17406 <param name=
"label" type=
"String" default=
""/>
17409 <method name=
"Detach" type=
"" overloaded=
"no">
17410 <autodoc>Detach()
</autodoc>
17412 <method name=
"Attach" type=
"" overloaded=
"no">
17413 <autodoc>Attach(ToolBarBase tbar)
</autodoc>
17415 <param name=
"tbar" type=
"wxToolBarBase" default=
""/>
17418 <method name=
"GetClientData" type=
"PyObject" overloaded=
"no">
17419 <autodoc>GetClientData() -
> PyObject
</autodoc>
17421 <method name=
"SetClientData" type=
"" overloaded=
"no">
17422 <autodoc>SetClientData(PyObject clientData)
</autodoc>
17424 <param name=
"clientData" type=
"PyObject" default=
""/>
17428 <class name=
"ToolBarBase" oldname=
"wxToolBarBase" module=
"controls">
17429 <baseclass name=
"Control"/>
17430 <method name=
"DoAddTool" type=
"ToolBarToolBase" overloaded=
"no">
17431 <autodoc>DoAddTool(int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
17432 int kind=ITEM_NORMAL, String shortHelp=EmptyString,
17433 String longHelp=EmptyString,
17434 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
17436 <param name=
"id" type=
"int" default=
""/>
17437 <param name=
"label" type=
"String" default=
""/>
17438 <param name=
"bitmap" type=
"Bitmap" default=
""/>
17439 <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/>
17440 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
17441 <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/>
17442 <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/>
17443 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
17446 <method name=
"DoInsertTool" type=
"ToolBarToolBase" overloaded=
"no">
17447 <autodoc>DoInsertTool(size_t pos, int id, String label, Bitmap bitmap, Bitmap bmpDisabled=wxNullBitmap,
17448 int kind=ITEM_NORMAL,
17449 String shortHelp=EmptyString, String longHelp=EmptyString,
17450 PyObject clientData=None) -
> ToolBarToolBase
</autodoc>
17452 <param name=
"pos" type=
"size_t" default=
""/>
17453 <param name=
"id" type=
"int" default=
""/>
17454 <param name=
"label" type=
"String" default=
""/>
17455 <param name=
"bitmap" type=
"Bitmap" default=
""/>
17456 <param name=
"bmpDisabled" type=
"Bitmap" default=
"wxNullBitmap"/>
17457 <param name=
"kind" type=
"wxItemKind" default=
"wxITEM_NORMAL"/>
17458 <param name=
"shortHelp" type=
"String" default=
"wxPyEmptyString"/>
17459 <param name=
"longHelp" type=
"String" default=
"wxPyEmptyString"/>
17460 <param name=
"clientData" type=
"PyObject" default=
"NULL"/>
17463 <method name=
"AddToolItem" type=
"ToolBarToolBase" overloaded=
"no">
17464 <autodoc>AddToolItem(ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
17466 <param name=
"tool" type=
"ToolBarToolBase" default=
""/>
17469 <method name=
"InsertToolItem" type=
"ToolBarToolBase" overloaded=
"no">
17470 <autodoc>InsertToolItem(size_t pos, ToolBarToolBase tool) -
> ToolBarToolBase
</autodoc>
17472 <param name=
"pos" type=
"size_t" default=
""/>
17473 <param name=
"tool" type=
"ToolBarToolBase" default=
""/>
17476 <method name=
"AddControl" type=
"ToolBarToolBase" overloaded=
"no">
17477 <autodoc>AddControl(Control control) -
> ToolBarToolBase
</autodoc>
17479 <param name=
"control" type=
"Control" default=
""/>
17482 <method name=
"InsertControl" type=
"ToolBarToolBase" overloaded=
"no">
17483 <autodoc>InsertControl(size_t pos, Control control) -
> ToolBarToolBase
</autodoc>
17485 <param name=
"pos" type=
"size_t" default=
""/>
17486 <param name=
"control" type=
"Control" default=
""/>
17489 <method name=
"FindControl" type=
"Control" overloaded=
"no">
17490 <autodoc>FindControl(int id) -
> Control
</autodoc>
17492 <param name=
"id" type=
"int" default=
""/>
17495 <method name=
"AddSeparator" type=
"ToolBarToolBase" overloaded=
"no">
17496 <autodoc>AddSeparator() -
> ToolBarToolBase
</autodoc>
17498 <method name=
"InsertSeparator" type=
"ToolBarToolBase" overloaded=
"no">
17499 <autodoc>InsertSeparator(size_t pos) -
> ToolBarToolBase
</autodoc>
17501 <param name=
"pos" type=
"size_t" default=
""/>
17504 <method name=
"RemoveTool" type=
"ToolBarToolBase" overloaded=
"no">
17505 <autodoc>RemoveTool(int id) -
> ToolBarToolBase
</autodoc>
17507 <param name=
"id" type=
"int" default=
""/>
17510 <method name=
"DeleteToolByPos" type=
"bool" overloaded=
"no">
17511 <autodoc>DeleteToolByPos(size_t pos) -
> bool
</autodoc>
17513 <param name=
"pos" type=
"size_t" default=
""/>
17516 <method name=
"DeleteTool" type=
"bool" overloaded=
"no">
17517 <autodoc>DeleteTool(int id) -
> bool
</autodoc>
17519 <param name=
"id" type=
"int" default=
""/>
17522 <method name=
"ClearTools" type=
"" overloaded=
"no">
17523 <autodoc>ClearTools()
</autodoc>
17525 <method name=
"Realize" type=
"bool" overloaded=
"no">
17526 <autodoc>Realize() -
> bool
</autodoc>
17528 <method name=
"EnableTool" type=
"" overloaded=
"no">
17529 <autodoc>EnableTool(int id, bool enable)
</autodoc>
17531 <param name=
"id" type=
"int" default=
""/>
17532 <param name=
"enable" type=
"bool" default=
""/>
17535 <method name=
"ToggleTool" type=
"" overloaded=
"no">
17536 <autodoc>ToggleTool(int id, bool toggle)
</autodoc>
17538 <param name=
"id" type=
"int" default=
""/>
17539 <param name=
"toggle" type=
"bool" default=
""/>
17542 <method name=
"SetToggle" type=
"" overloaded=
"no">
17543 <autodoc>SetToggle(int id, bool toggle)
</autodoc>
17545 <param name=
"id" type=
"int" default=
""/>
17546 <param name=
"toggle" type=
"bool" default=
""/>
17549 <method name=
"GetToolClientData" type=
"PyObject" overloaded=
"no">
17550 <autodoc>GetToolClientData(int id) -
> PyObject
</autodoc>
17552 <param name=
"id" type=
"int" default=
""/>
17555 <method name=
"SetToolClientData" type=
"" overloaded=
"no">
17556 <autodoc>SetToolClientData(int id, PyObject clientData)
</autodoc>
17558 <param name=
"id" type=
"int" default=
""/>
17559 <param name=
"clientData" type=
"PyObject" default=
""/>
17562 <method name=
"GetToolPos" type=
"int" overloaded=
"no">
17563 <autodoc>GetToolPos(int id) -
> int
</autodoc>
17565 <param name=
"id" type=
"int" default=
""/>
17568 <method name=
"GetToolState" type=
"bool" overloaded=
"no">
17569 <autodoc>GetToolState(int id) -
> bool
</autodoc>
17571 <param name=
"id" type=
"int" default=
""/>
17574 <method name=
"GetToolEnabled" type=
"bool" overloaded=
"no">
17575 <autodoc>GetToolEnabled(int id) -
> bool
</autodoc>
17577 <param name=
"id" type=
"int" default=
""/>
17580 <method name=
"SetToolShortHelp" type=
"" overloaded=
"no">
17581 <autodoc>SetToolShortHelp(int id, String helpString)
</autodoc>
17583 <param name=
"id" type=
"int" default=
""/>
17584 <param name=
"helpString" type=
"String" default=
""/>
17587 <method name=
"GetToolShortHelp" type=
"String" overloaded=
"no">
17588 <autodoc>GetToolShortHelp(int id) -
> String
</autodoc>
17590 <param name=
"id" type=
"int" default=
""/>
17593 <method name=
"SetToolLongHelp" type=
"" overloaded=
"no">
17594 <autodoc>SetToolLongHelp(int id, String helpString)
</autodoc>
17596 <param name=
"id" type=
"int" default=
""/>
17597 <param name=
"helpString" type=
"String" default=
""/>
17600 <method name=
"GetToolLongHelp" type=
"String" overloaded=
"no">
17601 <autodoc>GetToolLongHelp(int id) -
> String
</autodoc>
17603 <param name=
"id" type=
"int" default=
""/>
17606 <method name=
"SetMarginsXY" type=
"" overloaded=
"no">
17607 <autodoc>SetMarginsXY(int x, int y)
</autodoc>
17609 <param name=
"x" type=
"int" default=
""/>
17610 <param name=
"y" type=
"int" default=
""/>
17613 <method name=
"SetMargins" type=
"" overloaded=
"no">
17614 <autodoc>SetMargins(Size size)
</autodoc>
17616 <param name=
"size" type=
"Size" default=
""/>
17619 <method name=
"SetToolPacking" type=
"" overloaded=
"no">
17620 <autodoc>SetToolPacking(int packing)
</autodoc>
17622 <param name=
"packing" type=
"int" default=
""/>
17625 <method name=
"SetToolSeparation" type=
"" overloaded=
"no">
17626 <autodoc>SetToolSeparation(int separation)
</autodoc>
17628 <param name=
"separation" type=
"int" default=
""/>
17631 <method name=
"GetToolMargins" type=
"Size" overloaded=
"no">
17632 <autodoc>GetToolMargins() -
> Size
</autodoc>
17634 <method name=
"GetMargins" type=
"Size" overloaded=
"no">
17635 <autodoc>GetMargins() -
> Size
</autodoc>
17637 <method name=
"GetToolPacking" type=
"int" overloaded=
"no">
17638 <autodoc>GetToolPacking() -
> int
</autodoc>
17640 <method name=
"GetToolSeparation" type=
"int" overloaded=
"no">
17641 <autodoc>GetToolSeparation() -
> int
</autodoc>
17643 <method name=
"SetRows" type=
"" overloaded=
"no">
17644 <autodoc>SetRows(int nRows)
</autodoc>
17646 <param name=
"nRows" type=
"int" default=
""/>
17649 <method name=
"SetMaxRowsCols" type=
"" overloaded=
"no">
17650 <autodoc>SetMaxRowsCols(int rows, int cols)
</autodoc>
17652 <param name=
"rows" type=
"int" default=
""/>
17653 <param name=
"cols" type=
"int" default=
""/>
17656 <method name=
"GetMaxRows" type=
"int" overloaded=
"no">
17657 <autodoc>GetMaxRows() -
> int
</autodoc>
17659 <method name=
"GetMaxCols" type=
"int" overloaded=
"no">
17660 <autodoc>GetMaxCols() -
> int
</autodoc>
17662 <method name=
"SetToolBitmapSize" type=
"" overloaded=
"no">
17663 <autodoc>SetToolBitmapSize(Size size)
</autodoc>
17665 <param name=
"size" type=
"Size" default=
""/>
17668 <method name=
"GetToolBitmapSize" type=
"Size" overloaded=
"no">
17669 <autodoc>GetToolBitmapSize() -
> Size
</autodoc>
17671 <method name=
"GetToolSize" type=
"Size" overloaded=
"no">
17672 <autodoc>GetToolSize() -
> Size
</autodoc>
17674 <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no">
17675 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
17677 <param name=
"x" type=
"int" default=
""/>
17678 <param name=
"y" type=
"int" default=
""/>
17681 <method name=
"FindById" type=
"ToolBarToolBase" overloaded=
"no">
17682 <autodoc>FindById(int toolid) -
> ToolBarToolBase
</autodoc>
17684 <param name=
"toolid" type=
"int" default=
""/>
17687 <method name=
"IsVertical" type=
"bool" overloaded=
"no">
17688 <autodoc>IsVertical() -
> bool
</autodoc>
17691 <class name=
"ToolBar" oldname=
"wxToolBar" module=
"controls">
17692 <baseclass name=
"ToolBarBase"/>
17693 <constructor name=
"ToolBar" overloaded=
"no">
17694 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17695 long style=wxNO_BORDER|wxTB_HORIZONTAL,
17696 String name=wxPyToolBarNameStr) -
> ToolBar
</autodoc>
17698 <param name=
"parent" type=
"Window" default=
""/>
17699 <param name=
"id" type=
"int" default=
""/>
17700 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17701 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17702 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
17703 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
17706 <constructor name=
"PreToolBar" overloaded=
"no">
17707 <autodoc>PreToolBar() -
> ToolBar
</autodoc>
17709 <method name=
"Create" type=
"bool" overloaded=
"no">
17710 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
17711 long style=wxNO_BORDER|wxTB_HORIZONTAL,
17712 String name=wxPyToolBarNameStr) -
> bool
</autodoc>
17714 <param name=
"parent" type=
"Window" default=
""/>
17715 <param name=
"id" type=
"int" default=
""/>
17716 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
17717 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
17718 <param name=
"style" type=
"long" default=
"wxNO_BORDER|wxTB_HORIZONTAL"/>
17719 <param name=
"name" type=
"String" default=
"wxPyToolBarNameStr"/>
17722 <method name=
"FindToolForPosition" type=
"ToolBarToolBase" overloaded=
"no">
17723 <autodoc>FindToolForPosition(int x, int y) -
> ToolBarToolBase
</autodoc>
17725 <param name=
"x" type=
"int" default=
""/>
17726 <param name=
"y" type=
"int" default=
""/>
17731 #---------------------------------------------------------------------------
17734 #---------------------------------------------------------------------------
17736 <class name=
"ListItemAttr" oldname=
"wxListItemAttr" module=
"controls">
17737 <constructor name=
"ListItemAttr" overloaded=
"no">
17738 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
17739 Font font=wxNullFont) -
> ListItemAttr
</autodoc>
17741 <param name=
"colText" type=
"Colour" default=
"wxNullColour"/>
17742 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
17743 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
17746 <method name=
"SetTextColour" type=
"" overloaded=
"no">
17747 <autodoc>SetTextColour(Colour colText)
</autodoc>
17749 <param name=
"colText" type=
"Colour" default=
""/>
17752 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
17753 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
17755 <param name=
"colBack" type=
"Colour" default=
""/>
17758 <method name=
"SetFont" type=
"" overloaded=
"no">
17759 <autodoc>SetFont(Font font)
</autodoc>
17761 <param name=
"font" type=
"Font" default=
""/>
17764 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
17765 <autodoc>HasTextColour() -
> bool
</autodoc>
17767 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
17768 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
17770 <method name=
"HasFont" type=
"bool" overloaded=
"no">
17771 <autodoc>HasFont() -
> bool
</autodoc>
17773 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
17774 <autodoc>GetTextColour() -
> Colour
</autodoc>
17776 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
17777 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
17779 <method name=
"GetFont" type=
"Font" overloaded=
"no">
17780 <autodoc>GetFont() -
> Font
</autodoc>
17782 <method name=
"Destroy" type=
"" overloaded=
"no">
17783 <autodoc>Destroy()
</autodoc>
17787 #---------------------------------------------------------------------------
17789 <class name=
"ListItem" oldname=
"wxListItem" module=
"controls">
17790 <baseclass name=
"Object"/>
17791 <constructor name=
"ListItem" overloaded=
"no">
17792 <autodoc>__init__() -
> ListItem
</autodoc>
17794 <destructor name=
"~wxListItem" overloaded=
"no">
17795 <autodoc>__del__()
</autodoc>
17797 <method name=
"Clear" type=
"" overloaded=
"no">
17798 <autodoc>Clear()
</autodoc>
17800 <method name=
"ClearAttributes" type=
"" overloaded=
"no">
17801 <autodoc>ClearAttributes()
</autodoc>
17803 <method name=
"SetMask" type=
"" overloaded=
"no">
17804 <autodoc>SetMask(long mask)
</autodoc>
17806 <param name=
"mask" type=
"long" default=
""/>
17809 <method name=
"SetId" type=
"" overloaded=
"no">
17810 <autodoc>SetId(long id)
</autodoc>
17812 <param name=
"id" type=
"long" default=
""/>
17815 <method name=
"SetColumn" type=
"" overloaded=
"no">
17816 <autodoc>SetColumn(int col)
</autodoc>
17818 <param name=
"col" type=
"int" default=
""/>
17821 <method name=
"SetState" type=
"" overloaded=
"no">
17822 <autodoc>SetState(long state)
</autodoc>
17824 <param name=
"state" type=
"long" default=
""/>
17827 <method name=
"SetStateMask" type=
"" overloaded=
"no">
17828 <autodoc>SetStateMask(long stateMask)
</autodoc>
17830 <param name=
"stateMask" type=
"long" default=
""/>
17833 <method name=
"SetText" type=
"" overloaded=
"no">
17834 <autodoc>SetText(String text)
</autodoc>
17836 <param name=
"text" type=
"String" default=
""/>
17839 <method name=
"SetImage" type=
"" overloaded=
"no">
17840 <autodoc>SetImage(int image)
</autodoc>
17842 <param name=
"image" type=
"int" default=
""/>
17845 <method name=
"SetData" type=
"" overloaded=
"no">
17846 <autodoc>SetData(long data)
</autodoc>
17848 <param name=
"data" type=
"long" default=
""/>
17851 <method name=
"SetWidth" type=
"" overloaded=
"no">
17852 <autodoc>SetWidth(int width)
</autodoc>
17854 <param name=
"width" type=
"int" default=
""/>
17857 <method name=
"SetAlign" type=
"" overloaded=
"no">
17858 <autodoc>SetAlign(int align)
</autodoc>
17860 <param name=
"align" type=
"wxListColumnFormat" default=
""/>
17863 <method name=
"SetTextColour" type=
"" overloaded=
"no">
17864 <autodoc>SetTextColour(Colour colText)
</autodoc>
17866 <param name=
"colText" type=
"Colour" default=
""/>
17869 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
17870 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
17872 <param name=
"colBack" type=
"Colour" default=
""/>
17875 <method name=
"SetFont" type=
"" overloaded=
"no">
17876 <autodoc>SetFont(Font font)
</autodoc>
17878 <param name=
"font" type=
"Font" default=
""/>
17881 <method name=
"GetMask" type=
"long" overloaded=
"no">
17882 <autodoc>GetMask() -
> long
</autodoc>
17884 <method name=
"GetId" type=
"long" overloaded=
"no">
17885 <autodoc>GetId() -
> long
</autodoc>
17887 <method name=
"GetColumn" type=
"int" overloaded=
"no">
17888 <autodoc>GetColumn() -
> int
</autodoc>
17890 <method name=
"GetState" type=
"long" overloaded=
"no">
17891 <autodoc>GetState() -
> long
</autodoc>
17893 <method name=
"GetText" type=
"String" overloaded=
"no">
17894 <autodoc>GetText() -
> String
</autodoc>
17896 <method name=
"GetImage" type=
"int" overloaded=
"no">
17897 <autodoc>GetImage() -
> int
</autodoc>
17899 <method name=
"GetData" type=
"long" overloaded=
"no">
17900 <autodoc>GetData() -
> long
</autodoc>
17902 <method name=
"GetWidth" type=
"int" overloaded=
"no">
17903 <autodoc>GetWidth() -
> int
</autodoc>
17905 <method name=
"GetAlign" type=
"wxListColumnFormat" overloaded=
"no">
17906 <autodoc>GetAlign() -
> int
</autodoc>
17908 <method name=
"GetAttributes" type=
"ListItemAttr" overloaded=
"no">
17909 <autodoc>GetAttributes() -
> ListItemAttr
</autodoc>
17911 <method name=
"HasAttributes" type=
"bool" overloaded=
"no">
17912 <autodoc>HasAttributes() -
> bool
</autodoc>
17914 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
17915 <autodoc>GetTextColour() -
> Colour
</autodoc>
17917 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
17918 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
17920 <method name=
"GetFont" type=
"Font" overloaded=
"no">
17921 <autodoc>GetFont() -
> Font
</autodoc>
17923 <property name=
"m_mask" type=
"long" readonly=
"no"/>
17924 <property name=
"m_itemId" type=
"long" readonly=
"no"/>
17925 <property name=
"m_col" type=
"int" readonly=
"no"/>
17926 <property name=
"m_state" type=
"long" readonly=
"no"/>
17927 <property name=
"m_stateMask" type=
"long" readonly=
"no"/>
17928 <property name=
"m_text" type=
"String" readonly=
"no"/>
17929 <property name=
"m_image" type=
"int" readonly=
"no"/>
17930 <property name=
"m_data" type=
"long" readonly=
"no"/>
17931 <property name=
"m_format" type=
"int" readonly=
"no"/>
17932 <property name=
"m_width" type=
"int" readonly=
"no"/>
17935 #---------------------------------------------------------------------------
17937 <class name=
"ListEvent" oldname=
"wxListEvent" module=
"controls">
17938 <baseclass name=
"NotifyEvent"/>
17939 <constructor name=
"ListEvent" overloaded=
"no">
17940 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> ListEvent
</autodoc>
17942 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
17943 <param name=
"id" type=
"int" default=
"0"/>
17946 <property name=
"m_code" type=
"int" readonly=
"no"/>
17947 <property name=
"m_oldItemIndex" type=
"long" readonly=
"no"/>
17948 <property name=
"m_itemIndex" type=
"long" readonly=
"no"/>
17949 <property name=
"m_col" type=
"int" readonly=
"no"/>
17950 <property name=
"m_pointDrag" type=
"Point" readonly=
"no"/>
17951 <property name=
"m_item" type=
"ListItem" readonly=
"yes"/>
17952 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
17953 <autodoc>GetKeyCode() -
> int
</autodoc>
17955 <method name=
"GetIndex" type=
"long" overloaded=
"no">
17956 <autodoc>GetIndex() -
> long
</autodoc>
17958 <method name=
"GetColumn" type=
"int" overloaded=
"no">
17959 <autodoc>GetColumn() -
> int
</autodoc>
17961 <method name=
"GetPoint" type=
"Point" overloaded=
"no">
17962 <autodoc>GetPoint() -
> Point
</autodoc>
17964 <method name=
"GetLabel" type=
"String" overloaded=
"no">
17965 <autodoc>GetLabel() -
> String
</autodoc>
17967 <method name=
"GetText" type=
"String" overloaded=
"no">
17968 <autodoc>GetText() -
> String
</autodoc>
17970 <method name=
"GetImage" type=
"int" overloaded=
"no">
17971 <autodoc>GetImage() -
> int
</autodoc>
17973 <method name=
"GetData" type=
"long" overloaded=
"no">
17974 <autodoc>GetData() -
> long
</autodoc>
17976 <method name=
"GetMask" type=
"long" overloaded=
"no">
17977 <autodoc>GetMask() -
> long
</autodoc>
17979 <method name=
"GetItem" type=
"ListItem" overloaded=
"no">
17980 <autodoc>GetItem() -
> ListItem
</autodoc>
17982 <method name=
"GetCacheFrom" type=
"long" overloaded=
"no">
17983 <autodoc>GetCacheFrom() -
> long
</autodoc>
17985 <method name=
"GetCacheTo" type=
"long" overloaded=
"no">
17986 <autodoc>GetCacheTo() -
> long
</autodoc>
17988 <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no">
17989 <autodoc>IsEditCancelled() -
> bool
</autodoc>
17991 <method name=
"SetEditCanceled" type=
"" overloaded=
"no">
17992 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
17994 <param name=
"editCancelled" type=
"bool" default=
""/>
18000 EVT_LIST_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_DRAG ,
1)
18001 EVT_LIST_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_RDRAG ,
1)
18002 EVT_LIST_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_BEGIN_LABEL_EDIT ,
1)
18003 EVT_LIST_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_LIST_END_LABEL_EDIT ,
1)
18004 EVT_LIST_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ITEM ,
1)
18005 EVT_LIST_DELETE_ALL_ITEMS = wx.PyEventBinder(wxEVT_COMMAND_LIST_DELETE_ALL_ITEMS ,
1)
18006 EVT_LIST_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_GET_INFO ,
1)
18007 EVT_LIST_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_LIST_SET_INFO ,
1)
18008 EVT_LIST_ITEM_SELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_SELECTED ,
1)
18009 EVT_LIST_ITEM_DESELECTED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_DESELECTED ,
1)
18010 EVT_LIST_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_LIST_KEY_DOWN ,
1)
18011 EVT_LIST_INSERT_ITEM = wx.PyEventBinder(wxEVT_COMMAND_LIST_INSERT_ITEM ,
1)
18012 EVT_LIST_COL_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_CLICK ,
1)
18013 EVT_LIST_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK ,
1)
18014 EVT_LIST_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_MIDDLE_CLICK,
1)
18015 EVT_LIST_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_ACTIVATED ,
1)
18016 EVT_LIST_CACHE_HINT = wx.PyEventBinder(wxEVT_COMMAND_LIST_CACHE_HINT ,
1)
18017 EVT_LIST_COL_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_RIGHT_CLICK ,
1)
18018 EVT_LIST_COL_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_BEGIN_DRAG ,
1)
18019 EVT_LIST_COL_DRAGGING = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_DRAGGING ,
1)
18020 EVT_LIST_COL_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_LIST_COL_END_DRAG ,
1)
18021 EVT_LIST_ITEM_FOCUSED = wx.PyEventBinder(wxEVT_COMMAND_LIST_ITEM_FOCUSED ,
1)
18024 #---------------------------------------------------------------------------
18026 <class name=
"ListCtrl" oldname=
"wxPyListCtrl" module=
"controls">
18027 <baseclass name=
"Control"/>
18028 <constructor name=
"wxPyListCtrl" overloaded=
"no">
18029 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18030 Size size=DefaultSize, long style=LC_ICON,
18031 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListCtrl
</autodoc>
18033 <param name=
"parent" type=
"Window" default=
""/>
18034 <param name=
"id" type=
"int" default=
"-1"/>
18035 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18036 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18037 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
18038 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18039 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18042 <constructor name=
"PreListCtrl" overloaded=
"no">
18043 <autodoc>PreListCtrl() -
> ListCtrl
</autodoc>
18045 <method name=
"Create" type=
"bool" overloaded=
"no">
18046 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18047 Size size=DefaultSize, long style=LC_ICON,
18048 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
18049 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18051 <param name=
"parent" type=
"Window" default=
""/>
18052 <param name=
"id" type=
"int" default=
"-1"/>
18053 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18054 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18055 <param name=
"style" type=
"long" default=
"wxLC_ICON"/>
18056 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18057 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18060 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
18061 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
18063 <param name=
"self" type=
"PyObject" default=
""/>
18064 <param name=
"_class" type=
"PyObject" default=
""/>
18067 <method name=
"SetForegroundColour" type=
"bool" overloaded=
"no">
18068 <autodoc>SetForegroundColour(Colour col) -
> bool
</autodoc>
18069 <docstring>Sets the foreground colour of the window. Returns True is the colour
18070 was changed. The interpretation of foreground colour is dependent on
18071 the window class; it may be the text colour or other colour, or it may
18072 not be used at all.
</docstring>
18074 <param name=
"col" type=
"Colour" default=
""/>
18077 <method name=
"SetBackgroundColour" type=
"bool" overloaded=
"no">
18078 <autodoc>SetBackgroundColour(Colour col) -
> bool
</autodoc>
18079 <docstring>Sets the background colour of the window. Returns True if the colour
18080 was changed. The background colour is usually painted by the default
18081 EVT_ERASE_BACKGROUND event handler function under Windows and
18082 automatically under GTK.
18084 Note that setting the background colour does not cause an immediate
18085 refresh, so you may wish to call ClearBackground or Refresh after
18086 calling this function.
18088 Use this function with care under GTK+ as the new appearance of the
18089 window might not look equally well when used with themes, i.e GTK+'s
18090 ability to change its look as the user wishes with run-time loadable
18091 modules.
</docstring>
18093 <param name=
"col" type=
"Colour" default=
""/>
18096 <method name=
"GetColumn" type=
"ListItem" overloaded=
"no">
18097 <autodoc>GetColumn(int col) -
> ListItem
</autodoc>
18099 <param name=
"col" type=
"int" default=
""/>
18102 <method name=
"SetColumn" type=
"bool" overloaded=
"no">
18103 <autodoc>SetColumn(int col, ListItem item) -
> bool
</autodoc>
18105 <param name=
"col" type=
"int" default=
""/>
18106 <param name=
"item" type=
"ListItem" default=
""/>
18109 <method name=
"GetColumnWidth" type=
"int" overloaded=
"no">
18110 <autodoc>GetColumnWidth(int col) -
> int
</autodoc>
18112 <param name=
"col" type=
"int" default=
""/>
18115 <method name=
"SetColumnWidth" type=
"bool" overloaded=
"no">
18116 <autodoc>SetColumnWidth(int col, int width) -
> bool
</autodoc>
18118 <param name=
"col" type=
"int" default=
""/>
18119 <param name=
"width" type=
"int" default=
""/>
18122 <method name=
"GetCountPerPage" type=
"int" overloaded=
"no">
18123 <autodoc>GetCountPerPage() -
> int
</autodoc>
18125 <method name=
"GetViewRect" type=
"Rect" overloaded=
"no">
18126 <autodoc>GetViewRect() -
> Rect
</autodoc>
18128 <method name=
"GetItem" type=
"ListItem" overloaded=
"no">
18129 <autodoc>GetItem(long itemId, int col=
0) -
> ListItem
</autodoc>
18131 <param name=
"itemId" type=
"long" default=
""/>
18132 <param name=
"col" type=
"int" default=
"0"/>
18135 <method name=
"SetItem" type=
"bool" overloaded=
"no">
18136 <autodoc>SetItem(ListItem info) -
> bool
</autodoc>
18138 <param name=
"info" type=
"ListItem" default=
""/>
18141 <method name=
"SetStringItem" type=
"long" overloaded=
"no">
18142 <autodoc>SetStringItem(long index, int col, String label, int imageId=-
1) -
> long
</autodoc>
18144 <param name=
"index" type=
"long" default=
""/>
18145 <param name=
"col" type=
"int" default=
""/>
18146 <param name=
"label" type=
"String" default=
""/>
18147 <param name=
"imageId" type=
"int" default=
"-1"/>
18150 <method name=
"GetItemState" type=
"int" overloaded=
"no">
18151 <autodoc>GetItemState(long item, long stateMask) -
> int
</autodoc>
18153 <param name=
"item" type=
"long" default=
""/>
18154 <param name=
"stateMask" type=
"long" default=
""/>
18157 <method name=
"SetItemState" type=
"bool" overloaded=
"no">
18158 <autodoc>SetItemState(long item, long state, long stateMask) -
> bool
</autodoc>
18160 <param name=
"item" type=
"long" default=
""/>
18161 <param name=
"state" type=
"long" default=
""/>
18162 <param name=
"stateMask" type=
"long" default=
""/>
18165 <method name=
"SetItemImage" type=
"bool" overloaded=
"no">
18166 <autodoc>SetItemImage(long item, int image, int selImage) -
> bool
</autodoc>
18168 <param name=
"item" type=
"long" default=
""/>
18169 <param name=
"image" type=
"int" default=
""/>
18170 <param name=
"selImage" type=
"int" default=
""/>
18173 <method name=
"GetItemText" type=
"String" overloaded=
"no">
18174 <autodoc>GetItemText(long item) -
> String
</autodoc>
18176 <param name=
"item" type=
"long" default=
""/>
18179 <method name=
"SetItemText" type=
"" overloaded=
"no">
18180 <autodoc>SetItemText(long item, String str)
</autodoc>
18182 <param name=
"item" type=
"long" default=
""/>
18183 <param name=
"str" type=
"String" default=
""/>
18186 <method name=
"GetItemData" type=
"long" overloaded=
"no">
18187 <autodoc>GetItemData(long item) -
> long
</autodoc>
18189 <param name=
"item" type=
"long" default=
""/>
18192 <method name=
"SetItemData" type=
"bool" overloaded=
"no">
18193 <autodoc>SetItemData(long item, long data) -
> bool
</autodoc>
18195 <param name=
"item" type=
"long" default=
""/>
18196 <param name=
"data" type=
"long" default=
""/>
18199 <method name=
"GetItemPosition" type=
"Point" overloaded=
"no">
18200 <autodoc>GetItemPosition(long item) -
> Point
</autodoc>
18202 <param name=
"item" type=
"long" default=
""/>
18205 <method name=
"GetItemRect" type=
"Rect" overloaded=
"no">
18206 <autodoc>GetItemRect(long item, int code=LIST_RECT_BOUNDS) -
> Rect
</autodoc>
18208 <param name=
"item" type=
"long" default=
""/>
18209 <param name=
"code" type=
"int" default=
"wxLIST_RECT_BOUNDS"/>
18212 <method name=
"SetItemPosition" type=
"bool" overloaded=
"no">
18213 <autodoc>SetItemPosition(long item, Point pos) -
> bool
</autodoc>
18215 <param name=
"item" type=
"long" default=
""/>
18216 <param name=
"pos" type=
"Point" default=
""/>
18219 <method name=
"GetItemCount" type=
"int" overloaded=
"no">
18220 <autodoc>GetItemCount() -
> int
</autodoc>
18222 <method name=
"GetColumnCount" type=
"int" overloaded=
"no">
18223 <autodoc>GetColumnCount() -
> int
</autodoc>
18225 <method name=
"GetItemSpacing" type=
"Size" overloaded=
"no">
18226 <autodoc>GetItemSpacing() -
> Size
</autodoc>
18228 <method name=
"SetItemSpacing" type=
"" overloaded=
"no">
18229 <autodoc>SetItemSpacing(int spacing, bool isSmall=False)
</autodoc>
18231 <param name=
"spacing" type=
"int" default=
""/>
18232 <param name=
"isSmall" type=
"bool" default=
"False"/>
18235 <method name=
"GetSelectedItemCount" type=
"int" overloaded=
"no">
18236 <autodoc>GetSelectedItemCount() -
> int
</autodoc>
18238 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
18239 <autodoc>GetTextColour() -
> Colour
</autodoc>
18241 <method name=
"SetTextColour" type=
"" overloaded=
"no">
18242 <autodoc>SetTextColour(Colour col)
</autodoc>
18244 <param name=
"col" type=
"Colour" default=
""/>
18247 <method name=
"GetTopItem" type=
"long" overloaded=
"no">
18248 <autodoc>GetTopItem() -
> long
</autodoc>
18250 <method name=
"SetSingleStyle" type=
"" overloaded=
"no">
18251 <autodoc>SetSingleStyle(long style, bool add=True)
</autodoc>
18253 <param name=
"style" type=
"long" default=
""/>
18254 <param name=
"add" type=
"bool" default=
"True"/>
18257 <method name=
"SetWindowStyleFlag" type=
"" overloaded=
"no">
18258 <autodoc>SetWindowStyleFlag(long style)
</autodoc>
18259 <docstring>Sets the style of the window. Please note that some styles cannot be
18260 changed after the window creation and that Refresh() might be called
18261 after changing the others for the change to take place immediately.
</docstring>
18263 <param name=
"style" type=
"long" default=
""/>
18266 <method name=
"GetNextItem" type=
"long" overloaded=
"no">
18267 <autodoc>GetNextItem(long item, int geometry=LIST_NEXT_ALL, int state=LIST_STATE_DONTCARE) -
> long
</autodoc>
18269 <param name=
"item" type=
"long" default=
""/>
18270 <param name=
"geometry" type=
"int" default=
"wxLIST_NEXT_ALL"/>
18271 <param name=
"state" type=
"int" default=
"wxLIST_STATE_DONTCARE"/>
18274 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
18275 <autodoc>GetImageList(int which) -
> ImageList
</autodoc>
18277 <param name=
"which" type=
"int" default=
""/>
18280 <method name=
"SetImageList" type=
"" overloaded=
"no">
18281 <autodoc>SetImageList(ImageList imageList, int which)
</autodoc>
18283 <param name=
"imageList" type=
"ImageList" default=
""/>
18284 <param name=
"which" type=
"int" default=
""/>
18287 <method name=
"AssignImageList" type=
"" overloaded=
"no">
18288 <autodoc>AssignImageList(ImageList imageList, int which)
</autodoc>
18290 <param name=
"imageList" type=
"ImageList" default=
""/>
18291 <param name=
"which" type=
"int" default=
""/>
18294 <method name=
"IsVirtual" type=
"bool" overloaded=
"no">
18295 <autodoc>IsVirtual() -
> bool
</autodoc>
18297 <method name=
"RefreshItem" type=
"" overloaded=
"no">
18298 <autodoc>RefreshItem(long item)
</autodoc>
18300 <param name=
"item" type=
"long" default=
""/>
18303 <method name=
"RefreshItems" type=
"" overloaded=
"no">
18304 <autodoc>RefreshItems(long itemFrom, long itemTo)
</autodoc>
18306 <param name=
"itemFrom" type=
"long" default=
""/>
18307 <param name=
"itemTo" type=
"long" default=
""/>
18310 <method name=
"Arrange" type=
"bool" overloaded=
"no">
18311 <autodoc>Arrange(int flag=LIST_ALIGN_DEFAULT) -
> bool
</autodoc>
18313 <param name=
"flag" type=
"int" default=
"wxLIST_ALIGN_DEFAULT"/>
18316 <method name=
"DeleteItem" type=
"bool" overloaded=
"no">
18317 <autodoc>DeleteItem(long item) -
> bool
</autodoc>
18319 <param name=
"item" type=
"long" default=
""/>
18322 <method name=
"DeleteAllItems" type=
"bool" overloaded=
"no">
18323 <autodoc>DeleteAllItems() -
> bool
</autodoc>
18325 <method name=
"DeleteColumn" type=
"bool" overloaded=
"no">
18326 <autodoc>DeleteColumn(int col) -
> bool
</autodoc>
18328 <param name=
"col" type=
"int" default=
""/>
18331 <method name=
"DeleteAllColumns" type=
"bool" overloaded=
"no">
18332 <autodoc>DeleteAllColumns() -
> bool
</autodoc>
18334 <method name=
"ClearAll" type=
"" overloaded=
"no">
18335 <autodoc>ClearAll()
</autodoc>
18337 <method name=
"EditLabel" type=
"" overloaded=
"no">
18338 <autodoc>EditLabel(long item)
</autodoc>
18340 <param name=
"item" type=
"long" default=
""/>
18343 <method name=
"EnsureVisible" type=
"bool" overloaded=
"no">
18344 <autodoc>EnsureVisible(long item) -
> bool
</autodoc>
18346 <param name=
"item" type=
"long" default=
""/>
18349 <method name=
"FindItem" type=
"long" overloaded=
"no">
18350 <autodoc>FindItem(long start, String str, bool partial=False) -
> long
</autodoc>
18352 <param name=
"start" type=
"long" default=
""/>
18353 <param name=
"str" type=
"String" default=
""/>
18354 <param name=
"partial" type=
"bool" default=
"False"/>
18357 <method name=
"FindItemData" type=
"long" overloaded=
"no">
18358 <autodoc>FindItemData(long start, long data) -
> long
</autodoc>
18360 <param name=
"start" type=
"long" default=
""/>
18361 <param name=
"data" type=
"long" default=
""/>
18364 <method name=
"FindItemAtPos" type=
"long" overloaded=
"no">
18365 <autodoc>FindItemAtPos(long start, Point pt, int direction) -
> long
</autodoc>
18367 <param name=
"start" type=
"long" default=
""/>
18368 <param name=
"pt" type=
"Point" default=
""/>
18369 <param name=
"direction" type=
"int" default=
""/>
18372 <method name=
"HitTest" type=
"long" overloaded=
"no">
18373 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
18374 <docstring>Determines which item (if any) is at the specified point,
18375 giving details in the second return value (see wxLIST_HITTEST_... flags.)
</docstring>
18377 <param name=
"point" type=
"Point" default=
""/>
18378 <param name=
"OUTPUT" type=
"int" default=
""/>
18381 <method name=
"InsertItem" type=
"long" overloaded=
"no">
18382 <autodoc>InsertItem(ListItem info) -
> long
</autodoc>
18384 <param name=
"info" type=
"ListItem" default=
""/>
18387 <method name=
"InsertStringItem" type=
"long" overloaded=
"no">
18388 <autodoc>InsertStringItem(long index, String label) -
> long
</autodoc>
18390 <param name=
"index" type=
"long" default=
""/>
18391 <param name=
"label" type=
"String" default=
""/>
18394 <method name=
"InsertImageItem" type=
"long" overloaded=
"no">
18395 <autodoc>InsertImageItem(long index, int imageIndex) -
> long
</autodoc>
18397 <param name=
"index" type=
"long" default=
""/>
18398 <param name=
"imageIndex" type=
"int" default=
""/>
18401 <method name=
"InsertImageStringItem" type=
"long" overloaded=
"no">
18402 <autodoc>InsertImageStringItem(long index, String label, int imageIndex) -
> long
</autodoc>
18404 <param name=
"index" type=
"long" default=
""/>
18405 <param name=
"label" type=
"String" default=
""/>
18406 <param name=
"imageIndex" type=
"int" default=
""/>
18409 <method name=
"InsertColumnInfo" type=
"long" overloaded=
"no">
18410 <autodoc>InsertColumnInfo(long col, ListItem info) -
> long
</autodoc>
18412 <param name=
"col" type=
"long" default=
""/>
18413 <param name=
"info" type=
"ListItem" default=
""/>
18416 <method name=
"InsertColumn" type=
"long" overloaded=
"no">
18417 <autodoc>InsertColumn(long col, String heading, int format=LIST_FORMAT_LEFT,
18418 int width=-
1) -
> long
</autodoc>
18420 <param name=
"col" type=
"long" default=
""/>
18421 <param name=
"heading" type=
"String" default=
""/>
18422 <param name=
"format" type=
"int" default=
"wxLIST_FORMAT_LEFT"/>
18423 <param name=
"width" type=
"int" default=
"-1"/>
18426 <method name=
"SetItemCount" type=
"" overloaded=
"no">
18427 <autodoc>SetItemCount(long count)
</autodoc>
18429 <param name=
"count" type=
"long" default=
""/>
18432 <method name=
"ScrollList" type=
"bool" overloaded=
"no">
18433 <autodoc>ScrollList(int dx, int dy) -
> bool
</autodoc>
18435 <param name=
"dx" type=
"int" default=
""/>
18436 <param name=
"dy" type=
"int" default=
""/>
18439 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
18440 <autodoc>SetItemTextColour(long item, Colour col)
</autodoc>
18442 <param name=
"item" type=
"long" default=
""/>
18443 <param name=
"col" type=
"Colour" default=
""/>
18446 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
18447 <autodoc>GetItemTextColour(long item) -
> Colour
</autodoc>
18449 <param name=
"item" type=
"long" default=
""/>
18452 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
18453 <autodoc>SetItemBackgroundColour(long item, Colour col)
</autodoc>
18455 <param name=
"item" type=
"long" default=
""/>
18456 <param name=
"col" type=
"Colour" default=
""/>
18459 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
18460 <autodoc>GetItemBackgroundColour(long item) -
> Colour
</autodoc>
18462 <param name=
"item" type=
"long" default=
""/>
18465 <method name=
"SortItems" type=
"bool" overloaded=
"no">
18466 <autodoc>SortItems(PyObject func) -
> bool
</autodoc>
18468 <param name=
"func" type=
"PyObject" default=
""/>
18471 <method name=
"GetMainWindow" type=
"Window" overloaded=
"no">
18472 <autodoc>GetMainWindow() -
> Window
</autodoc>
18476 #---------------------------------------------------------------------------
18478 <class name=
"ListView" oldname=
"wxListView" module=
"controls">
18479 <baseclass name=
"ListCtrl"/>
18480 <constructor name=
"ListView" overloaded=
"no">
18481 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18482 Size size=DefaultSize, long style=LC_REPORT,
18483 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> ListView
</autodoc>
18485 <param name=
"parent" type=
"Window" default=
""/>
18486 <param name=
"id" type=
"int" default=
"-1"/>
18487 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18488 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18489 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
18490 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18491 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18494 <constructor name=
"PreListView" overloaded=
"no">
18495 <autodoc>PreListView() -
> ListView
</autodoc>
18497 <method name=
"Create" type=
"bool" overloaded=
"no">
18498 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18499 Size size=DefaultSize, long style=LC_REPORT,
18500 Validator validator=DefaultValidator, String name=ListCtrlNameStr) -
> bool
</autodoc>
18501 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18503 <param name=
"parent" type=
"Window" default=
""/>
18504 <param name=
"id" type=
"int" default=
"-1"/>
18505 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18506 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18507 <param name=
"style" type=
"long" default=
"wxLC_REPORT"/>
18508 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18509 <param name=
"name" type=
"String" default=
"wxPyListCtrlNameStr"/>
18512 <method name=
"Select" type=
"" overloaded=
"no">
18513 <autodoc>Select(long n, bool on=True)
</autodoc>
18515 <param name=
"n" type=
"long" default=
""/>
18516 <param name=
"on" type=
"bool" default=
"True"/>
18519 <method name=
"Focus" type=
"" overloaded=
"no">
18520 <autodoc>Focus(long index)
</autodoc>
18522 <param name=
"index" type=
"long" default=
""/>
18525 <method name=
"GetFocusedItem" type=
"long" overloaded=
"no">
18526 <autodoc>GetFocusedItem() -
> long
</autodoc>
18528 <method name=
"GetNextSelected" type=
"long" overloaded=
"no">
18529 <autodoc>GetNextSelected(long item) -
> long
</autodoc>
18531 <param name=
"item" type=
"long" default=
""/>
18534 <method name=
"GetFirstSelected" type=
"long" overloaded=
"no">
18535 <autodoc>GetFirstSelected() -
> long
</autodoc>
18537 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
18538 <autodoc>IsSelected(long index) -
> bool
</autodoc>
18540 <param name=
"index" type=
"long" default=
""/>
18543 <method name=
"SetColumnImage" type=
"" overloaded=
"no">
18544 <autodoc>SetColumnImage(int col, int image)
</autodoc>
18546 <param name=
"col" type=
"int" default=
""/>
18547 <param name=
"image" type=
"int" default=
""/>
18550 <method name=
"ClearColumnImage" type=
"" overloaded=
"no">
18551 <autodoc>ClearColumnImage(int col)
</autodoc>
18553 <param name=
"col" type=
"int" default=
""/>
18558 #---------------------------------------------------------------------------
18561 #---------------------------------------------------------------------------
18563 <class name=
"TreeItemId" oldname=
"wxTreeItemId" module=
"controls">
18564 <constructor name=
"TreeItemId" overloaded=
"no">
18565 <autodoc>__init__() -
> TreeItemId
</autodoc>
18567 <destructor name=
"~wxTreeItemId" overloaded=
"no">
18568 <autodoc>__del__()
</autodoc>
18570 <method name=
"IsOk" type=
"bool" overloaded=
"no">
18571 <autodoc>IsOk() -
> bool
</autodoc>
18573 <method name=
"__eq__" type=
"bool" overloaded=
"no">
18574 <autodoc>__eq__(TreeItemId other) -
> bool
</autodoc>
18576 <param name=
"other" type=
"TreeItemId" default=
""/>
18579 <method name=
"__ne__" type=
"bool" overloaded=
"no">
18580 <autodoc>__ne__(TreeItemId other) -
> bool
</autodoc>
18582 <param name=
"other" type=
"TreeItemId" default=
""/>
18585 <property name=
"m_pItem" type=
"" readonly=
"no"/>
18587 <class name=
"TreeItemData" oldname=
"wxPyTreeItemData" module=
"controls">
18588 <constructor name=
"wxPyTreeItemData" overloaded=
"no">
18589 <autodoc>__init__(PyObject obj=None) -
> TreeItemData
</autodoc>
18591 <param name=
"obj" type=
"PyObject" default=
"NULL"/>
18594 <method name=
"GetData" type=
"PyObject" overloaded=
"no">
18595 <autodoc>GetData() -
> PyObject
</autodoc>
18597 <method name=
"SetData" type=
"" overloaded=
"no">
18598 <autodoc>SetData(PyObject obj)
</autodoc>
18600 <param name=
"obj" type=
"PyObject" default=
""/>
18603 <method name=
"GetId" type=
"TreeItemId" overloaded=
"no">
18604 <autodoc>GetId() -
> TreeItemId
</autodoc>
18606 <method name=
"SetId" type=
"" overloaded=
"no">
18607 <autodoc>SetId(TreeItemId id)
</autodoc>
18609 <param name=
"id" type=
"TreeItemId" default=
""/>
18612 <method name=
"Destroy" type=
"" overloaded=
"no">
18613 <autodoc>Destroy()
</autodoc>
18617 #---------------------------------------------------------------------------
18621 EVT_TREE_BEGIN_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_DRAG ,
1)
18622 EVT_TREE_BEGIN_RDRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_RDRAG ,
1)
18623 EVT_TREE_BEGIN_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_BEGIN_LABEL_EDIT ,
1)
18624 EVT_TREE_END_LABEL_EDIT = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_LABEL_EDIT ,
1)
18625 EVT_TREE_DELETE_ITEM = wx.PyEventBinder(wxEVT_COMMAND_TREE_DELETE_ITEM ,
1)
18626 EVT_TREE_GET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_GET_INFO ,
1)
18627 EVT_TREE_SET_INFO = wx.PyEventBinder(wxEVT_COMMAND_TREE_SET_INFO ,
1)
18628 EVT_TREE_ITEM_EXPANDED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDED ,
1)
18629 EVT_TREE_ITEM_EXPANDING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_EXPANDING ,
1)
18630 EVT_TREE_ITEM_COLLAPSED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSED ,
1)
18631 EVT_TREE_ITEM_COLLAPSING = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_COLLAPSING ,
1)
18632 EVT_TREE_SEL_CHANGED = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGED ,
1)
18633 EVT_TREE_SEL_CHANGING = wx.PyEventBinder(wxEVT_COMMAND_TREE_SEL_CHANGING ,
1)
18634 EVT_TREE_KEY_DOWN = wx.PyEventBinder(wxEVT_COMMAND_TREE_KEY_DOWN ,
1)
18635 EVT_TREE_ITEM_ACTIVATED = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_ACTIVATED ,
1)
18636 EVT_TREE_ITEM_RIGHT_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_RIGHT_CLICK ,
1)
18637 EVT_TREE_ITEM_MIDDLE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_MIDDLE_CLICK,
1)
18638 EVT_TREE_END_DRAG = wx.PyEventBinder(wxEVT_COMMAND_TREE_END_DRAG ,
1)
18639 EVT_TREE_STATE_IMAGE_CLICK = wx.PyEventBinder(wxEVT_COMMAND_TREE_STATE_IMAGE_CLICK,
1)
18640 EVT_TREE_ITEM_GETTOOLTIP = wx.PyEventBinder(wxEVT_COMMAND_TREE_ITEM_GETTOOLTIP,
1)
18642 <class name=
"TreeEvent" oldname=
"wxTreeEvent" module=
"controls">
18643 <baseclass name=
"NotifyEvent"/>
18644 <constructor name=
"TreeEvent" overloaded=
"no">
18645 <autodoc>__init__(wxEventType commandType=wxEVT_NULL, int id=
0) -
> TreeEvent
</autodoc>
18647 <param name=
"commandType" type=
"wxEventType" default=
"wxEVT_NULL"/>
18648 <param name=
"id" type=
"int" default=
"0"/>
18651 <method name=
"GetItem" type=
"TreeItemId" overloaded=
"no">
18652 <autodoc>GetItem() -
> TreeItemId
</autodoc>
18654 <method name=
"SetItem" type=
"" overloaded=
"no">
18655 <autodoc>SetItem(TreeItemId item)
</autodoc>
18657 <param name=
"item" type=
"TreeItemId" default=
""/>
18660 <method name=
"GetOldItem" type=
"TreeItemId" overloaded=
"no">
18661 <autodoc>GetOldItem() -
> TreeItemId
</autodoc>
18663 <method name=
"SetOldItem" type=
"" overloaded=
"no">
18664 <autodoc>SetOldItem(TreeItemId item)
</autodoc>
18666 <param name=
"item" type=
"TreeItemId" default=
""/>
18669 <method name=
"GetPoint" type=
"Point" overloaded=
"no">
18670 <autodoc>GetPoint() -
> Point
</autodoc>
18672 <method name=
"SetPoint" type=
"" overloaded=
"no">
18673 <autodoc>SetPoint(Point pt)
</autodoc>
18675 <param name=
"pt" type=
"Point" default=
""/>
18678 <method name=
"GetKeyEvent" type=
"KeyEvent" overloaded=
"no">
18679 <autodoc>GetKeyEvent() -
> KeyEvent
</autodoc>
18681 <method name=
"GetKeyCode" type=
"int" overloaded=
"no">
18682 <autodoc>GetKeyCode() -
> int
</autodoc>
18684 <method name=
"SetKeyEvent" type=
"" overloaded=
"no">
18685 <autodoc>SetKeyEvent(KeyEvent evt)
</autodoc>
18687 <param name=
"evt" type=
"KeyEvent" default=
""/>
18690 <method name=
"GetLabel" type=
"String" overloaded=
"no">
18691 <autodoc>GetLabel() -
> String
</autodoc>
18693 <method name=
"SetLabel" type=
"" overloaded=
"no">
18694 <autodoc>SetLabel(String label)
</autodoc>
18696 <param name=
"label" type=
"String" default=
""/>
18699 <method name=
"IsEditCancelled" type=
"bool" overloaded=
"no">
18700 <autodoc>IsEditCancelled() -
> bool
</autodoc>
18702 <method name=
"SetEditCanceled" type=
"" overloaded=
"no">
18703 <autodoc>SetEditCanceled(bool editCancelled)
</autodoc>
18705 <param name=
"editCancelled" type=
"bool" default=
""/>
18708 <method name=
"SetToolTip" type=
"" overloaded=
"no">
18709 <autodoc>SetToolTip(String toolTip)
</autodoc>
18711 <param name=
"toolTip" type=
"String" default=
""/>
18716 #---------------------------------------------------------------------------
18718 <class name=
"TreeCtrl" oldname=
"wxPyTreeCtrl" module=
"controls">
18719 <baseclass name=
"Control"/>
18720 <constructor name=
"wxPyTreeCtrl" overloaded=
"no">
18721 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
18722 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
18723 Validator validator=DefaultValidator,
18724 String name=TreeCtrlNameStr) -
> TreeCtrl
</autodoc>
18726 <param name=
"parent" type=
"Window" default=
""/>
18727 <param name=
"id" type=
"int" default=
"-1"/>
18728 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18729 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18730 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
18731 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18732 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
18735 <constructor name=
"PreTreeCtrl" overloaded=
"no">
18736 <autodoc>PreTreeCtrl() -
> TreeCtrl
</autodoc>
18738 <method name=
"Create" type=
"bool" overloaded=
"no">
18739 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
18740 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
18741 Validator validator=DefaultValidator,
18742 String name=TreeCtrlNameStr) -
> bool
</autodoc>
18743 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
18745 <param name=
"parent" type=
"Window" default=
""/>
18746 <param name=
"id" type=
"int" default=
"-1"/>
18747 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
18748 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
18749 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
18750 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
18751 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
18754 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
18755 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
18757 <param name=
"self" type=
"PyObject" default=
""/>
18758 <param name=
"_class" type=
"PyObject" default=
""/>
18761 <method name=
"GetCount" type=
"size_t" overloaded=
"no">
18762 <autodoc>GetCount() -
> size_t
</autodoc>
18764 <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no">
18765 <autodoc>GetIndent() -
> unsigned int
</autodoc>
18767 <method name=
"SetIndent" type=
"" overloaded=
"no">
18768 <autodoc>SetIndent(unsigned int indent)
</autodoc>
18770 <param name=
"indent" type=
"unsigned int" default=
""/>
18773 <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no">
18774 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
18776 <method name=
"SetSpacing" type=
"" overloaded=
"no">
18777 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
18779 <param name=
"spacing" type=
"unsigned int" default=
""/>
18782 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
18783 <autodoc>GetImageList() -
> ImageList
</autodoc>
18785 <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no">
18786 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
18788 <method name=
"SetImageList" type=
"" overloaded=
"no">
18789 <autodoc>SetImageList(ImageList imageList)
</autodoc>
18791 <param name=
"imageList" type=
"ImageList" default=
""/>
18794 <method name=
"SetStateImageList" type=
"" overloaded=
"no">
18795 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
18797 <param name=
"imageList" type=
"ImageList" default=
""/>
18800 <method name=
"AssignImageList" type=
"" overloaded=
"no">
18801 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
18803 <param name=
"imageList" type=
"ImageList" default=
""/>
18806 <method name=
"AssignStateImageList" type=
"" overloaded=
"no">
18807 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
18809 <param name=
"imageList" type=
"ImageList" default=
""/>
18812 <method name=
"GetItemText" type=
"String" overloaded=
"no">
18813 <autodoc>GetItemText(TreeItemId item) -
> String
</autodoc>
18815 <param name=
"item" type=
"TreeItemId" default=
""/>
18818 <method name=
"GetItemImage" type=
"int" overloaded=
"no">
18819 <autodoc>GetItemImage(TreeItemId item, int which=TreeItemIcon_Normal) -
> int
</autodoc>
18821 <param name=
"item" type=
"TreeItemId" default=
""/>
18822 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
18825 <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no">
18826 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
18828 <param name=
"item" type=
"TreeItemId" default=
""/>
18831 <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no">
18832 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
18834 <param name=
"item" type=
"TreeItemId" default=
""/>
18837 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
18838 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
18840 <param name=
"item" type=
"TreeItemId" default=
""/>
18843 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
18844 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
18846 <param name=
"item" type=
"TreeItemId" default=
""/>
18849 <method name=
"GetItemFont" type=
"Font" overloaded=
"no">
18850 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
18852 <param name=
"item" type=
"TreeItemId" default=
""/>
18855 <method name=
"SetItemText" type=
"" overloaded=
"no">
18856 <autodoc>SetItemText(TreeItemId item, String text)
</autodoc>
18858 <param name=
"item" type=
"TreeItemId" default=
""/>
18859 <param name=
"text" type=
"String" default=
""/>
18862 <method name=
"SetItemImage" type=
"" overloaded=
"no">
18863 <autodoc>SetItemImage(TreeItemId item, int image, int which=TreeItemIcon_Normal)
</autodoc>
18865 <param name=
"item" type=
"TreeItemId" default=
""/>
18866 <param name=
"image" type=
"int" default=
""/>
18867 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
18870 <method name=
"SetItemData" type=
"" overloaded=
"no">
18871 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
18873 <param name=
"item" type=
"TreeItemId" default=
""/>
18874 <param name=
"data" type=
"TreeItemData" default=
""/>
18877 <method name=
"SetItemPyData" type=
"" overloaded=
"no">
18878 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
18880 <param name=
"item" type=
"TreeItemId" default=
""/>
18881 <param name=
"obj" type=
"PyObject" default=
""/>
18884 <method name=
"SetItemHasChildren" type=
"" overloaded=
"no">
18885 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
18887 <param name=
"item" type=
"TreeItemId" default=
""/>
18888 <param name=
"has" type=
"bool" default=
"True"/>
18891 <method name=
"SetItemBold" type=
"" overloaded=
"no">
18892 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
18894 <param name=
"item" type=
"TreeItemId" default=
""/>
18895 <param name=
"bold" type=
"bool" default=
"True"/>
18898 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
18899 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
18901 <param name=
"item" type=
"TreeItemId" default=
""/>
18902 <param name=
"col" type=
"Colour" default=
""/>
18905 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
18906 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
18908 <param name=
"item" type=
"TreeItemId" default=
""/>
18909 <param name=
"col" type=
"Colour" default=
""/>
18912 <method name=
"SetItemFont" type=
"" overloaded=
"no">
18913 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
18915 <param name=
"item" type=
"TreeItemId" default=
""/>
18916 <param name=
"font" type=
"Font" default=
""/>
18919 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
18920 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
18922 <param name=
"item" type=
"TreeItemId" default=
""/>
18925 <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no">
18926 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
18928 <param name=
"item" type=
"TreeItemId" default=
""/>
18931 <method name=
"IsExpanded" type=
"bool" overloaded=
"no">
18932 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
18934 <param name=
"item" type=
"TreeItemId" default=
""/>
18937 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
18938 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
18940 <param name=
"item" type=
"TreeItemId" default=
""/>
18943 <method name=
"IsBold" type=
"bool" overloaded=
"no">
18944 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
18946 <param name=
"item" type=
"TreeItemId" default=
""/>
18949 <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no">
18950 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
18952 <param name=
"item" type=
"TreeItemId" default=
""/>
18953 <param name=
"recursively" type=
"bool" default=
"True"/>
18956 <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no">
18957 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
18959 <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no">
18960 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
18962 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
18963 <autodoc>GetSelections() -
> PyObject
</autodoc>
18965 <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no">
18966 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
18968 <param name=
"item" type=
"TreeItemId" default=
""/>
18971 <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no">
18972 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
18974 <param name=
"item" type=
"TreeItemId" default=
""/>
18977 <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no">
18978 <autodoc>GetNextChild(TreeItemId item, void cookie) -
> PyObject
</autodoc>
18980 <param name=
"item" type=
"TreeItemId" default=
""/>
18981 <param name=
"cookie" type=
"" default=
""/>
18984 <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no">
18985 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
18987 <param name=
"item" type=
"TreeItemId" default=
""/>
18990 <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no">
18991 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
18993 <param name=
"item" type=
"TreeItemId" default=
""/>
18996 <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no">
18997 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
18999 <param name=
"item" type=
"TreeItemId" default=
""/>
19002 <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no">
19003 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
19005 <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no">
19006 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
19008 <param name=
"item" type=
"TreeItemId" default=
""/>
19011 <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no">
19012 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
19014 <param name=
"item" type=
"TreeItemId" default=
""/>
19017 <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no">
19018 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19020 <param name=
"text" type=
"String" default=
""/>
19021 <param name=
"image" type=
"int" default=
"-1"/>
19022 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19023 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19026 <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no">
19027 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
19028 TreeItemData data=None) -
> TreeItemId
</autodoc>
19030 <param name=
"parent" type=
"TreeItemId" default=
""/>
19031 <param name=
"text" type=
"String" default=
""/>
19032 <param name=
"image" type=
"int" default=
"-1"/>
19033 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19034 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19037 <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no">
19038 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
19039 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19041 <param name=
"parent" type=
"TreeItemId" default=
""/>
19042 <param name=
"idPrevious" type=
"TreeItemId" default=
""/>
19043 <param name=
"text" type=
"String" default=
""/>
19044 <param name=
"image" type=
"int" default=
"-1"/>
19045 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19046 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19049 <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no">
19050 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
19051 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
19053 <param name=
"parent" type=
"TreeItemId" default=
""/>
19054 <param name=
"index" type=
"size_t" default=
""/>
19055 <param name=
"text" type=
"String" default=
""/>
19056 <param name=
"image" type=
"int" default=
"-1"/>
19057 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19058 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19061 <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no">
19062 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
19063 TreeItemData data=None) -
> TreeItemId
</autodoc>
19065 <param name=
"parent" type=
"TreeItemId" default=
""/>
19066 <param name=
"text" type=
"String" default=
""/>
19067 <param name=
"image" type=
"int" default=
"-1"/>
19068 <param name=
"selectedImage" type=
"int" default=
"-1"/>
19069 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
19072 <method name=
"Delete" type=
"" overloaded=
"no">
19073 <autodoc>Delete(TreeItemId item)
</autodoc>
19075 <param name=
"item" type=
"TreeItemId" default=
""/>
19078 <method name=
"DeleteChildren" type=
"" overloaded=
"no">
19079 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
19081 <param name=
"item" type=
"TreeItemId" default=
""/>
19084 <method name=
"DeleteAllItems" type=
"" overloaded=
"no">
19085 <autodoc>DeleteAllItems()
</autodoc>
19087 <method name=
"Expand" type=
"" overloaded=
"no">
19088 <autodoc>Expand(TreeItemId item)
</autodoc>
19090 <param name=
"item" type=
"TreeItemId" default=
""/>
19093 <method name=
"Collapse" type=
"" overloaded=
"no">
19094 <autodoc>Collapse(TreeItemId item)
</autodoc>
19096 <param name=
"item" type=
"TreeItemId" default=
""/>
19099 <method name=
"CollapseAndReset" type=
"" overloaded=
"no">
19100 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
19102 <param name=
"item" type=
"TreeItemId" default=
""/>
19105 <method name=
"Toggle" type=
"" overloaded=
"no">
19106 <autodoc>Toggle(TreeItemId item)
</autodoc>
19108 <param name=
"item" type=
"TreeItemId" default=
""/>
19111 <method name=
"Unselect" type=
"" overloaded=
"no">
19112 <autodoc>Unselect()
</autodoc>
19114 <method name=
"UnselectItem" type=
"" overloaded=
"no">
19115 <autodoc>UnselectItem(TreeItemId item)
</autodoc>
19117 <param name=
"item" type=
"TreeItemId" default=
""/>
19120 <method name=
"UnselectAll" type=
"" overloaded=
"no">
19121 <autodoc>UnselectAll()
</autodoc>
19123 <method name=
"SelectItem" type=
"" overloaded=
"no">
19124 <autodoc>SelectItem(TreeItemId item, bool select=True)
</autodoc>
19126 <param name=
"item" type=
"TreeItemId" default=
""/>
19127 <param name=
"select" type=
"bool" default=
"True"/>
19130 <method name=
"ToggleItemSelection" type=
"" overloaded=
"no">
19131 <autodoc>ToggleItemSelection(TreeItemId item)
</autodoc>
19133 <param name=
"item" type=
"TreeItemId" default=
""/>
19136 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
19137 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
19139 <param name=
"item" type=
"TreeItemId" default=
""/>
19142 <method name=
"ScrollTo" type=
"" overloaded=
"no">
19143 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
19145 <param name=
"item" type=
"TreeItemId" default=
""/>
19148 <method name=
"EditLabel" type=
"" overloaded=
"no">
19149 <autodoc>EditLabel(TreeItemId item)
</autodoc>
19151 <param name=
"item" type=
"TreeItemId" default=
""/>
19154 <method name=
"GetEditControl" type=
"TextCtrl" overloaded=
"no">
19155 <autodoc>GetEditControl() -
> TextCtrl
</autodoc>
19157 <method name=
"SortChildren" type=
"" overloaded=
"no">
19158 <autodoc>SortChildren(TreeItemId item)
</autodoc>
19160 <param name=
"item" type=
"TreeItemId" default=
""/>
19163 <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no">
19164 <autodoc>HitTest(Point point) -
> (item, where)
</autodoc>
19165 <docstring>Determine which item (if any) belongs the given point. The
19166 coordinates specified are relative to the client area of tree ctrl
19167 and the where return value is set to a bitmask of wxTREE_HITTEST_xxx
19171 <param name=
"point" type=
"Point" default=
""/>
19172 <param name=
"OUTPUT" type=
"int" default=
""/>
19175 <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no">
19176 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
19178 <param name=
"item" type=
"TreeItemId" default=
""/>
19179 <param name=
"textOnly" type=
"bool" default=
"False"/>
19184 #---------------------------------------------------------------------------
19186 <class name=
"GenericDirCtrl" oldname=
"wxGenericDirCtrl" module=
"controls">
19187 <baseclass name=
"Control"/>
19188 <constructor name=
"GenericDirCtrl" overloaded=
"no">
19189 <autodoc>__init__(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
19190 Point pos=DefaultPosition, Size size=DefaultSize,
19191 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
19192 String filter=EmptyString,
19193 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> GenericDirCtrl
</autodoc>
19195 <param name=
"parent" type=
"Window" default=
""/>
19196 <param name=
"id" type=
"int" default=
"-1"/>
19197 <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/>
19198 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19199 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19200 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
19201 <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/>
19202 <param name=
"defaultFilter" type=
"int" default=
"0"/>
19203 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
19206 <constructor name=
"PreGenericDirCtrl" overloaded=
"no">
19207 <autodoc>PreGenericDirCtrl() -
> GenericDirCtrl
</autodoc>
19209 <method name=
"Create" type=
"bool" overloaded=
"no">
19210 <autodoc>Create(Window parent, int id=-
1, String dir=DirDialogDefaultFolderStr,
19211 Point pos=DefaultPosition, Size size=DefaultSize,
19212 long style=wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER,
19213 String filter=EmptyString,
19214 int defaultFilter=
0, String name=TreeCtrlNameStr) -
> bool
</autodoc>
19216 <param name=
"parent" type=
"Window" default=
""/>
19217 <param name=
"id" type=
"int" default=
"-1"/>
19218 <param name=
"dir" type=
"String" default=
"wxPyDirDialogDefaultFolderStr"/>
19219 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19220 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19221 <param name=
"style" type=
"long" default=
"wxDIRCTRL_3D_INTERNAL|wxSUNKEN_BORDER"/>
19222 <param name=
"filter" type=
"String" default=
"wxPyEmptyString"/>
19223 <param name=
"defaultFilter" type=
"int" default=
"0"/>
19224 <param name=
"name" type=
"String" default=
"wxPyTreeCtrlNameStr"/>
19227 <method name=
"ExpandPath" type=
"bool" overloaded=
"no">
19228 <autodoc>ExpandPath(String path) -
> bool
</autodoc>
19230 <param name=
"path" type=
"String" default=
""/>
19233 <method name=
"GetDefaultPath" type=
"String" overloaded=
"no">
19234 <autodoc>GetDefaultPath() -
> String
</autodoc>
19236 <method name=
"SetDefaultPath" type=
"" overloaded=
"no">
19237 <autodoc>SetDefaultPath(String path)
</autodoc>
19239 <param name=
"path" type=
"String" default=
""/>
19242 <method name=
"GetPath" type=
"String" overloaded=
"no">
19243 <autodoc>GetPath() -
> String
</autodoc>
19245 <method name=
"GetFilePath" type=
"String" overloaded=
"no">
19246 <autodoc>GetFilePath() -
> String
</autodoc>
19248 <method name=
"SetPath" type=
"" overloaded=
"no">
19249 <autodoc>SetPath(String path)
</autodoc>
19251 <param name=
"path" type=
"String" default=
""/>
19254 <method name=
"ShowHidden" type=
"" overloaded=
"no">
19255 <autodoc>ShowHidden(bool show)
</autodoc>
19257 <param name=
"show" type=
"bool" default=
""/>
19260 <method name=
"GetShowHidden" type=
"bool" overloaded=
"no">
19261 <autodoc>GetShowHidden() -
> bool
</autodoc>
19263 <method name=
"GetFilter" type=
"String" overloaded=
"no">
19264 <autodoc>GetFilter() -
> String
</autodoc>
19266 <method name=
"SetFilter" type=
"" overloaded=
"no">
19267 <autodoc>SetFilter(String filter)
</autodoc>
19269 <param name=
"filter" type=
"String" default=
""/>
19272 <method name=
"GetFilterIndex" type=
"int" overloaded=
"no">
19273 <autodoc>GetFilterIndex() -
> int
</autodoc>
19275 <method name=
"SetFilterIndex" type=
"" overloaded=
"no">
19276 <autodoc>SetFilterIndex(int n)
</autodoc>
19278 <param name=
"n" type=
"int" default=
""/>
19281 <method name=
"GetRootId" type=
"TreeItemId" overloaded=
"no">
19282 <autodoc>GetRootId() -
> TreeItemId
</autodoc>
19284 <method name=
"GetTreeCtrl" type=
"TreeCtrl" overloaded=
"no">
19285 <autodoc>GetTreeCtrl() -
> TreeCtrl
</autodoc>
19287 <method name=
"GetFilterListCtrl" type=
"wxDirFilterListCtrl" overloaded=
"no">
19288 <autodoc>GetFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
19290 <method name=
"FindChild" type=
"TreeItemId" overloaded=
"no">
19291 <autodoc>FindChild(wxTreeItemId parentId, wxString path) -
> (item, done)
</autodoc>
19292 <docstring>Find the child that matches the first part of 'path'. E.g. if a child path is
19293 "/usr" and 'path' is "/usr/include" then the child for /usr is returned.
19294 If the path string has been used (we're at the leaf), done is set to True
19297 <param name=
"parentId" type=
"TreeItemId" default=
""/>
19298 <param name=
"path" type=
"String" default=
""/>
19299 <param name=
"OUTPUT" type=
"bool" default=
""/>
19302 <method name=
"DoResize" type=
"" overloaded=
"no">
19303 <autodoc>DoResize()
</autodoc>
19305 <method name=
"ReCreateTree" type=
"" overloaded=
"no">
19306 <autodoc>ReCreateTree()
</autodoc>
19309 <class name=
"DirFilterListCtrl" oldname=
"wxDirFilterListCtrl" module=
"controls">
19310 <baseclass name=
"Choice"/>
19311 <constructor name=
"DirFilterListCtrl" overloaded=
"no">
19312 <autodoc>__init__(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
19313 Size size=DefaultSize, long style=
0) -
> DirFilterListCtrl
</autodoc>
19315 <param name=
"parent" type=
"GenericDirCtrl" default=
""/>
19316 <param name=
"id" type=
"int" default=
"-1"/>
19317 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19318 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19319 <param name=
"style" type=
"long" default=
"0"/>
19322 <constructor name=
"PreDirFilterListCtrl" overloaded=
"no">
19323 <autodoc>PreDirFilterListCtrl() -
> DirFilterListCtrl
</autodoc>
19325 <method name=
"Create" type=
"bool" overloaded=
"no">
19326 <autodoc>Create(GenericDirCtrl parent, int id=-
1, Point pos=DefaultPosition,
19327 Size size=DefaultSize, long style=
0) -
> bool
</autodoc>
19329 <param name=
"parent" type=
"GenericDirCtrl" default=
""/>
19330 <param name=
"id" type=
"int" default=
"-1"/>
19331 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19332 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19333 <param name=
"style" type=
"long" default=
"0"/>
19336 <method name=
"FillFilterList" type=
"" overloaded=
"no">
19337 <autodoc>FillFilterList(String filter, int defaultFilter)
</autodoc>
19339 <param name=
"filter" type=
"String" default=
""/>
19340 <param name=
"defaultFilter" type=
"int" default=
""/>
19345 #---------------------------------------------------------------------------
19347 <class name=
"PyControl" oldname=
"wxPyControl" module=
"controls">
19348 <baseclass name=
"Control"/>
19349 <constructor name=
"PyControl" overloaded=
"no">
19350 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
19351 long style=
0, Validator validator=DefaultValidator,
19352 String name=ControlNameStr) -
> PyControl
</autodoc>
19354 <param name=
"parent" type=
"Window" default=
""/>
19355 <param name=
"id" type=
"int" default=
""/>
19356 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19357 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19358 <param name=
"style" type=
"long" default=
"0"/>
19359 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
19360 <param name=
"name" type=
"String" default=
"wxPyControlNameStr"/>
19363 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
19364 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
19366 <param name=
"self" type=
"PyObject" default=
""/>
19367 <param name=
"_class" type=
"PyObject" default=
""/>
19370 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
19371 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
19373 <param name=
"x" type=
"int" default=
""/>
19374 <param name=
"y" type=
"int" default=
""/>
19375 <param name=
"width" type=
"int" default=
""/>
19376 <param name=
"height" type=
"int" default=
""/>
19379 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
19380 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
19382 <param name=
"x" type=
"int" default=
""/>
19383 <param name=
"y" type=
"int" default=
""/>
19384 <param name=
"width" type=
"int" default=
""/>
19385 <param name=
"height" type=
"int" default=
""/>
19386 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
19389 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
19390 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
19392 <param name=
"width" type=
"int" default=
""/>
19393 <param name=
"height" type=
"int" default=
""/>
19396 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
19397 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
19399 <param name=
"x" type=
"int" default=
""/>
19400 <param name=
"y" type=
"int" default=
""/>
19403 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
19404 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
19406 <param name=
"OUTPUT" type=
"int" default=
""/>
19407 <param name=
"OUTPUT" type=
"int" default=
""/>
19410 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
19411 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
19413 <param name=
"OUTPUT" type=
"int" default=
""/>
19414 <param name=
"OUTPUT" type=
"int" default=
""/>
19417 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
19418 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
19420 <param name=
"OUTPUT" type=
"int" default=
""/>
19421 <param name=
"OUTPUT" type=
"int" default=
""/>
19424 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
19425 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
19427 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
19428 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
19430 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
19431 <autodoc>base_InitDialog()
</autodoc>
19433 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
19434 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
19436 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
19437 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
19439 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
19440 <autodoc>base_Validate() -
> bool
</autodoc>
19442 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
19443 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
19445 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
19446 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
19448 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
19449 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
19451 <method name=
"base_AddChild" type=
"" overloaded=
"no">
19452 <autodoc>base_AddChild(Window child)
</autodoc>
19454 <param name=
"child" type=
"Window" default=
""/>
19457 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
19458 <autodoc>base_RemoveChild(Window child)
</autodoc>
19460 <param name=
"child" type=
"Window" default=
""/>
19465 #---------------------------------------------------------------------------
19468 EVT_HELP = wx.PyEventBinder( wxEVT_HELP,
1)
19469 EVT_HELP_RANGE = wx.PyEventBinder( wxEVT_HELP,
2)
19470 EVT_DETAILED_HELP = wx.PyEventBinder( wxEVT_DETAILED_HELP,
1)
19471 EVT_DETAILED_HELP_RANGE = wx.PyEventBinder( wxEVT_DETAILED_HELP,
2)
19473 <class name=
"HelpEvent" oldname=
"wxHelpEvent" module=
"controls">
19474 <docstring>A help event is sent when the user has requested
19475 context-sensitive help. This can either be caused by the
19476 application requesting context-sensitive help mode via
19477 wx.ContextHelp, or (on MS Windows) by the system generating a
19478 WM_HELP message when the user pressed F1 or clicked on the query
19479 button in a dialog caption.
19481 A help event is sent to the window that the user clicked on, and
19482 is propagated up the window hierarchy until the event is
19483 processed or there are no more event handlers. The application
19484 should call event.GetId to check the identity of the clicked-on
19485 window, and then either show some suitable help or call
19486 event.Skip if the identifier is unrecognised. Calling Skip is
19487 important because it allows wxWindows to generate further events
19488 for ancestors of the clicked-on window. Otherwise it would be
19489 impossible to show help for container windows, since processing
19490 would stop after the first window found.
19493 EVT_HELP Sent when the user has requested context-
19495 EVT_HELP_RANGE Allows to catch EVT_HELP for a range of IDs
19497 <baseclass name=
"CommandEvent"/>
19498 <constructor name=
"HelpEvent" overloaded=
"no">
19499 <autodoc>__init__(wxEventType type=wxEVT_NULL, int winid=
0, Point pt=DefaultPosition) -
> HelpEvent
</autodoc>
19501 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
19502 <param name=
"winid" type=
"int" default=
"0"/>
19503 <param name=
"pt" type=
"Point" default=
"wxDefaultPosition"/>
19506 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
19507 <autodoc>GetPosition() -
> Point
</autodoc>
19508 <docstring>Returns the left-click position of the mouse, in screen
19509 coordinates. This allows the application to position the help
19510 appropriately.
</docstring>
19512 <method name=
"SetPosition" type=
"" overloaded=
"no">
19513 <autodoc>SetPosition(Point pos)
</autodoc>
19514 <docstring>Sets the left-click position of the mouse, in screen coordinates.
</docstring>
19516 <param name=
"pos" type=
"Point" default=
""/>
19519 <method name=
"GetLink" type=
"String" overloaded=
"no">
19520 <autodoc>GetLink() -
> String
</autodoc>
19521 <docstring>Get an optional link to further help
</docstring>
19523 <method name=
"SetLink" type=
"" overloaded=
"no">
19524 <autodoc>SetLink(String link)
</autodoc>
19525 <docstring>Set an optional link to further help
</docstring>
19527 <param name=
"link" type=
"String" default=
""/>
19530 <method name=
"GetTarget" type=
"String" overloaded=
"no">
19531 <autodoc>GetTarget() -
> String
</autodoc>
19532 <docstring>Get an optional target to display help in. E.g. a window specification
</docstring>
19534 <method name=
"SetTarget" type=
"" overloaded=
"no">
19535 <autodoc>SetTarget(String target)
</autodoc>
19536 <docstring>Set an optional target to display help in. E.g. a window specification
</docstring>
19538 <param name=
"target" type=
"String" default=
""/>
19542 <class name=
"ContextHelp" oldname=
"wxContextHelp" module=
"controls">
19543 <docstring>This class changes the cursor to a query and puts the application
19544 into a 'context-sensitive help mode'. When the user left-clicks
19545 on a window within the specified window, a EVT_HELP event is sent
19546 to that control, and the application may respond to it by popping
19549 There are a couple of ways to invoke this behaviour implicitly:
19551 * Use the wx.DIALOG_EX_CONTEXTHELP extended style for a
19552 dialog (Windows only). This will put a question mark in the
19553 titlebar, and Windows will put the application into
19554 context-sensitive help mode automatically, with further
19557 * Create a wx.ContextHelpButton, whose predefined behaviour
19558 is to create a context help object. Normally you will write
19559 your application so that this button is only added to a
19560 dialog for non-Windows platforms (use
19561 wx.DIALOG_EX_CONTEXTHELP on Windows).
19563 <baseclass name=
"Object"/>
19564 <constructor name=
"ContextHelp" overloaded=
"no">
19565 <autodoc>__init__(Window window=None, bool doNow=True) -
> ContextHelp
</autodoc>
19566 <docstring>Constructs a context help object, calling BeginContextHelp if
19567 doNow is true (the default).
19569 If window is None, the top window is used.
</docstring>
19571 <param name=
"window" type=
"Window" default=
"NULL"/>
19572 <param name=
"doNow" type=
"bool" default=
"True"/>
19575 <destructor name=
"~wxContextHelp" overloaded=
"no">
19576 <autodoc>__del__()
</autodoc>
19578 <method name=
"BeginContextHelp" type=
"bool" overloaded=
"no">
19579 <autodoc>BeginContextHelp(Window window=None) -
> bool
</autodoc>
19580 <docstring>Puts the application into context-sensitive help mode. window is
19581 the window which will be used to catch events; if NULL, the top
19582 window will be used.
19584 Returns true if the application was successfully put into
19585 context-sensitive help mode. This function only returns when the
19586 event loop has finished.
</docstring>
19588 <param name=
"window" type=
"Window" default=
"NULL"/>
19591 <method name=
"EndContextHelp" type=
"bool" overloaded=
"no">
19592 <autodoc>EndContextHelp() -
> bool
</autodoc>
19593 <docstring>Ends context-sensitive help mode. Not normally called by the
19594 application.
</docstring>
19597 <class name=
"ContextHelpButton" oldname=
"wxContextHelpButton" module=
"controls">
19598 <docstring>Instances of this class may be used to add a question mark button
19599 that when pressed, puts the application into context-help
19600 mode. It does this by creating a wx.ContextHelp object which
19601 itself generates a EVT_HELP event when the user clicks on a
19604 On Windows, you may add a question-mark icon to a dialog by use
19605 of the wx.DIALOG_EX_CONTEXTHELP extra style, but on other
19606 platforms you will have to add a button explicitly, usually next
19607 to OK, Cancel or similar buttons.
19609 <baseclass name=
"BitmapButton"/>
19610 <constructor name=
"ContextHelpButton" overloaded=
"no">
19611 <autodoc>__init__(Window parent, int id=ID_CONTEXT_HELP, Point pos=DefaultPosition,
19612 Size size=DefaultSize, long style=BU_AUTODRAW) -
> ContextHelpButton
</autodoc>
19613 <docstring>Constructor, creating and showing a context help button.
</docstring>
19615 <param name=
"parent" type=
"Window" default=
""/>
19616 <param name=
"id" type=
"int" default=
"wxID_CONTEXT_HELP"/>
19617 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
19618 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
19619 <param name=
"style" type=
"long" default=
"wxBU_AUTODRAW"/>
19623 <class name=
"HelpProvider" oldname=
"wxHelpProvider" module=
"controls">
19624 <docstring>wx.HelpProvider is an abstract class used by a program
19625 implementing context-sensitive help to show the help text for the
19628 The current help provider must be explicitly set by the
19629 application using wx.HelpProvider.Set().
</docstring>
19630 <staticmethod name=
"Set" type=
"HelpProvider" overloaded=
"no">
19631 <autodoc>Set(HelpProvider helpProvider) -
> HelpProvider
</autodoc>
19632 <docstring>Sset the current, application-wide help provider. Returns the
19633 previous one. Unlike some other classes, the help provider is
19634 not created on demand. This must be explicitly done by the
19635 application.
</docstring>
19637 <param name=
"helpProvider" type=
"HelpProvider" default=
""/>
19640 <staticmethod name=
"Get" type=
"HelpProvider" overloaded=
"no">
19641 <autodoc>Get() -
> HelpProvider
</autodoc>
19642 <docstring>Return the current application-wide help provider.
</docstring>
19644 <method name=
"GetHelp" type=
"String" overloaded=
"no">
19645 <autodoc>GetHelp(Window window) -
> String
</autodoc>
19646 <docstring>Gets the help string for this window. Its interpretation is
19647 dependent on the help provider except that empty string always
19648 means that no help is associated with the window.
</docstring>
19650 <param name=
"window" type=
"Window" default=
""/>
19653 <method name=
"ShowHelp" type=
"bool" overloaded=
"no">
19654 <autodoc>ShowHelp(Window window) -
> bool
</autodoc>
19655 <docstring>Shows help for the given window. Uses GetHelp internally if
19658 Returns true if it was done, or false if no help was available
19659 for this window.
</docstring>
19661 <param name=
"window" type=
"Window" default=
""/>
19664 <method name=
"AddHelp" type=
"" overloaded=
"no">
19665 <autodoc>AddHelp(Window window, String text)
</autodoc>
19666 <docstring>Associates the text with the given window.
</docstring>
19668 <param name=
"window" type=
"Window" default=
""/>
19669 <param name=
"text" type=
"String" default=
""/>
19672 <method name=
"AddHelpById" type=
"" overloaded=
"no">
19673 <autodoc>AddHelpById(int id, String text)
</autodoc>
19674 <docstring>This version associates the given text with all windows with this
19675 id. May be used to set the same help string for all Cancel
19676 buttons in the application, for example.
</docstring>
19678 <param name=
"id" type=
"int" default=
""/>
19679 <param name=
"text" type=
"String" default=
""/>
19682 <method name=
"RemoveHelp" type=
"" overloaded=
"no">
19683 <autodoc>RemoveHelp(Window window)
</autodoc>
19684 <docstring>Removes the association between the window pointer and the help
19685 text. This is called by the wx.Window destructor. Without this,
19686 the table of help strings will fill up and when window pointers
19687 are reused, the wrong help string will be found.
</docstring>
19689 <param name=
"window" type=
"Window" default=
""/>
19692 <method name=
"Destroy" type=
"" overloaded=
"no">
19693 <autodoc>Destroy()
</autodoc>
19696 <class name=
"SimpleHelpProvider" oldname=
"wxSimpleHelpProvider" module=
"controls">
19697 <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
19698 which supports only plain text help strings, and shows the string
19699 associated with the control (if any) in a tooltip.
</docstring>
19700 <baseclass name=
"HelpProvider"/>
19701 <constructor name=
"SimpleHelpProvider" overloaded=
"no">
19702 <autodoc>__init__() -
> SimpleHelpProvider
</autodoc>
19703 <docstring>wx.SimpleHelpProvider is an implementation of wx.HelpProvider
19704 which supports only plain text help strings, and shows the string
19705 associated with the control (if any) in a tooltip.
</docstring>
19709 #---------------------------------------------------------------------------
19711 <class name=
"DragImage" oldname=
"wxGenericDragImage" module=
"controls">
19712 <baseclass name=
"Object"/>
19713 <constructor name=
"wxGenericDragImage" overloaded=
"no">
19714 <autodoc>__init__(Bitmap image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19716 <param name=
"image" type=
"Bitmap" default=
""/>
19717 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19720 <constructor name=
"DragIcon" overloaded=
"no">
19721 <autodoc>DragIcon(Icon image, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19723 <param name=
"image" type=
"Icon" default=
""/>
19724 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19727 <constructor name=
"DragString" overloaded=
"no">
19728 <autodoc>DragString(String str, Cursor cursor=wxNullCursor) -
> DragImage
</autodoc>
19730 <param name=
"str" type=
"String" default=
""/>
19731 <param name=
"cursor" type=
"Cursor" default=
"wxNullCursor"/>
19734 <constructor name=
"DragTreeItem" overloaded=
"no">
19735 <autodoc>DragTreeItem(TreeCtrl treeCtrl, TreeItemId id) -
> DragImage
</autodoc>
19737 <param name=
"treeCtrl" type=
"TreeCtrl" default=
""/>
19738 <param name=
"id" type=
"TreeItemId" default=
""/>
19741 <constructor name=
"DragListItem" overloaded=
"no">
19742 <autodoc>DragListItem(ListCtrl listCtrl, long id) -
> DragImage
</autodoc>
19744 <param name=
"listCtrl" type=
"ListCtrl" default=
""/>
19745 <param name=
"id" type=
"long" default=
""/>
19748 <destructor name=
"~wxGenericDragImage" overloaded=
"no">
19749 <autodoc>__del__()
</autodoc>
19751 <method name=
"SetBackingBitmap" type=
"" overloaded=
"no">
19752 <autodoc>SetBackingBitmap(Bitmap bitmap)
</autodoc>
19754 <param name=
"bitmap" type=
"Bitmap" default=
""/>
19757 <method name=
"BeginDrag" type=
"bool" overloaded=
"no">
19758 <autodoc>BeginDrag(Point hotspot, Window window, bool fullScreen=False,
19759 Rect rect=None) -
> bool
</autodoc>
19761 <param name=
"hotspot" type=
"Point" default=
""/>
19762 <param name=
"window" type=
"Window" default=
""/>
19763 <param name=
"fullScreen" type=
"bool" default=
"False"/>
19764 <param name=
"rect" type=
"Rect" default=
"NULL"/>
19767 <method name=
"BeginDragBounded" type=
"bool" overloaded=
"no">
19768 <autodoc>BeginDragBounded(Point hotspot, Window window, Window boundingWindow) -
> bool
</autodoc>
19770 <param name=
"hotspot" type=
"Point" default=
""/>
19771 <param name=
"window" type=
"Window" default=
""/>
19772 <param name=
"boundingWindow" type=
"Window" default=
""/>
19775 <method name=
"EndDrag" type=
"bool" overloaded=
"no">
19776 <autodoc>EndDrag() -
> bool
</autodoc>
19778 <method name=
"Move" type=
"bool" overloaded=
"no">
19779 <autodoc>Move(Point pt) -
> bool
</autodoc>
19781 <param name=
"pt" type=
"Point" default=
""/>
19784 <method name=
"Show" type=
"bool" overloaded=
"no">
19785 <autodoc>Show() -
> bool
</autodoc>
19787 <method name=
"Hide" type=
"bool" overloaded=
"no">
19788 <autodoc>Hide() -
> bool
</autodoc>
19790 <method name=
"GetImageRect" type=
"Rect" overloaded=
"no">
19791 <autodoc>GetImageRect(Point pos) -
> Rect
</autodoc>
19793 <param name=
"pos" type=
"Point" default=
""/>
19796 <method name=
"DoDrawImage" type=
"bool" overloaded=
"no">
19797 <autodoc>DoDrawImage(DC dc, Point pos) -
> bool
</autodoc>
19799 <param name=
"dc" type=
"DC" default=
""/>
19800 <param name=
"pos" type=
"Point" default=
""/>
19803 <method name=
"UpdateBackingFromWindow" type=
"bool" overloaded=
"no">
19804 <autodoc>UpdateBackingFromWindow(DC windowDC, MemoryDC destDC, Rect sourceRect, Rect destRect) -
> bool
</autodoc>
19806 <param name=
"windowDC" type=
"DC" default=
""/>
19807 <param name=
"destDC" type=
"MemoryDC" default=
""/>
19808 <param name=
"sourceRect" type=
"Rect" default=
""/>
19809 <param name=
"destRect" type=
"Rect" default=
""/>
19812 <method name=
"RedrawImage" type=
"bool" overloaded=
"no">
19813 <autodoc>RedrawImage(Point oldPos, Point newPos, bool eraseOld, bool drawNew) -
> bool
</autodoc>
19815 <param name=
"oldPos" type=
"Point" default=
""/>
19816 <param name=
"newPos" type=
"Point" default=
""/>
19817 <param name=
"eraseOld" type=
"bool" default=
""/>
19818 <param name=
"drawNew" type=
"bool" default=
""/>
19823 <module name=
"misc">
19824 <import name=
"core"/>
19825 <pythoncode> wx = core
</pythoncode>
19827 #---------------------------------------------------------------------------
19829 <class name=
"SystemSettings" oldname=
"wxSystemSettings" module=
"misc">
19830 <staticmethod name=
"GetColour" type=
"Colour" overloaded=
"no">
19831 <autodoc>GetColour(int index) -
> Colour
</autodoc>
19833 <param name=
"index" type=
"wxSystemColour" default=
""/>
19836 <staticmethod name=
"GetFont" type=
"Font" overloaded=
"no">
19837 <autodoc>GetFont(int index) -
> Font
</autodoc>
19839 <param name=
"index" type=
"wxSystemFont" default=
""/>
19842 <staticmethod name=
"GetMetric" type=
"int" overloaded=
"no">
19843 <autodoc>GetMetric(int index) -
> int
</autodoc>
19845 <param name=
"index" type=
"wxSystemMetric" default=
""/>
19848 <staticmethod name=
"HasFeature" type=
"bool" overloaded=
"no">
19849 <autodoc>HasFeature(int index) -
> bool
</autodoc>
19851 <param name=
"index" type=
"wxSystemFeature" default=
""/>
19854 <staticmethod name=
"GetScreenType" type=
"wxSystemScreenType" overloaded=
"no">
19855 <autodoc>GetScreenType() -
> int
</autodoc>
19857 <staticmethod name=
"SetScreenType" type=
"" overloaded=
"no">
19858 <autodoc>SetScreenType(int screen)
</autodoc>
19860 <param name=
"screen" type=
"wxSystemScreenType" default=
""/>
19864 <class name=
"SystemOptions" oldname=
"wxSystemOptions" module=
"misc">
19865 <baseclass name=
"Object"/>
19866 <constructor name=
"SystemOptions" overloaded=
"no">
19867 <autodoc>__init__() -
> SystemOptions
</autodoc>
19869 <staticmethod name=
"SetOption" type=
"" overloaded=
"no">
19870 <autodoc>SetOption(String name, String value)
</autodoc>
19872 <param name=
"name" type=
"String" default=
""/>
19873 <param name=
"value" type=
"String" default=
""/>
19876 <staticmethod name=
"SetOptionInt" type=
"" overloaded=
"no">
19877 <autodoc>SetOptionInt(String name, int value)
</autodoc>
19879 <param name=
"name" type=
"String" default=
""/>
19880 <param name=
"value" type=
"int" default=
""/>
19883 <staticmethod name=
"GetOption" type=
"String" overloaded=
"no">
19884 <autodoc>GetOption(String name) -
> String
</autodoc>
19886 <param name=
"name" type=
"String" default=
""/>
19889 <staticmethod name=
"GetOptionInt" type=
"int" overloaded=
"no">
19890 <autodoc>GetOptionInt(String name) -
> int
</autodoc>
19892 <param name=
"name" type=
"String" default=
""/>
19895 <staticmethod name=
"HasOption" type=
"bool" overloaded=
"no">
19896 <autodoc>HasOption(String name) -
> bool
</autodoc>
19898 <param name=
"name" type=
"String" default=
""/>
19903 #---------------------------------------------------------------------------
19905 <method name=
"NewId" oldname=
"wxNewId" type=
"long" overloaded=
"no">
19906 <autodoc>NewId() -
> long
</autodoc>
19908 <method name=
"RegisterId" oldname=
"wxRegisterId" type=
"" overloaded=
"no">
19909 <autodoc>RegisterId(long id)
</autodoc>
19911 <param name=
"id" type=
"long" default=
""/>
19914 <method name=
"GetCurrentId" oldname=
"wxGetCurrentId" type=
"long" overloaded=
"no">
19915 <autodoc>GetCurrentId() -
> long
</autodoc>
19917 <method name=
"Bell" oldname=
"wxBell" type=
"" overloaded=
"no">
19918 <autodoc>Bell()
</autodoc>
19920 <method name=
"EndBusyCursor" oldname=
"wxEndBusyCursor" type=
"" overloaded=
"no">
19921 <autodoc>EndBusyCursor()
</autodoc>
19923 <method name=
"GetElapsedTime" oldname=
"wxGetElapsedTime" type=
"long" overloaded=
"no">
19924 <autodoc>GetElapsedTime(bool resetTimer=True) -
> long
</autodoc>
19926 <param name=
"resetTimer" type=
"bool" default=
"True"/>
19929 <method name=
"GetMousePosition" oldname=
"wxGetMousePosition" type=
"" overloaded=
"no">
19930 <autodoc>GetMousePosition() -
> (x,y)
</autodoc>
19932 <param name=
"OUTPUT" type=
"int" default=
""/>
19933 <param name=
"OUTPUT" type=
"int" default=
""/>
19936 <method name=
"IsBusy" oldname=
"wxIsBusy" type=
"bool" overloaded=
"no">
19937 <autodoc>IsBusy() -
> bool
</autodoc>
19939 <method name=
"Now" oldname=
"wxNow" type=
"String" overloaded=
"no">
19940 <autodoc>Now() -
> String
</autodoc>
19942 <method name=
"Shell" oldname=
"wxShell" type=
"bool" overloaded=
"no">
19943 <autodoc>Shell(String command=EmptyString) -
> bool
</autodoc>
19945 <param name=
"command" type=
"String" default=
"wxPyEmptyString"/>
19948 <method name=
"StartTimer" oldname=
"wxStartTimer" type=
"" overloaded=
"no">
19949 <autodoc>StartTimer()
</autodoc>
19951 <method name=
"GetOsVersion" oldname=
"wxGetOsVersion" type=
"int" overloaded=
"no">
19952 <autodoc>GetOsVersion() -
> (platform, major, minor)
</autodoc>
19954 <param name=
"OUTPUT" type=
"int" default=
""/>
19955 <param name=
"OUTPUT" type=
"int" default=
""/>
19958 <method name=
"GetOsDescription" oldname=
"wxGetOsDescription" type=
"String" overloaded=
"no">
19959 <autodoc>GetOsDescription() -
> String
</autodoc>
19961 <method name=
"GetFreeMemory" oldname=
"wxGetFreeMemory" type=
"long" overloaded=
"no">
19962 <autodoc>GetFreeMemory() -
> long
</autodoc>
19964 <method name=
"Shutdown" oldname=
"wxShutdown" type=
"bool" overloaded=
"no">
19965 <autodoc>Shutdown(int wFlags) -
> bool
</autodoc>
19967 <param name=
"wFlags" type=
"wxShutdownFlags" default=
""/>
19970 <method name=
"Sleep" oldname=
"wxSleep" type=
"" overloaded=
"no">
19971 <autodoc>Sleep(int secs)
</autodoc>
19973 <param name=
"secs" type=
"int" default=
""/>
19976 <method name=
"Usleep" oldname=
"wxUsleep" type=
"" overloaded=
"no">
19977 <autodoc>Usleep(unsigned long milliseconds)
</autodoc>
19979 <param name=
"milliseconds" type=
"unsigned long" default=
""/>
19982 <method name=
"EnableTopLevelWindows" oldname=
"wxEnableTopLevelWindows" type=
"" overloaded=
"no">
19983 <autodoc>EnableTopLevelWindows(bool enable)
</autodoc>
19985 <param name=
"enable" type=
"bool" default=
""/>
19988 <method name=
"StripMenuCodes" oldname=
"wxStripMenuCodes" type=
"String" overloaded=
"no">
19989 <autodoc>StripMenuCodes(String in) -
> String
</autodoc>
19991 <param name=
"in" type=
"String" default=
""/>
19994 <method name=
"GetEmailAddress" oldname=
"wxGetEmailAddress" type=
"String" overloaded=
"no">
19995 <autodoc>GetEmailAddress() -
> String
</autodoc>
19997 <method name=
"GetHostName" oldname=
"wxGetHostName" type=
"String" overloaded=
"no">
19998 <autodoc>GetHostName() -
> String
</autodoc>
20000 <method name=
"GetFullHostName" oldname=
"wxGetFullHostName" type=
"String" overloaded=
"no">
20001 <autodoc>GetFullHostName() -
> String
</autodoc>
20003 <method name=
"GetUserId" oldname=
"wxGetUserId" type=
"String" overloaded=
"no">
20004 <autodoc>GetUserId() -
> String
</autodoc>
20006 <method name=
"GetUserName" oldname=
"wxGetUserName" type=
"String" overloaded=
"no">
20007 <autodoc>GetUserName() -
> String
</autodoc>
20009 <method name=
"GetHomeDir" oldname=
"wxGetHomeDir" type=
"String" overloaded=
"no">
20010 <autodoc>GetHomeDir() -
> String
</autodoc>
20012 <method name=
"GetUserHome" oldname=
"wxGetUserHome" type=
"String" overloaded=
"no">
20013 <autodoc>GetUserHome(String user=EmptyString) -
> String
</autodoc>
20015 <param name=
"user" type=
"String" default=
"wxPyEmptyString"/>
20018 <method name=
"GetProcessId" oldname=
"wxGetProcessId" type=
"unsigned long" overloaded=
"no">
20019 <autodoc>GetProcessId() -
> unsigned long
</autodoc>
20021 <method name=
"Trap" oldname=
"wxTrap" type=
"" overloaded=
"no">
20022 <autodoc>Trap()
</autodoc>
20024 <method name=
"FileSelector" oldname=
"wxFileSelector" type=
"String" overloaded=
"no">
20025 <autodoc>FileSelector(String message=FileSelectorPromptStr, String default_path=EmptyString,
20026 String default_filename=EmptyString,
20027 String default_extension=EmptyString,
20028 String wildcard=FileSelectorDefaultWildcardStr,
20029 int flags=
0, Window parent=None, int x=-
1,
20030 int y=-
1) -
> String
</autodoc>
20032 <param name=
"message" type=
"String" default=
"wxPyFileSelectorPromptStr"/>
20033 <param name=
"default_path" type=
"String" default=
"wxPyEmptyString"/>
20034 <param name=
"default_filename" type=
"String" default=
"wxPyEmptyString"/>
20035 <param name=
"default_extension" type=
"String" default=
"wxPyEmptyString"/>
20036 <param name=
"wildcard" type=
"String" default=
"wxPyFileSelectorDefaultWildcardStr"/>
20037 <param name=
"flags" type=
"int" default=
"0"/>
20038 <param name=
"parent" type=
"Window" default=
"NULL"/>
20039 <param name=
"x" type=
"int" default=
"-1"/>
20040 <param name=
"y" type=
"int" default=
"-1"/>
20043 <method name=
"LoadFileSelector" oldname=
"wxLoadFileSelector" type=
"String" overloaded=
"no">
20044 <autodoc>LoadFileSelector(String what, String extension, String default_name=EmptyString,
20045 Window parent=None) -
> String
</autodoc>
20047 <param name=
"what" type=
"String" default=
""/>
20048 <param name=
"extension" type=
"String" default=
""/>
20049 <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/>
20050 <param name=
"parent" type=
"Window" default=
"NULL"/>
20053 <method name=
"SaveFileSelector" oldname=
"wxSaveFileSelector" type=
"String" overloaded=
"no">
20054 <autodoc>SaveFileSelector(String what, String extension, String default_name=EmptyString,
20055 Window parent=None) -
> String
</autodoc>
20057 <param name=
"what" type=
"String" default=
""/>
20058 <param name=
"extension" type=
"String" default=
""/>
20059 <param name=
"default_name" type=
"String" default=
"wxPyEmptyString"/>
20060 <param name=
"parent" type=
"Window" default=
"NULL"/>
20063 <method name=
"DirSelector" oldname=
"wxDirSelector" type=
"String" overloaded=
"no">
20064 <autodoc>DirSelector(String message=DirSelectorPromptStr, String defaultPath=EmptyString,
20065 long style=DD_DEFAULT_STYLE,
20066 Point pos=DefaultPosition, Window parent=None) -
> String
</autodoc>
20068 <param name=
"message" type=
"String" default=
"wxPyDirSelectorPromptStr"/>
20069 <param name=
"defaultPath" type=
"String" default=
"wxPyEmptyString"/>
20070 <param name=
"style" type=
"long" default=
"wxDD_DEFAULT_STYLE"/>
20071 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
20072 <param name=
"parent" type=
"Window" default=
"NULL"/>
20075 <method name=
"GetTextFromUser" oldname=
"wxGetTextFromUser" type=
"String" overloaded=
"no">
20076 <autodoc>GetTextFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
20077 Window parent=None,
20078 int x=-
1, int y=-
1, bool centre=True) -
> String
</autodoc>
20080 <param name=
"message" type=
"String" default=
""/>
20081 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20082 <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/>
20083 <param name=
"parent" type=
"Window" default=
"NULL"/>
20084 <param name=
"x" type=
"int" default=
"-1"/>
20085 <param name=
"y" type=
"int" default=
"-1"/>
20086 <param name=
"centre" type=
"bool" default=
"True"/>
20089 <method name=
"GetPasswordFromUser" oldname=
"wxGetPasswordFromUser" type=
"String" overloaded=
"no">
20090 <autodoc>GetPasswordFromUser(String message, String caption=EmptyString, String default_value=EmptyString,
20091 Window parent=None) -
> String
</autodoc>
20093 <param name=
"message" type=
"String" default=
""/>
20094 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20095 <param name=
"default_value" type=
"String" default=
"wxPyEmptyString"/>
20096 <param name=
"parent" type=
"Window" default=
"NULL"/>
20099 <method name=
"GetSingleChoice" oldname=
"wxGetSingleChoice" type=
"String" overloaded=
"no">
20100 <autodoc>GetSingleChoice(String message, String caption, int choices, String choices_array,
20101 Window parent=None, int x=-
1,
20102 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> String
</autodoc>
20104 <param name=
"message" type=
"String" default=
""/>
20105 <param name=
"caption" type=
"String" default=
""/>
20106 <param name=
"choices" type=
"int" default=
""/>
20107 <param name=
"choices_array" type=
"String" default=
""/>
20108 <param name=
"parent" type=
"Window" default=
"NULL"/>
20109 <param name=
"x" type=
"int" default=
"-1"/>
20110 <param name=
"y" type=
"int" default=
"-1"/>
20111 <param name=
"centre" type=
"bool" default=
"True"/>
20112 <param name=
"width" type=
"int" default=
"150"/>
20113 <param name=
"height" type=
"int" default=
"200"/>
20116 <method name=
"GetSingleChoiceIndex" oldname=
"wxGetSingleChoiceIndex" type=
"int" overloaded=
"no">
20117 <autodoc>GetSingleChoiceIndex(String message, String caption, int choices, String choices_array,
20118 Window parent=None, int x=-
1,
20119 int y=-
1, bool centre=True, int width=
150, int height=
200) -
> int
</autodoc>
20121 <param name=
"message" type=
"String" default=
""/>
20122 <param name=
"caption" type=
"String" default=
""/>
20123 <param name=
"choices" type=
"int" default=
""/>
20124 <param name=
"choices_array" type=
"String" default=
""/>
20125 <param name=
"parent" type=
"Window" default=
"NULL"/>
20126 <param name=
"x" type=
"int" default=
"-1"/>
20127 <param name=
"y" type=
"int" default=
"-1"/>
20128 <param name=
"centre" type=
"bool" default=
"True"/>
20129 <param name=
"width" type=
"int" default=
"150"/>
20130 <param name=
"height" type=
"int" default=
"200"/>
20133 <method name=
"MessageBox" oldname=
"wxMessageBox" type=
"int" overloaded=
"no">
20134 <autodoc>MessageBox(String message, String caption=EmptyString, int style=wxOK|wxCENTRE,
20135 Window parent=None, int x=-
1,
20136 int y=-
1) -
> int
</autodoc>
20138 <param name=
"message" type=
"String" default=
""/>
20139 <param name=
"caption" type=
"String" default=
"wxPyEmptyString"/>
20140 <param name=
"style" type=
"int" default=
"wxOK|wxCENTRE"/>
20141 <param name=
"parent" type=
"Window" default=
"NULL"/>
20142 <param name=
"x" type=
"int" default=
"-1"/>
20143 <param name=
"y" type=
"int" default=
"-1"/>
20146 <method name=
"GetNumberFromUser" oldname=
"wxGetNumberFromUser" type=
"long" overloaded=
"no">
20147 <autodoc>GetNumberFromUser(String message, String prompt, String caption, long value,
20148 long min=
0, long max=
100, Window parent=None,
20149 Point pos=DefaultPosition) -
> long
</autodoc>
20151 <param name=
"message" type=
"String" default=
""/>
20152 <param name=
"prompt" type=
"String" default=
""/>
20153 <param name=
"caption" type=
"String" default=
""/>
20154 <param name=
"value" type=
"long" default=
""/>
20155 <param name=
"min" type=
"long" default=
"0"/>
20156 <param name=
"max" type=
"long" default=
"100"/>
20157 <param name=
"parent" type=
"Window" default=
"NULL"/>
20158 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
20161 <method name=
"ColourDisplay" oldname=
"wxColourDisplay" type=
"bool" overloaded=
"no">
20162 <autodoc>ColourDisplay() -
> bool
</autodoc>
20164 <method name=
"DisplayDepth" oldname=
"wxDisplayDepth" type=
"int" overloaded=
"no">
20165 <autodoc>DisplayDepth() -
> int
</autodoc>
20167 <method name=
"GetDisplayDepth" oldname=
"wxGetDisplayDepth" type=
"int" overloaded=
"no">
20168 <autodoc>GetDisplayDepth() -
> int
</autodoc>
20170 <method name=
"DisplaySize" oldname=
"wxDisplaySize" type=
"" overloaded=
"no">
20171 <autodoc>DisplaySize() -
> (width, height)
</autodoc>
20173 <param name=
"OUTPUT" type=
"int" default=
""/>
20174 <param name=
"OUTPUT" type=
"int" default=
""/>
20177 <method name=
"GetDisplaySize" oldname=
"wxGetDisplaySize" type=
"Size" overloaded=
"no">
20178 <autodoc>GetDisplaySize() -
> Size
</autodoc>
20180 <method name=
"DisplaySizeMM" oldname=
"wxDisplaySizeMM" type=
"" overloaded=
"no">
20181 <autodoc>DisplaySizeMM() -
> (width, height)
</autodoc>
20183 <param name=
"OUTPUT" type=
"int" default=
""/>
20184 <param name=
"OUTPUT" type=
"int" default=
""/>
20187 <method name=
"GetDisplaySizeMM" oldname=
"wxGetDisplaySizeMM" type=
"Size" overloaded=
"no">
20188 <autodoc>GetDisplaySizeMM() -
> Size
</autodoc>
20190 <method name=
"ClientDisplayRect" oldname=
"wxClientDisplayRect" type=
"" overloaded=
"no">
20191 <autodoc>ClientDisplayRect() -
> (x, y, width, height)
</autodoc>
20193 <param name=
"OUTPUT" type=
"int" default=
""/>
20194 <param name=
"OUTPUT" type=
"int" default=
""/>
20195 <param name=
"OUTPUT" type=
"int" default=
""/>
20196 <param name=
"OUTPUT" type=
"int" default=
""/>
20199 <method name=
"GetClientDisplayRect" oldname=
"wxGetClientDisplayRect" type=
"Rect" overloaded=
"no">
20200 <autodoc>GetClientDisplayRect() -
> Rect
</autodoc>
20202 <method name=
"SetCursor" oldname=
"wxSetCursor" type=
"" overloaded=
"no">
20203 <autodoc>SetCursor(Cursor cursor)
</autodoc>
20205 <param name=
"cursor" type=
"Cursor" default=
""/>
20208 <method name=
"BeginBusyCursor" oldname=
"wxBeginBusyCursor" type=
"" overloaded=
"no">
20209 <autodoc>BeginBusyCursor(Cursor cursor=wxHOURGLASS_CURSOR)
</autodoc>
20211 <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/>
20214 <method name=
"GetActiveWindow" oldname=
"wxGetActiveWindow" type=
"Window" overloaded=
"no">
20215 <autodoc>GetActiveWindow() -
> Window
</autodoc>
20217 <method name=
"GenericFindWindowAtPoint" oldname=
"wxGenericFindWindowAtPoint" type=
"Window" overloaded=
"no">
20218 <autodoc>GenericFindWindowAtPoint(Point pt) -
> Window
</autodoc>
20220 <param name=
"pt" type=
"Point" default=
""/>
20223 <method name=
"FindWindowAtPoint" oldname=
"wxFindWindowAtPoint" type=
"Window" overloaded=
"no">
20224 <autodoc>FindWindowAtPoint(Point pt) -
> Window
</autodoc>
20226 <param name=
"pt" type=
"Point" default=
""/>
20229 <method name=
"GetTopLevelParent" oldname=
"wxGetTopLevelParent" type=
"Window" overloaded=
"no">
20230 <autodoc>GetTopLevelParent(Window win) -
> Window
</autodoc>
20232 <param name=
"win" type=
"Window" default=
""/>
20235 <method name=
"GetKeyState" oldname=
"wxGetKeyState" type=
"bool" overloaded=
"no">
20236 <autodoc>GetKeyState(int key) -
> bool
</autodoc>
20238 <param name=
"key" type=
"wxKeyCode" default=
""/>
20241 <method name=
"WakeUpMainThread" oldname=
"wxWakeUpMainThread" type=
"" overloaded=
"no">
20242 <autodoc>WakeUpMainThread()
</autodoc>
20244 <method name=
"MutexGuiEnter" oldname=
"wxMutexGuiEnter" type=
"" overloaded=
"no">
20245 <autodoc>MutexGuiEnter()
</autodoc>
20247 <method name=
"MutexGuiLeave" oldname=
"wxMutexGuiLeave" type=
"" overloaded=
"no">
20248 <autodoc>MutexGuiLeave()
</autodoc>
20250 <class name=
"MutexGuiLocker" oldname=
"wxMutexGuiLocker" module=
"misc">
20251 <constructor name=
"MutexGuiLocker" overloaded=
"no">
20252 <autodoc>__init__() -
> MutexGuiLocker
</autodoc>
20254 <destructor name=
"~wxMutexGuiLocker" overloaded=
"no">
20255 <autodoc>__del__()
</autodoc>
20258 <method name=
"Thread_IsMain" oldname=
"wxThread_IsMain" type=
"bool" overloaded=
"no">
20259 <autodoc>Thread_IsMain() -
> bool
</autodoc>
20262 #---------------------------------------------------------------------------
20264 <class name=
"ToolTip" oldname=
"wxToolTip" module=
"misc">
20265 <baseclass name=
"Object"/>
20266 <constructor name=
"ToolTip" overloaded=
"no">
20267 <autodoc>__init__(String tip) -
> ToolTip
</autodoc>
20269 <param name=
"tip" type=
"String" default=
""/>
20272 <method name=
"SetTip" type=
"" overloaded=
"no">
20273 <autodoc>SetTip(String tip)
</autodoc>
20275 <param name=
"tip" type=
"String" default=
""/>
20278 <method name=
"GetTip" type=
"String" overloaded=
"no">
20279 <autodoc>GetTip() -
> String
</autodoc>
20281 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
20282 <autodoc>GetWindow() -
> Window
</autodoc>
20284 <staticmethod name=
"Enable" type=
"" overloaded=
"no">
20285 <autodoc>Enable(bool flag)
</autodoc>
20287 <param name=
"flag" type=
"bool" default=
""/>
20290 <staticmethod name=
"SetDelay" type=
"" overloaded=
"no">
20291 <autodoc>SetDelay(long milliseconds)
</autodoc>
20293 <param name=
"milliseconds" type=
"long" default=
""/>
20297 <class name=
"Caret" oldname=
"wxCaret" module=
"misc">
20298 <constructor name=
"Caret" overloaded=
"no">
20299 <autodoc>__init__(Window window, Size size) -
> Caret
</autodoc>
20301 <param name=
"window" type=
"Window" default=
""/>
20302 <param name=
"size" type=
"Size" default=
""/>
20305 <destructor name=
"~wxCaret" overloaded=
"no">
20306 <autodoc>__del__()
</autodoc>
20308 <method name=
"IsOk" type=
"bool" overloaded=
"no">
20309 <autodoc>IsOk() -
> bool
</autodoc>
20311 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
20312 <autodoc>IsVisible() -
> bool
</autodoc>
20314 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
20315 <autodoc>GetPosition() -
> Point
</autodoc>
20317 <method name=
"GetPositionTuple" type=
"" overloaded=
"no">
20318 <autodoc>GetPositionTuple() -
> (x,y)
</autodoc>
20320 <param name=
"OUTPUT" type=
"int" default=
""/>
20321 <param name=
"OUTPUT" type=
"int" default=
""/>
20324 <method name=
"GetSize" type=
"Size" overloaded=
"no">
20325 <autodoc>GetSize() -
> Size
</autodoc>
20327 <method name=
"GetSizeTuple" type=
"" overloaded=
"no">
20328 <autodoc>GetSizeTuple() -
> (width, height)
</autodoc>
20330 <param name=
"OUTPUT" type=
"int" default=
""/>
20331 <param name=
"OUTPUT" type=
"int" default=
""/>
20334 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
20335 <autodoc>GetWindow() -
> Window
</autodoc>
20337 <method name=
"MoveXY" type=
"" overloaded=
"no">
20338 <autodoc>MoveXY(int x, int y)
</autodoc>
20340 <param name=
"x" type=
"int" default=
""/>
20341 <param name=
"y" type=
"int" default=
""/>
20344 <method name=
"Move" type=
"" overloaded=
"no">
20345 <autodoc>Move(Point pt)
</autodoc>
20347 <param name=
"pt" type=
"Point" default=
""/>
20350 <method name=
"SetSizeWH" type=
"" overloaded=
"no">
20351 <autodoc>SetSizeWH(int width, int height)
</autodoc>
20353 <param name=
"width" type=
"int" default=
""/>
20354 <param name=
"height" type=
"int" default=
""/>
20357 <method name=
"SetSize" type=
"" overloaded=
"no">
20358 <autodoc>SetSize(Size size)
</autodoc>
20360 <param name=
"size" type=
"Size" default=
""/>
20363 <method name=
"Show" type=
"" overloaded=
"no">
20364 <autodoc>Show(int show=True)
</autodoc>
20366 <param name=
"show" type=
"int" default=
"True"/>
20369 <method name=
"Hide" type=
"" overloaded=
"no">
20370 <autodoc>Hide()
</autodoc>
20373 <method name=
"Caret_GetBlinkTime" oldname=
"wxCaret_GetBlinkTime" type=
"int" overloaded=
"no">
20374 <autodoc>Caret_GetBlinkTime() -
> int
</autodoc>
20376 <method name=
"Caret_SetBlinkTime" oldname=
"wxCaret_SetBlinkTime" type=
"" overloaded=
"no">
20377 <autodoc>Caret_SetBlinkTime(int milliseconds)
</autodoc>
20379 <param name=
"milliseconds" type=
"int" default=
""/>
20382 <class name=
"BusyCursor" oldname=
"wxBusyCursor" module=
"misc">
20383 <constructor name=
"BusyCursor" overloaded=
"no">
20384 <autodoc>__init__(Cursor cursor=wxHOURGLASS_CURSOR) -
> BusyCursor
</autodoc>
20386 <param name=
"cursor" type=
"Cursor" default=
"wxHOURGLASS_CURSOR"/>
20389 <destructor name=
"~wxBusyCursor" overloaded=
"no">
20390 <autodoc>__del__()
</autodoc>
20393 <class name=
"WindowDisabler" oldname=
"wxWindowDisabler" module=
"misc">
20394 <constructor name=
"WindowDisabler" overloaded=
"no">
20395 <autodoc>__init__(Window winToSkip=None) -
> WindowDisabler
</autodoc>
20397 <param name=
"winToSkip" type=
"Window" default=
"NULL"/>
20400 <destructor name=
"~wxWindowDisabler" overloaded=
"no">
20401 <autodoc>__del__()
</autodoc>
20404 <class name=
"BusyInfo" oldname=
"wxBusyInfo" module=
"misc">
20405 <baseclass name=
"Object"/>
20406 <constructor name=
"BusyInfo" overloaded=
"no">
20407 <autodoc>__init__(String message) -
> BusyInfo
</autodoc>
20409 <param name=
"message" type=
"String" default=
""/>
20412 <destructor name=
"~wxBusyInfo" overloaded=
"no">
20413 <autodoc>__del__()
</autodoc>
20416 <class name=
"StopWatch" oldname=
"wxStopWatch" module=
"misc">
20417 <constructor name=
"StopWatch" overloaded=
"no">
20418 <autodoc>__init__() -
> StopWatch
</autodoc>
20420 <method name=
"Start" type=
"" overloaded=
"no">
20421 <autodoc>Start(long t0=
0)
</autodoc>
20423 <param name=
"t0" type=
"long" default=
"0"/>
20426 <method name=
"Pause" type=
"" overloaded=
"no">
20427 <autodoc>Pause()
</autodoc>
20429 <method name=
"Resume" type=
"" overloaded=
"no">
20430 <autodoc>Resume()
</autodoc>
20432 <method name=
"Time" type=
"long" overloaded=
"no">
20433 <autodoc>Time() -
> long
</autodoc>
20436 <class name=
"FileHistory" oldname=
"wxFileHistory" module=
"misc">
20437 <baseclass name=
"Object"/>
20438 <constructor name=
"FileHistory" overloaded=
"no">
20439 <autodoc>__init__(int maxFiles=
9) -
> FileHistory
</autodoc>
20441 <param name=
"maxFiles" type=
"int" default=
"9"/>
20444 <destructor name=
"~wxFileHistory" overloaded=
"no">
20445 <autodoc>__del__()
</autodoc>
20447 <method name=
"AddFileToHistory" type=
"" overloaded=
"no">
20448 <autodoc>AddFileToHistory(String file)
</autodoc>
20450 <param name=
"file" type=
"String" default=
""/>
20453 <method name=
"RemoveFileFromHistory" type=
"" overloaded=
"no">
20454 <autodoc>RemoveFileFromHistory(int i)
</autodoc>
20456 <param name=
"i" type=
"int" default=
""/>
20459 <method name=
"GetMaxFiles" type=
"int" overloaded=
"no">
20460 <autodoc>GetMaxFiles() -
> int
</autodoc>
20462 <method name=
"UseMenu" type=
"" overloaded=
"no">
20463 <autodoc>UseMenu(Menu menu)
</autodoc>
20465 <param name=
"menu" type=
"Menu" default=
""/>
20468 <method name=
"RemoveMenu" type=
"" overloaded=
"no">
20469 <autodoc>RemoveMenu(Menu menu)
</autodoc>
20471 <param name=
"menu" type=
"Menu" default=
""/>
20474 <method name=
"Load" type=
"" overloaded=
"no">
20475 <autodoc>Load(ConfigBase config)
</autodoc>
20477 <param name=
"config" type=
"wxConfigBase" default=
""/>
20480 <method name=
"Save" type=
"" overloaded=
"no">
20481 <autodoc>Save(ConfigBase config)
</autodoc>
20483 <param name=
"config" type=
"wxConfigBase" default=
""/>
20486 <method name=
"AddFilesToMenu" type=
"" overloaded=
"no">
20487 <autodoc>AddFilesToMenu()
</autodoc>
20489 <method name=
"AddFilesToThisMenu" type=
"" overloaded=
"no">
20490 <autodoc>AddFilesToThisMenu(Menu menu)
</autodoc>
20492 <param name=
"menu" type=
"Menu" default=
""/>
20495 <method name=
"GetHistoryFile" type=
"String" overloaded=
"no">
20496 <autodoc>GetHistoryFile(int i) -
> String
</autodoc>
20498 <param name=
"i" type=
"int" default=
""/>
20501 <method name=
"GetCount" type=
"int" overloaded=
"no">
20502 <autodoc>GetCount() -
> int
</autodoc>
20505 <class name=
"SingleInstanceChecker" oldname=
"wxSingleInstanceChecker" module=
"misc">
20506 <constructor name=
"SingleInstanceChecker" overloaded=
"no">
20507 <autodoc>__init__(String name, String path=EmptyString) -
> SingleInstanceChecker
</autodoc>
20509 <param name=
"name" type=
"String" default=
""/>
20510 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
20513 <constructor name=
"PreSingleInstanceChecker" overloaded=
"no">
20514 <autodoc>PreSingleInstanceChecker() -
> SingleInstanceChecker
</autodoc>
20516 <destructor name=
"~wxSingleInstanceChecker" overloaded=
"no">
20517 <autodoc>__del__()
</autodoc>
20519 <method name=
"Create" type=
"bool" overloaded=
"no">
20520 <autodoc>Create(String name, String path=EmptyString) -
> bool
</autodoc>
20522 <param name=
"name" type=
"String" default=
""/>
20523 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
20526 <method name=
"IsAnotherRunning" type=
"bool" overloaded=
"no">
20527 <autodoc>IsAnotherRunning() -
> bool
</autodoc>
20530 <method name=
"DrawWindowOnDC" oldname=
"wxDrawWindowOnDC" type=
"" overloaded=
"no">
20531 <autodoc>DrawWindowOnDC(Window window, DC dc, int method)
</autodoc>
20533 <param name=
"window" type=
"Window" default=
""/>
20534 <param name=
"dc" type=
"DC" default=
""/>
20535 <param name=
"method" type=
"int" default=
""/>
20539 #---------------------------------------------------------------------------
20541 <class name=
"TipProvider" oldname=
"wxTipProvider" module=
"misc">
20542 <destructor name=
"~wxTipProvider" overloaded=
"no">
20543 <autodoc>__del__()
</autodoc>
20545 <method name=
"GetTip" type=
"String" overloaded=
"no">
20546 <autodoc>GetTip() -
> String
</autodoc>
20548 <method name=
"GetCurrentTip" type=
"size_t" overloaded=
"no">
20549 <autodoc>GetCurrentTip() -
> size_t
</autodoc>
20551 <method name=
"PreprocessTip" type=
"String" overloaded=
"no">
20552 <autodoc>PreprocessTip(String tip) -
> String
</autodoc>
20554 <param name=
"tip" type=
"String" default=
""/>
20558 <class name=
"PyTipProvider" oldname=
"wxPyTipProvider" module=
"misc">
20559 <baseclass name=
"TipProvider"/>
20560 <constructor name=
"PyTipProvider" overloaded=
"no">
20561 <autodoc>__init__(size_t currentTip) -
> PyTipProvider
</autodoc>
20563 <param name=
"currentTip" type=
"size_t" default=
""/>
20566 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
20567 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
20569 <param name=
"self" type=
"PyObject" default=
""/>
20570 <param name=
"_class" type=
"PyObject" default=
""/>
20574 <method name=
"ShowTip" oldname=
"wxShowTip" type=
"bool" overloaded=
"no">
20575 <autodoc>ShowTip(Window parent, TipProvider tipProvider, bool showAtStartup=True) -
> bool
</autodoc>
20577 <param name=
"parent" type=
"Window" default=
""/>
20578 <param name=
"tipProvider" type=
"TipProvider" default=
""/>
20579 <param name=
"showAtStartup" type=
"bool" default=
"True"/>
20582 <method name=
"CreateFileTipProvider" oldname=
"wxCreateFileTipProvider" type=
"TipProvider" overloaded=
"no">
20583 <autodoc>CreateFileTipProvider(String filename, size_t currentTip) -
> TipProvider
</autodoc>
20585 <param name=
"filename" type=
"String" default=
""/>
20586 <param name=
"currentTip" type=
"size_t" default=
""/>
20590 #---------------------------------------------------------------------------
20592 <class name=
"Timer" oldname=
"wxPyTimer" module=
"misc">
20593 <baseclass name=
"EvtHandler"/>
20594 <constructor name=
"wxPyTimer" overloaded=
"no">
20595 <autodoc>__init__(EvtHandler owner=None, int id=-
1) -
> Timer
</autodoc>
20597 <param name=
"owner" type=
"EvtHandler" default=
"NULL"/>
20598 <param name=
"id" type=
"int" default=
"-1"/>
20601 <destructor name=
"~wxPyTimer" overloaded=
"no">
20602 <autodoc>__del__()
</autodoc>
20604 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
20605 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
20607 <param name=
"self" type=
"PyObject" default=
""/>
20608 <param name=
"_class" type=
"PyObject" default=
""/>
20611 <method name=
"SetOwner" type=
"" overloaded=
"no">
20612 <autodoc>SetOwner(EvtHandler owner, int id=-
1)
</autodoc>
20614 <param name=
"owner" type=
"EvtHandler" default=
""/>
20615 <param name=
"id" type=
"int" default=
"-1"/>
20618 <method name=
"Start" type=
"bool" overloaded=
"no">
20619 <autodoc>Start(int milliseconds=-
1, bool oneShot=False) -
> bool
</autodoc>
20621 <param name=
"milliseconds" type=
"int" default=
"-1"/>
20622 <param name=
"oneShot" type=
"bool" default=
"False"/>
20625 <method name=
"Stop" type=
"" overloaded=
"no">
20626 <autodoc>Stop()
</autodoc>
20628 <method name=
"IsRunning" type=
"bool" overloaded=
"no">
20629 <autodoc>IsRunning() -
> bool
</autodoc>
20631 <method name=
"GetInterval" type=
"int" overloaded=
"no">
20632 <autodoc>GetInterval() -
> int
</autodoc>
20634 <method name=
"IsOneShot" type=
"bool" overloaded=
"no">
20635 <autodoc>IsOneShot() -
> bool
</autodoc>
20637 <method name=
"GetId" type=
"int" overloaded=
"no">
20638 <autodoc>GetId() -
> int
</autodoc>
20642 # For backwards compatibility with
2.4
20643 class PyTimer(Timer):
20644 def __init__(self, notify):
20645 Timer.__init__(self)
20646 self.notify = notify
20653 EVT_TIMER = wx.PyEventBinder( wxEVT_TIMER,
1 )
20656 <class name=
"TimerEvent" oldname=
"wxTimerEvent" module=
"misc">
20657 <baseclass name=
"Event"/>
20658 <constructor name=
"TimerEvent" overloaded=
"no">
20659 <autodoc>__init__(int timerid=
0, int interval=
0) -
> TimerEvent
</autodoc>
20661 <param name=
"timerid" type=
"int" default=
"0"/>
20662 <param name=
"interval" type=
"int" default=
"0"/>
20665 <method name=
"GetInterval" type=
"int" overloaded=
"no">
20666 <autodoc>GetInterval() -
> int
</autodoc>
20669 <class name=
"TimerRunner" oldname=
"wxTimerRunner" module=
"misc">
20670 <constructor name=
"TimerRunner" overloaded=
"yes">
20672 <param name=
"timer" type=
"wxTimer" default=
""/>
20675 <constructor name=
"TimerRunner" overloaded=
"yes">
20676 <autodoc>__init__(wxTimer timer) -
> TimerRunner
20677 __init__(wxTimer timer, int milli, bool oneShot=False) -
> TimerRunner
</autodoc>
20679 <param name=
"timer" type=
"wxTimer" default=
""/>
20680 <param name=
"milli" type=
"int" default=
""/>
20681 <param name=
"oneShot" type=
"bool" default=
"False"/>
20684 <destructor name=
"~wxTimerRunner" overloaded=
"no">
20685 <autodoc>__del__()
</autodoc>
20687 <method name=
"Start" type=
"" overloaded=
"no">
20688 <autodoc>Start(int milli, bool oneShot=False)
</autodoc>
20690 <param name=
"milli" type=
"int" default=
""/>
20691 <param name=
"oneShot" type=
"bool" default=
"False"/>
20696 #---------------------------------------------------------------------------
20698 <class name=
"Log" oldname=
"wxLog" module=
"misc">
20699 <constructor name=
"Log" overloaded=
"no">
20700 <autodoc>__init__() -
> Log
</autodoc>
20702 <staticmethod name=
"IsEnabled" type=
"bool" overloaded=
"no">
20703 <autodoc>IsEnabled() -
> bool
</autodoc>
20705 <staticmethod name=
"EnableLogging" type=
"bool" overloaded=
"no">
20706 <autodoc>EnableLogging(bool doIt=True) -
> bool
</autodoc>
20708 <param name=
"doIt" type=
"bool" default=
"True"/>
20711 <staticmethod name=
"OnLog" type=
"" overloaded=
"no">
20712 <autodoc>OnLog(wxLogLevel level, wxChar szString, time_t t)
</autodoc>
20714 <param name=
"level" type=
"wxLogLevel" default=
""/>
20715 <param name=
"szString" type=
"wxChar" default=
""/>
20716 <param name=
"t" type=
"time_t" default=
""/>
20719 <method name=
"Flush" type=
"" overloaded=
"no">
20720 <autodoc>Flush()
</autodoc>
20722 <staticmethod name=
"FlushActive" type=
"" overloaded=
"no">
20723 <autodoc>FlushActive()
</autodoc>
20725 <staticmethod name=
"GetActiveTarget" type=
"Log" overloaded=
"no">
20726 <autodoc>GetActiveTarget() -
> Log
</autodoc>
20728 <staticmethod name=
"SetActiveTarget" type=
"Log" overloaded=
"no">
20729 <autodoc>SetActiveTarget(Log pLogger) -
> Log
</autodoc>
20731 <param name=
"pLogger" type=
"Log" default=
""/>
20734 <staticmethod name=
"Suspend" type=
"" overloaded=
"no">
20735 <autodoc>Suspend()
</autodoc>
20737 <staticmethod name=
"Resume" type=
"" overloaded=
"no">
20738 <autodoc>Resume()
</autodoc>
20740 <staticmethod name=
"SetVerbose" type=
"" overloaded=
"no">
20741 <autodoc>SetVerbose(bool bVerbose=True)
</autodoc>
20743 <param name=
"bVerbose" type=
"bool" default=
"True"/>
20746 <staticmethod name=
"SetLogLevel" type=
"" overloaded=
"no">
20747 <autodoc>SetLogLevel(wxLogLevel logLevel)
</autodoc>
20749 <param name=
"logLevel" type=
"wxLogLevel" default=
""/>
20752 <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no">
20753 <autodoc>DontCreateOnDemand()
</autodoc>
20755 <staticmethod name=
"SetTraceMask" type=
"" overloaded=
"no">
20756 <autodoc>SetTraceMask(wxTraceMask ulMask)
</autodoc>
20758 <param name=
"ulMask" type=
"wxTraceMask" default=
""/>
20761 <staticmethod name=
"AddTraceMask" type=
"" overloaded=
"no">
20762 <autodoc>AddTraceMask(String str)
</autodoc>
20764 <param name=
"str" type=
"String" default=
""/>
20767 <staticmethod name=
"RemoveTraceMask" type=
"" overloaded=
"no">
20768 <autodoc>RemoveTraceMask(String str)
</autodoc>
20770 <param name=
"str" type=
"String" default=
""/>
20773 <staticmethod name=
"ClearTraceMasks" type=
"" overloaded=
"no">
20774 <autodoc>ClearTraceMasks()
</autodoc>
20776 <staticmethod name=
"GetTraceMasks" type=
"wxArrayString" overloaded=
"no">
20777 <autodoc>GetTraceMasks() -
> wxArrayString
</autodoc>
20779 <staticmethod name=
"SetTimestamp" type=
"" overloaded=
"no">
20780 <autodoc>SetTimestamp(wxChar ts)
</autodoc>
20782 <param name=
"ts" type=
"wxChar" default=
""/>
20785 <staticmethod name=
"GetVerbose" type=
"bool" overloaded=
"no">
20786 <autodoc>GetVerbose() -
> bool
</autodoc>
20788 <staticmethod name=
"GetTraceMask" type=
"wxTraceMask" overloaded=
"no">
20789 <autodoc>GetTraceMask() -
> wxTraceMask
</autodoc>
20791 <staticmethod name=
"IsAllowedTraceMask" type=
"bool" overloaded=
"no">
20792 <autodoc>IsAllowedTraceMask(wxChar mask) -
> bool
</autodoc>
20794 <param name=
"mask" type=
"wxChar" default=
""/>
20797 <staticmethod name=
"GetLogLevel" type=
"wxLogLevel" overloaded=
"no">
20798 <autodoc>GetLogLevel() -
> wxLogLevel
</autodoc>
20800 <staticmethod name=
"GetTimestamp" type=
"wxChar" overloaded=
"no">
20801 <autodoc>GetTimestamp() -
> wxChar
</autodoc>
20803 <staticmethod name=
"TimeStamp" type=
"String" overloaded=
"no">
20804 <autodoc>TimeStamp() -
> String
</autodoc>
20806 <method name=
"Destroy" type=
"" overloaded=
"no">
20807 <autodoc>Destroy()
</autodoc>
20810 <class name=
"LogStderr" oldname=
"wxLogStderr" module=
"misc">
20811 <baseclass name=
"Log"/>
20812 <constructor name=
"LogStderr" overloaded=
"no">
20813 <autodoc>__init__() -
> LogStderr
</autodoc>
20816 <class name=
"LogTextCtrl" oldname=
"wxLogTextCtrl" module=
"misc">
20817 <baseclass name=
"Log"/>
20818 <constructor name=
"LogTextCtrl" overloaded=
"no">
20819 <autodoc>__init__(wxTextCtrl pTextCtrl) -
> LogTextCtrl
</autodoc>
20821 <param name=
"pTextCtrl" type=
"TextCtrl" default=
""/>
20825 <class name=
"LogGui" oldname=
"wxLogGui" module=
"misc">
20826 <baseclass name=
"Log"/>
20827 <constructor name=
"LogGui" overloaded=
"no">
20828 <autodoc>__init__() -
> LogGui
</autodoc>
20831 <class name=
"LogWindow" oldname=
"wxLogWindow" module=
"misc">
20832 <baseclass name=
"Log"/>
20833 <constructor name=
"LogWindow" overloaded=
"no">
20834 <autodoc>__init__(wxFrame pParent, String szTitle, bool bShow=True, bool bPassToOld=True) -
> LogWindow
</autodoc>
20836 <param name=
"pParent" type=
"Frame" default=
""/>
20837 <param name=
"szTitle" type=
"String" default=
""/>
20838 <param name=
"bShow" type=
"bool" default=
"True"/>
20839 <param name=
"bPassToOld" type=
"bool" default=
"True"/>
20842 <method name=
"Show" type=
"" overloaded=
"no">
20843 <autodoc>Show(bool bShow=True)
</autodoc>
20845 <param name=
"bShow" type=
"bool" default=
"True"/>
20848 <method name=
"GetFrame" type=
"Frame" overloaded=
"no">
20849 <autodoc>GetFrame() -
> wxFrame
</autodoc>
20851 <method name=
"GetOldLog" type=
"Log" overloaded=
"no">
20852 <autodoc>GetOldLog() -
> Log
</autodoc>
20854 <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no">
20855 <autodoc>IsPassingMessages() -
> bool
</autodoc>
20857 <method name=
"PassMessages" type=
"" overloaded=
"no">
20858 <autodoc>PassMessages(bool bDoPass)
</autodoc>
20860 <param name=
"bDoPass" type=
"bool" default=
""/>
20864 <class name=
"LogChain" oldname=
"wxLogChain" module=
"misc">
20865 <baseclass name=
"Log"/>
20866 <constructor name=
"LogChain" overloaded=
"no">
20867 <autodoc>__init__(Log logger) -
> LogChain
</autodoc>
20869 <param name=
"logger" type=
"Log" default=
""/>
20872 <method name=
"SetLog" type=
"" overloaded=
"no">
20873 <autodoc>SetLog(Log logger)
</autodoc>
20875 <param name=
"logger" type=
"Log" default=
""/>
20878 <method name=
"PassMessages" type=
"" overloaded=
"no">
20879 <autodoc>PassMessages(bool bDoPass)
</autodoc>
20881 <param name=
"bDoPass" type=
"bool" default=
""/>
20884 <method name=
"IsPassingMessages" type=
"bool" overloaded=
"no">
20885 <autodoc>IsPassingMessages() -
> bool
</autodoc>
20887 <method name=
"GetOldLog" type=
"Log" overloaded=
"no">
20888 <autodoc>GetOldLog() -
> Log
</autodoc>
20891 <method name=
"SysErrorCode" oldname=
"wxSysErrorCode" type=
"unsigned long" overloaded=
"no">
20892 <autodoc>SysErrorCode() -
> unsigned long
</autodoc>
20894 <method name=
"SysErrorMsg" oldname=
"wxSysErrorMsg" type=
"String" overloaded=
"no">
20895 <autodoc>SysErrorMsg(unsigned long nErrCode=
0) -
> String
</autodoc>
20897 <param name=
"nErrCode" type=
"unsigned long" default=
"0"/>
20900 <method name=
"LogFatalError" oldname=
"wxLogFatalError" type=
"" overloaded=
"no">
20901 <autodoc>LogFatalError(String msg)
</autodoc>
20903 <param name=
"msg" type=
"String" default=
""/>
20906 <method name=
"LogError" oldname=
"wxLogError" type=
"" overloaded=
"no">
20907 <autodoc>LogError(String msg)
</autodoc>
20909 <param name=
"msg" type=
"String" default=
""/>
20912 <method name=
"LogWarning" oldname=
"wxLogWarning" type=
"" overloaded=
"no">
20913 <autodoc>LogWarning(String msg)
</autodoc>
20915 <param name=
"msg" type=
"String" default=
""/>
20918 <method name=
"LogMessage" oldname=
"wxLogMessage" type=
"" overloaded=
"no">
20919 <autodoc>LogMessage(String msg)
</autodoc>
20921 <param name=
"msg" type=
"String" default=
""/>
20924 <method name=
"LogInfo" oldname=
"wxLogInfo" type=
"" overloaded=
"no">
20925 <autodoc>LogInfo(String msg)
</autodoc>
20927 <param name=
"msg" type=
"String" default=
""/>
20930 <method name=
"LogDebug" oldname=
"wxLogDebug" type=
"" overloaded=
"no">
20931 <autodoc>LogDebug(String msg)
</autodoc>
20933 <param name=
"msg" type=
"String" default=
""/>
20936 <method name=
"LogVerbose" oldname=
"wxLogVerbose" type=
"" overloaded=
"no">
20937 <autodoc>LogVerbose(String msg)
</autodoc>
20939 <param name=
"msg" type=
"String" default=
""/>
20942 <method name=
"LogStatus" oldname=
"wxLogStatus" type=
"" overloaded=
"no">
20943 <autodoc>LogStatus(String msg)
</autodoc>
20945 <param name=
"msg" type=
"String" default=
""/>
20948 <method name=
"LogStatusFrame" oldname=
"wxLogStatus" type=
"" overloaded=
"no">
20949 <autodoc>LogStatusFrame(wxFrame pFrame, String msg)
</autodoc>
20951 <param name=
"pFrame" type=
"Frame" default=
""/>
20952 <param name=
"msg" type=
"String" default=
""/>
20955 <method name=
"LogSysError" oldname=
"wxLogSysError" type=
"" overloaded=
"no">
20956 <autodoc>LogSysError(String msg)
</autodoc>
20958 <param name=
"msg" type=
"String" default=
""/>
20961 <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes">
20963 <param name=
"mask" type=
"unsigned long" default=
""/>
20964 <param name=
"msg" type=
"String" default=
""/>
20967 <method name=
"LogTrace" oldname=
"wxLogTrace" type=
"" overloaded=
"yes">
20968 <autodoc>LogTrace(unsigned long mask, String msg)
20969 LogTrace(String mask, String msg)
</autodoc>
20971 <param name=
"mask" type=
"String" default=
""/>
20972 <param name=
"msg" type=
"String" default=
""/>
20975 <method name=
"LogGeneric" oldname=
"wxLogGeneric" type=
"" overloaded=
"no">
20976 <autodoc>LogGeneric(unsigned long level, String msg)
</autodoc>
20978 <param name=
"level" type=
"unsigned long" default=
""/>
20979 <param name=
"msg" type=
"String" default=
""/>
20982 <method name=
"SafeShowMessage" oldname=
"wxSafeShowMessage" type=
"" overloaded=
"no">
20983 <autodoc>SafeShowMessage(String title, String text)
</autodoc>
20985 <param name=
"title" type=
"String" default=
""/>
20986 <param name=
"text" type=
"String" default=
""/>
20989 <class name=
"LogNull" oldname=
"wxLogNull" module=
"misc">
20990 <constructor name=
"LogNull" overloaded=
"no">
20991 <autodoc>__init__() -
> LogNull
</autodoc>
20993 <destructor name=
"~wxLogNull" overloaded=
"no">
20994 <autodoc>__del__()
</autodoc>
20997 <class name=
"PyLog" oldname=
"wxPyLog" module=
"misc">
20998 <baseclass name=
"Log"/>
20999 <constructor name=
"PyLog" overloaded=
"no">
21000 <autodoc>__init__() -
> PyLog
</autodoc>
21002 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21003 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21005 <param name=
"self" type=
"PyObject" default=
""/>
21006 <param name=
"_class" type=
"PyObject" default=
""/>
21011 #---------------------------------------------------------------------------
21013 <class name=
"Process" oldname=
"wxPyProcess" module=
"misc">
21014 <baseclass name=
"EvtHandler"/>
21015 <constructor name=
"wxPyProcess" overloaded=
"no">
21016 <autodoc>__init__(EvtHandler parent=None, int id=-
1) -
> Process
</autodoc>
21018 <param name=
"parent" type=
"EvtHandler" default=
"NULL"/>
21019 <param name=
"id" type=
"int" default=
"-1"/>
21022 <staticmethod name=
"Kill" type=
"wxKillError" overloaded=
"no">
21023 <autodoc>Kill(int pid, int sig=SIGTERM) -
> int
</autodoc>
21025 <param name=
"pid" type=
"int" default=
""/>
21026 <param name=
"sig" type=
"wxSignal" default=
"wxSIGTERM"/>
21029 <staticmethod name=
"Exists" type=
"bool" overloaded=
"no">
21030 <autodoc>Exists(int pid) -
> bool
</autodoc>
21032 <param name=
"pid" type=
"int" default=
""/>
21035 <staticmethod name=
"Open" type=
"Process" overloaded=
"no">
21036 <autodoc>Open(String cmd, int flags=EXEC_ASYNC) -
> Process
</autodoc>
21038 <param name=
"cmd" type=
"String" default=
""/>
21039 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
21042 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21043 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21045 <param name=
"self" type=
"PyObject" default=
""/>
21046 <param name=
"_class" type=
"PyObject" default=
""/>
21049 <method name=
"base_OnTerminate" type=
"" overloaded=
"no">
21050 <autodoc>base_OnTerminate(int pid, int status)
</autodoc>
21052 <param name=
"pid" type=
"int" default=
""/>
21053 <param name=
"status" type=
"int" default=
""/>
21056 <method name=
"Redirect" type=
"" overloaded=
"no">
21057 <autodoc>Redirect()
</autodoc>
21059 <method name=
"IsRedirected" type=
"bool" overloaded=
"no">
21060 <autodoc>IsRedirected() -
> bool
</autodoc>
21062 <method name=
"Detach" type=
"" overloaded=
"no">
21063 <autodoc>Detach()
</autodoc>
21065 <method name=
"GetInputStream" type=
"wxInputStream" overloaded=
"no">
21066 <autodoc>GetInputStream() -
> InputStream
</autodoc>
21068 <method name=
"GetErrorStream" type=
"wxInputStream" overloaded=
"no">
21069 <autodoc>GetErrorStream() -
> InputStream
</autodoc>
21071 <method name=
"GetOutputStream" type=
"OutputStream" overloaded=
"no">
21072 <autodoc>GetOutputStream() -
> OutputStream
</autodoc>
21074 <method name=
"CloseOutput" type=
"" overloaded=
"no">
21075 <autodoc>CloseOutput()
</autodoc>
21077 <method name=
"IsInputOpened" type=
"bool" overloaded=
"no">
21078 <autodoc>IsInputOpened() -
> bool
</autodoc>
21080 <method name=
"IsInputAvailable" type=
"bool" overloaded=
"no">
21081 <autodoc>IsInputAvailable() -
> bool
</autodoc>
21083 <method name=
"IsErrorAvailable" type=
"bool" overloaded=
"no">
21084 <autodoc>IsErrorAvailable() -
> bool
</autodoc>
21087 <class name=
"ProcessEvent" oldname=
"wxProcessEvent" module=
"misc">
21088 <baseclass name=
"Event"/>
21089 <constructor name=
"ProcessEvent" overloaded=
"no">
21090 <autodoc>__init__(int id=
0, int pid=
0, int exitcode=
0) -
> ProcessEvent
</autodoc>
21092 <param name=
"id" type=
"int" default=
"0"/>
21093 <param name=
"pid" type=
"int" default=
"0"/>
21094 <param name=
"exitcode" type=
"int" default=
"0"/>
21097 <method name=
"GetPid" type=
"int" overloaded=
"no">
21098 <autodoc>GetPid() -
> int
</autodoc>
21100 <method name=
"GetExitCode" type=
"int" overloaded=
"no">
21101 <autodoc>GetExitCode() -
> int
</autodoc>
21103 <property name=
"m_pid" type=
"int" readonly=
"no"/>
21104 <property name=
"m_exitcode" type=
"int" readonly=
"no"/>
21107 EVT_END_PROCESS = wx.PyEventBinder( wxEVT_END_PROCESS,
1 )
21109 <method name=
"Execute" oldname=
"wxExecute" type=
"long" overloaded=
"no">
21110 <autodoc>Execute(String command, int flags=EXEC_ASYNC, Process process=None) -
> long
</autodoc>
21112 <param name=
"command" type=
"String" default=
""/>
21113 <param name=
"flags" type=
"int" default=
"wxEXEC_ASYNC"/>
21114 <param name=
"process" type=
"Process" default=
"NULL"/>
21118 #---------------------------------------------------------------------------
21120 <class name=
"Joystick" oldname=
"wxJoystick" module=
"misc">
21121 <constructor name=
"Joystick" overloaded=
"no">
21122 <autodoc>__init__(int joystick=JOYSTICK1) -
> Joystick
</autodoc>
21124 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
21127 <destructor name=
"~wxJoystick" overloaded=
"no">
21128 <autodoc>__del__()
</autodoc>
21130 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
21131 <autodoc>GetPosition() -
> Point
</autodoc>
21133 <method name=
"GetZPosition" type=
"int" overloaded=
"no">
21134 <autodoc>GetZPosition() -
> int
</autodoc>
21136 <method name=
"GetButtonState" type=
"int" overloaded=
"no">
21137 <autodoc>GetButtonState() -
> int
</autodoc>
21139 <method name=
"GetPOVPosition" type=
"int" overloaded=
"no">
21140 <autodoc>GetPOVPosition() -
> int
</autodoc>
21142 <method name=
"GetPOVCTSPosition" type=
"int" overloaded=
"no">
21143 <autodoc>GetPOVCTSPosition() -
> int
</autodoc>
21145 <method name=
"GetRudderPosition" type=
"int" overloaded=
"no">
21146 <autodoc>GetRudderPosition() -
> int
</autodoc>
21148 <method name=
"GetUPosition" type=
"int" overloaded=
"no">
21149 <autodoc>GetUPosition() -
> int
</autodoc>
21151 <method name=
"GetVPosition" type=
"int" overloaded=
"no">
21152 <autodoc>GetVPosition() -
> int
</autodoc>
21154 <method name=
"GetMovementThreshold" type=
"int" overloaded=
"no">
21155 <autodoc>GetMovementThreshold() -
> int
</autodoc>
21157 <method name=
"SetMovementThreshold" type=
"" overloaded=
"no">
21158 <autodoc>SetMovementThreshold(int threshold)
</autodoc>
21160 <param name=
"threshold" type=
"int" default=
""/>
21163 <method name=
"IsOk" type=
"bool" overloaded=
"no">
21164 <autodoc>IsOk() -
> bool
</autodoc>
21166 <method name=
"GetNumberJoysticks" type=
"int" overloaded=
"no">
21167 <autodoc>GetNumberJoysticks() -
> int
</autodoc>
21169 <method name=
"GetManufacturerId" type=
"int" overloaded=
"no">
21170 <autodoc>GetManufacturerId() -
> int
</autodoc>
21172 <method name=
"GetProductId" type=
"int" overloaded=
"no">
21173 <autodoc>GetProductId() -
> int
</autodoc>
21175 <method name=
"GetProductName" type=
"String" overloaded=
"no">
21176 <autodoc>GetProductName() -
> String
</autodoc>
21178 <method name=
"GetXMin" type=
"int" overloaded=
"no">
21179 <autodoc>GetXMin() -
> int
</autodoc>
21181 <method name=
"GetYMin" type=
"int" overloaded=
"no">
21182 <autodoc>GetYMin() -
> int
</autodoc>
21184 <method name=
"GetZMin" type=
"int" overloaded=
"no">
21185 <autodoc>GetZMin() -
> int
</autodoc>
21187 <method name=
"GetXMax" type=
"int" overloaded=
"no">
21188 <autodoc>GetXMax() -
> int
</autodoc>
21190 <method name=
"GetYMax" type=
"int" overloaded=
"no">
21191 <autodoc>GetYMax() -
> int
</autodoc>
21193 <method name=
"GetZMax" type=
"int" overloaded=
"no">
21194 <autodoc>GetZMax() -
> int
</autodoc>
21196 <method name=
"GetNumberButtons" type=
"int" overloaded=
"no">
21197 <autodoc>GetNumberButtons() -
> int
</autodoc>
21199 <method name=
"GetNumberAxes" type=
"int" overloaded=
"no">
21200 <autodoc>GetNumberAxes() -
> int
</autodoc>
21202 <method name=
"GetMaxButtons" type=
"int" overloaded=
"no">
21203 <autodoc>GetMaxButtons() -
> int
</autodoc>
21205 <method name=
"GetMaxAxes" type=
"int" overloaded=
"no">
21206 <autodoc>GetMaxAxes() -
> int
</autodoc>
21208 <method name=
"GetPollingMin" type=
"int" overloaded=
"no">
21209 <autodoc>GetPollingMin() -
> int
</autodoc>
21211 <method name=
"GetPollingMax" type=
"int" overloaded=
"no">
21212 <autodoc>GetPollingMax() -
> int
</autodoc>
21214 <method name=
"GetRudderMin" type=
"int" overloaded=
"no">
21215 <autodoc>GetRudderMin() -
> int
</autodoc>
21217 <method name=
"GetRudderMax" type=
"int" overloaded=
"no">
21218 <autodoc>GetRudderMax() -
> int
</autodoc>
21220 <method name=
"GetUMin" type=
"int" overloaded=
"no">
21221 <autodoc>GetUMin() -
> int
</autodoc>
21223 <method name=
"GetUMax" type=
"int" overloaded=
"no">
21224 <autodoc>GetUMax() -
> int
</autodoc>
21226 <method name=
"GetVMin" type=
"int" overloaded=
"no">
21227 <autodoc>GetVMin() -
> int
</autodoc>
21229 <method name=
"GetVMax" type=
"int" overloaded=
"no">
21230 <autodoc>GetVMax() -
> int
</autodoc>
21232 <method name=
"HasRudder" type=
"bool" overloaded=
"no">
21233 <autodoc>HasRudder() -
> bool
</autodoc>
21235 <method name=
"HasZ" type=
"bool" overloaded=
"no">
21236 <autodoc>HasZ() -
> bool
</autodoc>
21238 <method name=
"HasU" type=
"bool" overloaded=
"no">
21239 <autodoc>HasU() -
> bool
</autodoc>
21241 <method name=
"HasV" type=
"bool" overloaded=
"no">
21242 <autodoc>HasV() -
> bool
</autodoc>
21244 <method name=
"HasPOV" type=
"bool" overloaded=
"no">
21245 <autodoc>HasPOV() -
> bool
</autodoc>
21247 <method name=
"HasPOV4Dir" type=
"bool" overloaded=
"no">
21248 <autodoc>HasPOV4Dir() -
> bool
</autodoc>
21250 <method name=
"HasPOVCTS" type=
"bool" overloaded=
"no">
21251 <autodoc>HasPOVCTS() -
> bool
</autodoc>
21253 <method name=
"SetCapture" type=
"bool" overloaded=
"no">
21254 <autodoc>SetCapture(Window win, int pollingFreq=
0) -
> bool
</autodoc>
21256 <param name=
"win" type=
"Window" default=
""/>
21257 <param name=
"pollingFreq" type=
"int" default=
"0"/>
21260 <method name=
"ReleaseCapture" type=
"bool" overloaded=
"no">
21261 <autodoc>ReleaseCapture() -
> bool
</autodoc>
21264 <class name=
"JoystickEvent" oldname=
"wxJoystickEvent" module=
"misc">
21265 <baseclass name=
"Event"/>
21266 <constructor name=
"JoystickEvent" overloaded=
"no">
21267 <autodoc>__init__(wxEventType type=wxEVT_NULL, int state=
0, int joystick=JOYSTICK1,
21268 int change=
0) -
> JoystickEvent
</autodoc>
21270 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
21271 <param name=
"state" type=
"int" default=
"0"/>
21272 <param name=
"joystick" type=
"int" default=
"wxJOYSTICK1"/>
21273 <param name=
"change" type=
"int" default=
"0"/>
21276 <property name=
"m_pos" type=
"Point" readonly=
"no"/>
21277 <property name=
"m_zPosition" type=
"int" readonly=
"no"/>
21278 <property name=
"m_buttonChange" type=
"int" readonly=
"no"/>
21279 <property name=
"m_buttonState" type=
"int" readonly=
"no"/>
21280 <property name=
"m_joyStick" type=
"int" readonly=
"no"/>
21281 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
21282 <autodoc>GetPosition() -
> Point
</autodoc>
21284 <method name=
"GetZPosition" type=
"int" overloaded=
"no">
21285 <autodoc>GetZPosition() -
> int
</autodoc>
21287 <method name=
"GetButtonState" type=
"int" overloaded=
"no">
21288 <autodoc>GetButtonState() -
> int
</autodoc>
21290 <method name=
"GetButtonChange" type=
"int" overloaded=
"no">
21291 <autodoc>GetButtonChange() -
> int
</autodoc>
21293 <method name=
"GetJoystick" type=
"int" overloaded=
"no">
21294 <autodoc>GetJoystick() -
> int
</autodoc>
21296 <method name=
"SetJoystick" type=
"" overloaded=
"no">
21297 <autodoc>SetJoystick(int stick)
</autodoc>
21299 <param name=
"stick" type=
"int" default=
""/>
21302 <method name=
"SetButtonState" type=
"" overloaded=
"no">
21303 <autodoc>SetButtonState(int state)
</autodoc>
21305 <param name=
"state" type=
"int" default=
""/>
21308 <method name=
"SetButtonChange" type=
"" overloaded=
"no">
21309 <autodoc>SetButtonChange(int change)
</autodoc>
21311 <param name=
"change" type=
"int" default=
""/>
21314 <method name=
"SetPosition" type=
"" overloaded=
"no">
21315 <autodoc>SetPosition(Point pos)
</autodoc>
21317 <param name=
"pos" type=
"Point" default=
""/>
21320 <method name=
"SetZPosition" type=
"" overloaded=
"no">
21321 <autodoc>SetZPosition(int zPos)
</autodoc>
21323 <param name=
"zPos" type=
"int" default=
""/>
21326 <method name=
"IsButton" type=
"bool" overloaded=
"no">
21327 <autodoc>IsButton() -
> bool
</autodoc>
21329 <method name=
"IsMove" type=
"bool" overloaded=
"no">
21330 <autodoc>IsMove() -
> bool
</autodoc>
21332 <method name=
"IsZMove" type=
"bool" overloaded=
"no">
21333 <autodoc>IsZMove() -
> bool
</autodoc>
21335 <method name=
"ButtonDown" type=
"bool" overloaded=
"no">
21336 <autodoc>ButtonDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21338 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21341 <method name=
"ButtonUp" type=
"bool" overloaded=
"no">
21342 <autodoc>ButtonUp(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21344 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21347 <method name=
"ButtonIsDown" type=
"bool" overloaded=
"no">
21348 <autodoc>ButtonIsDown(int but=JOY_BUTTON_ANY) -
> bool
</autodoc>
21350 <param name=
"but" type=
"int" default=
"wxJOY_BUTTON_ANY"/>
21355 EVT_JOY_BUTTON_DOWN = wx.PyEventBinder( wxEVT_JOY_BUTTON_DOWN )
21356 EVT_JOY_BUTTON_UP = wx.PyEventBinder( wxEVT_JOY_BUTTON_UP )
21357 EVT_JOY_MOVE = wx.PyEventBinder( wxEVT_JOY_MOVE )
21358 EVT_JOY_ZMOVE = wx.PyEventBinder( wxEVT_JOY_ZMOVE )
21360 EVT_JOYSTICK_EVENTS = wx.PyEventBinder([ wxEVT_JOY_BUTTON_DOWN,
21361 wxEVT_JOY_BUTTON_UP,
21368 #---------------------------------------------------------------------------
21370 <class name=
"Sound" oldname=
"wxSound" module=
"misc">
21371 <constructor name=
"Sound" overloaded=
"yes"/>
21372 <constructor name=
"Sound" overloaded=
"yes">
21374 <param name=
"fileName" type=
"String" default=
""/>
21375 <param name=
"isResource" type=
"bool" default=
"false"/>
21378 <constructor name=
"Sound" overloaded=
"yes">
21379 <autodoc>__init__() -
> Sound
21380 __init__(String fileName, bool isResource=false) -
> Sound
21381 __init__(int size, wxByte data) -
> Sound
</autodoc>
21383 <param name=
"size" type=
"int" default=
""/>
21384 <param name=
"data" type=
"wxByte" default=
""/>
21387 <destructor name=
"~wxSound" overloaded=
"no">
21388 <autodoc>__del__()
</autodoc>
21390 <method name=
"Create" type=
"bool" overloaded=
"yes">
21392 <param name=
"fileName" type=
"String" default=
""/>
21393 <param name=
"isResource" type=
"bool" default=
"false"/>
21396 <method name=
"Create" type=
"bool" overloaded=
"yes">
21397 <autodoc>Create(String fileName, bool isResource=false) -
> bool
21398 Create(int size, wxByte data) -
> bool
</autodoc>
21400 <param name=
"size" type=
"int" default=
""/>
21401 <param name=
"data" type=
"wxByte" default=
""/>
21404 <method name=
"IsOk" type=
"bool" overloaded=
"no">
21405 <autodoc>IsOk() -
> bool
</autodoc>
21407 <method name=
"Play" type=
"bool" overloaded=
"no">
21408 <autodoc>Play(unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
21410 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
21413 <staticmethod name=
"PlaySound" type=
"bool" overloaded=
"no">
21414 <autodoc>PlaySound(String filename, unsigned int flags=SOUND_ASYNC) -
> bool
</autodoc>
21416 <param name=
"filename" type=
"String" default=
""/>
21417 <param name=
"flags" type=
"unsigned int" default=
"wxSOUND_ASYNC"/>
21420 <staticmethod name=
"Stop" type=
"" overloaded=
"no">
21421 <autodoc>Stop()
</autodoc>
21425 #---------------------------------------------------------------------------
21427 <class name=
"FileTypeInfo" oldname=
"wxFileTypeInfo" module=
"misc">
21428 <constructor name=
"FileTypeInfo" overloaded=
"no">
21429 <autodoc>__init__(String mimeType, String openCmd, String printCmd, String desc) -
> FileTypeInfo
</autodoc>
21431 <param name=
"mimeType" type=
"String" default=
""/>
21432 <param name=
"openCmd" type=
"String" default=
""/>
21433 <param name=
"printCmd" type=
"String" default=
""/>
21434 <param name=
"desc" type=
"String" default=
""/>
21437 <constructor name=
"FileTypeInfoSequence" overloaded=
"no">
21438 <autodoc>FileTypeInfoSequence(wxArrayString sArray) -
> FileTypeInfo
</autodoc>
21440 <param name=
"sArray" type=
"wxArrayString" default=
""/>
21443 <constructor name=
"NullFileTypeInfo" overloaded=
"no">
21444 <autodoc>NullFileTypeInfo() -
> FileTypeInfo
</autodoc>
21446 <method name=
"IsValid" type=
"bool" overloaded=
"no">
21447 <autodoc>IsValid() -
> bool
</autodoc>
21449 <method name=
"SetIcon" type=
"" overloaded=
"no">
21450 <autodoc>SetIcon(String iconFile, int iconIndex=
0)
</autodoc>
21452 <param name=
"iconFile" type=
"String" default=
""/>
21453 <param name=
"iconIndex" type=
"int" default=
"0"/>
21456 <method name=
"SetShortDesc" type=
"" overloaded=
"no">
21457 <autodoc>SetShortDesc(String shortDesc)
</autodoc>
21459 <param name=
"shortDesc" type=
"String" default=
""/>
21462 <method name=
"GetMimeType" type=
"String" overloaded=
"no">
21463 <autodoc>GetMimeType() -
> String
</autodoc>
21465 <method name=
"GetOpenCommand" type=
"String" overloaded=
"no">
21466 <autodoc>GetOpenCommand() -
> String
</autodoc>
21468 <method name=
"GetPrintCommand" type=
"String" overloaded=
"no">
21469 <autodoc>GetPrintCommand() -
> String
</autodoc>
21471 <method name=
"GetShortDesc" type=
"String" overloaded=
"no">
21472 <autodoc>GetShortDesc() -
> String
</autodoc>
21474 <method name=
"GetDescription" type=
"String" overloaded=
"no">
21475 <autodoc>GetDescription() -
> String
</autodoc>
21477 <method name=
"GetExtensions" type=
"wxArrayString" overloaded=
"no">
21478 <autodoc>GetExtensions() -
> wxArrayString
</autodoc>
21480 <method name=
"GetExtensionsCount" type=
"int" overloaded=
"no">
21481 <autodoc>GetExtensionsCount() -
> int
</autodoc>
21483 <method name=
"GetIconFile" type=
"String" overloaded=
"no">
21484 <autodoc>GetIconFile() -
> String
</autodoc>
21486 <method name=
"GetIconIndex" type=
"int" overloaded=
"no">
21487 <autodoc>GetIconIndex() -
> int
</autodoc>
21490 <class name=
"FileType" oldname=
"wxFileType" module=
"misc">
21491 <constructor name=
"FileType" overloaded=
"no">
21492 <autodoc>__init__(FileTypeInfo ftInfo) -
> FileType
</autodoc>
21494 <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/>
21497 <destructor name=
"~wxFileType" overloaded=
"no">
21498 <autodoc>__del__()
</autodoc>
21500 <method name=
"GetMimeType" type=
"PyObject" overloaded=
"no">
21501 <autodoc>GetMimeType() -
> PyObject
</autodoc>
21503 <method name=
"GetMimeTypes" type=
"PyObject" overloaded=
"no">
21504 <autodoc>GetMimeTypes() -
> PyObject
</autodoc>
21506 <method name=
"GetExtensions" type=
"PyObject" overloaded=
"no">
21507 <autodoc>GetExtensions() -
> PyObject
</autodoc>
21509 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
21510 <autodoc>GetIcon() -
> Icon
</autodoc>
21512 <method name=
"GetIconInfo" type=
"PyObject" overloaded=
"no">
21513 <autodoc>GetIconInfo() -
> PyObject
</autodoc>
21515 <method name=
"GetDescription" type=
"PyObject" overloaded=
"no">
21516 <autodoc>GetDescription() -
> PyObject
</autodoc>
21518 <method name=
"GetOpenCommand" type=
"PyObject" overloaded=
"no">
21519 <autodoc>GetOpenCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21521 <param name=
"filename" type=
"String" default=
""/>
21522 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21525 <method name=
"GetPrintCommand" type=
"PyObject" overloaded=
"no">
21526 <autodoc>GetPrintCommand(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21528 <param name=
"filename" type=
"String" default=
""/>
21529 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21532 <method name=
"GetAllCommands" type=
"PyObject" overloaded=
"no">
21533 <autodoc>GetAllCommands(String filename, String mimetype=EmptyString) -
> PyObject
</autodoc>
21535 <param name=
"filename" type=
"String" default=
""/>
21536 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21539 <method name=
"SetCommand" type=
"bool" overloaded=
"no">
21540 <autodoc>SetCommand(String cmd, String verb, bool overwriteprompt=True) -
> bool
</autodoc>
21542 <param name=
"cmd" type=
"String" default=
""/>
21543 <param name=
"verb" type=
"String" default=
""/>
21544 <param name=
"overwriteprompt" type=
"bool" default=
"True"/>
21547 <method name=
"SetDefaultIcon" type=
"bool" overloaded=
"no">
21548 <autodoc>SetDefaultIcon(String cmd=EmptyString, int index=
0) -
> bool
</autodoc>
21550 <param name=
"cmd" type=
"String" default=
"wxPyEmptyString"/>
21551 <param name=
"index" type=
"int" default=
"0"/>
21554 <method name=
"Unassociate" type=
"bool" overloaded=
"no">
21555 <autodoc>Unassociate() -
> bool
</autodoc>
21557 <staticmethod name=
"ExpandCommand" type=
"String" overloaded=
"no">
21558 <autodoc>ExpandCommand(String command, String filename, String mimetype=EmptyString) -
> String
</autodoc>
21560 <param name=
"command" type=
"String" default=
""/>
21561 <param name=
"filename" type=
"String" default=
""/>
21562 <param name=
"mimetype" type=
"String" default=
"wxPyEmptyString"/>
21566 <class name=
"MimeTypesManager" oldname=
"wxMimeTypesManager" module=
"misc">
21567 <constructor name=
"MimeTypesManager" overloaded=
"no">
21568 <autodoc>__init__() -
> MimeTypesManager
</autodoc>
21570 <destructor name=
"~wxMimeTypesManager" overloaded=
"no">
21571 <autodoc>__del__()
</autodoc>
21573 <staticmethod name=
"IsOfType" type=
"bool" overloaded=
"no">
21574 <autodoc>IsOfType(String mimeType, String wildcard) -
> bool
</autodoc>
21576 <param name=
"mimeType" type=
"String" default=
""/>
21577 <param name=
"wildcard" type=
"String" default=
""/>
21580 <method name=
"Initialize" type=
"" overloaded=
"no">
21581 <autodoc>Initialize(int mailcapStyle=MAILCAP_ALL, String extraDir=EmptyString)
</autodoc>
21583 <param name=
"mailcapStyle" type=
"int" default=
"wxMAILCAP_ALL"/>
21584 <param name=
"extraDir" type=
"String" default=
"wxPyEmptyString"/>
21587 <method name=
"ClearData" type=
"" overloaded=
"no">
21588 <autodoc>ClearData()
</autodoc>
21590 <method name=
"GetFileTypeFromExtension" type=
"FileType" overloaded=
"no">
21591 <autodoc>GetFileTypeFromExtension(String ext) -
> FileType
</autodoc>
21593 <param name=
"ext" type=
"String" default=
""/>
21596 <method name=
"GetFileTypeFromMimeType" type=
"FileType" overloaded=
"no">
21597 <autodoc>GetFileTypeFromMimeType(String mimeType) -
> FileType
</autodoc>
21599 <param name=
"mimeType" type=
"String" default=
""/>
21602 <method name=
"ReadMailcap" type=
"bool" overloaded=
"no">
21603 <autodoc>ReadMailcap(String filename, bool fallback=False) -
> bool
</autodoc>
21605 <param name=
"filename" type=
"String" default=
""/>
21606 <param name=
"fallback" type=
"bool" default=
"False"/>
21609 <method name=
"ReadMimeTypes" type=
"bool" overloaded=
"no">
21610 <autodoc>ReadMimeTypes(String filename) -
> bool
</autodoc>
21612 <param name=
"filename" type=
"String" default=
""/>
21615 <method name=
"EnumAllFileTypes" type=
"PyObject" overloaded=
"no">
21616 <autodoc>EnumAllFileTypes() -
> PyObject
</autodoc>
21618 <method name=
"AddFallback" type=
"" overloaded=
"no">
21619 <autodoc>AddFallback(FileTypeInfo ft)
</autodoc>
21621 <param name=
"ft" type=
"FileTypeInfo" default=
""/>
21624 <method name=
"Associate" type=
"FileType" overloaded=
"no">
21625 <autodoc>Associate(FileTypeInfo ftInfo) -
> FileType
</autodoc>
21627 <param name=
"ftInfo" type=
"FileTypeInfo" default=
""/>
21630 <method name=
"Unassociate" type=
"bool" overloaded=
"no">
21631 <autodoc>Unassociate(FileType ft) -
> bool
</autodoc>
21633 <param name=
"ft" type=
"FileType" default=
""/>
21638 #---------------------------------------------------------------------------
21640 <class name=
"ArtProvider" oldname=
"wxPyArtProvider" module=
"misc">
21641 <constructor name=
"wxPyArtProvider" overloaded=
"no">
21642 <autodoc>__init__() -
> ArtProvider
</autodoc>
21644 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
21645 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
21647 <param name=
"self" type=
"PyObject" default=
""/>
21648 <param name=
"_class" type=
"PyObject" default=
""/>
21651 <staticmethod name=
"PushProvider" type=
"" overloaded=
"no">
21652 <autodoc>PushProvider(ArtProvider provider)
</autodoc>
21653 <docstring>Add new provider to the top of providers stack.
</docstring>
21655 <param name=
"provider" type=
"ArtProvider" default=
""/>
21658 <staticmethod name=
"PopProvider" type=
"bool" overloaded=
"no">
21659 <autodoc>PopProvider() -
> bool
</autodoc>
21660 <docstring>Remove latest added provider and delete it.
</docstring>
21662 <staticmethod name=
"RemoveProvider" type=
"bool" overloaded=
"no">
21663 <autodoc>RemoveProvider(ArtProvider provider) -
> bool
</autodoc>
21664 <docstring>Remove provider. The provider must have been added previously!
21665 The provider is _not_ deleted.
</docstring>
21667 <param name=
"provider" type=
"ArtProvider" default=
""/>
21670 <staticmethod name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
21671 <autodoc>GetBitmap(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Bitmap
</autodoc>
21672 <docstring>Query the providers for bitmap with given ID and return it. Return
21673 wx.NullBitmap if no provider provides it.
</docstring>
21675 <param name=
"id" type=
"String" default=
""/>
21676 <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/>
21677 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
21680 <staticmethod name=
"GetIcon" type=
"Icon" overloaded=
"no">
21681 <autodoc>GetIcon(String id, String client=ART_OTHER, Size size=DefaultSize) -
> Icon
</autodoc>
21682 <docstring>Query the providers for icon with given ID and return it. Return
21683 wx.NullIcon if no provider provides it.
</docstring>
21685 <param name=
"id" type=
"String" default=
""/>
21686 <param name=
"client" type=
"String" default=
"wxPyART_OTHER"/>
21687 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
21690 <method name=
"Destroy" type=
"" overloaded=
"no">
21691 <autodoc>Destroy()
</autodoc>
21695 #---------------------------------------------------------------------------
21697 <class name=
"ConfigBase" oldname=
"wxConfigBase" module=
"misc">
21698 <docstring>wx.ConfigBase class defines the basic interface of all config
21699 classes. It can not be used by itself (it is an abstract base
21700 class) and you will always use one of its derivations: wx.Config
21703 wx.ConfigBase organizes the items in a tree-like structure
21704 (modeled after the Unix/Dos filesystem). There are groups
21705 (directories) and keys (files). There is always one current
21706 group given by the current path. As in the file system case, to
21707 specify a key in the config class you must use a path to it.
21708 Config classes also support the notion of the current group,
21709 which makes it possible to use relative paths.
21711 Keys are pairs "key_name = value" where value may be of string, integer
21712 floating point or boolean, you can not store binary data without first
21713 encoding it as a string. For performance reasons items should be kept small,
21714 no more than a couple kilobytes.
21716 <destructor name=
"~wxConfigBase" overloaded=
"no">
21717 <autodoc>__del__()
</autodoc>
21719 <staticmethod name=
"Set" type=
"ConfigBase" overloaded=
"no">
21720 <autodoc>Set(ConfigBase config) -
> ConfigBase
</autodoc>
21721 <docstring>Sets the global config object (the one returned by Get) and
21722 returns a reference to the previous global config object.
</docstring>
21724 <param name=
"config" type=
"ConfigBase" default=
""/>
21727 <staticmethod name=
"Get" type=
"ConfigBase" overloaded=
"no">
21728 <autodoc>Get(bool createOnDemand=True) -
> ConfigBase
</autodoc>
21729 <docstring>Returns the current global config object, creating one if neccessary.
</docstring>
21731 <param name=
"createOnDemand" type=
"bool" default=
"True"/>
21734 <staticmethod name=
"Create" type=
"ConfigBase" overloaded=
"no">
21735 <autodoc>Create() -
> ConfigBase
</autodoc>
21736 <docstring>Create and return a new global config object. This function will
21737 create the "best" implementation of wx.Config available for the
21738 current platform.
</docstring>
21740 <staticmethod name=
"DontCreateOnDemand" type=
"" overloaded=
"no">
21741 <autodoc>DontCreateOnDemand()
</autodoc>
21742 <docstring>Should Get() try to create a new log object if there isn't a current one?
</docstring>
21744 <method name=
"SetPath" type=
"" overloaded=
"no">
21745 <autodoc>SetPath(String path)
</autodoc>
21746 <docstring>Set current path: if the first character is '/', it's the absolute path,
21747 otherwise it's a relative path. '..' is supported. If the strPath
21748 doesn't exist it is created.
</docstring>
21750 <param name=
"path" type=
"String" default=
""/>
21753 <method name=
"GetPath" type=
"String" overloaded=
"no">
21754 <autodoc>GetPath() -
> String
</autodoc>
21755 <docstring>Retrieve the current path (always as absolute path)
</docstring>
21757 <method name=
"GetFirstGroup" type=
"PyObject" overloaded=
"no">
21758 <autodoc>GetFirstGroup() -
> (more, value, index)
</autodoc>
21759 <docstring>Allows enumerating the subgroups in a config object. Returns
21760 a tuple containing a flag indicating there are more items, the
21761 name of the current item, and an index to pass to GetNextGroup to
21762 fetch the next item.
</docstring>
21764 <method name=
"GetNextGroup" type=
"PyObject" overloaded=
"no">
21765 <autodoc>GetNextGroup(long index) -
> (more, value, index)
</autodoc>
21766 <docstring>Allows enumerating the subgroups in a config object. Returns
21767 a tuple containing a flag indicating there are more items, the
21768 name of the current item, and an index to pass to GetNextGroup to
21769 fetch the next item.
</docstring>
21771 <param name=
"index" type=
"long" default=
""/>
21774 <method name=
"GetFirstEntry" type=
"PyObject" overloaded=
"no">
21775 <autodoc>GetFirstEntry() -
> (more, value, index)
</autodoc>
21776 <docstring>Allows enumerating the entries in the current group in a config
21777 object. Returns a tuple containing a flag indicating there are
21778 more items, the name of the current item, and an index to pass to
21779 GetNextGroup to fetch the next item.
</docstring>
21781 <method name=
"GetNextEntry" type=
"PyObject" overloaded=
"no">
21782 <autodoc>GetNextEntry(long index) -
> (more, value, index)
</autodoc>
21783 <docstring>Allows enumerating the entries in the current group in a config
21784 object. Returns a tuple containing a flag indicating there are
21785 more items, the name of the current item, and an index to pass to
21786 GetNextGroup to fetch the next item.
</docstring>
21788 <param name=
"index" type=
"long" default=
""/>
21791 <method name=
"GetNumberOfEntries" type=
"size_t" overloaded=
"no">
21792 <autodoc>GetNumberOfEntries(bool recursive=False) -
> size_t
</autodoc>
21793 <docstring>Get the number of entries in the current group, with or
21794 without its subgroups.
</docstring>
21796 <param name=
"recursive" type=
"bool" default=
"False"/>
21799 <method name=
"GetNumberOfGroups" type=
"size_t" overloaded=
"no">
21800 <autodoc>GetNumberOfGroups(bool recursive=False) -
> size_t
</autodoc>
21801 <docstring>Get the number of subgroups in the current group, with or
21802 without its subgroups.
</docstring>
21804 <param name=
"recursive" type=
"bool" default=
"False"/>
21807 <method name=
"HasGroup" type=
"bool" overloaded=
"no">
21808 <autodoc>HasGroup(String name) -
> bool
</autodoc>
21809 <docstring>Returns True if the group by this name exists
</docstring>
21811 <param name=
"name" type=
"String" default=
""/>
21814 <method name=
"HasEntry" type=
"bool" overloaded=
"no">
21815 <autodoc>HasEntry(String name) -
> bool
</autodoc>
21816 <docstring>Returns True if the entry by this name exists
</docstring>
21818 <param name=
"name" type=
"String" default=
""/>
21821 <method name=
"Exists" type=
"bool" overloaded=
"no">
21822 <autodoc>Exists(String name) -
> bool
</autodoc>
21823 <docstring>Returns True if either a group or an entry with a given name exists
</docstring>
21825 <param name=
"name" type=
"String" default=
""/>
21828 <method name=
"GetEntryType" type=
"wxConfigBase::EntryType" overloaded=
"no">
21829 <autodoc>GetEntryType(String name) -
> int
</autodoc>
21830 <docstring>Get the type of the entry. Returns one of the wx.Config.Type_XXX values.
</docstring>
21832 <param name=
"name" type=
"String" default=
""/>
21835 <method name=
"Read" type=
"String" overloaded=
"no">
21836 <autodoc>Read(String key, String defaultVal=EmptyString) -
> String
</autodoc>
21837 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21839 <param name=
"key" type=
"String" default=
""/>
21840 <param name=
"defaultVal" type=
"String" default=
"wxPyEmptyString"/>
21843 <method name=
"ReadInt" type=
"long" overloaded=
"no">
21844 <autodoc>ReadInt(String key, long defaultVal=
0) -
> long
</autodoc>
21845 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21847 <param name=
"key" type=
"String" default=
""/>
21848 <param name=
"defaultVal" type=
"long" default=
"0"/>
21851 <method name=
"ReadFloat" type=
"double" overloaded=
"no">
21852 <autodoc>ReadFloat(String key, double defaultVal=
0.0) -
> double
</autodoc>
21853 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21855 <param name=
"key" type=
"String" default=
""/>
21856 <param name=
"defaultVal" type=
"double" default=
"0.0"/>
21859 <method name=
"ReadBool" type=
"bool" overloaded=
"no">
21860 <autodoc>ReadBool(String key, bool defaultVal=False) -
> bool
</autodoc>
21861 <docstring>Returns the value of key if it exists, defaultVal otherwise.
</docstring>
21863 <param name=
"key" type=
"String" default=
""/>
21864 <param name=
"defaultVal" type=
"bool" default=
"False"/>
21867 <method name=
"Write" type=
"bool" overloaded=
"no">
21868 <autodoc>Write(String key, String value) -
> bool
</autodoc>
21869 <docstring>write the value (return True on success)
</docstring>
21871 <param name=
"key" type=
"String" default=
""/>
21872 <param name=
"value" type=
"String" default=
""/>
21875 <method name=
"WriteInt" type=
"bool" overloaded=
"no">
21876 <autodoc>WriteInt(String key, long value) -
> bool
</autodoc>
21877 <docstring>write the value (return True on success)
</docstring>
21879 <param name=
"key" type=
"String" default=
""/>
21880 <param name=
"value" type=
"long" default=
""/>
21883 <method name=
"WriteFloat" type=
"bool" overloaded=
"no">
21884 <autodoc>WriteFloat(String key, double value) -
> bool
</autodoc>
21885 <docstring>write the value (return True on success)
</docstring>
21887 <param name=
"key" type=
"String" default=
""/>
21888 <param name=
"value" type=
"double" default=
""/>
21891 <method name=
"WriteBool" type=
"bool" overloaded=
"no">
21892 <autodoc>WriteBool(String key, bool value) -
> bool
</autodoc>
21893 <docstring>write the value (return True on success)
</docstring>
21895 <param name=
"key" type=
"String" default=
""/>
21896 <param name=
"value" type=
"bool" default=
""/>
21899 <method name=
"Flush" type=
"bool" overloaded=
"no">
21900 <autodoc>Flush(bool currentOnly=False) -
> bool
</autodoc>
21901 <docstring>permanently writes all changes
</docstring>
21903 <param name=
"currentOnly" type=
"bool" default=
"False"/>
21906 <method name=
"RenameEntry" type=
"bool" overloaded=
"no">
21907 <autodoc>RenameEntry(String oldName, String newName) -
> bool
</autodoc>
21908 <docstring>Rename an entry. Returns False on failure (probably because the new
21909 name is already taken by an existing entry)
</docstring>
21911 <param name=
"oldName" type=
"String" default=
""/>
21912 <param name=
"newName" type=
"String" default=
""/>
21915 <method name=
"RenameGroup" type=
"bool" overloaded=
"no">
21916 <autodoc>RenameGroup(String oldName, String newName) -
> bool
</autodoc>
21917 <docstring>Rename aa group. Returns False on failure (probably because the new
21918 name is already taken by an existing entry)
</docstring>
21920 <param name=
"oldName" type=
"String" default=
""/>
21921 <param name=
"newName" type=
"String" default=
""/>
21924 <method name=
"DeleteEntry" type=
"bool" overloaded=
"no">
21925 <autodoc>DeleteEntry(String key, bool deleteGroupIfEmpty=True) -
> bool
</autodoc>
21926 <docstring>Deletes the specified entry and the group it belongs to if
21927 it was the last key in it and the second parameter is True
</docstring>
21929 <param name=
"key" type=
"String" default=
""/>
21930 <param name=
"deleteGroupIfEmpty" type=
"bool" default=
"True"/>
21933 <method name=
"DeleteGroup" type=
"bool" overloaded=
"no">
21934 <autodoc>DeleteGroup(String key) -
> bool
</autodoc>
21935 <docstring>Delete the group (with all subgroups)
</docstring>
21937 <param name=
"key" type=
"String" default=
""/>
21940 <method name=
"DeleteAll" type=
"bool" overloaded=
"no">
21941 <autodoc>DeleteAll() -
> bool
</autodoc>
21942 <docstring>Delete the whole underlying object (disk file, registry key, ...)
21943 primarly intended for use by desinstallation routine.
</docstring>
21945 <method name=
"SetExpandEnvVars" type=
"" overloaded=
"no">
21946 <autodoc>SetExpandEnvVars(bool doIt=True)
</autodoc>
21947 <docstring>We can automatically expand environment variables in the config entries
21948 (this option is on by default, you can turn it on/off at any time)
</docstring>
21950 <param name=
"doIt" type=
"bool" default=
"True"/>
21953 <method name=
"IsExpandingEnvVars" type=
"bool" overloaded=
"no">
21954 <autodoc>IsExpandingEnvVars() -
> bool
</autodoc>
21955 <docstring>Are we currently expanding environment variables?
</docstring>
21957 <method name=
"SetRecordDefaults" type=
"" overloaded=
"no">
21958 <autodoc>SetRecordDefaults(bool doIt=True)
</autodoc>
21959 <docstring>Set whether the config objec should record default values.
</docstring>
21961 <param name=
"doIt" type=
"bool" default=
"True"/>
21964 <method name=
"IsRecordingDefaults" type=
"bool" overloaded=
"no">
21965 <autodoc>IsRecordingDefaults() -
> bool
</autodoc>
21966 <docstring>Are we currently recording default values?
</docstring>
21968 <method name=
"ExpandEnvVars" type=
"String" overloaded=
"no">
21969 <autodoc>ExpandEnvVars(String str) -
> String
</autodoc>
21970 <docstring>Expand any environment variables in str and return the result
</docstring>
21972 <param name=
"str" type=
"String" default=
""/>
21975 <method name=
"GetAppName" type=
"String" overloaded=
"no">
21976 <autodoc>GetAppName() -
> String
</autodoc>
21978 <method name=
"GetVendorName" type=
"String" overloaded=
"no">
21979 <autodoc>GetVendorName() -
> String
</autodoc>
21981 <method name=
"SetAppName" type=
"" overloaded=
"no">
21982 <autodoc>SetAppName(String appName)
</autodoc>
21984 <param name=
"appName" type=
"String" default=
""/>
21987 <method name=
"SetVendorName" type=
"" overloaded=
"no">
21988 <autodoc>SetVendorName(String vendorName)
</autodoc>
21990 <param name=
"vendorName" type=
"String" default=
""/>
21993 <method name=
"SetStyle" type=
"" overloaded=
"no">
21994 <autodoc>SetStyle(long style)
</autodoc>
21996 <param name=
"style" type=
"long" default=
""/>
21999 <method name=
"GetStyle" type=
"long" overloaded=
"no">
22000 <autodoc>GetStyle() -
> long
</autodoc>
22003 <class name=
"Config" oldname=
"wxConfig" module=
"misc">
22004 <docstring>This ConfigBase-derived class will use the registry on Windows,
22005 and will be a wx.FileConfig on other platforms.
</docstring>
22006 <baseclass name=
"ConfigBase"/>
22007 <constructor name=
"Config" overloaded=
"no">
22008 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
22009 String localFilename=EmptyString, String globalFilename=EmptyString,
22010 long style=
0) -
> Config
</autodoc>
22012 <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/>
22013 <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/>
22014 <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/>
22015 <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/>
22016 <param name=
"style" type=
"long" default=
"0"/>
22019 <destructor name=
"~wxConfig" overloaded=
"no">
22020 <autodoc>__del__()
</autodoc>
22023 <class name=
"FileConfig" oldname=
"wxFileConfig" module=
"misc">
22024 <docstring>This config class will use a file for storage on all platforms.
</docstring>
22025 <baseclass name=
"ConfigBase"/>
22026 <constructor name=
"FileConfig" overloaded=
"no">
22027 <autodoc>__init__(String appName=EmptyString, String vendorName=EmptyString,
22028 String localFilename=EmptyString, String globalFilename=EmptyString,
22029 long style=
0) -
> FileConfig
</autodoc>
22031 <param name=
"appName" type=
"String" default=
"wxPyEmptyString"/>
22032 <param name=
"vendorName" type=
"String" default=
"wxPyEmptyString"/>
22033 <param name=
"localFilename" type=
"String" default=
"wxPyEmptyString"/>
22034 <param name=
"globalFilename" type=
"String" default=
"wxPyEmptyString"/>
22035 <param name=
"style" type=
"long" default=
"0"/>
22038 <destructor name=
"~wxFileConfig" overloaded=
"no">
22039 <autodoc>__del__()
</autodoc>
22042 <class name=
"ConfigPathChanger" oldname=
"wxConfigPathChanger" module=
"misc">
22043 <docstring>A handy little class which changes current path to the path of
22044 given entry and restores it in the destructoir: so if you declare
22045 a local variable of this type, you work in the entry directory
22046 and the path is automatically restored when the function returns.
</docstring>
22047 <constructor name=
"ConfigPathChanger" overloaded=
"no">
22048 <autodoc>__init__(ConfigBase config, String entry) -
> ConfigPathChanger
</autodoc>
22050 <param name=
"config" type=
"ConfigBase" default=
""/>
22051 <param name=
"entry" type=
"String" default=
""/>
22054 <destructor name=
"~wxConfigPathChanger" overloaded=
"no">
22055 <autodoc>__del__()
</autodoc>
22057 <method name=
"Name" type=
"String" overloaded=
"no">
22058 <autodoc>Name() -
> String
</autodoc>
22059 <docstring>Get the key name
</docstring>
22062 <method name=
"ExpandEnvVars" oldname=
"wxExpandEnvVars" type=
"String" overloaded=
"no">
22063 <autodoc>ExpandEnvVars(String sz) -
> String
</autodoc>
22064 <docstring>Replace environment variables ($SOMETHING) with their values. The
22065 format is $VARNAME or ${VARNAME} where VARNAME contains
22066 alphanumeric characters and '_' only. '$' must be escaped ('\\$')
22067 in order to be taken literally.
</docstring>
22069 <param name=
"sz" type=
"String" default=
""/>
22073 #---------------------------------------------------------------------------
22075 <class name=
"DateTime" oldname=
"wxDateTime" module=
"misc">
22076 <constructor name=
"DateTime" overloaded=
"no">
22077 <autodoc>__init__() -
> DateTime
</autodoc>
22079 <constructor name=
"DateTimeFromTimeT" overloaded=
"no">
22080 <autodoc>DateTimeFromTimeT(time_t timet) -
> DateTime
</autodoc>
22082 <param name=
"timet" type=
"time_t" default=
""/>
22085 <constructor name=
"DateTimeFromJDN" overloaded=
"no">
22086 <autodoc>DateTimeFromJDN(double jdn) -
> DateTime
</autodoc>
22088 <param name=
"jdn" type=
"double" default=
""/>
22091 <constructor name=
"DateTimeFromHMS" overloaded=
"no">
22092 <autodoc>DateTimeFromHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22094 <param name=
"hour" type=
"int" default=
""/>
22095 <param name=
"minute" type=
"int" default=
"0"/>
22096 <param name=
"second" type=
"int" default=
"0"/>
22097 <param name=
"millisec" type=
"int" default=
"0"/>
22100 <constructor name=
"DateTimeFromDMY" overloaded=
"no">
22101 <autodoc>DateTimeFromDMY(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
22102 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22104 <param name=
"day" type=
"int" default=
""/>
22105 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22106 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22107 <param name=
"hour" type=
"int" default=
"0"/>
22108 <param name=
"minute" type=
"int" default=
"0"/>
22109 <param name=
"second" type=
"int" default=
"0"/>
22110 <param name=
"millisec" type=
"int" default=
"0"/>
22113 <destructor name=
"~wxDateTime" overloaded=
"no">
22114 <autodoc>__del__()
</autodoc>
22116 <staticmethod name=
"SetCountry" type=
"" overloaded=
"no">
22117 <autodoc>SetCountry(int country)
</autodoc>
22119 <param name=
"country" type=
"wxDateTime::Country" default=
""/>
22122 <staticmethod name=
"GetCountry" type=
"wxDateTime::Country" overloaded=
"no">
22123 <autodoc>GetCountry() -
> int
</autodoc>
22125 <staticmethod name=
"IsWestEuropeanCountry" type=
"bool" overloaded=
"no">
22126 <autodoc>IsWestEuropeanCountry(int country=Country_Default) -
> bool
</autodoc>
22128 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22131 <staticmethod name=
"GetCurrentYear" type=
"int" overloaded=
"no">
22132 <autodoc>GetCurrentYear(int cal=Gregorian) -
> int
</autodoc>
22134 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22137 <staticmethod name=
"ConvertYearToBC" type=
"int" overloaded=
"no">
22138 <autodoc>ConvertYearToBC(int year) -
> int
</autodoc>
22140 <param name=
"year" type=
"int" default=
""/>
22143 <staticmethod name=
"GetCurrentMonth" type=
"wxDateTime::Month" overloaded=
"no">
22144 <autodoc>GetCurrentMonth(int cal=Gregorian) -
> int
</autodoc>
22146 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22149 <staticmethod name=
"IsLeapYear" type=
"bool" overloaded=
"no">
22150 <autodoc>IsLeapYear(int year=Inv_Year, int cal=Gregorian) -
> bool
</autodoc>
22152 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22153 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22156 <staticmethod name=
"GetCentury" type=
"int" overloaded=
"no">
22157 <autodoc>GetCentury(int year=Inv_Year) -
> int
</autodoc>
22159 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22162 <staticmethod name=
"GetNumberOfDaysinYear" type=
"int" overloaded=
"no">
22163 <autodoc>GetNumberOfDaysinYear(int year, int cal=Gregorian) -
> int
</autodoc>
22165 <param name=
"year" type=
"int" default=
""/>
22166 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22169 <staticmethod name=
"GetNumberOfDaysInMonth" type=
"int" overloaded=
"no">
22170 <autodoc>GetNumberOfDaysInMonth(int month, int year=Inv_Year, int cal=Gregorian) -
> int
</autodoc>
22172 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22173 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22174 <param name=
"cal" type=
"wxDateTime::Calendar" default=
"wxDateTime::Gregorian"/>
22177 <staticmethod name=
"GetMonthName" type=
"String" overloaded=
"no">
22178 <autodoc>GetMonthName(int month, int flags=Name_Full) -
> String
</autodoc>
22180 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22181 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
22184 <staticmethod name=
"GetWeekDayName" type=
"String" overloaded=
"no">
22185 <autodoc>GetWeekDayName(int weekday, int flags=Name_Full) -
> String
</autodoc>
22187 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22188 <param name=
"flags" type=
"wxDateTime::NameFlags" default=
"wxDateTime::Name_Full"/>
22191 <staticmethod name=
"GetAmPmStrings" type=
"" overloaded=
"no">
22192 <autodoc>GetAmPmStrings() -
> (am, pm)
</autodoc>
22193 <docstring>Get the AM and PM strings in the current locale (may be empty)
</docstring>
22195 <param name=
"OUTPUT" type=
"String" default=
""/>
22196 <param name=
"OUTPUT" type=
"String" default=
""/>
22199 <staticmethod name=
"IsDSTApplicable" type=
"bool" overloaded=
"no">
22200 <autodoc>IsDSTApplicable(int year=Inv_Year, int country=Country_Default) -
> bool
</autodoc>
22202 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22203 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22206 <staticmethod name=
"GetBeginDST" type=
"DateTime" overloaded=
"no">
22207 <autodoc>GetBeginDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
22209 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22210 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22213 <staticmethod name=
"GetEndDST" type=
"DateTime" overloaded=
"no">
22214 <autodoc>GetEndDST(int year=Inv_Year, int country=Country_Default) -
> DateTime
</autodoc>
22216 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22217 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22220 <staticmethod name=
"Now" type=
"DateTime" overloaded=
"no">
22221 <autodoc>Now() -
> DateTime
</autodoc>
22223 <staticmethod name=
"UNow" type=
"DateTime" overloaded=
"no">
22224 <autodoc>UNow() -
> DateTime
</autodoc>
22226 <staticmethod name=
"Today" type=
"DateTime" overloaded=
"no">
22227 <autodoc>Today() -
> DateTime
</autodoc>
22229 <method name=
"SetToCurrent" type=
"DateTime" overloaded=
"no">
22230 <autodoc>SetToCurrent() -
> DateTime
</autodoc>
22232 <method name=
"SetTimeT" type=
"DateTime" overloaded=
"no">
22233 <autodoc>SetTimeT(time_t timet) -
> DateTime
</autodoc>
22235 <param name=
"timet" type=
"time_t" default=
""/>
22238 <method name=
"SetJDN" type=
"DateTime" overloaded=
"no">
22239 <autodoc>SetJDN(double jdn) -
> DateTime
</autodoc>
22241 <param name=
"jdn" type=
"double" default=
""/>
22244 <method name=
"SetHMS" type=
"DateTime" overloaded=
"no">
22245 <autodoc>SetHMS(int hour, int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22247 <param name=
"hour" type=
"int" default=
""/>
22248 <param name=
"minute" type=
"int" default=
"0"/>
22249 <param name=
"second" type=
"int" default=
"0"/>
22250 <param name=
"millisec" type=
"int" default=
"0"/>
22253 <method name=
"Set" type=
"DateTime" overloaded=
"no">
22254 <autodoc>Set(int day, int month=Inv_Month, int year=Inv_Year, int hour=
0,
22255 int minute=
0, int second=
0, int millisec=
0) -
> DateTime
</autodoc>
22257 <param name=
"day" type=
"int" default=
""/>
22258 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22259 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22260 <param name=
"hour" type=
"int" default=
"0"/>
22261 <param name=
"minute" type=
"int" default=
"0"/>
22262 <param name=
"second" type=
"int" default=
"0"/>
22263 <param name=
"millisec" type=
"int" default=
"0"/>
22266 <method name=
"ResetTime" type=
"DateTime" overloaded=
"no">
22267 <autodoc>ResetTime() -
> DateTime
</autodoc>
22269 <method name=
"SetYear" type=
"DateTime" overloaded=
"no">
22270 <autodoc>SetYear(int year) -
> DateTime
</autodoc>
22272 <param name=
"year" type=
"int" default=
""/>
22275 <method name=
"SetMonth" type=
"DateTime" overloaded=
"no">
22276 <autodoc>SetMonth(int month) -
> DateTime
</autodoc>
22278 <param name=
"month" type=
"wxDateTime::Month" default=
""/>
22281 <method name=
"SetDay" type=
"DateTime" overloaded=
"no">
22282 <autodoc>SetDay(int day) -
> DateTime
</autodoc>
22284 <param name=
"day" type=
"int" default=
""/>
22287 <method name=
"SetHour" type=
"DateTime" overloaded=
"no">
22288 <autodoc>SetHour(int hour) -
> DateTime
</autodoc>
22290 <param name=
"hour" type=
"int" default=
""/>
22293 <method name=
"SetMinute" type=
"DateTime" overloaded=
"no">
22294 <autodoc>SetMinute(int minute) -
> DateTime
</autodoc>
22296 <param name=
"minute" type=
"int" default=
""/>
22299 <method name=
"SetSecond" type=
"DateTime" overloaded=
"no">
22300 <autodoc>SetSecond(int second) -
> DateTime
</autodoc>
22302 <param name=
"second" type=
"int" default=
""/>
22305 <method name=
"SetMillisecond" type=
"DateTime" overloaded=
"no">
22306 <autodoc>SetMillisecond(int millisecond) -
> DateTime
</autodoc>
22308 <param name=
"millisecond" type=
"int" default=
""/>
22311 <method name=
"SetToWeekDayInSameWeek" type=
"DateTime" overloaded=
"no">
22312 <autodoc>SetToWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
22314 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22315 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22318 <method name=
"GetWeekDayInSameWeek" type=
"DateTime" overloaded=
"no">
22319 <autodoc>GetWeekDayInSameWeek(int weekday, int flags=Monday_First) -
> DateTime
</autodoc>
22321 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22322 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22325 <method name=
"SetToNextWeekDay" type=
"DateTime" overloaded=
"no">
22326 <autodoc>SetToNextWeekDay(int weekday) -
> DateTime
</autodoc>
22328 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22331 <method name=
"GetNextWeekDay" type=
"DateTime" overloaded=
"no">
22332 <autodoc>GetNextWeekDay(int weekday) -
> DateTime
</autodoc>
22334 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22337 <method name=
"SetToPrevWeekDay" type=
"DateTime" overloaded=
"no">
22338 <autodoc>SetToPrevWeekDay(int weekday) -
> DateTime
</autodoc>
22340 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22343 <method name=
"GetPrevWeekDay" type=
"DateTime" overloaded=
"no">
22344 <autodoc>GetPrevWeekDay(int weekday) -
> DateTime
</autodoc>
22346 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22349 <method name=
"SetToWeekDay" type=
"bool" overloaded=
"no">
22350 <autodoc>SetToWeekDay(int weekday, int n=
1, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
22352 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22353 <param name=
"n" type=
"int" default=
"1"/>
22354 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22355 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22358 <method name=
"SetToLastWeekDay" type=
"bool" overloaded=
"no">
22359 <autodoc>SetToLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> bool
</autodoc>
22361 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22362 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22363 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22366 <method name=
"GetLastWeekDay" type=
"DateTime" overloaded=
"no">
22367 <autodoc>GetLastWeekDay(int weekday, int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22369 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
""/>
22370 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22371 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22374 <method name=
"SetToTheWeek" type=
"bool" overloaded=
"no">
22375 <autodoc>SetToTheWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> bool
</autodoc>
22377 <param name=
"numWeek" type=
"int" default=
""/>
22378 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
22379 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22382 <method name=
"GetWeek" type=
"DateTime" overloaded=
"no">
22383 <autodoc>GetWeek(int numWeek, int weekday=Mon, int flags=Monday_First) -
> DateTime
</autodoc>
22385 <param name=
"numWeek" type=
"int" default=
""/>
22386 <param name=
"weekday" type=
"wxDateTime::WeekDay" default=
"wxDateTime::Mon"/>
22387 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22390 <method name=
"SetToLastMonthDay" type=
"DateTime" overloaded=
"no">
22391 <autodoc>SetToLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22393 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22394 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22397 <method name=
"GetLastMonthDay" type=
"DateTime" overloaded=
"no">
22398 <autodoc>GetLastMonthDay(int month=Inv_Month, int year=Inv_Year) -
> DateTime
</autodoc>
22400 <param name=
"month" type=
"wxDateTime::Month" default=
"wxDateTime::Inv_Month"/>
22401 <param name=
"year" type=
"int" default=
"wxDateTime::Inv_Year"/>
22404 <method name=
"SetToYearDay" type=
"DateTime" overloaded=
"no">
22405 <autodoc>SetToYearDay(int yday) -
> DateTime
</autodoc>
22407 <param name=
"yday" type=
"int" default=
""/>
22410 <method name=
"GetYearDay" type=
"DateTime" overloaded=
"no">
22411 <autodoc>GetYearDay(int yday) -
> DateTime
</autodoc>
22413 <param name=
"yday" type=
"int" default=
""/>
22416 <method name=
"GetJulianDayNumber" type=
"double" overloaded=
"no">
22417 <autodoc>GetJulianDayNumber() -
> double
</autodoc>
22419 <method name=
"GetJDN" type=
"double" overloaded=
"no">
22420 <autodoc>GetJDN() -
> double
</autodoc>
22422 <method name=
"GetModifiedJulianDayNumber" type=
"double" overloaded=
"no">
22423 <autodoc>GetModifiedJulianDayNumber() -
> double
</autodoc>
22425 <method name=
"GetMJD" type=
"double" overloaded=
"no">
22426 <autodoc>GetMJD() -
> double
</autodoc>
22428 <method name=
"GetRataDie" type=
"double" overloaded=
"no">
22429 <autodoc>GetRataDie() -
> double
</autodoc>
22431 <method name=
"ToTimezone" type=
"DateTime" overloaded=
"no">
22432 <autodoc>ToTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
22434 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/>
22435 <param name=
"noDST" type=
"bool" default=
"False"/>
22438 <method name=
"MakeTimezone" type=
"DateTime" overloaded=
"no">
22439 <autodoc>MakeTimezone(wxDateTime::TimeZone tz, bool noDST=False) -
> DateTime
</autodoc>
22441 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
""/>
22442 <param name=
"noDST" type=
"bool" default=
"False"/>
22445 <method name=
"ToGMT" type=
"DateTime" overloaded=
"no">
22446 <autodoc>ToGMT(bool noDST=False) -
> DateTime
</autodoc>
22448 <param name=
"noDST" type=
"bool" default=
"False"/>
22451 <method name=
"MakeGMT" type=
"DateTime" overloaded=
"no">
22452 <autodoc>MakeGMT(bool noDST=False) -
> DateTime
</autodoc>
22454 <param name=
"noDST" type=
"bool" default=
"False"/>
22457 <method name=
"IsDST" type=
"int" overloaded=
"no">
22458 <autodoc>IsDST(int country=Country_Default) -
> int
</autodoc>
22460 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22463 <method name=
"IsValid" type=
"bool" overloaded=
"no">
22464 <autodoc>IsValid() -
> bool
</autodoc>
22466 <method name=
"GetTicks" type=
"time_t" overloaded=
"no">
22467 <autodoc>GetTicks() -
> time_t
</autodoc>
22469 <method name=
"GetYear" type=
"int" overloaded=
"no">
22470 <autodoc>GetYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22472 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22475 <method name=
"GetMonth" type=
"wxDateTime::Month" overloaded=
"no">
22476 <autodoc>GetMonth(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22478 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22481 <method name=
"GetDay" type=
"int" overloaded=
"no">
22482 <autodoc>GetDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22484 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22487 <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no">
22488 <autodoc>GetWeekDay(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22490 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22493 <method name=
"GetHour" type=
"int" overloaded=
"no">
22494 <autodoc>GetHour(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22496 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22499 <method name=
"GetMinute" type=
"int" overloaded=
"no">
22500 <autodoc>GetMinute(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22502 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22505 <method name=
"GetSecond" type=
"int" overloaded=
"no">
22506 <autodoc>GetSecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22508 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22511 <method name=
"GetMillisecond" type=
"int" overloaded=
"no">
22512 <autodoc>GetMillisecond(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22514 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22517 <method name=
"GetDayOfYear" type=
"int" overloaded=
"no">
22518 <autodoc>GetDayOfYear(wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22520 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22523 <method name=
"GetWeekOfYear" type=
"int" overloaded=
"no">
22524 <autodoc>GetWeekOfYear(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22526 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22527 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22530 <method name=
"GetWeekOfMonth" type=
"int" overloaded=
"no">
22531 <autodoc>GetWeekOfMonth(int flags=Monday_First, wxDateTime::TimeZone tz=LOCAL_TZ) -
> int
</autodoc>
22533 <param name=
"flags" type=
"wxDateTime::WeekFlags" default=
"wxDateTime::Monday_First"/>
22534 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22537 <method name=
"IsWorkDay" type=
"bool" overloaded=
"no">
22538 <autodoc>IsWorkDay(int country=Country_Default) -
> bool
</autodoc>
22540 <param name=
"country" type=
"wxDateTime::Country" default=
"wxDateTime::Country_Default"/>
22543 <method name=
"IsEqualTo" type=
"bool" overloaded=
"no">
22544 <autodoc>IsEqualTo(DateTime datetime) -
> bool
</autodoc>
22546 <param name=
"datetime" type=
"DateTime" default=
""/>
22549 <method name=
"IsEarlierThan" type=
"bool" overloaded=
"no">
22550 <autodoc>IsEarlierThan(DateTime datetime) -
> bool
</autodoc>
22552 <param name=
"datetime" type=
"DateTime" default=
""/>
22555 <method name=
"IsLaterThan" type=
"bool" overloaded=
"no">
22556 <autodoc>IsLaterThan(DateTime datetime) -
> bool
</autodoc>
22558 <param name=
"datetime" type=
"DateTime" default=
""/>
22561 <method name=
"IsStrictlyBetween" type=
"bool" overloaded=
"no">
22562 <autodoc>IsStrictlyBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
22564 <param name=
"t1" type=
"DateTime" default=
""/>
22565 <param name=
"t2" type=
"DateTime" default=
""/>
22568 <method name=
"IsBetween" type=
"bool" overloaded=
"no">
22569 <autodoc>IsBetween(DateTime t1, DateTime t2) -
> bool
</autodoc>
22571 <param name=
"t1" type=
"DateTime" default=
""/>
22572 <param name=
"t2" type=
"DateTime" default=
""/>
22575 <method name=
"IsSameDate" type=
"bool" overloaded=
"no">
22576 <autodoc>IsSameDate(DateTime dt) -
> bool
</autodoc>
22578 <param name=
"dt" type=
"DateTime" default=
""/>
22581 <method name=
"IsSameTime" type=
"bool" overloaded=
"no">
22582 <autodoc>IsSameTime(DateTime dt) -
> bool
</autodoc>
22584 <param name=
"dt" type=
"DateTime" default=
""/>
22587 <method name=
"IsEqualUpTo" type=
"bool" overloaded=
"no">
22588 <autodoc>IsEqualUpTo(DateTime dt, TimeSpan ts) -
> bool
</autodoc>
22590 <param name=
"dt" type=
"DateTime" default=
""/>
22591 <param name=
"ts" type=
"wxTimeSpan" default=
""/>
22594 <method name=
"AddTS" type=
"DateTime" overloaded=
"no">
22595 <autodoc>AddTS(TimeSpan diff) -
> DateTime
</autodoc>
22597 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22600 <method name=
"AddDS" type=
"DateTime" overloaded=
"no">
22601 <autodoc>AddDS(DateSpan diff) -
> DateTime
</autodoc>
22603 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22606 <method name=
"SubtractTS" type=
"DateTime" overloaded=
"no">
22607 <autodoc>SubtractTS(TimeSpan diff) -
> DateTime
</autodoc>
22609 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22612 <method name=
"SubtractDS" type=
"DateTime" overloaded=
"no">
22613 <autodoc>SubtractDS(DateSpan diff) -
> DateTime
</autodoc>
22615 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22618 <method name=
"Subtract" type=
"wxTimeSpan" overloaded=
"no">
22619 <autodoc>Subtract(DateTime dt) -
> TimeSpan
</autodoc>
22621 <param name=
"dt" type=
"DateTime" default=
""/>
22624 <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes">
22626 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22629 <method name=
"__iadd__" type=
"DateTime" overloaded=
"yes">
22630 <autodoc>__iadd__(TimeSpan diff) -
> DateTime
22631 __iadd__(DateSpan diff) -
> DateTime
</autodoc>
22633 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22636 <method name=
"__isub__" type=
"DateTime" overloaded=
"yes">
22638 <param name=
"diff" type=
"wxTimeSpan" default=
""/>
22641 <method name=
"__isub__" type=
"DateTime" overloaded=
"yes">
22642 <autodoc>__isub__(TimeSpan diff) -
> DateTime
22643 __isub__(DateSpan diff) -
> DateTime
</autodoc>
22645 <param name=
"diff" type=
"wxDateSpan" default=
""/>
22648 <method name=
"__add__" type=
"DateTime" overloaded=
"yes">
22650 <param name=
"other" type=
"wxTimeSpan" default=
""/>
22653 <method name=
"__add__" type=
"DateTime" overloaded=
"yes">
22654 <autodoc>__add__(TimeSpan other) -
> DateTime
22655 __add__(DateSpan other) -
> DateTime
</autodoc>
22657 <param name=
"other" type=
"wxDateSpan" default=
""/>
22660 <method name=
"__sub__" type=
"wxTimeSpan" overloaded=
"yes">
22662 <param name=
"other" type=
"DateTime" default=
""/>
22665 <method name=
"__sub__" type=
"DateTime" overloaded=
"yes">
22667 <param name=
"other" type=
"wxTimeSpan" default=
""/>
22670 <method name=
"__sub__" type=
"DateTime" overloaded=
"yes">
22671 <autodoc>__sub__(DateTime other) -
> TimeSpan
22672 __sub__(TimeSpan other) -
> DateTime
22673 __sub__(DateSpan other) -
> DateTime
</autodoc>
22675 <param name=
"other" type=
"wxDateSpan" default=
""/>
22678 <method name=
"__lt__" type=
"bool" overloaded=
"no">
22679 <autodoc>__lt__(DateTime other) -
> bool
</autodoc>
22681 <param name=
"other" type=
"DateTime" default=
""/>
22684 <method name=
"__le__" type=
"bool" overloaded=
"no">
22685 <autodoc>__le__(DateTime other) -
> bool
</autodoc>
22687 <param name=
"other" type=
"DateTime" default=
""/>
22690 <method name=
"__gt__" type=
"bool" overloaded=
"no">
22691 <autodoc>__gt__(DateTime other) -
> bool
</autodoc>
22693 <param name=
"other" type=
"DateTime" default=
""/>
22696 <method name=
"__ge__" type=
"bool" overloaded=
"no">
22697 <autodoc>__ge__(DateTime other) -
> bool
</autodoc>
22699 <param name=
"other" type=
"DateTime" default=
""/>
22702 <method name=
"__eq__" type=
"bool" overloaded=
"no">
22703 <autodoc>__eq__(DateTime other) -
> bool
</autodoc>
22705 <param name=
"other" type=
"DateTime" default=
""/>
22708 <method name=
"__ne__" type=
"bool" overloaded=
"no">
22709 <autodoc>__ne__(DateTime other) -
> bool
</autodoc>
22711 <param name=
"other" type=
"DateTime" default=
""/>
22714 <method name=
"ParseRfc822Date" type=
"int" overloaded=
"no">
22715 <autodoc>ParseRfc822Date(String date) -
> int
</autodoc>
22717 <param name=
"date" type=
"String" default=
""/>
22720 <method name=
"ParseFormat" type=
"int" overloaded=
"no">
22721 <autodoc>ParseFormat(String date, String format=DateFormatStr, DateTime dateDef=DefaultDateTime) -
> int
</autodoc>
22723 <param name=
"date" type=
"String" default=
""/>
22724 <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/>
22725 <param name=
"dateDef" type=
"DateTime" default=
"wxDefaultDateTime"/>
22728 <method name=
"ParseDateTime" type=
"int" overloaded=
"no">
22729 <autodoc>ParseDateTime(String datetime) -
> int
</autodoc>
22731 <param name=
"datetime" type=
"String" default=
""/>
22734 <method name=
"ParseDate" type=
"int" overloaded=
"no">
22735 <autodoc>ParseDate(String date) -
> int
</autodoc>
22737 <param name=
"date" type=
"String" default=
""/>
22740 <method name=
"ParseTime" type=
"int" overloaded=
"no">
22741 <autodoc>ParseTime(String time) -
> int
</autodoc>
22743 <param name=
"time" type=
"String" default=
""/>
22746 <method name=
"Format" type=
"String" overloaded=
"no">
22747 <autodoc>Format(String format=DateFormatStr, wxDateTime::TimeZone tz=LOCAL_TZ) -
> String
</autodoc>
22749 <param name=
"format" type=
"String" default=
"wxPyDateFormatStr"/>
22750 <param name=
"tz" type=
"wxDateTime::TimeZone" default=
"LOCAL_TZ"/>
22753 <method name=
"FormatDate" type=
"String" overloaded=
"no">
22754 <autodoc>FormatDate() -
> String
</autodoc>
22756 <method name=
"FormatTime" type=
"String" overloaded=
"no">
22757 <autodoc>FormatTime() -
> String
</autodoc>
22759 <method name=
"FormatISODate" type=
"String" overloaded=
"no">
22760 <autodoc>FormatISODate() -
> String
</autodoc>
22762 <method name=
"FormatISOTime" type=
"String" overloaded=
"no">
22763 <autodoc>FormatISOTime() -
> String
</autodoc>
22766 <class name=
"TimeSpan" oldname=
"wxTimeSpan" module=
"misc">
22767 <constructor name=
"TimeSpan" overloaded=
"no">
22768 <autodoc>__init__(long hours=
0, long minutes=
0, long seconds=
0, long milliseconds=
0) -
> TimeSpan
</autodoc>
22770 <param name=
"hours" type=
"long" default=
"0"/>
22771 <param name=
"minutes" type=
"long" default=
"0"/>
22772 <param name=
"seconds" type=
"long" default=
"0"/>
22773 <param name=
"milliseconds" type=
"long" default=
"0"/>
22776 <destructor name=
"~wxTimeSpan" overloaded=
"no">
22777 <autodoc>__del__()
</autodoc>
22779 <staticmethod name=
"Seconds" type=
"TimeSpan" overloaded=
"no">
22780 <autodoc>Seconds(long sec) -
> TimeSpan
</autodoc>
22782 <param name=
"sec" type=
"long" default=
""/>
22785 <staticmethod name=
"Second" type=
"TimeSpan" overloaded=
"no">
22786 <autodoc>Second() -
> TimeSpan
</autodoc>
22788 <staticmethod name=
"Minutes" type=
"TimeSpan" overloaded=
"no">
22789 <autodoc>Minutes(long min) -
> TimeSpan
</autodoc>
22791 <param name=
"min" type=
"long" default=
""/>
22794 <staticmethod name=
"Minute" type=
"TimeSpan" overloaded=
"no">
22795 <autodoc>Minute() -
> TimeSpan
</autodoc>
22797 <staticmethod name=
"Hours" type=
"TimeSpan" overloaded=
"no">
22798 <autodoc>Hours(long hours) -
> TimeSpan
</autodoc>
22800 <param name=
"hours" type=
"long" default=
""/>
22803 <staticmethod name=
"Hour" type=
"TimeSpan" overloaded=
"no">
22804 <autodoc>Hour() -
> TimeSpan
</autodoc>
22806 <staticmethod name=
"Days" type=
"TimeSpan" overloaded=
"no">
22807 <autodoc>Days(long days) -
> TimeSpan
</autodoc>
22809 <param name=
"days" type=
"long" default=
""/>
22812 <staticmethod name=
"Day" type=
"TimeSpan" overloaded=
"no">
22813 <autodoc>Day() -
> TimeSpan
</autodoc>
22815 <staticmethod name=
"Weeks" type=
"TimeSpan" overloaded=
"no">
22816 <autodoc>Weeks(long days) -
> TimeSpan
</autodoc>
22818 <param name=
"days" type=
"long" default=
""/>
22821 <staticmethod name=
"Week" type=
"TimeSpan" overloaded=
"no">
22822 <autodoc>Week() -
> TimeSpan
</autodoc>
22824 <method name=
"Add" type=
"TimeSpan" overloaded=
"no">
22825 <autodoc>Add(TimeSpan diff) -
> TimeSpan
</autodoc>
22827 <param name=
"diff" type=
"TimeSpan" default=
""/>
22830 <method name=
"Subtract" type=
"TimeSpan" overloaded=
"no">
22831 <autodoc>Subtract(TimeSpan diff) -
> TimeSpan
</autodoc>
22833 <param name=
"diff" type=
"TimeSpan" default=
""/>
22836 <method name=
"Multiply" type=
"TimeSpan" overloaded=
"no">
22837 <autodoc>Multiply(int n) -
> TimeSpan
</autodoc>
22839 <param name=
"n" type=
"int" default=
""/>
22842 <method name=
"Neg" type=
"TimeSpan" overloaded=
"no">
22843 <autodoc>Neg() -
> TimeSpan
</autodoc>
22845 <method name=
"Abs" type=
"TimeSpan" overloaded=
"no">
22846 <autodoc>Abs() -
> TimeSpan
</autodoc>
22848 <method name=
"__iadd__" type=
"TimeSpan" overloaded=
"no">
22849 <autodoc>__iadd__(TimeSpan diff) -
> TimeSpan
</autodoc>
22851 <param name=
"diff" type=
"TimeSpan" default=
""/>
22854 <method name=
"__isub__" type=
"TimeSpan" overloaded=
"no">
22855 <autodoc>__isub__(TimeSpan diff) -
> TimeSpan
</autodoc>
22857 <param name=
"diff" type=
"TimeSpan" default=
""/>
22860 <method name=
"__imul__" type=
"TimeSpan" overloaded=
"no">
22861 <autodoc>__imul__(int n) -
> TimeSpan
</autodoc>
22863 <param name=
"n" type=
"int" default=
""/>
22866 <method name=
"__neg__" type=
"TimeSpan" overloaded=
"no">
22867 <autodoc>__neg__() -
> TimeSpan
</autodoc>
22869 <method name=
"__add__" type=
"TimeSpan" overloaded=
"no">
22870 <autodoc>__add__(TimeSpan other) -
> TimeSpan
</autodoc>
22872 <param name=
"other" type=
"TimeSpan" default=
""/>
22875 <method name=
"__sub__" type=
"TimeSpan" overloaded=
"no">
22876 <autodoc>__sub__(TimeSpan other) -
> TimeSpan
</autodoc>
22878 <param name=
"other" type=
"TimeSpan" default=
""/>
22881 <method name=
"__mul__" type=
"TimeSpan" overloaded=
"no">
22882 <autodoc>__mul__(int n) -
> TimeSpan
</autodoc>
22884 <param name=
"n" type=
"int" default=
""/>
22887 <method name=
"__rmul__" type=
"TimeSpan" overloaded=
"no">
22888 <autodoc>__rmul__(int n) -
> TimeSpan
</autodoc>
22890 <param name=
"n" type=
"int" default=
""/>
22893 <method name=
"__lt__" type=
"bool" overloaded=
"no">
22894 <autodoc>__lt__(TimeSpan other) -
> bool
</autodoc>
22896 <param name=
"other" type=
"TimeSpan" default=
""/>
22899 <method name=
"__le__" type=
"bool" overloaded=
"no">
22900 <autodoc>__le__(TimeSpan other) -
> bool
</autodoc>
22902 <param name=
"other" type=
"TimeSpan" default=
""/>
22905 <method name=
"__gt__" type=
"bool" overloaded=
"no">
22906 <autodoc>__gt__(TimeSpan other) -
> bool
</autodoc>
22908 <param name=
"other" type=
"TimeSpan" default=
""/>
22911 <method name=
"__ge__" type=
"bool" overloaded=
"no">
22912 <autodoc>__ge__(TimeSpan other) -
> bool
</autodoc>
22914 <param name=
"other" type=
"TimeSpan" default=
""/>
22917 <method name=
"__eq__" type=
"bool" overloaded=
"no">
22918 <autodoc>__eq__(TimeSpan other) -
> bool
</autodoc>
22920 <param name=
"other" type=
"TimeSpan" default=
""/>
22923 <method name=
"__ne__" type=
"bool" overloaded=
"no">
22924 <autodoc>__ne__(TimeSpan other) -
> bool
</autodoc>
22926 <param name=
"other" type=
"TimeSpan" default=
""/>
22929 <method name=
"IsNull" type=
"bool" overloaded=
"no">
22930 <autodoc>IsNull() -
> bool
</autodoc>
22932 <method name=
"IsPositive" type=
"bool" overloaded=
"no">
22933 <autodoc>IsPositive() -
> bool
</autodoc>
22935 <method name=
"IsNegative" type=
"bool" overloaded=
"no">
22936 <autodoc>IsNegative() -
> bool
</autodoc>
22938 <method name=
"IsEqualTo" type=
"bool" overloaded=
"no">
22939 <autodoc>IsEqualTo(TimeSpan ts) -
> bool
</autodoc>
22941 <param name=
"ts" type=
"TimeSpan" default=
""/>
22944 <method name=
"IsLongerThan" type=
"bool" overloaded=
"no">
22945 <autodoc>IsLongerThan(TimeSpan ts) -
> bool
</autodoc>
22947 <param name=
"ts" type=
"TimeSpan" default=
""/>
22950 <method name=
"IsShorterThan" type=
"bool" overloaded=
"no">
22951 <autodoc>IsShorterThan(TimeSpan t) -
> bool
</autodoc>
22953 <param name=
"t" type=
"TimeSpan" default=
""/>
22956 <method name=
"GetWeeks" type=
"int" overloaded=
"no">
22957 <autodoc>GetWeeks() -
> int
</autodoc>
22959 <method name=
"GetDays" type=
"int" overloaded=
"no">
22960 <autodoc>GetDays() -
> int
</autodoc>
22962 <method name=
"GetHours" type=
"int" overloaded=
"no">
22963 <autodoc>GetHours() -
> int
</autodoc>
22965 <method name=
"GetMinutes" type=
"int" overloaded=
"no">
22966 <autodoc>GetMinutes() -
> int
</autodoc>
22968 <method name=
"GetSeconds" type=
"wxLongLong" overloaded=
"no">
22969 <autodoc>GetSeconds() -
> wxLongLong
</autodoc>
22971 <method name=
"GetMilliseconds" type=
"wxLongLong" overloaded=
"no">
22972 <autodoc>GetMilliseconds() -
> wxLongLong
</autodoc>
22974 <method name=
"Format" type=
"String" overloaded=
"no">
22975 <autodoc>Format(String format=TimeSpanFormatStr) -
> String
</autodoc>
22977 <param name=
"format" type=
"String" default=
"wxPyTimeSpanFormatStr"/>
22981 <class name=
"DateSpan" oldname=
"wxDateSpan" module=
"misc">
22982 <constructor name=
"DateSpan" overloaded=
"no">
22983 <autodoc>__init__(int years=
0, int months=
0, int weeks=
0, int days=
0) -
> DateSpan
</autodoc>
22985 <param name=
"years" type=
"int" default=
"0"/>
22986 <param name=
"months" type=
"int" default=
"0"/>
22987 <param name=
"weeks" type=
"int" default=
"0"/>
22988 <param name=
"days" type=
"int" default=
"0"/>
22991 <destructor name=
"~wxDateSpan" overloaded=
"no">
22992 <autodoc>__del__()
</autodoc>
22994 <staticmethod name=
"Days" type=
"DateSpan" overloaded=
"no">
22995 <autodoc>Days(int days) -
> DateSpan
</autodoc>
22997 <param name=
"days" type=
"int" default=
""/>
23000 <staticmethod name=
"Day" type=
"DateSpan" overloaded=
"no">
23001 <autodoc>Day() -
> DateSpan
</autodoc>
23003 <staticmethod name=
"Weeks" type=
"DateSpan" overloaded=
"no">
23004 <autodoc>Weeks(int weeks) -
> DateSpan
</autodoc>
23006 <param name=
"weeks" type=
"int" default=
""/>
23009 <staticmethod name=
"Week" type=
"DateSpan" overloaded=
"no">
23010 <autodoc>Week() -
> DateSpan
</autodoc>
23012 <staticmethod name=
"Months" type=
"DateSpan" overloaded=
"no">
23013 <autodoc>Months(int mon) -
> DateSpan
</autodoc>
23015 <param name=
"mon" type=
"int" default=
""/>
23018 <staticmethod name=
"Month" type=
"DateSpan" overloaded=
"no">
23019 <autodoc>Month() -
> DateSpan
</autodoc>
23021 <staticmethod name=
"Years" type=
"DateSpan" overloaded=
"no">
23022 <autodoc>Years(int years) -
> DateSpan
</autodoc>
23024 <param name=
"years" type=
"int" default=
""/>
23027 <staticmethod name=
"Year" type=
"DateSpan" overloaded=
"no">
23028 <autodoc>Year() -
> DateSpan
</autodoc>
23030 <method name=
"SetYears" type=
"DateSpan" overloaded=
"no">
23031 <autodoc>SetYears(int n) -
> DateSpan
</autodoc>
23033 <param name=
"n" type=
"int" default=
""/>
23036 <method name=
"SetMonths" type=
"DateSpan" overloaded=
"no">
23037 <autodoc>SetMonths(int n) -
> DateSpan
</autodoc>
23039 <param name=
"n" type=
"int" default=
""/>
23042 <method name=
"SetWeeks" type=
"DateSpan" overloaded=
"no">
23043 <autodoc>SetWeeks(int n) -
> DateSpan
</autodoc>
23045 <param name=
"n" type=
"int" default=
""/>
23048 <method name=
"SetDays" type=
"DateSpan" overloaded=
"no">
23049 <autodoc>SetDays(int n) -
> DateSpan
</autodoc>
23051 <param name=
"n" type=
"int" default=
""/>
23054 <method name=
"GetYears" type=
"int" overloaded=
"no">
23055 <autodoc>GetYears() -
> int
</autodoc>
23057 <method name=
"GetMonths" type=
"int" overloaded=
"no">
23058 <autodoc>GetMonths() -
> int
</autodoc>
23060 <method name=
"GetWeeks" type=
"int" overloaded=
"no">
23061 <autodoc>GetWeeks() -
> int
</autodoc>
23063 <method name=
"GetDays" type=
"int" overloaded=
"no">
23064 <autodoc>GetDays() -
> int
</autodoc>
23066 <method name=
"GetTotalDays" type=
"int" overloaded=
"no">
23067 <autodoc>GetTotalDays() -
> int
</autodoc>
23069 <method name=
"Add" type=
"DateSpan" overloaded=
"no">
23070 <autodoc>Add(DateSpan other) -
> DateSpan
</autodoc>
23072 <param name=
"other" type=
"DateSpan" default=
""/>
23075 <method name=
"Subtract" type=
"DateSpan" overloaded=
"no">
23076 <autodoc>Subtract(DateSpan other) -
> DateSpan
</autodoc>
23078 <param name=
"other" type=
"DateSpan" default=
""/>
23081 <method name=
"Neg" type=
"DateSpan" overloaded=
"no">
23082 <autodoc>Neg() -
> DateSpan
</autodoc>
23084 <method name=
"Multiply" type=
"DateSpan" overloaded=
"no">
23085 <autodoc>Multiply(int factor) -
> DateSpan
</autodoc>
23087 <param name=
"factor" type=
"int" default=
""/>
23090 <method name=
"__iadd__" type=
"DateSpan" overloaded=
"no">
23091 <autodoc>__iadd__(DateSpan other) -
> DateSpan
</autodoc>
23093 <param name=
"other" type=
"DateSpan" default=
""/>
23096 <method name=
"__isub__" type=
"DateSpan" overloaded=
"no">
23097 <autodoc>__isub__(DateSpan other) -
> DateSpan
</autodoc>
23099 <param name=
"other" type=
"DateSpan" default=
""/>
23102 <method name=
"__neg__" type=
"DateSpan" overloaded=
"no">
23103 <autodoc>__neg__() -
> DateSpan
</autodoc>
23105 <method name=
"__imul__" type=
"DateSpan" overloaded=
"no">
23106 <autodoc>__imul__(int factor) -
> DateSpan
</autodoc>
23108 <param name=
"factor" type=
"int" default=
""/>
23111 <method name=
"__add__" type=
"DateSpan" overloaded=
"no">
23112 <autodoc>__add__(DateSpan other) -
> DateSpan
</autodoc>
23114 <param name=
"other" type=
"DateSpan" default=
""/>
23117 <method name=
"__sub__" type=
"DateSpan" overloaded=
"no">
23118 <autodoc>__sub__(DateSpan other) -
> DateSpan
</autodoc>
23120 <param name=
"other" type=
"DateSpan" default=
""/>
23123 <method name=
"__mul__" type=
"DateSpan" overloaded=
"no">
23124 <autodoc>__mul__(int n) -
> DateSpan
</autodoc>
23126 <param name=
"n" type=
"int" default=
""/>
23129 <method name=
"__rmul__" type=
"DateSpan" overloaded=
"no">
23130 <autodoc>__rmul__(int n) -
> DateSpan
</autodoc>
23132 <param name=
"n" type=
"int" default=
""/>
23135 <method name=
"__eq__" type=
"bool" overloaded=
"no">
23136 <autodoc>__eq__(DateSpan other) -
> bool
</autodoc>
23138 <param name=
"other" type=
"DateSpan" default=
""/>
23141 <method name=
"__ne__" type=
"bool" overloaded=
"no">
23142 <autodoc>__ne__(DateSpan other) -
> bool
</autodoc>
23144 <param name=
"other" type=
"DateSpan" default=
""/>
23148 <method name=
"GetLocalTime" oldname=
"wxGetLocalTime" type=
"long" overloaded=
"no">
23149 <autodoc>GetLocalTime() -
> long
</autodoc>
23151 <method name=
"GetUTCTime" oldname=
"wxGetUTCTime" type=
"long" overloaded=
"no">
23152 <autodoc>GetUTCTime() -
> long
</autodoc>
23154 <method name=
"GetCurrentTime" oldname=
"wxGetCurrentTime" type=
"long" overloaded=
"no">
23155 <autodoc>GetCurrentTime() -
> long
</autodoc>
23157 <method name=
"GetLocalTimeMillis" oldname=
"wxGetLocalTimeMillis" type=
"wxLongLong" overloaded=
"no">
23158 <autodoc>GetLocalTimeMillis() -
> wxLongLong
</autodoc>
23161 #---------------------------------------------------------------------------
23163 <class name=
"DataFormat" oldname=
"wxDataFormat" module=
"misc">
23164 <docstring>A wx.DataFormat is an encapsulation of a platform-specific format
23165 handle which is used by the system for the clipboard and drag and
23166 drop operations. The applications are usually only interested in,
23167 for example, pasting data from the clipboard only if the data is
23168 in a format the program understands. A data format is is used to
23169 uniquely identify this format.
23171 On the system level, a data format is usually just a number
23172 (CLIPFORMAT under Windows or Atom under X11, for example).
</docstring>
23173 <constructor name=
"DataFormat" overloaded=
"no">
23174 <autodoc>__init__(int type) -
> DataFormat
</autodoc>
23175 <docstring>Constructs a data format object for one of the standard data
23176 formats or an empty data object (use SetType or SetId later in
23177 this case)
</docstring>
23179 <param name=
"type" type=
"wxDataFormatId" default=
""/>
23182 <constructor name=
"CustomDataFormat" overloaded=
"no">
23183 <autodoc>CustomDataFormat(String format) -
> DataFormat
</autodoc>
23184 <docstring>Constructs a data format object for a custom format identified by its name.
</docstring>
23186 <param name=
"format" type=
"String" default=
""/>
23189 <destructor name=
"~wxDataFormat" overloaded=
"no">
23190 <autodoc>__del__()
</autodoc>
23192 <method name=
"__eq__" type=
"bool" overloaded=
"yes">
23194 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23197 <method name=
"__ne__" type=
"bool" overloaded=
"yes">
23199 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23202 <method name=
"__eq__" type=
"bool" overloaded=
"yes">
23203 <autodoc>__eq__(int format) -
> bool
23204 __eq__(DataFormat format) -
> bool
</autodoc>
23206 <param name=
"format" type=
"DataFormat" default=
""/>
23209 <method name=
"__ne__" type=
"bool" overloaded=
"yes">
23210 <autodoc>__ne__(int format) -
> bool
23211 __ne__(DataFormat format) -
> bool
</autodoc>
23213 <param name=
"format" type=
"DataFormat" default=
""/>
23216 <method name=
"SetType" type=
"" overloaded=
"no">
23217 <autodoc>SetType(int format)
</autodoc>
23218 <docstring>Sets the format to the given value, which should be one of wx.DF_XXX constants.
</docstring>
23220 <param name=
"format" type=
"wxDataFormatId" default=
""/>
23223 <method name=
"GetType" type=
"wxDataFormatId" overloaded=
"no">
23224 <autodoc>GetType() -
> int
</autodoc>
23225 <docstring>Returns the platform-specific number identifying the format.
</docstring>
23227 <method name=
"GetId" type=
"String" overloaded=
"no">
23228 <autodoc>GetId() -
> String
</autodoc>
23229 <docstring>Returns the name of a custom format (this function will fail for a standard format).
</docstring>
23231 <method name=
"SetId" type=
"" overloaded=
"no">
23232 <autodoc>SetId(String format)
</autodoc>
23233 <docstring>Sets the format to be the custom format identified by the given name.
</docstring>
23235 <param name=
"format" type=
"String" default=
""/>
23239 <class name=
"DataObject" oldname=
"wxDataObject" module=
"misc">
23240 <destructor name=
"~wxDataObject" overloaded=
"no">
23241 <autodoc>__del__()
</autodoc>
23243 <method name=
"GetPreferredFormat" type=
"DataFormat" overloaded=
"no">
23244 <autodoc>GetPreferredFormat(int dir=Get) -
> DataFormat
</autodoc>
23246 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23249 <method name=
"GetFormatCount" type=
"size_t" overloaded=
"no">
23250 <autodoc>GetFormatCount(int dir=Get) -
> size_t
</autodoc>
23252 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23255 <method name=
"IsSupported" type=
"bool" overloaded=
"no">
23256 <autodoc>IsSupported(DataFormat format, int dir=Get) -
> bool
</autodoc>
23258 <param name=
"format" type=
"DataFormat" default=
""/>
23259 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23262 <method name=
"GetDataSize" type=
"size_t" overloaded=
"no">
23263 <autodoc>GetDataSize(DataFormat format) -
> size_t
</autodoc>
23265 <param name=
"format" type=
"DataFormat" default=
""/>
23268 <method name=
"GetAllFormats" type=
"" overloaded=
"no">
23269 <autodoc>GetAllFormats(DataFormat formats, int dir=Get)
</autodoc>
23271 <param name=
"formats" type=
"DataFormat" default=
""/>
23272 <param name=
"dir" type=
"wxDataObject::Direction" default=
"wxDataObject::Get"/>
23275 <method name=
"GetDataHere" type=
"bool" overloaded=
"no">
23276 <autodoc>GetDataHere(DataFormat format, void buf) -
> bool
</autodoc>
23278 <param name=
"format" type=
"DataFormat" default=
""/>
23279 <param name=
"buf" type=
"" default=
""/>
23282 <method name=
"SetData" type=
"bool" overloaded=
"no">
23283 <autodoc>SetData(DataFormat format, size_t len, void buf) -
> bool
</autodoc>
23285 <param name=
"format" type=
"DataFormat" default=
""/>
23286 <param name=
"len" type=
"size_t" default=
""/>
23287 <param name=
"buf" type=
"" default=
""/>
23291 <class name=
"DataObjectSimple" oldname=
"wxDataObjectSimple" module=
"misc">
23292 <baseclass name=
"DataObject"/>
23293 <constructor name=
"DataObjectSimple" overloaded=
"no">
23294 <autodoc>__init__(DataFormat format=FormatInvalid) -
> DataObjectSimple
</autodoc>
23296 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23299 <method name=
"GetFormat" type=
"DataFormat" overloaded=
"no">
23300 <autodoc>GetFormat() -
> DataFormat
</autodoc>
23302 <method name=
"SetFormat" type=
"" overloaded=
"no">
23303 <autodoc>SetFormat(DataFormat format)
</autodoc>
23305 <param name=
"format" type=
"DataFormat" default=
""/>
23309 <class name=
"PyDataObjectSimple" oldname=
"wxPyDataObjectSimple" module=
"misc">
23310 <baseclass name=
"DataObjectSimple"/>
23311 <constructor name=
"PyDataObjectSimple" overloaded=
"no">
23312 <autodoc>__init__(DataFormat format=FormatInvalid) -
> PyDataObjectSimple
</autodoc>
23314 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23317 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23318 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23320 <param name=
"self" type=
"PyObject" default=
""/>
23321 <param name=
"_class" type=
"PyObject" default=
""/>
23325 <class name=
"DataObjectComposite" oldname=
"wxDataObjectComposite" module=
"misc">
23326 <baseclass name=
"DataObject"/>
23327 <constructor name=
"DataObjectComposite" overloaded=
"no">
23328 <autodoc>__init__() -
> DataObjectComposite
</autodoc>
23330 <method name=
"Add" type=
"" overloaded=
"no">
23331 <autodoc>Add(DataObjectSimple dataObject, int preferred=False)
</autodoc>
23333 <param name=
"dataObject" type=
"DataObjectSimple" default=
""/>
23334 <param name=
"preferred" type=
"int" default=
"False"/>
23338 <class name=
"TextDataObject" oldname=
"wxTextDataObject" module=
"misc">
23339 <baseclass name=
"DataObjectSimple"/>
23340 <constructor name=
"TextDataObject" overloaded=
"no">
23341 <autodoc>__init__(String text=EmptyString) -
> TextDataObject
</autodoc>
23343 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
23346 <method name=
"GetTextLength" type=
"size_t" overloaded=
"no">
23347 <autodoc>GetTextLength() -
> size_t
</autodoc>
23349 <method name=
"GetText" type=
"String" overloaded=
"no">
23350 <autodoc>GetText() -
> String
</autodoc>
23352 <method name=
"SetText" type=
"" overloaded=
"no">
23353 <autodoc>SetText(String text)
</autodoc>
23355 <param name=
"text" type=
"String" default=
""/>
23359 <class name=
"PyTextDataObject" oldname=
"wxPyTextDataObject" module=
"misc">
23360 <baseclass name=
"TextDataObject"/>
23361 <constructor name=
"PyTextDataObject" overloaded=
"no">
23362 <autodoc>__init__(String text=EmptyString) -
> PyTextDataObject
</autodoc>
23364 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
23367 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23368 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23370 <param name=
"self" type=
"PyObject" default=
""/>
23371 <param name=
"_class" type=
"PyObject" default=
""/>
23375 <class name=
"BitmapDataObject" oldname=
"wxBitmapDataObject" module=
"misc">
23376 <baseclass name=
"DataObjectSimple"/>
23377 <constructor name=
"BitmapDataObject" overloaded=
"no">
23378 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> BitmapDataObject
</autodoc>
23380 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
23383 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
23384 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
23386 <method name=
"SetBitmap" type=
"" overloaded=
"no">
23387 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
23389 <param name=
"bitmap" type=
"Bitmap" default=
""/>
23393 <class name=
"PyBitmapDataObject" oldname=
"wxPyBitmapDataObject" module=
"misc">
23394 <baseclass name=
"BitmapDataObject"/>
23395 <constructor name=
"PyBitmapDataObject" overloaded=
"no">
23396 <autodoc>__init__(Bitmap bitmap=wxNullBitmap) -
> PyBitmapDataObject
</autodoc>
23398 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
23401 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23402 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23404 <param name=
"self" type=
"PyObject" default=
""/>
23405 <param name=
"_class" type=
"PyObject" default=
""/>
23409 <class name=
"FileDataObject" oldname=
"wxFileDataObject" module=
"misc">
23410 <baseclass name=
"DataObjectSimple"/>
23411 <constructor name=
"FileDataObject" overloaded=
"no">
23412 <autodoc>__init__() -
> FileDataObject
</autodoc>
23414 <method name=
"GetFilenames" type=
"wxArrayString" overloaded=
"no">
23415 <autodoc>GetFilenames() -
> wxArrayString
</autodoc>
23417 <method name=
"AddFile" type=
"" overloaded=
"no">
23418 <autodoc>AddFile(String filename)
</autodoc>
23420 <param name=
"filename" type=
"String" default=
""/>
23424 <class name=
"CustomDataObject" oldname=
"wxCustomDataObject" module=
"misc">
23425 <baseclass name=
"DataObjectSimple"/>
23426 <constructor name=
"CustomDataObject" overloaded=
"no">
23427 <autodoc>__init__(DataFormat format=FormatInvalid) -
> CustomDataObject
</autodoc>
23429 <param name=
"format" type=
"DataFormat" default=
"wxFormatInvalid"/>
23432 <method name=
"TakeData" type=
"" overloaded=
"no">
23433 <autodoc>TakeData(PyObject data)
</autodoc>
23435 <param name=
"data" type=
"PyObject" default=
""/>
23438 <method name=
"SetData" type=
"bool" overloaded=
"no">
23439 <autodoc>SetData(PyObject data) -
> bool
</autodoc>
23441 <param name=
"data" type=
"PyObject" default=
""/>
23444 <method name=
"GetSize" type=
"size_t" overloaded=
"no">
23445 <autodoc>GetSize() -
> size_t
</autodoc>
23447 <method name=
"GetData" type=
"PyObject" overloaded=
"no">
23448 <autodoc>GetData() -
> PyObject
</autodoc>
23451 <class name=
"URLDataObject" oldname=
"wxURLDataObject" module=
"misc">
23452 <baseclass name=
"DataObjectComposite"/>
23453 <constructor name=
"URLDataObject" overloaded=
"no">
23454 <autodoc>__init__() -
> URLDataObject
</autodoc>
23456 <method name=
"GetURL" type=
"String" overloaded=
"no">
23457 <autodoc>GetURL() -
> String
</autodoc>
23459 <method name=
"SetURL" type=
"" overloaded=
"no">
23460 <autodoc>SetURL(String url)
</autodoc>
23462 <param name=
"url" type=
"String" default=
""/>
23466 <class name=
"MetafileDataObject" oldname=
"wxMetafileDataObject" module=
"misc">
23467 <baseclass name=
"DataObjectSimple"/>
23468 <constructor name=
"MetafileDataObject" overloaded=
"no">
23469 <autodoc>__init__() -
> MetafileDataObject
</autodoc>
23473 #---------------------------------------------------------------------------
23475 <method name=
"IsDragResultOk" oldname=
"wxIsDragResultOk" type=
"bool" overloaded=
"no">
23476 <autodoc>IsDragResultOk(int res) -
> bool
</autodoc>
23478 <param name=
"res" type=
"wxDragResult" default=
""/>
23481 <class name=
"DropSource" oldname=
"wxPyDropSource" module=
"misc">
23482 <constructor name=
"wxPyDropSource" overloaded=
"no">
23483 <autodoc>__init__(Window win, Icon copy=wxNullIcon, Icon move=wxNullIcon,
23484 Icon none=wxNullIcon) -
> DropSource
</autodoc>
23486 <param name=
"win" type=
"Window" default=
""/>
23487 <param name=
"copy" type=
"Icon" default=
"wxNullIcon"/>
23488 <param name=
"move" type=
"Icon" default=
"wxNullIcon"/>
23489 <param name=
"none" type=
"Icon" default=
"wxNullIcon"/>
23492 <destructor name=
"~wxPyDropSource" overloaded=
"no">
23493 <autodoc>__del__()
</autodoc>
23495 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23496 <autodoc>_setCallbackInfo(PyObject self, PyObject _class, int incref)
</autodoc>
23498 <param name=
"self" type=
"PyObject" default=
""/>
23499 <param name=
"_class" type=
"PyObject" default=
""/>
23500 <param name=
"incref" type=
"int" default=
""/>
23503 <method name=
"SetData" type=
"" overloaded=
"no">
23504 <autodoc>SetData(DataObject data)
</autodoc>
23506 <param name=
"data" type=
"DataObject" default=
""/>
23509 <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no">
23510 <autodoc>GetDataObject() -
> DataObject
</autodoc>
23512 <method name=
"SetCursor" type=
"" overloaded=
"no">
23513 <autodoc>SetCursor(int res, Cursor cursor)
</autodoc>
23515 <param name=
"res" type=
"wxDragResult" default=
""/>
23516 <param name=
"cursor" type=
"Cursor" default=
""/>
23519 <method name=
"DoDragDrop" type=
"wxDragResult" overloaded=
"no">
23520 <autodoc>DoDragDrop(int flags=Drag_CopyOnly) -
> int
</autodoc>
23522 <param name=
"flags" type=
"int" default=
"wxDrag_CopyOnly"/>
23525 <method name=
"base_GiveFeedback" type=
"bool" overloaded=
"no">
23526 <autodoc>base_GiveFeedback(int effect) -
> bool
</autodoc>
23528 <param name=
"effect" type=
"wxDragResult" default=
""/>
23532 <class name=
"DropTarget" oldname=
"wxPyDropTarget" module=
"misc">
23533 <constructor name=
"DropTarget" overloaded=
"no">
23534 <autodoc>__init__(DataObject dataObject=None) -
> DropTarget
</autodoc>
23536 <param name=
"dataObject" type=
"DataObject" default=
"NULL"/>
23539 <destructor name=
"~wxPyDropTarget" overloaded=
"no">
23540 <autodoc>__del__()
</autodoc>
23542 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23543 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23545 <param name=
"self" type=
"PyObject" default=
""/>
23546 <param name=
"_class" type=
"PyObject" default=
""/>
23549 <method name=
"GetDataObject" type=
"DataObject" overloaded=
"no">
23550 <autodoc>GetDataObject() -
> DataObject
</autodoc>
23552 <method name=
"SetDataObject" type=
"" overloaded=
"no">
23553 <autodoc>SetDataObject(DataObject dataObject)
</autodoc>
23555 <param name=
"dataObject" type=
"DataObject" default=
""/>
23558 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23559 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23561 <param name=
"x" type=
"int" default=
""/>
23562 <param name=
"y" type=
"int" default=
""/>
23563 <param name=
"def" type=
"wxDragResult" default=
""/>
23566 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23567 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23569 <param name=
"x" type=
"int" default=
""/>
23570 <param name=
"y" type=
"int" default=
""/>
23571 <param name=
"def" type=
"wxDragResult" default=
""/>
23574 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23575 <autodoc>base_OnLeave()
</autodoc>
23577 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23578 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23580 <param name=
"x" type=
"int" default=
""/>
23581 <param name=
"y" type=
"int" default=
""/>
23584 <method name=
"GetData" type=
"bool" overloaded=
"no">
23585 <autodoc>GetData() -
> bool
</autodoc>
23588 <pythoncode> PyDropTarget = DropTarget
</pythoncode>
23589 <class name=
"TextDropTarget" oldname=
"wxPyTextDropTarget" module=
"misc">
23590 <baseclass name=
"DropTarget"/>
23591 <constructor name=
"wxPyTextDropTarget" overloaded=
"no">
23592 <autodoc>__init__() -
> TextDropTarget
</autodoc>
23594 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23595 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23597 <param name=
"self" type=
"PyObject" default=
""/>
23598 <param name=
"_class" type=
"PyObject" default=
""/>
23601 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23602 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23604 <param name=
"x" type=
"int" default=
""/>
23605 <param name=
"y" type=
"int" default=
""/>
23606 <param name=
"def" type=
"wxDragResult" default=
""/>
23609 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23610 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23612 <param name=
"x" type=
"int" default=
""/>
23613 <param name=
"y" type=
"int" default=
""/>
23614 <param name=
"def" type=
"wxDragResult" default=
""/>
23617 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23618 <autodoc>base_OnLeave()
</autodoc>
23620 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23621 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23623 <param name=
"x" type=
"int" default=
""/>
23624 <param name=
"y" type=
"int" default=
""/>
23627 <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no">
23628 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
23630 <param name=
"x" type=
"int" default=
""/>
23631 <param name=
"y" type=
"int" default=
""/>
23632 <param name=
"def" type=
"wxDragResult" default=
""/>
23636 <class name=
"FileDropTarget" oldname=
"wxPyFileDropTarget" module=
"misc">
23637 <baseclass name=
"DropTarget"/>
23638 <constructor name=
"wxPyFileDropTarget" overloaded=
"no">
23639 <autodoc>__init__() -
> FileDropTarget
</autodoc>
23641 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
23642 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
23644 <param name=
"self" type=
"PyObject" default=
""/>
23645 <param name=
"_class" type=
"PyObject" default=
""/>
23648 <method name=
"base_OnEnter" type=
"wxDragResult" overloaded=
"no">
23649 <autodoc>base_OnEnter(int x, int y, int def) -
> int
</autodoc>
23651 <param name=
"x" type=
"int" default=
""/>
23652 <param name=
"y" type=
"int" default=
""/>
23653 <param name=
"def" type=
"wxDragResult" default=
""/>
23656 <method name=
"base_OnDragOver" type=
"wxDragResult" overloaded=
"no">
23657 <autodoc>base_OnDragOver(int x, int y, int def) -
> int
</autodoc>
23659 <param name=
"x" type=
"int" default=
""/>
23660 <param name=
"y" type=
"int" default=
""/>
23661 <param name=
"def" type=
"wxDragResult" default=
""/>
23664 <method name=
"base_OnLeave" type=
"" overloaded=
"no">
23665 <autodoc>base_OnLeave()
</autodoc>
23667 <method name=
"base_OnDrop" type=
"bool" overloaded=
"no">
23668 <autodoc>base_OnDrop(int x, int y) -
> bool
</autodoc>
23670 <param name=
"x" type=
"int" default=
""/>
23671 <param name=
"y" type=
"int" default=
""/>
23674 <method name=
"base_OnData" type=
"wxDragResult" overloaded=
"no">
23675 <autodoc>base_OnData(int x, int y, int def) -
> int
</autodoc>
23677 <param name=
"x" type=
"int" default=
""/>
23678 <param name=
"y" type=
"int" default=
""/>
23679 <param name=
"def" type=
"wxDragResult" default=
""/>
23684 #---------------------------------------------------------------------------
23686 <class name=
"Clipboard" oldname=
"wxClipboard" module=
"misc">
23687 <docstring>wx.Clipboard represents the system clipboard and provides methods to copy data
23688 to or paste data from it. Normally, you should only use wx.TheClipboard which
23689 is a reference to a global wx.Clipboard instance.
23691 Call wx.TheClipboard.Open to get ownership of the clipboard. If this operation
23692 returns True, you now own the clipboard. Call wx.TheClipboard.SetData to put
23693 data on the clipboard, or wx.TheClipboard.GetData to retrieve data from the
23694 clipboard. Call wx.TheClipboard.Close to close the clipboard and relinquish
23695 ownership. You should keep the clipboard open only momentarily.
23697 <baseclass name=
"Object"/>
23698 <constructor name=
"Clipboard" overloaded=
"no">
23699 <autodoc>__init__() -
> Clipboard
</autodoc>
23701 <destructor name=
"~wxClipboard" overloaded=
"no">
23702 <autodoc>__del__()
</autodoc>
23704 <method name=
"Open" type=
"bool" overloaded=
"no">
23705 <autodoc>Open() -
> bool
</autodoc>
23706 <docstring>Call this function to open the clipboard before calling SetData
23707 and GetData. Call Close when you have finished with the clipboard.
23708 You should keep the clipboard open for only a very short time.
23709 Returns true on success.
</docstring>
23711 <method name=
"Close" type=
"" overloaded=
"no">
23712 <autodoc>Close()
</autodoc>
23713 <docstring>Closes the clipboard.
</docstring>
23715 <method name=
"IsOpened" type=
"bool" overloaded=
"no">
23716 <autodoc>IsOpened() -
> bool
</autodoc>
23717 <docstring>Query whether the clipboard is opened
</docstring>
23719 <method name=
"AddData" type=
"bool" overloaded=
"no">
23720 <autodoc>AddData(DataObject data) -
> bool
</autodoc>
23721 <docstring>Call this function to add the data object to the clipboard. You
23722 may call this function repeatedly after having cleared the clipboard.
23723 After this function has been called, the clipboard owns the data, so
23724 do not delete the data explicitly.
</docstring>
23726 <param name=
"data" type=
"DataObject" default=
""/>
23729 <method name=
"SetData" type=
"bool" overloaded=
"no">
23730 <autodoc>SetData(DataObject data) -
> bool
</autodoc>
23731 <docstring>Set the clipboard data, this is the same as Clear followed by AddData.
</docstring>
23733 <param name=
"data" type=
"DataObject" default=
""/>
23736 <method name=
"IsSupported" type=
"bool" overloaded=
"no">
23737 <autodoc>IsSupported(DataFormat format) -
> bool
</autodoc>
23738 <docstring>Returns True if the given format is available in the data object(s) on
23739 the clipboard.
</docstring>
23741 <param name=
"format" type=
"DataFormat" default=
""/>
23744 <method name=
"GetData" type=
"bool" overloaded=
"no">
23745 <autodoc>GetData(DataObject data) -
> bool
</autodoc>
23746 <docstring>Call this function to fill data with data on the clipboard, if available
23747 in the required format. Returns true on success.
</docstring>
23749 <param name=
"data" type=
"DataObject" default=
""/>
23752 <method name=
"Clear" type=
"" overloaded=
"no">
23753 <autodoc>Clear()
</autodoc>
23754 <docstring>Clears data from the clipboard object and also the system's clipboard
23755 if possible.
</docstring>
23757 <method name=
"Flush" type=
"bool" overloaded=
"no">
23758 <autodoc>Flush() -
> bool
</autodoc>
23759 <docstring>Flushes the clipboard: this means that the data which is currently on
23760 clipboard will stay available even after the application exits (possibly
23761 eating memory), otherwise the clipboard will be emptied on exit.
23762 Returns False if the operation is unsuccesful for any reason.
</docstring>
23764 <method name=
"UsePrimarySelection" type=
"" overloaded=
"no">
23765 <autodoc>UsePrimarySelection(bool primary=True)
</autodoc>
23766 <docstring>On platforms supporting it (the X11 based platforms), selects the so
23767 called PRIMARY SELECTION as the clipboard as opposed to the normal
23768 clipboard, if primary is True.
</docstring>
23770 <param name=
"primary" type=
"bool" default=
"True"/>
23774 <class name=
"ClipboardLocker" oldname=
"wxClipboardLocker" module=
"misc">
23775 <docstring>A helpful class for opening the clipboard and automatically closing it when
23776 the locker is destroyed.
</docstring>
23777 <constructor name=
"ClipboardLocker" overloaded=
"no">
23778 <autodoc>__init__(Clipboard clipboard=None) -
> ClipboardLocker
</autodoc>
23779 <docstring>A helpful class for opening the clipboard and automatically closing it when
23780 the locker is destroyed.
</docstring>
23782 <param name=
"clipboard" type=
"Clipboard" default=
"NULL"/>
23785 <destructor name=
"~wxClipboardLocker" overloaded=
"no">
23786 <autodoc>__del__()
</autodoc>
23788 <method name=
"__nonzero__" type=
"bool" overloaded=
"no">
23789 <autodoc>__nonzero__() -
> bool
</autodoc>
23790 <docstring>A ClipboardLocker instance evaluates to True if the clipboard was
23791 successfully opened.
</docstring>
23795 <module name=
"calendar">
23796 <import name=
"misc"/>
23797 <pythoncode> wx = core
</pythoncode>
23798 <class name=
"CalendarDateAttr" oldname=
"wxCalendarDateAttr" module=
"calendar">
23799 <docstring>A set of customization attributes for a calendar date, which can be used to
23800 control the look of the Calendar object.
</docstring>
23801 <constructor name=
"CalendarDateAttr" overloaded=
"no">
23802 <autodoc>__init__(Colour colText=wxNullColour, Colour colBack=wxNullColour,
23803 Colour colBorder=wxNullColour, Font font=wxNullFont,
23804 int border=CAL_BORDER_NONE) -
> CalendarDateAttr
</autodoc>
23805 <docstring>Create a CalendarDateAttr.
</docstring>
23807 <param name=
"colText" type=
"Colour" default=
"wxNullColour"/>
23808 <param name=
"colBack" type=
"Colour" default=
"wxNullColour"/>
23809 <param name=
"colBorder" type=
"Colour" default=
"wxNullColour"/>
23810 <param name=
"font" type=
"Font" default=
"wxNullFont"/>
23811 <param name=
"border" type=
"wxCalendarDateBorder" default=
"wxCAL_BORDER_NONE"/>
23814 <method name=
"SetTextColour" type=
"" overloaded=
"no">
23815 <autodoc>SetTextColour(Colour colText)
</autodoc>
23817 <param name=
"colText" type=
"Colour" default=
""/>
23820 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
23821 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
23823 <param name=
"colBack" type=
"Colour" default=
""/>
23826 <method name=
"SetBorderColour" type=
"" overloaded=
"no">
23827 <autodoc>SetBorderColour(Colour col)
</autodoc>
23829 <param name=
"col" type=
"Colour" default=
""/>
23832 <method name=
"SetFont" type=
"" overloaded=
"no">
23833 <autodoc>SetFont(Font font)
</autodoc>
23835 <param name=
"font" type=
"Font" default=
""/>
23838 <method name=
"SetBorder" type=
"" overloaded=
"no">
23839 <autodoc>SetBorder(int border)
</autodoc>
23841 <param name=
"border" type=
"wxCalendarDateBorder" default=
""/>
23844 <method name=
"SetHoliday" type=
"" overloaded=
"no">
23845 <autodoc>SetHoliday(bool holiday)
</autodoc>
23847 <param name=
"holiday" type=
"bool" default=
""/>
23850 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
23851 <autodoc>HasTextColour() -
> bool
</autodoc>
23853 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
23854 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
23856 <method name=
"HasBorderColour" type=
"bool" overloaded=
"no">
23857 <autodoc>HasBorderColour() -
> bool
</autodoc>
23859 <method name=
"HasFont" type=
"bool" overloaded=
"no">
23860 <autodoc>HasFont() -
> bool
</autodoc>
23862 <method name=
"HasBorder" type=
"bool" overloaded=
"no">
23863 <autodoc>HasBorder() -
> bool
</autodoc>
23865 <method name=
"IsHoliday" type=
"bool" overloaded=
"no">
23866 <autodoc>IsHoliday() -
> bool
</autodoc>
23868 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
23869 <autodoc>GetTextColour() -
> Colour
</autodoc>
23871 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
23872 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
23874 <method name=
"GetBorderColour" type=
"Colour" overloaded=
"no">
23875 <autodoc>GetBorderColour() -
> Colour
</autodoc>
23877 <method name=
"GetFont" type=
"Font" overloaded=
"no">
23878 <autodoc>GetFont() -
> Font
</autodoc>
23880 <method name=
"GetBorder" type=
"wxCalendarDateBorder" overloaded=
"no">
23881 <autodoc>GetBorder() -
> int
</autodoc>
23884 <class name=
"CalendarEvent" oldname=
"wxCalendarEvent" module=
"calendar">
23885 <baseclass name=
"CommandEvent"/>
23886 <constructor name=
"CalendarEvent" overloaded=
"no">
23887 <autodoc>__init__(CalendarCtrl cal, wxEventType type) -
> CalendarEvent
</autodoc>
23889 <param name=
"cal" type=
"wxCalendarCtrl" default=
""/>
23890 <param name=
"type" type=
"wxEventType" default=
""/>
23893 <method name=
"GetDate" type=
"DateTime" overloaded=
"no">
23894 <autodoc>GetDate() -
> DateTime
</autodoc>
23896 <method name=
"SetDate" type=
"" overloaded=
"no">
23897 <autodoc>SetDate(DateTime date)
</autodoc>
23899 <param name=
"date" type=
"DateTime" default=
""/>
23902 <method name=
"SetWeekDay" type=
"" overloaded=
"no">
23903 <autodoc>SetWeekDay(int wd)
</autodoc>
23905 <param name=
"wd" type=
"wxDateTime::WeekDay" default=
""/>
23908 <method name=
"GetWeekDay" type=
"wxDateTime::WeekDay" overloaded=
"no">
23909 <autodoc>GetWeekDay() -
> int
</autodoc>
23913 EVT_CALENDAR = wx.PyEventBinder( wxEVT_CALENDAR_DOUBLECLICKED,
1)
23914 EVT_CALENDAR_SEL_CHANGED = wx.PyEventBinder( wxEVT_CALENDAR_SEL_CHANGED,
1)
23915 EVT_CALENDAR_DAY = wx.PyEventBinder( wxEVT_CALENDAR_DAY_CHANGED,
1)
23916 EVT_CALENDAR_MONTH = wx.PyEventBinder( wxEVT_CALENDAR_MONTH_CHANGED,
1)
23917 EVT_CALENDAR_YEAR = wx.PyEventBinder( wxEVT_CALENDAR_YEAR_CHANGED,
1)
23918 EVT_CALENDAR_WEEKDAY_CLICKED = wx.PyEventBinder( wxEVT_CALENDAR_WEEKDAY_CLICKED,
1)
23920 <class name=
"CalendarCtrl" oldname=
"wxCalendarCtrl" module=
"calendar">
23921 <docstring>The calendar control allows the user to pick a date interactively.
</docstring>
23922 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
23923 pick the month and the year at the top (either or both of them may be
23924 disabled) and a month area below them which shows all the days in the
23925 month. The user can move the current selection using the keyboard and select
23926 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
23929 It has advanced possibilities for the customization of its display. All global
23930 settings (such as colours and fonts used) can, of course, be changed. But
23931 also, the display style for each day in the month can be set independently
23932 using CalendarDateAttr class.
23934 An item without custom attributes is drawn with the default colours and font
23935 and without border, but setting custom attributes with SetAttr allows to
23936 modify its appearance. Just create a custom attribute object and set it for
23937 the day you want to be displayed specially A day may be marked as being a
23938 holiday, (even if it is not recognized as one by wx.DateTime) by using the
23941 As the attributes are specified for each day, they may change when the month
23942 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
23946 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
23947 CAL_MONDAY_FIRST: Show Monday as the first day in the week
23948 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
23949 CAL_NO_YEAR_CHANGE: Disable the year changing
23950 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
23951 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
23952 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
23954 The default calendar style is wxCAL_SHOW_HOLIDAYS.
23957 EVT_CALENDAR: A day was double clicked in the calendar.
23958 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
23959 EVT_CALENDAR_DAY: The selected day changed.
23960 EVT_CALENDAR_MONTH: The selected month changed.
23961 EVT_CALENDAR_YEAR: The selected year changed.
23962 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
23964 Note that changing the selected date will result in either of
23965 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
23968 <baseclass name=
"Control"/>
23969 <constructor name=
"CalendarCtrl" overloaded=
"no">
23970 <autodoc>__init__(Window parent, int id, DateTime date=DefaultDateTime,
23971 Point pos=DefaultPosition, Size size=DefaultSize,
23972 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
23973 String name=CalendarNameStr) -
> CalendarCtrl
</autodoc>
23974 <docstring>Create and show a calendar control.
</docstring>
23975 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
23976 pick the month and the year at the top (either or both of them may be
23977 disabled) and a month area below them which shows all the days in the
23978 month. The user can move the current selection using the keyboard and select
23979 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
23982 It has advanced possibilities for the customization of its display. All global
23983 settings (such as colours and fonts used) can, of course, be changed. But
23984 also, the display style for each day in the month can be set independently
23985 using CalendarDateAttr class.
23987 An item without custom attributes is drawn with the default colours and font
23988 and without border, but setting custom attributes with SetAttr allows to
23989 modify its appearance. Just create a custom attribute object and set it for
23990 the day you want to be displayed specially A day may be marked as being a
23991 holiday, (even if it is not recognized as one by wx.DateTime) by using the
23994 As the attributes are specified for each day, they may change when the month
23995 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
23999 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
24000 CAL_MONDAY_FIRST: Show Monday as the first day in the week
24001 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
24002 CAL_NO_YEAR_CHANGE: Disable the year changing
24003 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
24004 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
24005 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
24007 The default calendar style is wxCAL_SHOW_HOLIDAYS.
24010 EVT_CALENDAR: A day was double clicked in the calendar.
24011 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
24012 EVT_CALENDAR_DAY: The selected day changed.
24013 EVT_CALENDAR_MONTH: The selected month changed.
24014 EVT_CALENDAR_YEAR: The selected year changed.
24015 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
24017 Note that changing the selected date will result in either of
24018 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
24022 <param name=
"parent" type=
"Window" default=
""/>
24023 <param name=
"id" type=
"int" default=
""/>
24024 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24025 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
24026 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
24027 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
24028 <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/>
24031 <constructor name=
"PreCalendarCtrl" overloaded=
"no">
24032 <autodoc>PreCalendarCtrl() -
> CalendarCtrl
</autodoc>
24033 <docstring>Precreate a CalendarCtrl for
2-phase creation.
</docstring>
24034 <refdoc>The CalendarCtrl displays a window containing several parts: the control to
24035 pick the month and the year at the top (either or both of them may be
24036 disabled) and a month area below them which shows all the days in the
24037 month. The user can move the current selection using the keyboard and select
24038 the date (generating EVT_CALENDAR event) by pressing
<Return
> or double
24041 It has advanced possibilities for the customization of its display. All global
24042 settings (such as colours and fonts used) can, of course, be changed. But
24043 also, the display style for each day in the month can be set independently
24044 using CalendarDateAttr class.
24046 An item without custom attributes is drawn with the default colours and font
24047 and without border, but setting custom attributes with SetAttr allows to
24048 modify its appearance. Just create a custom attribute object and set it for
24049 the day you want to be displayed specially A day may be marked as being a
24050 holiday, (even if it is not recognized as one by wx.DateTime) by using the
24053 As the attributes are specified for each day, they may change when the month
24054 is changed, so you will often want to update them in an EVT_CALENDAR_MONTH
24058 CAL_SUNDAY_FIRST: Show Sunday as the first day in the week
24059 CAL_MONDAY_FIRST: Show Monday as the first day in the week
24060 CAL_SHOW_HOLIDAYS: Highlight holidays in the calendar
24061 CAL_NO_YEAR_CHANGE: Disable the year changing
24062 CAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing
24063 CAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months
24064 CAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls.
24066 The default calendar style is wxCAL_SHOW_HOLIDAYS.
24069 EVT_CALENDAR: A day was double clicked in the calendar.
24070 EVT_CALENDAR_SEL_CHANGED: The selected date changed.
24071 EVT_CALENDAR_DAY: The selected day changed.
24072 EVT_CALENDAR_MONTH: The selected month changed.
24073 EVT_CALENDAR_YEAR: The selected year changed.
24074 EVT_CALENDAR_WEEKDAY_CLICKED: User clicked on the week day header
24076 Note that changing the selected date will result in either of
24077 EVT_CALENDAR_DAY, MONTH or YEAR events and an EVT_CALENDAR_SEL_CHANGED event.
24081 <method name=
"Create" type=
"bool" overloaded=
"no">
24082 <autodoc>Create(Window parent, int id, DateTime date=DefaultDateTime,
24083 Point pos=DefaultPosition, Size size=DefaultSize,
24084 long style=wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS,
24085 String name=CalendarNameStr) -
> bool
</autodoc>
24086 <docstring>Acutally create the GUI portion of the CalendarCtrl for
2-phase creation.
</docstring>
24088 <param name=
"parent" type=
"Window" default=
""/>
24089 <param name=
"id" type=
"int" default=
""/>
24090 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24091 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
24092 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
24093 <param name=
"style" type=
"long" default=
"wxCAL_SHOW_HOLIDAYS|wxWANTS_CHARS"/>
24094 <param name=
"name" type=
"String" default=
"wxPyCalendarNameStr"/>
24097 <method name=
"SetDate" type=
"" overloaded=
"no">
24098 <autodoc>SetDate(DateTime date)
</autodoc>
24099 <docstring>Sets the current date.
</docstring>
24101 <param name=
"date" type=
"DateTime" default=
""/>
24104 <method name=
"GetDate" type=
"DateTime" overloaded=
"no">
24105 <autodoc>GetDate() -
> DateTime
</autodoc>
24106 <docstring>Gets the currently selected date.
</docstring>
24108 <method name=
"SetLowerDateLimit" type=
"bool" overloaded=
"no">
24109 <autodoc>SetLowerDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
24110 <docstring>set the range in which selection can occur
</docstring>
24112 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24115 <method name=
"SetUpperDateLimit" type=
"bool" overloaded=
"no">
24116 <autodoc>SetUpperDateLimit(DateTime date=DefaultDateTime) -
> bool
</autodoc>
24117 <docstring>set the range in which selection can occur
</docstring>
24119 <param name=
"date" type=
"DateTime" default=
"wxDefaultDateTime"/>
24122 <method name=
"GetLowerDateLimit" type=
"DateTime" overloaded=
"no">
24123 <autodoc>GetLowerDateLimit() -
> DateTime
</autodoc>
24124 <docstring>get the range in which selection can occur
</docstring>
24126 <method name=
"GetUpperDateLimit" type=
"DateTime" overloaded=
"no">
24127 <autodoc>GetUpperDateLimit() -
> DateTime
</autodoc>
24128 <docstring>get the range in which selection can occur
</docstring>
24130 <method name=
"SetDateRange" type=
"bool" overloaded=
"no">
24131 <autodoc>SetDateRange(DateTime lowerdate=DefaultDateTime, DateTime upperdate=DefaultDateTime) -
> bool
</autodoc>
24132 <docstring>set the range in which selection can occur
</docstring>
24134 <param name=
"lowerdate" type=
"DateTime" default=
"wxDefaultDateTime"/>
24135 <param name=
"upperdate" type=
"DateTime" default=
"wxDefaultDateTime"/>
24138 <method name=
"EnableYearChange" type=
"" overloaded=
"no">
24139 <autodoc>EnableYearChange(bool enable=True)
</autodoc>
24140 <docstring>This function should be used instead of changing CAL_NO_YEAR_CHANGE
24141 style bit directly. It allows or disallows the user to change the year
24142 interactively.
</docstring>
24144 <param name=
"enable" type=
"bool" default=
"True"/>
24147 <method name=
"EnableMonthChange" type=
"" overloaded=
"no">
24148 <autodoc>EnableMonthChange(bool enable=True)
</autodoc>
24149 <docstring>This function should be used instead of changing CAL_NO_MONTH_CHANGE style
24150 bit. It allows or disallows the user to change the month interactively. Note
24151 that if the month can not be changed, the year can not be changed either.
</docstring>
24153 <param name=
"enable" type=
"bool" default=
"True"/>
24156 <method name=
"EnableHolidayDisplay" type=
"" overloaded=
"no">
24157 <autodoc>EnableHolidayDisplay(bool display=True)
</autodoc>
24158 <docstring>This function should be used instead of changing CAL_SHOW_HOLIDAYS style
24159 bit directly. It enables or disables the special highlighting of the holidays.
</docstring>
24161 <param name=
"display" type=
"bool" default=
"True"/>
24164 <method name=
"SetHeaderColours" type=
"" overloaded=
"no">
24165 <autodoc>SetHeaderColours(Colour colFg, Colour colBg)
</autodoc>
24166 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24168 <param name=
"colFg" type=
"Colour" default=
""/>
24169 <param name=
"colBg" type=
"Colour" default=
""/>
24172 <method name=
"GetHeaderColourFg" type=
"Colour" overloaded=
"no">
24173 <autodoc>GetHeaderColourFg() -
> Colour
</autodoc>
24174 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24176 <method name=
"GetHeaderColourBg" type=
"Colour" overloaded=
"no">
24177 <autodoc>GetHeaderColourBg() -
> Colour
</autodoc>
24178 <docstring>header colours are used for painting the weekdays at the top
</docstring>
24180 <method name=
"SetHighlightColours" type=
"" overloaded=
"no">
24181 <autodoc>SetHighlightColours(Colour colFg, Colour colBg)
</autodoc>
24182 <docstring>highlight colour is used for the currently selected date
</docstring>
24184 <param name=
"colFg" type=
"Colour" default=
""/>
24185 <param name=
"colBg" type=
"Colour" default=
""/>
24188 <method name=
"GetHighlightColourFg" type=
"Colour" overloaded=
"no">
24189 <autodoc>GetHighlightColourFg() -
> Colour
</autodoc>
24190 <docstring>highlight colour is used for the currently selected date
</docstring>
24192 <method name=
"GetHighlightColourBg" type=
"Colour" overloaded=
"no">
24193 <autodoc>GetHighlightColourBg() -
> Colour
</autodoc>
24194 <docstring>highlight colour is used for the currently selected date
</docstring>
24196 <method name=
"SetHolidayColours" type=
"" overloaded=
"no">
24197 <autodoc>SetHolidayColours(Colour colFg, Colour colBg)
</autodoc>
24198 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24200 <param name=
"colFg" type=
"Colour" default=
""/>
24201 <param name=
"colBg" type=
"Colour" default=
""/>
24204 <method name=
"GetHolidayColourFg" type=
"Colour" overloaded=
"no">
24205 <autodoc>GetHolidayColourFg() -
> Colour
</autodoc>
24206 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24208 <method name=
"GetHolidayColourBg" type=
"Colour" overloaded=
"no">
24209 <autodoc>GetHolidayColourBg() -
> Colour
</autodoc>
24210 <docstring>holiday colour is used for the holidays (if CAL_SHOW_HOLIDAYS style is used)
</docstring>
24212 <method name=
"GetAttr" type=
"CalendarDateAttr" overloaded=
"no">
24213 <autodoc>GetAttr(size_t day) -
> CalendarDateAttr
</autodoc>
24214 <docstring>Returns the attribute for the given date (should be in the range
1..
.31).
24215 The returned value may be None
</docstring>
24217 <param name=
"day" type=
"size_t" default=
""/>
24220 <method name=
"SetAttr" type=
"" overloaded=
"no">
24221 <autodoc>SetAttr(size_t day, CalendarDateAttr attr)
</autodoc>
24222 <docstring>Associates the attribute with the specified date (in the range
1..
.31).
24223 If the attribute passed is None, the items attribute is cleared.
</docstring>
24225 <param name=
"day" type=
"size_t" default=
""/>
24226 <param name=
"attr" type=
"CalendarDateAttr" default=
""/>
24229 <method name=
"SetHoliday" type=
"" overloaded=
"no">
24230 <autodoc>SetHoliday(size_t day)
</autodoc>
24231 <docstring>Marks the specified day as being a holiday in the current month.
</docstring>
24233 <param name=
"day" type=
"size_t" default=
""/>
24236 <method name=
"ResetAttr" type=
"" overloaded=
"no">
24237 <autodoc>ResetAttr(size_t day)
</autodoc>
24238 <docstring>Clears any attributes associated with the given day (in the range
1..
.31).
</docstring>
24240 <param name=
"day" type=
"size_t" default=
""/>
24243 <method name=
"HitTest" type=
"PyObject" overloaded=
"no">
24244 <autodoc>HitTest(Point pos) -
> (result, date, weekday)
</autodoc>
24245 <docstring>Returns
3-tuple with information about the given position on the calendar
24246 control. The first value of the tuple is a result code and determines the
24247 validity of the remaining two values. The result codes are:
24249 CAL_HITTEST_NOWHERE: hit outside of anything
24250 CAL_HITTEST_HEADER: hit on the header, weekday is valid
24251 CAL_HITTEST_DAY: hit on a day in the calendar, date is set.
24254 <param name=
"pos" type=
"Point" default=
""/>
24257 <method name=
"GetMonthControl" type=
"Control" overloaded=
"no">
24258 <autodoc>GetMonthControl() -
> Control
</autodoc>
24259 <docstring>get the currently shown control for month
</docstring>
24261 <method name=
"GetYearControl" type=
"Control" overloaded=
"no">
24262 <autodoc>GetYearControl() -
> Control
</autodoc>
24263 <docstring>get the currently shown control for year
</docstring>
24267 <module name=
"grid">
24268 <import name=
"windows"/>
24269 <pythoncode> wx = core
</pythoncode>
24270 <class name=
"GridCellRenderer" oldname=
"wxGridCellRenderer" module=
"grid">
24271 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24272 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24274 <param name=
"_self" type=
"PyObject" default=
""/>
24277 <method name=
"SetParameters" type=
"" overloaded=
"no">
24278 <autodoc>SetParameters(String params)
</autodoc>
24280 <param name=
"params" type=
"String" default=
""/>
24283 <method name=
"IncRef" type=
"" overloaded=
"no">
24284 <autodoc>IncRef()
</autodoc>
24286 <method name=
"DecRef" type=
"" overloaded=
"no">
24287 <autodoc>DecRef()
</autodoc>
24289 <method name=
"Draw" type=
"" overloaded=
"no">
24290 <autodoc>Draw(Grid grid, GridCellAttr attr, DC dc, Rect rect, int row,
24291 int col, bool isSelected)
</autodoc>
24293 <param name=
"grid" type=
"wxGrid" default=
""/>
24294 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24295 <param name=
"dc" type=
"DC" default=
""/>
24296 <param name=
"rect" type=
"Rect" default=
""/>
24297 <param name=
"row" type=
"int" default=
""/>
24298 <param name=
"col" type=
"int" default=
""/>
24299 <param name=
"isSelected" type=
"bool" default=
""/>
24302 <method name=
"GetBestSize" type=
"Size" overloaded=
"no">
24303 <autodoc>GetBestSize(Grid grid, GridCellAttr attr, DC dc, int row, int col) -
> Size
</autodoc>
24305 <param name=
"grid" type=
"wxGrid" default=
""/>
24306 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24307 <param name=
"dc" type=
"DC" default=
""/>
24308 <param name=
"row" type=
"int" default=
""/>
24309 <param name=
"col" type=
"int" default=
""/>
24312 <method name=
"Clone" type=
"GridCellRenderer" overloaded=
"no">
24313 <autodoc>Clone() -
> GridCellRenderer
</autodoc>
24316 <class name=
"PyGridCellRenderer" oldname=
"wxPyGridCellRenderer" module=
"grid">
24317 <baseclass name=
"GridCellRenderer"/>
24318 <constructor name=
"PyGridCellRenderer" overloaded=
"no">
24319 <autodoc>__init__() -
> PyGridCellRenderer
</autodoc>
24321 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
24322 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
24324 <param name=
"self" type=
"PyObject" default=
""/>
24325 <param name=
"_class" type=
"PyObject" default=
""/>
24328 <method name=
"base_SetParameters" type=
"" overloaded=
"no">
24329 <autodoc>base_SetParameters(String params)
</autodoc>
24331 <param name=
"params" type=
"String" default=
""/>
24335 <class name=
"GridCellStringRenderer" oldname=
"wxGridCellStringRenderer" module=
"grid">
24336 <baseclass name=
"GridCellRenderer"/>
24337 <constructor name=
"GridCellStringRenderer" overloaded=
"no">
24338 <autodoc>__init__() -
> GridCellStringRenderer
</autodoc>
24341 <class name=
"GridCellNumberRenderer" oldname=
"wxGridCellNumberRenderer" module=
"grid">
24342 <baseclass name=
"GridCellStringRenderer"/>
24343 <constructor name=
"GridCellNumberRenderer" overloaded=
"no">
24344 <autodoc>__init__() -
> GridCellNumberRenderer
</autodoc>
24347 <class name=
"GridCellFloatRenderer" oldname=
"wxGridCellFloatRenderer" module=
"grid">
24348 <baseclass name=
"GridCellStringRenderer"/>
24349 <constructor name=
"GridCellFloatRenderer" overloaded=
"no">
24350 <autodoc>__init__(int width=-
1, int precision=-
1) -
> GridCellFloatRenderer
</autodoc>
24352 <param name=
"width" type=
"int" default=
"-1"/>
24353 <param name=
"precision" type=
"int" default=
"-1"/>
24356 <method name=
"GetWidth" type=
"int" overloaded=
"no">
24357 <autodoc>GetWidth() -
> int
</autodoc>
24359 <method name=
"SetWidth" type=
"" overloaded=
"no">
24360 <autodoc>SetWidth(int width)
</autodoc>
24362 <param name=
"width" type=
"int" default=
""/>
24365 <method name=
"GetPrecision" type=
"int" overloaded=
"no">
24366 <autodoc>GetPrecision() -
> int
</autodoc>
24368 <method name=
"SetPrecision" type=
"" overloaded=
"no">
24369 <autodoc>SetPrecision(int precision)
</autodoc>
24371 <param name=
"precision" type=
"int" default=
""/>
24375 <class name=
"GridCellBoolRenderer" oldname=
"wxGridCellBoolRenderer" module=
"grid">
24376 <baseclass name=
"GridCellRenderer"/>
24377 <constructor name=
"GridCellBoolRenderer" overloaded=
"no">
24378 <autodoc>__init__() -
> GridCellBoolRenderer
</autodoc>
24381 <class name=
"GridCellDateTimeRenderer" oldname=
"wxGridCellDateTimeRenderer" module=
"grid">
24382 <baseclass name=
"GridCellStringRenderer"/>
24383 <constructor name=
"GridCellDateTimeRenderer" overloaded=
"no">
24384 <autodoc>__init__(String outformat=DateTimeFormatStr, String informat=DateTimeFormatStr) -
> GridCellDateTimeRenderer
</autodoc>
24386 <param name=
"outformat" type=
"String" default=
"wxPyDateTimeFormatStr"/>
24387 <param name=
"informat" type=
"String" default=
"wxPyDateTimeFormatStr"/>
24391 <class name=
"GridCellEnumRenderer" oldname=
"wxGridCellEnumRenderer" module=
"grid">
24392 <baseclass name=
"GridCellStringRenderer"/>
24393 <constructor name=
"GridCellEnumRenderer" overloaded=
"no">
24394 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumRenderer
</autodoc>
24396 <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/>
24400 <class name=
"GridCellAutoWrapStringRenderer" oldname=
"wxGridCellAutoWrapStringRenderer" module=
"grid">
24401 <baseclass name=
"GridCellStringRenderer"/>
24402 <constructor name=
"GridCellAutoWrapStringRenderer" overloaded=
"no">
24403 <autodoc>__init__() -
> GridCellAutoWrapStringRenderer
</autodoc>
24406 <class name=
"GridCellEditor" oldname=
"wxGridCellEditor" module=
"grid">
24407 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24408 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24410 <param name=
"_self" type=
"PyObject" default=
""/>
24413 <method name=
"IsCreated" type=
"bool" overloaded=
"no">
24414 <autodoc>IsCreated() -
> bool
</autodoc>
24416 <method name=
"GetControl" type=
"Control" overloaded=
"no">
24417 <autodoc>GetControl() -
> Control
</autodoc>
24419 <method name=
"SetControl" type=
"" overloaded=
"no">
24420 <autodoc>SetControl(Control control)
</autodoc>
24422 <param name=
"control" type=
"Control" default=
""/>
24425 <method name=
"GetCellAttr" type=
"wxGridCellAttr" overloaded=
"no">
24426 <autodoc>GetCellAttr() -
> GridCellAttr
</autodoc>
24428 <method name=
"SetCellAttr" type=
"" overloaded=
"no">
24429 <autodoc>SetCellAttr(GridCellAttr attr)
</autodoc>
24431 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24434 <method name=
"SetParameters" type=
"" overloaded=
"no">
24435 <autodoc>SetParameters(String params)
</autodoc>
24437 <param name=
"params" type=
"String" default=
""/>
24440 <method name=
"IncRef" type=
"" overloaded=
"no">
24441 <autodoc>IncRef()
</autodoc>
24443 <method name=
"DecRef" type=
"" overloaded=
"no">
24444 <autodoc>DecRef()
</autodoc>
24446 <method name=
"Create" type=
"" overloaded=
"no">
24447 <autodoc>Create(Window parent, int id, EvtHandler evtHandler)
</autodoc>
24449 <param name=
"parent" type=
"Window" default=
""/>
24450 <param name=
"id" type=
"int" default=
""/>
24451 <param name=
"evtHandler" type=
"EvtHandler" default=
""/>
24454 <method name=
"BeginEdit" type=
"" overloaded=
"no">
24455 <autodoc>BeginEdit(int row, int col, Grid grid)
</autodoc>
24457 <param name=
"row" type=
"int" default=
""/>
24458 <param name=
"col" type=
"int" default=
""/>
24459 <param name=
"grid" type=
"wxGrid" default=
""/>
24462 <method name=
"EndEdit" type=
"bool" overloaded=
"no">
24463 <autodoc>EndEdit(int row, int col, Grid grid) -
> bool
</autodoc>
24465 <param name=
"row" type=
"int" default=
""/>
24466 <param name=
"col" type=
"int" default=
""/>
24467 <param name=
"grid" type=
"wxGrid" default=
""/>
24470 <method name=
"Reset" type=
"" overloaded=
"no">
24471 <autodoc>Reset()
</autodoc>
24473 <method name=
"Clone" type=
"GridCellEditor" overloaded=
"no">
24474 <autodoc>Clone() -
> GridCellEditor
</autodoc>
24476 <method name=
"SetSize" type=
"" overloaded=
"no">
24477 <autodoc>SetSize(Rect rect)
</autodoc>
24479 <param name=
"rect" type=
"Rect" default=
""/>
24482 <method name=
"Show" type=
"" overloaded=
"no">
24483 <autodoc>Show(bool show, GridCellAttr attr=None)
</autodoc>
24485 <param name=
"show" type=
"bool" default=
""/>
24486 <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/>
24489 <method name=
"PaintBackground" type=
"" overloaded=
"no">
24490 <autodoc>PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
24492 <param name=
"rectCell" type=
"Rect" default=
""/>
24493 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24496 <method name=
"IsAcceptedKey" type=
"bool" overloaded=
"no">
24497 <autodoc>IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
24499 <param name=
"event" type=
"KeyEvent" default=
""/>
24502 <method name=
"StartingKey" type=
"" overloaded=
"no">
24503 <autodoc>StartingKey(KeyEvent event)
</autodoc>
24505 <param name=
"event" type=
"KeyEvent" default=
""/>
24508 <method name=
"StartingClick" type=
"" overloaded=
"no">
24509 <autodoc>StartingClick()
</autodoc>
24511 <method name=
"HandleReturn" type=
"" overloaded=
"no">
24512 <autodoc>HandleReturn(KeyEvent event)
</autodoc>
24514 <param name=
"event" type=
"KeyEvent" default=
""/>
24517 <method name=
"Destroy" type=
"" overloaded=
"no">
24518 <autodoc>Destroy()
</autodoc>
24521 <class name=
"PyGridCellEditor" oldname=
"wxPyGridCellEditor" module=
"grid">
24522 <baseclass name=
"GridCellEditor"/>
24523 <constructor name=
"PyGridCellEditor" overloaded=
"no">
24524 <autodoc>__init__() -
> PyGridCellEditor
</autodoc>
24526 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
24527 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
24529 <param name=
"self" type=
"PyObject" default=
""/>
24530 <param name=
"_class" type=
"PyObject" default=
""/>
24533 <method name=
"base_SetSize" type=
"" overloaded=
"no">
24534 <autodoc>base_SetSize(Rect rect)
</autodoc>
24536 <param name=
"rect" type=
"Rect" default=
""/>
24539 <method name=
"base_Show" type=
"" overloaded=
"no">
24540 <autodoc>base_Show(bool show, GridCellAttr attr=None)
</autodoc>
24542 <param name=
"show" type=
"bool" default=
""/>
24543 <param name=
"attr" type=
"wxGridCellAttr" default=
"NULL"/>
24546 <method name=
"base_PaintBackground" type=
"" overloaded=
"no">
24547 <autodoc>base_PaintBackground(Rect rectCell, GridCellAttr attr)
</autodoc>
24549 <param name=
"rectCell" type=
"Rect" default=
""/>
24550 <param name=
"attr" type=
"wxGridCellAttr" default=
""/>
24553 <method name=
"base_IsAcceptedKey" type=
"bool" overloaded=
"no">
24554 <autodoc>base_IsAcceptedKey(KeyEvent event) -
> bool
</autodoc>
24556 <param name=
"event" type=
"KeyEvent" default=
""/>
24559 <method name=
"base_StartingKey" type=
"" overloaded=
"no">
24560 <autodoc>base_StartingKey(KeyEvent event)
</autodoc>
24562 <param name=
"event" type=
"KeyEvent" default=
""/>
24565 <method name=
"base_StartingClick" type=
"" overloaded=
"no">
24566 <autodoc>base_StartingClick()
</autodoc>
24568 <method name=
"base_HandleReturn" type=
"" overloaded=
"no">
24569 <autodoc>base_HandleReturn(KeyEvent event)
</autodoc>
24571 <param name=
"event" type=
"KeyEvent" default=
""/>
24574 <method name=
"base_Destroy" type=
"" overloaded=
"no">
24575 <autodoc>base_Destroy()
</autodoc>
24577 <method name=
"base_SetParameters" type=
"" overloaded=
"no">
24578 <autodoc>base_SetParameters(String params)
</autodoc>
24580 <param name=
"params" type=
"String" default=
""/>
24584 <class name=
"GridCellTextEditor" oldname=
"wxGridCellTextEditor" module=
"grid">
24585 <baseclass name=
"GridCellEditor"/>
24586 <constructor name=
"GridCellTextEditor" overloaded=
"no">
24587 <autodoc>__init__() -
> GridCellTextEditor
</autodoc>
24589 <method name=
"GetValue" type=
"String" overloaded=
"no">
24590 <autodoc>GetValue() -
> String
</autodoc>
24593 <class name=
"GridCellNumberEditor" oldname=
"wxGridCellNumberEditor" module=
"grid">
24594 <baseclass name=
"GridCellTextEditor"/>
24595 <constructor name=
"GridCellNumberEditor" overloaded=
"no">
24596 <autodoc>__init__(int min=-
1, int max=-
1) -
> GridCellNumberEditor
</autodoc>
24598 <param name=
"min" type=
"int" default=
"-1"/>
24599 <param name=
"max" type=
"int" default=
"-1"/>
24602 <method name=
"GetValue" type=
"String" overloaded=
"no">
24603 <autodoc>GetValue() -
> String
</autodoc>
24606 <class name=
"GridCellFloatEditor" oldname=
"wxGridCellFloatEditor" module=
"grid">
24607 <baseclass name=
"GridCellTextEditor"/>
24608 <constructor name=
"GridCellFloatEditor" overloaded=
"no">
24609 <autodoc>__init__() -
> GridCellFloatEditor
</autodoc>
24611 <method name=
"GetValue" type=
"String" overloaded=
"no">
24612 <autodoc>GetValue() -
> String
</autodoc>
24615 <class name=
"GridCellBoolEditor" oldname=
"wxGridCellBoolEditor" module=
"grid">
24616 <baseclass name=
"GridCellEditor"/>
24617 <constructor name=
"GridCellBoolEditor" overloaded=
"no">
24618 <autodoc>__init__() -
> GridCellBoolEditor
</autodoc>
24620 <method name=
"GetValue" type=
"String" overloaded=
"no">
24621 <autodoc>GetValue() -
> String
</autodoc>
24624 <class name=
"GridCellChoiceEditor" oldname=
"wxGridCellChoiceEditor" module=
"grid">
24625 <baseclass name=
"GridCellEditor"/>
24626 <constructor name=
"GridCellChoiceEditor" overloaded=
"no">
24627 <autodoc>__init__(int choices=
0, String choices_array=None, bool allowOthers=False) -
> GridCellChoiceEditor
</autodoc>
24629 <param name=
"choices" type=
"int" default=
"0"/>
24630 <param name=
"choices_array" type=
"String" default=
"NULL"/>
24631 <param name=
"allowOthers" type=
"bool" default=
"False"/>
24634 <method name=
"GetValue" type=
"String" overloaded=
"no">
24635 <autodoc>GetValue() -
> String
</autodoc>
24638 <class name=
"GridCellEnumEditor" oldname=
"wxGridCellEnumEditor" module=
"grid">
24639 <baseclass name=
"GridCellChoiceEditor"/>
24640 <constructor name=
"GridCellEnumEditor" overloaded=
"no">
24641 <autodoc>__init__(String choices=EmptyString) -
> GridCellEnumEditor
</autodoc>
24643 <param name=
"choices" type=
"String" default=
"wxPyEmptyString"/>
24646 <method name=
"GetValue" type=
"String" overloaded=
"no">
24647 <autodoc>GetValue() -
> String
</autodoc>
24650 <class name=
"GridCellAutoWrapStringEditor" oldname=
"wxGridCellAutoWrapStringEditor" module=
"grid">
24651 <baseclass name=
"GridCellTextEditor"/>
24652 <constructor name=
"GridCellAutoWrapStringEditor" overloaded=
"no">
24653 <autodoc>__init__() -
> GridCellAutoWrapStringEditor
</autodoc>
24655 <method name=
"GetValue" type=
"String" overloaded=
"no">
24656 <autodoc>GetValue() -
> String
</autodoc>
24659 <class name=
"GridCellAttr" oldname=
"wxGridCellAttr" module=
"grid">
24660 <constructor name=
"GridCellAttr" overloaded=
"no">
24661 <autodoc>__init__(GridCellAttr attrDefault=None) -
> GridCellAttr
</autodoc>
24663 <param name=
"attrDefault" type=
"GridCellAttr" default=
"NULL"/>
24666 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24667 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24669 <param name=
"_self" type=
"PyObject" default=
""/>
24672 <method name=
"Clone" type=
"GridCellAttr" overloaded=
"no">
24673 <autodoc>Clone() -
> GridCellAttr
</autodoc>
24675 <method name=
"MergeWith" type=
"" overloaded=
"no">
24676 <autodoc>MergeWith(GridCellAttr mergefrom)
</autodoc>
24678 <param name=
"mergefrom" type=
"GridCellAttr" default=
""/>
24681 <method name=
"IncRef" type=
"" overloaded=
"no">
24682 <autodoc>IncRef()
</autodoc>
24684 <method name=
"DecRef" type=
"" overloaded=
"no">
24685 <autodoc>DecRef()
</autodoc>
24687 <method name=
"SetTextColour" type=
"" overloaded=
"no">
24688 <autodoc>SetTextColour(Colour colText)
</autodoc>
24690 <param name=
"colText" type=
"Colour" default=
""/>
24693 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
24694 <autodoc>SetBackgroundColour(Colour colBack)
</autodoc>
24696 <param name=
"colBack" type=
"Colour" default=
""/>
24699 <method name=
"SetFont" type=
"" overloaded=
"no">
24700 <autodoc>SetFont(Font font)
</autodoc>
24702 <param name=
"font" type=
"Font" default=
""/>
24705 <method name=
"SetAlignment" type=
"" overloaded=
"no">
24706 <autodoc>SetAlignment(int hAlign, int vAlign)
</autodoc>
24708 <param name=
"hAlign" type=
"int" default=
""/>
24709 <param name=
"vAlign" type=
"int" default=
""/>
24712 <method name=
"SetSize" type=
"" overloaded=
"no">
24713 <autodoc>SetSize(int num_rows, int num_cols)
</autodoc>
24715 <param name=
"num_rows" type=
"int" default=
""/>
24716 <param name=
"num_cols" type=
"int" default=
""/>
24719 <method name=
"SetOverflow" type=
"" overloaded=
"no">
24720 <autodoc>SetOverflow(bool allow=True)
</autodoc>
24722 <param name=
"allow" type=
"bool" default=
"True"/>
24725 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
24726 <autodoc>SetReadOnly(bool isReadOnly=True)
</autodoc>
24728 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
24731 <method name=
"SetRenderer" type=
"" overloaded=
"no">
24732 <autodoc>SetRenderer(GridCellRenderer renderer)
</autodoc>
24734 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
24737 <method name=
"SetEditor" type=
"" overloaded=
"no">
24738 <autodoc>SetEditor(GridCellEditor editor)
</autodoc>
24740 <param name=
"editor" type=
"GridCellEditor" default=
""/>
24743 <method name=
"SetKind" type=
"" overloaded=
"no">
24744 <autodoc>SetKind(int kind)
</autodoc>
24746 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
24749 <method name=
"HasTextColour" type=
"bool" overloaded=
"no">
24750 <autodoc>HasTextColour() -
> bool
</autodoc>
24752 <method name=
"HasBackgroundColour" type=
"bool" overloaded=
"no">
24753 <autodoc>HasBackgroundColour() -
> bool
</autodoc>
24755 <method name=
"HasFont" type=
"bool" overloaded=
"no">
24756 <autodoc>HasFont() -
> bool
</autodoc>
24758 <method name=
"HasAlignment" type=
"bool" overloaded=
"no">
24759 <autodoc>HasAlignment() -
> bool
</autodoc>
24761 <method name=
"HasRenderer" type=
"bool" overloaded=
"no">
24762 <autodoc>HasRenderer() -
> bool
</autodoc>
24764 <method name=
"HasEditor" type=
"bool" overloaded=
"no">
24765 <autodoc>HasEditor() -
> bool
</autodoc>
24767 <method name=
"HasReadWriteMode" type=
"bool" overloaded=
"no">
24768 <autodoc>HasReadWriteMode() -
> bool
</autodoc>
24770 <method name=
"HasOverflowMode" type=
"bool" overloaded=
"no">
24771 <autodoc>HasOverflowMode() -
> bool
</autodoc>
24773 <method name=
"GetTextColour" type=
"Colour" overloaded=
"no">
24774 <autodoc>GetTextColour() -
> Colour
</autodoc>
24776 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
24777 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
24779 <method name=
"GetFont" type=
"Font" overloaded=
"no">
24780 <autodoc>GetFont() -
> Font
</autodoc>
24782 <method name=
"GetAlignment" type=
"" overloaded=
"no">
24783 <autodoc>GetAlignment() -
> (hAlign, vAlign)
</autodoc>
24785 <param name=
"OUTPUT" type=
"int" default=
""/>
24786 <param name=
"OUTPUT" type=
"int" default=
""/>
24789 <method name=
"GetSize" type=
"" overloaded=
"no">
24790 <autodoc>GetSize() -
> (num_rows, num_cols)
</autodoc>
24792 <param name=
"OUTPUT" type=
"int" default=
""/>
24793 <param name=
"OUTPUT" type=
"int" default=
""/>
24796 <method name=
"GetOverflow" type=
"bool" overloaded=
"no">
24797 <autodoc>GetOverflow() -
> bool
</autodoc>
24799 <method name=
"GetRenderer" type=
"GridCellRenderer" overloaded=
"no">
24800 <autodoc>GetRenderer(Grid grid, int row, int col) -
> GridCellRenderer
</autodoc>
24802 <param name=
"grid" type=
"wxGrid" default=
""/>
24803 <param name=
"row" type=
"int" default=
""/>
24804 <param name=
"col" type=
"int" default=
""/>
24807 <method name=
"GetEditor" type=
"GridCellEditor" overloaded=
"no">
24808 <autodoc>GetEditor(Grid grid, int row, int col) -
> GridCellEditor
</autodoc>
24810 <param name=
"grid" type=
"wxGrid" default=
""/>
24811 <param name=
"row" type=
"int" default=
""/>
24812 <param name=
"col" type=
"int" default=
""/>
24815 <method name=
"IsReadOnly" type=
"bool" overloaded=
"no">
24816 <autodoc>IsReadOnly() -
> bool
</autodoc>
24818 <method name=
"SetDefAttr" type=
"" overloaded=
"no">
24819 <autodoc>SetDefAttr(GridCellAttr defAttr)
</autodoc>
24821 <param name=
"defAttr" type=
"GridCellAttr" default=
""/>
24825 <class name=
"GridCellAttrProvider" oldname=
"wxGridCellAttrProvider" module=
"grid">
24826 <constructor name=
"GridCellAttrProvider" overloaded=
"no">
24827 <autodoc>__init__() -
> GridCellAttrProvider
</autodoc>
24829 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24830 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24832 <param name=
"_self" type=
"PyObject" default=
""/>
24835 <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no">
24836 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
24838 <param name=
"row" type=
"int" default=
""/>
24839 <param name=
"col" type=
"int" default=
""/>
24840 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
24843 <method name=
"SetAttr" type=
"" overloaded=
"no">
24844 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
24846 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24847 <param name=
"row" type=
"int" default=
""/>
24848 <param name=
"col" type=
"int" default=
""/>
24851 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
24852 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
24854 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24855 <param name=
"row" type=
"int" default=
""/>
24858 <method name=
"SetColAttr" type=
"" overloaded=
"no">
24859 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
24861 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24862 <param name=
"col" type=
"int" default=
""/>
24865 <method name=
"UpdateAttrRows" type=
"" overloaded=
"no">
24866 <autodoc>UpdateAttrRows(size_t pos, int numRows)
</autodoc>
24868 <param name=
"pos" type=
"size_t" default=
""/>
24869 <param name=
"numRows" type=
"int" default=
""/>
24872 <method name=
"UpdateAttrCols" type=
"" overloaded=
"no">
24873 <autodoc>UpdateAttrCols(size_t pos, int numCols)
</autodoc>
24875 <param name=
"pos" type=
"size_t" default=
""/>
24876 <param name=
"numCols" type=
"int" default=
""/>
24880 <class name=
"PyGridCellAttrProvider" oldname=
"wxPyGridCellAttrProvider" module=
"grid">
24881 <baseclass name=
"GridCellAttrProvider"/>
24882 <constructor name=
"PyGridCellAttrProvider" overloaded=
"no">
24883 <autodoc>__init__() -
> PyGridCellAttrProvider
</autodoc>
24885 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
24886 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
24888 <param name=
"self" type=
"PyObject" default=
""/>
24889 <param name=
"_class" type=
"PyObject" default=
""/>
24892 <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no">
24893 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
24895 <param name=
"row" type=
"int" default=
""/>
24896 <param name=
"col" type=
"int" default=
""/>
24897 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
24900 <method name=
"base_SetAttr" type=
"" overloaded=
"no">
24901 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
24903 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24904 <param name=
"row" type=
"int" default=
""/>
24905 <param name=
"col" type=
"int" default=
""/>
24908 <method name=
"base_SetRowAttr" type=
"" overloaded=
"no">
24909 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
24911 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24912 <param name=
"row" type=
"int" default=
""/>
24915 <method name=
"base_SetColAttr" type=
"" overloaded=
"no">
24916 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
24918 <param name=
"attr" type=
"GridCellAttr" default=
""/>
24919 <param name=
"col" type=
"int" default=
""/>
24923 <class name=
"GridTableBase" oldname=
"wxGridTableBase" module=
"grid">
24924 <baseclass name=
"Object"/>
24925 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
24926 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
24928 <param name=
"_self" type=
"PyObject" default=
""/>
24931 <method name=
"SetAttrProvider" type=
"" overloaded=
"no">
24932 <autodoc>SetAttrProvider(GridCellAttrProvider attrProvider)
</autodoc>
24934 <param name=
"attrProvider" type=
"GridCellAttrProvider" default=
""/>
24937 <method name=
"GetAttrProvider" type=
"GridCellAttrProvider" overloaded=
"no">
24938 <autodoc>GetAttrProvider() -
> GridCellAttrProvider
</autodoc>
24940 <method name=
"SetView" type=
"" overloaded=
"no">
24941 <autodoc>SetView(Grid grid)
</autodoc>
24943 <param name=
"grid" type=
"wxGrid" default=
""/>
24946 <method name=
"GetView" type=
"wxGrid" overloaded=
"no">
24947 <autodoc>GetView() -
> Grid
</autodoc>
24949 <method name=
"GetNumberRows" type=
"int" overloaded=
"no">
24950 <autodoc>GetNumberRows() -
> int
</autodoc>
24952 <method name=
"GetNumberCols" type=
"int" overloaded=
"no">
24953 <autodoc>GetNumberCols() -
> int
</autodoc>
24955 <method name=
"IsEmptyCell" type=
"bool" overloaded=
"no">
24956 <autodoc>IsEmptyCell(int row, int col) -
> bool
</autodoc>
24958 <param name=
"row" type=
"int" default=
""/>
24959 <param name=
"col" type=
"int" default=
""/>
24962 <method name=
"GetValue" type=
"String" overloaded=
"no">
24963 <autodoc>GetValue(int row, int col) -
> String
</autodoc>
24965 <param name=
"row" type=
"int" default=
""/>
24966 <param name=
"col" type=
"int" default=
""/>
24969 <method name=
"SetValue" type=
"" overloaded=
"no">
24970 <autodoc>SetValue(int row, int col, String value)
</autodoc>
24972 <param name=
"row" type=
"int" default=
""/>
24973 <param name=
"col" type=
"int" default=
""/>
24974 <param name=
"value" type=
"String" default=
""/>
24977 <method name=
"GetTypeName" type=
"String" overloaded=
"no">
24978 <autodoc>GetTypeName(int row, int col) -
> String
</autodoc>
24980 <param name=
"row" type=
"int" default=
""/>
24981 <param name=
"col" type=
"int" default=
""/>
24984 <method name=
"CanGetValueAs" type=
"bool" overloaded=
"no">
24985 <autodoc>CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
24987 <param name=
"row" type=
"int" default=
""/>
24988 <param name=
"col" type=
"int" default=
""/>
24989 <param name=
"typeName" type=
"String" default=
""/>
24992 <method name=
"CanSetValueAs" type=
"bool" overloaded=
"no">
24993 <autodoc>CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
24995 <param name=
"row" type=
"int" default=
""/>
24996 <param name=
"col" type=
"int" default=
""/>
24997 <param name=
"typeName" type=
"String" default=
""/>
25000 <method name=
"GetValueAsLong" type=
"long" overloaded=
"no">
25001 <autodoc>GetValueAsLong(int row, int col) -
> long
</autodoc>
25003 <param name=
"row" type=
"int" default=
""/>
25004 <param name=
"col" type=
"int" default=
""/>
25007 <method name=
"GetValueAsDouble" type=
"double" overloaded=
"no">
25008 <autodoc>GetValueAsDouble(int row, int col) -
> double
</autodoc>
25010 <param name=
"row" type=
"int" default=
""/>
25011 <param name=
"col" type=
"int" default=
""/>
25014 <method name=
"GetValueAsBool" type=
"bool" overloaded=
"no">
25015 <autodoc>GetValueAsBool(int row, int col) -
> bool
</autodoc>
25017 <param name=
"row" type=
"int" default=
""/>
25018 <param name=
"col" type=
"int" default=
""/>
25021 <method name=
"SetValueAsLong" type=
"" overloaded=
"no">
25022 <autodoc>SetValueAsLong(int row, int col, long value)
</autodoc>
25024 <param name=
"row" type=
"int" default=
""/>
25025 <param name=
"col" type=
"int" default=
""/>
25026 <param name=
"value" type=
"long" default=
""/>
25029 <method name=
"SetValueAsDouble" type=
"" overloaded=
"no">
25030 <autodoc>SetValueAsDouble(int row, int col, double value)
</autodoc>
25032 <param name=
"row" type=
"int" default=
""/>
25033 <param name=
"col" type=
"int" default=
""/>
25034 <param name=
"value" type=
"double" default=
""/>
25037 <method name=
"SetValueAsBool" type=
"" overloaded=
"no">
25038 <autodoc>SetValueAsBool(int row, int col, bool value)
</autodoc>
25040 <param name=
"row" type=
"int" default=
""/>
25041 <param name=
"col" type=
"int" default=
""/>
25042 <param name=
"value" type=
"bool" default=
""/>
25045 <method name=
"Clear" type=
"" overloaded=
"no">
25046 <autodoc>Clear()
</autodoc>
25048 <method name=
"InsertRows" type=
"bool" overloaded=
"no">
25049 <autodoc>InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25051 <param name=
"pos" type=
"size_t" default=
"0"/>
25052 <param name=
"numRows" type=
"size_t" default=
"1"/>
25055 <method name=
"AppendRows" type=
"bool" overloaded=
"no">
25056 <autodoc>AppendRows(size_t numRows=
1) -
> bool
</autodoc>
25058 <param name=
"numRows" type=
"size_t" default=
"1"/>
25061 <method name=
"DeleteRows" type=
"bool" overloaded=
"no">
25062 <autodoc>DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25064 <param name=
"pos" type=
"size_t" default=
"0"/>
25065 <param name=
"numRows" type=
"size_t" default=
"1"/>
25068 <method name=
"InsertCols" type=
"bool" overloaded=
"no">
25069 <autodoc>InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25071 <param name=
"pos" type=
"size_t" default=
"0"/>
25072 <param name=
"numCols" type=
"size_t" default=
"1"/>
25075 <method name=
"AppendCols" type=
"bool" overloaded=
"no">
25076 <autodoc>AppendCols(size_t numCols=
1) -
> bool
</autodoc>
25078 <param name=
"numCols" type=
"size_t" default=
"1"/>
25081 <method name=
"DeleteCols" type=
"bool" overloaded=
"no">
25082 <autodoc>DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25084 <param name=
"pos" type=
"size_t" default=
"0"/>
25085 <param name=
"numCols" type=
"size_t" default=
"1"/>
25088 <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no">
25089 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
25091 <param name=
"row" type=
"int" default=
""/>
25094 <method name=
"GetColLabelValue" type=
"String" overloaded=
"no">
25095 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
25097 <param name=
"col" type=
"int" default=
""/>
25100 <method name=
"SetRowLabelValue" type=
"" overloaded=
"no">
25101 <autodoc>SetRowLabelValue(int row, String value)
</autodoc>
25103 <param name=
"row" type=
"int" default=
""/>
25104 <param name=
"value" type=
"String" default=
""/>
25107 <method name=
"SetColLabelValue" type=
"" overloaded=
"no">
25108 <autodoc>SetColLabelValue(int col, String value)
</autodoc>
25110 <param name=
"col" type=
"int" default=
""/>
25111 <param name=
"value" type=
"String" default=
""/>
25114 <method name=
"CanHaveAttributes" type=
"bool" overloaded=
"no">
25115 <autodoc>CanHaveAttributes() -
> bool
</autodoc>
25117 <method name=
"GetAttr" type=
"GridCellAttr" overloaded=
"no">
25118 <autodoc>GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25120 <param name=
"row" type=
"int" default=
""/>
25121 <param name=
"col" type=
"int" default=
""/>
25122 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25125 <method name=
"SetAttr" type=
"" overloaded=
"no">
25126 <autodoc>SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25128 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25129 <param name=
"row" type=
"int" default=
""/>
25130 <param name=
"col" type=
"int" default=
""/>
25133 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
25134 <autodoc>SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25136 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25137 <param name=
"row" type=
"int" default=
""/>
25140 <method name=
"SetColAttr" type=
"" overloaded=
"no">
25141 <autodoc>SetColAttr(GridCellAttr attr, int col)
</autodoc>
25143 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25144 <param name=
"col" type=
"int" default=
""/>
25148 <class name=
"PyGridTableBase" oldname=
"wxPyGridTableBase" module=
"grid">
25149 <baseclass name=
"GridTableBase"/>
25150 <constructor name=
"PyGridTableBase" overloaded=
"no">
25151 <autodoc>__init__() -
> PyGridTableBase
</autodoc>
25153 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
25154 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
25156 <param name=
"self" type=
"PyObject" default=
""/>
25157 <param name=
"_class" type=
"PyObject" default=
""/>
25160 <method name=
"Destroy" type=
"" overloaded=
"no">
25161 <autodoc>Destroy()
</autodoc>
25162 <docstring>Deletes the C++ object this Python object is a proxy for.
</docstring>
25164 <method name=
"base_GetTypeName" type=
"String" overloaded=
"no">
25165 <autodoc>base_GetTypeName(int row, int col) -
> String
</autodoc>
25167 <param name=
"row" type=
"int" default=
""/>
25168 <param name=
"col" type=
"int" default=
""/>
25171 <method name=
"base_CanGetValueAs" type=
"bool" overloaded=
"no">
25172 <autodoc>base_CanGetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25174 <param name=
"row" type=
"int" default=
""/>
25175 <param name=
"col" type=
"int" default=
""/>
25176 <param name=
"typeName" type=
"String" default=
""/>
25179 <method name=
"base_CanSetValueAs" type=
"bool" overloaded=
"no">
25180 <autodoc>base_CanSetValueAs(int row, int col, String typeName) -
> bool
</autodoc>
25182 <param name=
"row" type=
"int" default=
""/>
25183 <param name=
"col" type=
"int" default=
""/>
25184 <param name=
"typeName" type=
"String" default=
""/>
25187 <method name=
"base_Clear" type=
"" overloaded=
"no">
25188 <autodoc>base_Clear()
</autodoc>
25190 <method name=
"base_InsertRows" type=
"bool" overloaded=
"no">
25191 <autodoc>base_InsertRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25193 <param name=
"pos" type=
"size_t" default=
"0"/>
25194 <param name=
"numRows" type=
"size_t" default=
"1"/>
25197 <method name=
"base_AppendRows" type=
"bool" overloaded=
"no">
25198 <autodoc>base_AppendRows(size_t numRows=
1) -
> bool
</autodoc>
25200 <param name=
"numRows" type=
"size_t" default=
"1"/>
25203 <method name=
"base_DeleteRows" type=
"bool" overloaded=
"no">
25204 <autodoc>base_DeleteRows(size_t pos=
0, size_t numRows=
1) -
> bool
</autodoc>
25206 <param name=
"pos" type=
"size_t" default=
"0"/>
25207 <param name=
"numRows" type=
"size_t" default=
"1"/>
25210 <method name=
"base_InsertCols" type=
"bool" overloaded=
"no">
25211 <autodoc>base_InsertCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25213 <param name=
"pos" type=
"size_t" default=
"0"/>
25214 <param name=
"numCols" type=
"size_t" default=
"1"/>
25217 <method name=
"base_AppendCols" type=
"bool" overloaded=
"no">
25218 <autodoc>base_AppendCols(size_t numCols=
1) -
> bool
</autodoc>
25220 <param name=
"numCols" type=
"size_t" default=
"1"/>
25223 <method name=
"base_DeleteCols" type=
"bool" overloaded=
"no">
25224 <autodoc>base_DeleteCols(size_t pos=
0, size_t numCols=
1) -
> bool
</autodoc>
25226 <param name=
"pos" type=
"size_t" default=
"0"/>
25227 <param name=
"numCols" type=
"size_t" default=
"1"/>
25230 <method name=
"base_GetRowLabelValue" type=
"String" overloaded=
"no">
25231 <autodoc>base_GetRowLabelValue(int row) -
> String
</autodoc>
25233 <param name=
"row" type=
"int" default=
""/>
25236 <method name=
"base_GetColLabelValue" type=
"String" overloaded=
"no">
25237 <autodoc>base_GetColLabelValue(int col) -
> String
</autodoc>
25239 <param name=
"col" type=
"int" default=
""/>
25242 <method name=
"base_SetRowLabelValue" type=
"" overloaded=
"no">
25243 <autodoc>base_SetRowLabelValue(int row, String value)
</autodoc>
25245 <param name=
"row" type=
"int" default=
""/>
25246 <param name=
"value" type=
"String" default=
""/>
25249 <method name=
"base_SetColLabelValue" type=
"" overloaded=
"no">
25250 <autodoc>base_SetColLabelValue(int col, String value)
</autodoc>
25252 <param name=
"col" type=
"int" default=
""/>
25253 <param name=
"value" type=
"String" default=
""/>
25256 <method name=
"base_CanHaveAttributes" type=
"bool" overloaded=
"no">
25257 <autodoc>base_CanHaveAttributes() -
> bool
</autodoc>
25259 <method name=
"base_GetAttr" type=
"GridCellAttr" overloaded=
"no">
25260 <autodoc>base_GetAttr(int row, int col, int kind) -
> GridCellAttr
</autodoc>
25262 <param name=
"row" type=
"int" default=
""/>
25263 <param name=
"col" type=
"int" default=
""/>
25264 <param name=
"kind" type=
"wxGridCellAttr::wxAttrKind" default=
""/>
25267 <method name=
"base_SetAttr" type=
"" overloaded=
"no">
25268 <autodoc>base_SetAttr(GridCellAttr attr, int row, int col)
</autodoc>
25270 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25271 <param name=
"row" type=
"int" default=
""/>
25272 <param name=
"col" type=
"int" default=
""/>
25275 <method name=
"base_SetRowAttr" type=
"" overloaded=
"no">
25276 <autodoc>base_SetRowAttr(GridCellAttr attr, int row)
</autodoc>
25278 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25279 <param name=
"row" type=
"int" default=
""/>
25282 <method name=
"base_SetColAttr" type=
"" overloaded=
"no">
25283 <autodoc>base_SetColAttr(GridCellAttr attr, int col)
</autodoc>
25285 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25286 <param name=
"col" type=
"int" default=
""/>
25290 <class name=
"GridStringTable" oldname=
"wxGridStringTable" module=
"grid">
25291 <baseclass name=
"GridTableBase"/>
25292 <constructor name=
"GridStringTable" overloaded=
"no">
25293 <autodoc>__init__(int numRows=
0, int numCols=
0) -
> GridStringTable
</autodoc>
25295 <param name=
"numRows" type=
"int" default=
"0"/>
25296 <param name=
"numCols" type=
"int" default=
"0"/>
25300 <class name=
"GridTableMessage" oldname=
"wxGridTableMessage" module=
"grid">
25301 <constructor name=
"GridTableMessage" overloaded=
"no">
25302 <autodoc>__init__(GridTableBase table, int id, int comInt1=-
1, int comInt2=-
1) -
> GridTableMessage
</autodoc>
25304 <param name=
"table" type=
"GridTableBase" default=
""/>
25305 <param name=
"id" type=
"int" default=
""/>
25306 <param name=
"comInt1" type=
"int" default=
"-1"/>
25307 <param name=
"comInt2" type=
"int" default=
"-1"/>
25310 <destructor name=
"~wxGridTableMessage" overloaded=
"no">
25311 <autodoc>__del__()
</autodoc>
25313 <method name=
"SetTableObject" type=
"" overloaded=
"no">
25314 <autodoc>SetTableObject(GridTableBase table)
</autodoc>
25316 <param name=
"table" type=
"GridTableBase" default=
""/>
25319 <method name=
"GetTableObject" type=
"GridTableBase" overloaded=
"no">
25320 <autodoc>GetTableObject() -
> GridTableBase
</autodoc>
25322 <method name=
"SetId" type=
"" overloaded=
"no">
25323 <autodoc>SetId(int id)
</autodoc>
25325 <param name=
"id" type=
"int" default=
""/>
25328 <method name=
"GetId" type=
"int" overloaded=
"no">
25329 <autodoc>GetId() -
> int
</autodoc>
25331 <method name=
"SetCommandInt" type=
"" overloaded=
"no">
25332 <autodoc>SetCommandInt(int comInt1)
</autodoc>
25334 <param name=
"comInt1" type=
"int" default=
""/>
25337 <method name=
"GetCommandInt" type=
"int" overloaded=
"no">
25338 <autodoc>GetCommandInt() -
> int
</autodoc>
25340 <method name=
"SetCommandInt2" type=
"" overloaded=
"no">
25341 <autodoc>SetCommandInt2(int comInt2)
</autodoc>
25343 <param name=
"comInt2" type=
"int" default=
""/>
25346 <method name=
"GetCommandInt2" type=
"int" overloaded=
"no">
25347 <autodoc>GetCommandInt2() -
> int
</autodoc>
25350 <class name=
"GridCellCoords" oldname=
"wxGridCellCoords" module=
"grid">
25351 <constructor name=
"GridCellCoords" overloaded=
"no">
25352 <autodoc>__init__(int r=-
1, int c=-
1) -
> GridCellCoords
</autodoc>
25354 <param name=
"r" type=
"int" default=
"-1"/>
25355 <param name=
"c" type=
"int" default=
"-1"/>
25358 <destructor name=
"~wxGridCellCoords" overloaded=
"no">
25359 <autodoc>__del__()
</autodoc>
25361 <method name=
"GetRow" type=
"int" overloaded=
"no">
25362 <autodoc>GetRow() -
> int
</autodoc>
25364 <method name=
"SetRow" type=
"" overloaded=
"no">
25365 <autodoc>SetRow(int n)
</autodoc>
25367 <param name=
"n" type=
"int" default=
""/>
25370 <method name=
"GetCol" type=
"int" overloaded=
"no">
25371 <autodoc>GetCol() -
> int
</autodoc>
25373 <method name=
"SetCol" type=
"" overloaded=
"no">
25374 <autodoc>SetCol(int n)
</autodoc>
25376 <param name=
"n" type=
"int" default=
""/>
25379 <method name=
"Set" type=
"" overloaded=
"no">
25380 <autodoc>Set(int row, int col)
</autodoc>
25382 <param name=
"row" type=
"int" default=
""/>
25383 <param name=
"col" type=
"int" default=
""/>
25386 <method name=
"__eq__" type=
"bool" overloaded=
"no">
25387 <autodoc>__eq__(GridCellCoords other) -
> bool
</autodoc>
25389 <param name=
"other" type=
"GridCellCoords" default=
""/>
25392 <method name=
"__ne__" type=
"bool" overloaded=
"no">
25393 <autodoc>__ne__(GridCellCoords other) -
> bool
</autodoc>
25395 <param name=
"other" type=
"GridCellCoords" default=
""/>
25398 <method name=
"asTuple" type=
"PyObject" overloaded=
"no">
25399 <autodoc>asTuple() -
> PyObject
</autodoc>
25402 <class name=
"Grid" oldname=
"wxGrid" module=
"grid">
25403 <baseclass name=
"ScrolledWindow"/>
25404 <constructor name=
"Grid" overloaded=
"no">
25405 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
25406 long style=WANTS_CHARS,
25407 String name=PanelNameStr) -
> Grid
</autodoc>
25409 <param name=
"parent" type=
"Window" default=
""/>
25410 <param name=
"id" type=
"int" default=
""/>
25411 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
25412 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
25413 <param name=
"style" type=
"long" default=
"wxWANTS_CHARS"/>
25414 <param name=
"name" type=
"String" default=
"wxPyPanelNameStr"/>
25417 <method name=
"CreateGrid" type=
"bool" overloaded=
"no">
25418 <autodoc>CreateGrid(int numRows, int numCols, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
25420 <param name=
"numRows" type=
"int" default=
""/>
25421 <param name=
"numCols" type=
"int" default=
""/>
25422 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
25425 <method name=
"SetSelectionMode" type=
"" overloaded=
"no">
25426 <autodoc>SetSelectionMode(WXGRIDSELECTIONMODES selmode)
</autodoc>
25428 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
""/>
25431 <method name=
"GetSelectionMode" type=
"WXGRIDSELECTIONMODES" overloaded=
"no">
25432 <autodoc>GetSelectionMode() -
> WXGRIDSELECTIONMODES
</autodoc>
25434 <method name=
"GetNumberRows" type=
"int" overloaded=
"no">
25435 <autodoc>GetNumberRows() -
> int
</autodoc>
25437 <method name=
"GetNumberCols" type=
"int" overloaded=
"no">
25438 <autodoc>GetNumberCols() -
> int
</autodoc>
25440 <method name=
"ProcessTableMessage" type=
"bool" overloaded=
"no">
25441 <autodoc>ProcessTableMessage(GridTableMessage ??) -
> bool
</autodoc>
25443 <param name=
"" type=
"GridTableMessage" default=
""/>
25446 <method name=
"GetTable" type=
"GridTableBase" overloaded=
"no">
25447 <autodoc>GetTable() -
> GridTableBase
</autodoc>
25449 <method name=
"SetTable" type=
"bool" overloaded=
"no">
25450 <autodoc>SetTable(GridTableBase table, bool takeOwnership=False, WXGRIDSELECTIONMODES selmode=wxGridSelectCells) -
> bool
</autodoc>
25452 <param name=
"table" type=
"GridTableBase" default=
""/>
25453 <param name=
"takeOwnership" type=
"bool" default=
"False"/>
25454 <param name=
"selmode" type=
"WXGRIDSELECTIONMODES" default=
"wxGrid::wxGridSelectCells"/>
25457 <method name=
"ClearGrid" type=
"" overloaded=
"no">
25458 <autodoc>ClearGrid()
</autodoc>
25460 <method name=
"InsertRows" type=
"bool" overloaded=
"no">
25461 <autodoc>InsertRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25463 <param name=
"pos" type=
"int" default=
"0"/>
25464 <param name=
"numRows" type=
"int" default=
"1"/>
25465 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25468 <method name=
"AppendRows" type=
"bool" overloaded=
"no">
25469 <autodoc>AppendRows(int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25471 <param name=
"numRows" type=
"int" default=
"1"/>
25472 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25475 <method name=
"DeleteRows" type=
"bool" overloaded=
"no">
25476 <autodoc>DeleteRows(int pos=
0, int numRows=
1, bool updateLabels=True) -
> bool
</autodoc>
25478 <param name=
"pos" type=
"int" default=
"0"/>
25479 <param name=
"numRows" type=
"int" default=
"1"/>
25480 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25483 <method name=
"InsertCols" type=
"bool" overloaded=
"no">
25484 <autodoc>InsertCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25486 <param name=
"pos" type=
"int" default=
"0"/>
25487 <param name=
"numCols" type=
"int" default=
"1"/>
25488 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25491 <method name=
"AppendCols" type=
"bool" overloaded=
"no">
25492 <autodoc>AppendCols(int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25494 <param name=
"numCols" type=
"int" default=
"1"/>
25495 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25498 <method name=
"DeleteCols" type=
"bool" overloaded=
"no">
25499 <autodoc>DeleteCols(int pos=
0, int numCols=
1, bool updateLabels=True) -
> bool
</autodoc>
25501 <param name=
"pos" type=
"int" default=
"0"/>
25502 <param name=
"numCols" type=
"int" default=
"1"/>
25503 <param name=
"updateLabels" type=
"bool" default=
"True"/>
25506 <method name=
"DrawCellHighlight" type=
"" overloaded=
"no">
25507 <autodoc>DrawCellHighlight(DC dc, GridCellAttr attr)
</autodoc>
25509 <param name=
"dc" type=
"DC" default=
""/>
25510 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25513 <method name=
"DrawTextRectangle" type=
"" overloaded=
"no">
25514 <autodoc>DrawTextRectangle(DC dc, String ??, Rect ??, int horizontalAlignment=LEFT,
25515 int verticalAlignment=TOP, int textOrientation=HORIZONTAL)
</autodoc>
25517 <param name=
"dc" type=
"DC" default=
""/>
25518 <param name=
"" type=
"String" default=
""/>
25519 <param name=
"" type=
"Rect" default=
""/>
25520 <param name=
"horizontalAlignment" type=
"int" default=
"wxLEFT"/>
25521 <param name=
"verticalAlignment" type=
"int" default=
"wxTOP"/>
25522 <param name=
"textOrientation" type=
"int" default=
"wxHORIZONTAL"/>
25525 <method name=
"GetTextBoxSize" type=
"" overloaded=
"no">
25526 <autodoc>GetTextBoxSize(DC dc, list lines) -
> (width, height)
</autodoc>
25528 <param name=
"dc" type=
"DC" default=
""/>
25529 <param name=
"lines" type=
"wxArrayString" default=
""/>
25530 <param name=
"OUTPUT" type=
"long" default=
""/>
25531 <param name=
"OUTPUT" type=
"long" default=
""/>
25534 <method name=
"BeginBatch" type=
"" overloaded=
"no">
25535 <autodoc>BeginBatch()
</autodoc>
25537 <method name=
"EndBatch" type=
"" overloaded=
"no">
25538 <autodoc>EndBatch()
</autodoc>
25540 <method name=
"GetBatchCount" type=
"int" overloaded=
"no">
25541 <autodoc>GetBatchCount() -
> int
</autodoc>
25543 <method name=
"ForceRefresh" type=
"" overloaded=
"no">
25544 <autodoc>ForceRefresh()
</autodoc>
25546 <method name=
"Refresh" type=
"" overloaded=
"no">
25547 <autodoc>Refresh(bool eraseb=True, Rect rect=None)
</autodoc>
25548 <docstring>Mark the specified rectangle (or the whole window) as "dirty" so it
25549 will be repainted. Causes an EVT_PAINT event to be generated and sent
25550 to the window.
</docstring>
25552 <param name=
"eraseb" type=
"bool" default=
"True"/>
25553 <param name=
"rect" type=
"Rect" default=
"NULL"/>
25556 <method name=
"IsEditable" type=
"bool" overloaded=
"no">
25557 <autodoc>IsEditable() -
> bool
</autodoc>
25559 <method name=
"EnableEditing" type=
"" overloaded=
"no">
25560 <autodoc>EnableEditing(bool edit)
</autodoc>
25562 <param name=
"edit" type=
"bool" default=
""/>
25565 <method name=
"EnableCellEditControl" type=
"" overloaded=
"no">
25566 <autodoc>EnableCellEditControl(bool enable=True)
</autodoc>
25568 <param name=
"enable" type=
"bool" default=
"True"/>
25571 <method name=
"DisableCellEditControl" type=
"" overloaded=
"no">
25572 <autodoc>DisableCellEditControl()
</autodoc>
25574 <method name=
"CanEnableCellControl" type=
"bool" overloaded=
"no">
25575 <autodoc>CanEnableCellControl() -
> bool
</autodoc>
25577 <method name=
"IsCellEditControlEnabled" type=
"bool" overloaded=
"no">
25578 <autodoc>IsCellEditControlEnabled() -
> bool
</autodoc>
25580 <method name=
"IsCellEditControlShown" type=
"bool" overloaded=
"no">
25581 <autodoc>IsCellEditControlShown() -
> bool
</autodoc>
25583 <method name=
"IsCurrentCellReadOnly" type=
"bool" overloaded=
"no">
25584 <autodoc>IsCurrentCellReadOnly() -
> bool
</autodoc>
25586 <method name=
"ShowCellEditControl" type=
"" overloaded=
"no">
25587 <autodoc>ShowCellEditControl()
</autodoc>
25589 <method name=
"HideCellEditControl" type=
"" overloaded=
"no">
25590 <autodoc>HideCellEditControl()
</autodoc>
25592 <method name=
"SaveEditControlValue" type=
"" overloaded=
"no">
25593 <autodoc>SaveEditControlValue()
</autodoc>
25595 <method name=
"XYToCell" type=
"GridCellCoords" overloaded=
"no">
25596 <autodoc>XYToCell(int x, int y) -
> GridCellCoords
</autodoc>
25598 <param name=
"x" type=
"int" default=
""/>
25599 <param name=
"y" type=
"int" default=
""/>
25602 <method name=
"YToRow" type=
"int" overloaded=
"no">
25603 <autodoc>YToRow(int y) -
> int
</autodoc>
25605 <param name=
"y" type=
"int" default=
""/>
25608 <method name=
"XToCol" type=
"int" overloaded=
"no">
25609 <autodoc>XToCol(int x) -
> int
</autodoc>
25611 <param name=
"x" type=
"int" default=
""/>
25614 <method name=
"YToEdgeOfRow" type=
"int" overloaded=
"no">
25615 <autodoc>YToEdgeOfRow(int y) -
> int
</autodoc>
25617 <param name=
"y" type=
"int" default=
""/>
25620 <method name=
"XToEdgeOfCol" type=
"int" overloaded=
"no">
25621 <autodoc>XToEdgeOfCol(int x) -
> int
</autodoc>
25623 <param name=
"x" type=
"int" default=
""/>
25626 <method name=
"CellToRect" type=
"Rect" overloaded=
"no">
25627 <autodoc>CellToRect(int row, int col) -
> Rect
</autodoc>
25629 <param name=
"row" type=
"int" default=
""/>
25630 <param name=
"col" type=
"int" default=
""/>
25633 <method name=
"GetGridCursorRow" type=
"int" overloaded=
"no">
25634 <autodoc>GetGridCursorRow() -
> int
</autodoc>
25636 <method name=
"GetGridCursorCol" type=
"int" overloaded=
"no">
25637 <autodoc>GetGridCursorCol() -
> int
</autodoc>
25639 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
25640 <autodoc>IsVisible(int row, int col, bool wholeCellVisible=True) -
> bool
</autodoc>
25642 <param name=
"row" type=
"int" default=
""/>
25643 <param name=
"col" type=
"int" default=
""/>
25644 <param name=
"wholeCellVisible" type=
"bool" default=
"True"/>
25647 <method name=
"MakeCellVisible" type=
"" overloaded=
"no">
25648 <autodoc>MakeCellVisible(int row, int col)
</autodoc>
25650 <param name=
"row" type=
"int" default=
""/>
25651 <param name=
"col" type=
"int" default=
""/>
25654 <method name=
"SetGridCursor" type=
"" overloaded=
"no">
25655 <autodoc>SetGridCursor(int row, int col)
</autodoc>
25657 <param name=
"row" type=
"int" default=
""/>
25658 <param name=
"col" type=
"int" default=
""/>
25661 <method name=
"MoveCursorUp" type=
"bool" overloaded=
"no">
25662 <autodoc>MoveCursorUp(bool expandSelection) -
> bool
</autodoc>
25664 <param name=
"expandSelection" type=
"bool" default=
""/>
25667 <method name=
"MoveCursorDown" type=
"bool" overloaded=
"no">
25668 <autodoc>MoveCursorDown(bool expandSelection) -
> bool
</autodoc>
25670 <param name=
"expandSelection" type=
"bool" default=
""/>
25673 <method name=
"MoveCursorLeft" type=
"bool" overloaded=
"no">
25674 <autodoc>MoveCursorLeft(bool expandSelection) -
> bool
</autodoc>
25676 <param name=
"expandSelection" type=
"bool" default=
""/>
25679 <method name=
"MoveCursorRight" type=
"bool" overloaded=
"no">
25680 <autodoc>MoveCursorRight(bool expandSelection) -
> bool
</autodoc>
25682 <param name=
"expandSelection" type=
"bool" default=
""/>
25685 <method name=
"MovePageDown" type=
"bool" overloaded=
"no">
25686 <autodoc>MovePageDown() -
> bool
</autodoc>
25688 <method name=
"MovePageUp" type=
"bool" overloaded=
"no">
25689 <autodoc>MovePageUp() -
> bool
</autodoc>
25691 <method name=
"MoveCursorUpBlock" type=
"bool" overloaded=
"no">
25692 <autodoc>MoveCursorUpBlock(bool expandSelection) -
> bool
</autodoc>
25694 <param name=
"expandSelection" type=
"bool" default=
""/>
25697 <method name=
"MoveCursorDownBlock" type=
"bool" overloaded=
"no">
25698 <autodoc>MoveCursorDownBlock(bool expandSelection) -
> bool
</autodoc>
25700 <param name=
"expandSelection" type=
"bool" default=
""/>
25703 <method name=
"MoveCursorLeftBlock" type=
"bool" overloaded=
"no">
25704 <autodoc>MoveCursorLeftBlock(bool expandSelection) -
> bool
</autodoc>
25706 <param name=
"expandSelection" type=
"bool" default=
""/>
25709 <method name=
"MoveCursorRightBlock" type=
"bool" overloaded=
"no">
25710 <autodoc>MoveCursorRightBlock(bool expandSelection) -
> bool
</autodoc>
25712 <param name=
"expandSelection" type=
"bool" default=
""/>
25715 <method name=
"GetDefaultRowLabelSize" type=
"int" overloaded=
"no">
25716 <autodoc>GetDefaultRowLabelSize() -
> int
</autodoc>
25718 <method name=
"GetRowLabelSize" type=
"int" overloaded=
"no">
25719 <autodoc>GetRowLabelSize() -
> int
</autodoc>
25721 <method name=
"GetDefaultColLabelSize" type=
"int" overloaded=
"no">
25722 <autodoc>GetDefaultColLabelSize() -
> int
</autodoc>
25724 <method name=
"GetColLabelSize" type=
"int" overloaded=
"no">
25725 <autodoc>GetColLabelSize() -
> int
</autodoc>
25727 <method name=
"GetLabelBackgroundColour" type=
"Colour" overloaded=
"no">
25728 <autodoc>GetLabelBackgroundColour() -
> Colour
</autodoc>
25730 <method name=
"GetLabelTextColour" type=
"Colour" overloaded=
"no">
25731 <autodoc>GetLabelTextColour() -
> Colour
</autodoc>
25733 <method name=
"GetLabelFont" type=
"Font" overloaded=
"no">
25734 <autodoc>GetLabelFont() -
> Font
</autodoc>
25736 <method name=
"GetRowLabelAlignment" type=
"" overloaded=
"no">
25737 <autodoc>GetRowLabelAlignment() -
> (horiz, vert)
</autodoc>
25739 <param name=
"OUTPUT" type=
"int" default=
""/>
25740 <param name=
"OUTPUT" type=
"int" default=
""/>
25743 <method name=
"GetColLabelAlignment" type=
"" overloaded=
"no">
25744 <autodoc>GetColLabelAlignment() -
> (horiz, vert)
</autodoc>
25746 <param name=
"OUTPUT" type=
"int" default=
""/>
25747 <param name=
"OUTPUT" type=
"int" default=
""/>
25750 <method name=
"GetColLabelTextOrientation" type=
"int" overloaded=
"no">
25751 <autodoc>GetColLabelTextOrientation() -
> int
</autodoc>
25753 <method name=
"GetRowLabelValue" type=
"String" overloaded=
"no">
25754 <autodoc>GetRowLabelValue(int row) -
> String
</autodoc>
25756 <param name=
"row" type=
"int" default=
""/>
25759 <method name=
"GetColLabelValue" type=
"String" overloaded=
"no">
25760 <autodoc>GetColLabelValue(int col) -
> String
</autodoc>
25762 <param name=
"col" type=
"int" default=
""/>
25765 <method name=
"GetGridLineColour" type=
"Colour" overloaded=
"no">
25766 <autodoc>GetGridLineColour() -
> Colour
</autodoc>
25768 <method name=
"GetCellHighlightColour" type=
"Colour" overloaded=
"no">
25769 <autodoc>GetCellHighlightColour() -
> Colour
</autodoc>
25771 <method name=
"GetCellHighlightPenWidth" type=
"int" overloaded=
"no">
25772 <autodoc>GetCellHighlightPenWidth() -
> int
</autodoc>
25774 <method name=
"GetCellHighlightROPenWidth" type=
"int" overloaded=
"no">
25775 <autodoc>GetCellHighlightROPenWidth() -
> int
</autodoc>
25777 <method name=
"SetRowLabelSize" type=
"" overloaded=
"no">
25778 <autodoc>SetRowLabelSize(int width)
</autodoc>
25780 <param name=
"width" type=
"int" default=
""/>
25783 <method name=
"SetColLabelSize" type=
"" overloaded=
"no">
25784 <autodoc>SetColLabelSize(int height)
</autodoc>
25786 <param name=
"height" type=
"int" default=
""/>
25789 <method name=
"SetLabelBackgroundColour" type=
"" overloaded=
"no">
25790 <autodoc>SetLabelBackgroundColour(Colour ??)
</autodoc>
25792 <param name=
"" type=
"Colour" default=
""/>
25795 <method name=
"SetLabelTextColour" type=
"" overloaded=
"no">
25796 <autodoc>SetLabelTextColour(Colour ??)
</autodoc>
25798 <param name=
"" type=
"Colour" default=
""/>
25801 <method name=
"SetLabelFont" type=
"" overloaded=
"no">
25802 <autodoc>SetLabelFont(Font ??)
</autodoc>
25804 <param name=
"" type=
"Font" default=
""/>
25807 <method name=
"SetRowLabelAlignment" type=
"" overloaded=
"no">
25808 <autodoc>SetRowLabelAlignment(int horiz, int vert)
</autodoc>
25810 <param name=
"horiz" type=
"int" default=
""/>
25811 <param name=
"vert" type=
"int" default=
""/>
25814 <method name=
"SetColLabelAlignment" type=
"" overloaded=
"no">
25815 <autodoc>SetColLabelAlignment(int horiz, int vert)
</autodoc>
25817 <param name=
"horiz" type=
"int" default=
""/>
25818 <param name=
"vert" type=
"int" default=
""/>
25821 <method name=
"SetColLabelTextOrientation" type=
"" overloaded=
"no">
25822 <autodoc>SetColLabelTextOrientation(int textOrientation)
</autodoc>
25824 <param name=
"textOrientation" type=
"int" default=
""/>
25827 <method name=
"SetRowLabelValue" type=
"" overloaded=
"no">
25828 <autodoc>SetRowLabelValue(int row, String ??)
</autodoc>
25830 <param name=
"row" type=
"int" default=
""/>
25831 <param name=
"" type=
"String" default=
""/>
25834 <method name=
"SetColLabelValue" type=
"" overloaded=
"no">
25835 <autodoc>SetColLabelValue(int col, String ??)
</autodoc>
25837 <param name=
"col" type=
"int" default=
""/>
25838 <param name=
"" type=
"String" default=
""/>
25841 <method name=
"SetGridLineColour" type=
"" overloaded=
"no">
25842 <autodoc>SetGridLineColour(Colour ??)
</autodoc>
25844 <param name=
"" type=
"Colour" default=
""/>
25847 <method name=
"SetCellHighlightColour" type=
"" overloaded=
"no">
25848 <autodoc>SetCellHighlightColour(Colour ??)
</autodoc>
25850 <param name=
"" type=
"Colour" default=
""/>
25853 <method name=
"SetCellHighlightPenWidth" type=
"" overloaded=
"no">
25854 <autodoc>SetCellHighlightPenWidth(int width)
</autodoc>
25856 <param name=
"width" type=
"int" default=
""/>
25859 <method name=
"SetCellHighlightROPenWidth" type=
"" overloaded=
"no">
25860 <autodoc>SetCellHighlightROPenWidth(int width)
</autodoc>
25862 <param name=
"width" type=
"int" default=
""/>
25865 <method name=
"EnableDragRowSize" type=
"" overloaded=
"no">
25866 <autodoc>EnableDragRowSize(bool enable=True)
</autodoc>
25868 <param name=
"enable" type=
"bool" default=
"True"/>
25871 <method name=
"DisableDragRowSize" type=
"" overloaded=
"no">
25872 <autodoc>DisableDragRowSize()
</autodoc>
25874 <method name=
"CanDragRowSize" type=
"bool" overloaded=
"no">
25875 <autodoc>CanDragRowSize() -
> bool
</autodoc>
25877 <method name=
"EnableDragColSize" type=
"" overloaded=
"no">
25878 <autodoc>EnableDragColSize(bool enable=True)
</autodoc>
25880 <param name=
"enable" type=
"bool" default=
"True"/>
25883 <method name=
"DisableDragColSize" type=
"" overloaded=
"no">
25884 <autodoc>DisableDragColSize()
</autodoc>
25886 <method name=
"CanDragColSize" type=
"bool" overloaded=
"no">
25887 <autodoc>CanDragColSize() -
> bool
</autodoc>
25889 <method name=
"EnableDragGridSize" type=
"" overloaded=
"no">
25890 <autodoc>EnableDragGridSize(bool enable=True)
</autodoc>
25892 <param name=
"enable" type=
"bool" default=
"True"/>
25895 <method name=
"DisableDragGridSize" type=
"" overloaded=
"no">
25896 <autodoc>DisableDragGridSize()
</autodoc>
25898 <method name=
"CanDragGridSize" type=
"bool" overloaded=
"no">
25899 <autodoc>CanDragGridSize() -
> bool
</autodoc>
25901 <method name=
"SetAttr" type=
"" overloaded=
"no">
25902 <autodoc>SetAttr(int row, int col, GridCellAttr attr)
</autodoc>
25904 <param name=
"row" type=
"int" default=
""/>
25905 <param name=
"col" type=
"int" default=
""/>
25906 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25909 <method name=
"SetRowAttr" type=
"" overloaded=
"no">
25910 <autodoc>SetRowAttr(int row, GridCellAttr attr)
</autodoc>
25912 <param name=
"row" type=
"int" default=
""/>
25913 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25916 <method name=
"SetColAttr" type=
"" overloaded=
"no">
25917 <autodoc>SetColAttr(int col, GridCellAttr attr)
</autodoc>
25919 <param name=
"col" type=
"int" default=
""/>
25920 <param name=
"attr" type=
"GridCellAttr" default=
""/>
25923 <method name=
"SetColFormatBool" type=
"" overloaded=
"no">
25924 <autodoc>SetColFormatBool(int col)
</autodoc>
25926 <param name=
"col" type=
"int" default=
""/>
25929 <method name=
"SetColFormatNumber" type=
"" overloaded=
"no">
25930 <autodoc>SetColFormatNumber(int col)
</autodoc>
25932 <param name=
"col" type=
"int" default=
""/>
25935 <method name=
"SetColFormatFloat" type=
"" overloaded=
"no">
25936 <autodoc>SetColFormatFloat(int col, int width=-
1, int precision=-
1)
</autodoc>
25938 <param name=
"col" type=
"int" default=
""/>
25939 <param name=
"width" type=
"int" default=
"-1"/>
25940 <param name=
"precision" type=
"int" default=
"-1"/>
25943 <method name=
"SetColFormatCustom" type=
"" overloaded=
"no">
25944 <autodoc>SetColFormatCustom(int col, String typeName)
</autodoc>
25946 <param name=
"col" type=
"int" default=
""/>
25947 <param name=
"typeName" type=
"String" default=
""/>
25950 <method name=
"EnableGridLines" type=
"" overloaded=
"no">
25951 <autodoc>EnableGridLines(bool enable=True)
</autodoc>
25953 <param name=
"enable" type=
"bool" default=
"True"/>
25956 <method name=
"GridLinesEnabled" type=
"bool" overloaded=
"no">
25957 <autodoc>GridLinesEnabled() -
> bool
</autodoc>
25959 <method name=
"GetDefaultRowSize" type=
"int" overloaded=
"no">
25960 <autodoc>GetDefaultRowSize() -
> int
</autodoc>
25962 <method name=
"GetRowSize" type=
"int" overloaded=
"no">
25963 <autodoc>GetRowSize(int row) -
> int
</autodoc>
25965 <param name=
"row" type=
"int" default=
""/>
25968 <method name=
"GetDefaultColSize" type=
"int" overloaded=
"no">
25969 <autodoc>GetDefaultColSize() -
> int
</autodoc>
25971 <method name=
"GetColSize" type=
"int" overloaded=
"no">
25972 <autodoc>GetColSize(int col) -
> int
</autodoc>
25974 <param name=
"col" type=
"int" default=
""/>
25977 <method name=
"GetDefaultCellBackgroundColour" type=
"Colour" overloaded=
"no">
25978 <autodoc>GetDefaultCellBackgroundColour() -
> Colour
</autodoc>
25980 <method name=
"GetCellBackgroundColour" type=
"Colour" overloaded=
"no">
25981 <autodoc>GetCellBackgroundColour(int row, int col) -
> Colour
</autodoc>
25983 <param name=
"row" type=
"int" default=
""/>
25984 <param name=
"col" type=
"int" default=
""/>
25987 <method name=
"GetDefaultCellTextColour" type=
"Colour" overloaded=
"no">
25988 <autodoc>GetDefaultCellTextColour() -
> Colour
</autodoc>
25990 <method name=
"GetCellTextColour" type=
"Colour" overloaded=
"no">
25991 <autodoc>GetCellTextColour(int row, int col) -
> Colour
</autodoc>
25993 <param name=
"row" type=
"int" default=
""/>
25994 <param name=
"col" type=
"int" default=
""/>
25997 <method name=
"GetDefaultCellFont" type=
"Font" overloaded=
"no">
25998 <autodoc>GetDefaultCellFont() -
> Font
</autodoc>
26000 <method name=
"GetCellFont" type=
"Font" overloaded=
"no">
26001 <autodoc>GetCellFont(int row, int col) -
> Font
</autodoc>
26003 <param name=
"row" type=
"int" default=
""/>
26004 <param name=
"col" type=
"int" default=
""/>
26007 <method name=
"GetDefaultCellAlignment" type=
"" overloaded=
"no">
26008 <autodoc>GetDefaultCellAlignment() -
> (horiz, vert)
</autodoc>
26010 <param name=
"OUTPUT" type=
"int" default=
""/>
26011 <param name=
"OUTPUT" type=
"int" default=
""/>
26014 <method name=
"GetCellAlignment" type=
"" overloaded=
"no">
26015 <autodoc>GetCellAlignment() -
> (horiz, vert)
</autodoc>
26017 <param name=
"row" type=
"int" default=
""/>
26018 <param name=
"col" type=
"int" default=
""/>
26019 <param name=
"OUTPUT" type=
"int" default=
""/>
26020 <param name=
"OUTPUT" type=
"int" default=
""/>
26023 <method name=
"GetDefaultCellOverflow" type=
"bool" overloaded=
"no">
26024 <autodoc>GetDefaultCellOverflow() -
> bool
</autodoc>
26026 <method name=
"GetCellOverflow" type=
"bool" overloaded=
"no">
26027 <autodoc>GetCellOverflow(int row, int col) -
> bool
</autodoc>
26029 <param name=
"row" type=
"int" default=
""/>
26030 <param name=
"col" type=
"int" default=
""/>
26033 <method name=
"GetCellSize" type=
"" overloaded=
"no">
26034 <autodoc>GetCellSize(int row, int col) -
> (num_rows, num_cols)
</autodoc>
26036 <param name=
"row" type=
"int" default=
""/>
26037 <param name=
"col" type=
"int" default=
""/>
26038 <param name=
"OUTPUT" type=
"int" default=
""/>
26039 <param name=
"OUTPUT" type=
"int" default=
""/>
26042 <method name=
"SetDefaultRowSize" type=
"" overloaded=
"no">
26043 <autodoc>SetDefaultRowSize(int height, bool resizeExistingRows=False)
</autodoc>
26045 <param name=
"height" type=
"int" default=
""/>
26046 <param name=
"resizeExistingRows" type=
"bool" default=
"False"/>
26049 <method name=
"SetRowSize" type=
"" overloaded=
"no">
26050 <autodoc>SetRowSize(int row, int height)
</autodoc>
26052 <param name=
"row" type=
"int" default=
""/>
26053 <param name=
"height" type=
"int" default=
""/>
26056 <method name=
"SetDefaultColSize" type=
"" overloaded=
"no">
26057 <autodoc>SetDefaultColSize(int width, bool resizeExistingCols=False)
</autodoc>
26059 <param name=
"width" type=
"int" default=
""/>
26060 <param name=
"resizeExistingCols" type=
"bool" default=
"False"/>
26063 <method name=
"SetColSize" type=
"" overloaded=
"no">
26064 <autodoc>SetColSize(int col, int width)
</autodoc>
26066 <param name=
"col" type=
"int" default=
""/>
26067 <param name=
"width" type=
"int" default=
""/>
26070 <method name=
"AutoSizeColumn" type=
"" overloaded=
"no">
26071 <autodoc>AutoSizeColumn(int col, bool setAsMin=True)
</autodoc>
26073 <param name=
"col" type=
"int" default=
""/>
26074 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26077 <method name=
"AutoSizeRow" type=
"" overloaded=
"no">
26078 <autodoc>AutoSizeRow(int row, bool setAsMin=True)
</autodoc>
26080 <param name=
"row" type=
"int" default=
""/>
26081 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26084 <method name=
"AutoSizeColumns" type=
"" overloaded=
"no">
26085 <autodoc>AutoSizeColumns(bool setAsMin=True)
</autodoc>
26087 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26090 <method name=
"AutoSizeRows" type=
"" overloaded=
"no">
26091 <autodoc>AutoSizeRows(bool setAsMin=True)
</autodoc>
26093 <param name=
"setAsMin" type=
"bool" default=
"True"/>
26096 <method name=
"AutoSize" type=
"" overloaded=
"no">
26097 <autodoc>AutoSize()
</autodoc>
26099 <method name=
"AutoSizeRowLabelSize" type=
"" overloaded=
"no">
26100 <autodoc>AutoSizeRowLabelSize(int row)
</autodoc>
26102 <param name=
"row" type=
"int" default=
""/>
26105 <method name=
"AutoSizeColLabelSize" type=
"" overloaded=
"no">
26106 <autodoc>AutoSizeColLabelSize(int col)
</autodoc>
26108 <param name=
"col" type=
"int" default=
""/>
26111 <method name=
"SetColMinimalWidth" type=
"" overloaded=
"no">
26112 <autodoc>SetColMinimalWidth(int col, int width)
</autodoc>
26114 <param name=
"col" type=
"int" default=
""/>
26115 <param name=
"width" type=
"int" default=
""/>
26118 <method name=
"SetRowMinimalHeight" type=
"" overloaded=
"no">
26119 <autodoc>SetRowMinimalHeight(int row, int width)
</autodoc>
26121 <param name=
"row" type=
"int" default=
""/>
26122 <param name=
"width" type=
"int" default=
""/>
26125 <method name=
"SetColMinimalAcceptableWidth" type=
"" overloaded=
"no">
26126 <autodoc>SetColMinimalAcceptableWidth(int width)
</autodoc>
26128 <param name=
"width" type=
"int" default=
""/>
26131 <method name=
"SetRowMinimalAcceptableHeight" type=
"" overloaded=
"no">
26132 <autodoc>SetRowMinimalAcceptableHeight(int width)
</autodoc>
26134 <param name=
"width" type=
"int" default=
""/>
26137 <method name=
"GetColMinimalAcceptableWidth" type=
"int" overloaded=
"no">
26138 <autodoc>GetColMinimalAcceptableWidth() -
> int
</autodoc>
26140 <method name=
"GetRowMinimalAcceptableHeight" type=
"int" overloaded=
"no">
26141 <autodoc>GetRowMinimalAcceptableHeight() -
> int
</autodoc>
26143 <method name=
"SetDefaultCellBackgroundColour" type=
"" overloaded=
"no">
26144 <autodoc>SetDefaultCellBackgroundColour(Colour ??)
</autodoc>
26146 <param name=
"" type=
"Colour" default=
""/>
26149 <method name=
"SetCellBackgroundColour" type=
"" overloaded=
"no">
26150 <autodoc>SetCellBackgroundColour(int row, int col, Colour ??)
</autodoc>
26152 <param name=
"row" type=
"int" default=
""/>
26153 <param name=
"col" type=
"int" default=
""/>
26154 <param name=
"" type=
"Colour" default=
""/>
26157 <method name=
"SetDefaultCellTextColour" type=
"" overloaded=
"no">
26158 <autodoc>SetDefaultCellTextColour(Colour ??)
</autodoc>
26160 <param name=
"" type=
"Colour" default=
""/>
26163 <method name=
"SetCellTextColour" type=
"" overloaded=
"no">
26164 <autodoc>SetCellTextColour(int row, int col, Colour ??)
</autodoc>
26166 <param name=
"row" type=
"int" default=
""/>
26167 <param name=
"col" type=
"int" default=
""/>
26168 <param name=
"" type=
"Colour" default=
""/>
26171 <method name=
"SetDefaultCellFont" type=
"" overloaded=
"no">
26172 <autodoc>SetDefaultCellFont(Font ??)
</autodoc>
26174 <param name=
"" type=
"Font" default=
""/>
26177 <method name=
"SetCellFont" type=
"" overloaded=
"no">
26178 <autodoc>SetCellFont(int row, int col, Font ??)
</autodoc>
26180 <param name=
"row" type=
"int" default=
""/>
26181 <param name=
"col" type=
"int" default=
""/>
26182 <param name=
"" type=
"Font" default=
""/>
26185 <method name=
"SetDefaultCellAlignment" type=
"" overloaded=
"no">
26186 <autodoc>SetDefaultCellAlignment(int horiz, int vert)
</autodoc>
26188 <param name=
"horiz" type=
"int" default=
""/>
26189 <param name=
"vert" type=
"int" default=
""/>
26192 <method name=
"SetCellAlignment" type=
"" overloaded=
"no">
26193 <autodoc>SetCellAlignment(int row, int col, int horiz, int vert)
</autodoc>
26195 <param name=
"row" type=
"int" default=
""/>
26196 <param name=
"col" type=
"int" default=
""/>
26197 <param name=
"horiz" type=
"int" default=
""/>
26198 <param name=
"vert" type=
"int" default=
""/>
26201 <method name=
"SetDefaultCellOverflow" type=
"" overloaded=
"no">
26202 <autodoc>SetDefaultCellOverflow(bool allow)
</autodoc>
26204 <param name=
"allow" type=
"bool" default=
""/>
26207 <method name=
"SetCellOverflow" type=
"" overloaded=
"no">
26208 <autodoc>SetCellOverflow(int row, int col, bool allow)
</autodoc>
26210 <param name=
"row" type=
"int" default=
""/>
26211 <param name=
"col" type=
"int" default=
""/>
26212 <param name=
"allow" type=
"bool" default=
""/>
26215 <method name=
"SetCellSize" type=
"" overloaded=
"no">
26216 <autodoc>SetCellSize(int row, int col, int num_rows, int num_cols)
</autodoc>
26218 <param name=
"row" type=
"int" default=
""/>
26219 <param name=
"col" type=
"int" default=
""/>
26220 <param name=
"num_rows" type=
"int" default=
""/>
26221 <param name=
"num_cols" type=
"int" default=
""/>
26224 <method name=
"SetDefaultRenderer" type=
"" overloaded=
"no">
26225 <autodoc>SetDefaultRenderer(GridCellRenderer renderer)
</autodoc>
26227 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26230 <method name=
"SetCellRenderer" type=
"" overloaded=
"no">
26231 <autodoc>SetCellRenderer(int row, int col, GridCellRenderer renderer)
</autodoc>
26233 <param name=
"row" type=
"int" default=
""/>
26234 <param name=
"col" type=
"int" default=
""/>
26235 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26238 <method name=
"GetDefaultRenderer" type=
"GridCellRenderer" overloaded=
"no">
26239 <autodoc>GetDefaultRenderer() -
> GridCellRenderer
</autodoc>
26241 <method name=
"GetCellRenderer" type=
"GridCellRenderer" overloaded=
"no">
26242 <autodoc>GetCellRenderer(int row, int col) -
> GridCellRenderer
</autodoc>
26244 <param name=
"row" type=
"int" default=
""/>
26245 <param name=
"col" type=
"int" default=
""/>
26248 <method name=
"SetDefaultEditor" type=
"" overloaded=
"no">
26249 <autodoc>SetDefaultEditor(GridCellEditor editor)
</autodoc>
26251 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26254 <method name=
"SetCellEditor" type=
"" overloaded=
"no">
26255 <autodoc>SetCellEditor(int row, int col, GridCellEditor editor)
</autodoc>
26257 <param name=
"row" type=
"int" default=
""/>
26258 <param name=
"col" type=
"int" default=
""/>
26259 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26262 <method name=
"GetDefaultEditor" type=
"GridCellEditor" overloaded=
"no">
26263 <autodoc>GetDefaultEditor() -
> GridCellEditor
</autodoc>
26265 <method name=
"GetCellEditor" type=
"GridCellEditor" overloaded=
"no">
26266 <autodoc>GetCellEditor(int row, int col) -
> GridCellEditor
</autodoc>
26268 <param name=
"row" type=
"int" default=
""/>
26269 <param name=
"col" type=
"int" default=
""/>
26272 <method name=
"GetCellValue" type=
"String" overloaded=
"no">
26273 <autodoc>GetCellValue(int row, int col) -
> String
</autodoc>
26275 <param name=
"row" type=
"int" default=
""/>
26276 <param name=
"col" type=
"int" default=
""/>
26279 <method name=
"SetCellValue" type=
"" overloaded=
"no">
26280 <autodoc>SetCellValue(int row, int col, String s)
</autodoc>
26282 <param name=
"row" type=
"int" default=
""/>
26283 <param name=
"col" type=
"int" default=
""/>
26284 <param name=
"s" type=
"String" default=
""/>
26287 <method name=
"IsReadOnly" type=
"bool" overloaded=
"no">
26288 <autodoc>IsReadOnly(int row, int col) -
> bool
</autodoc>
26290 <param name=
"row" type=
"int" default=
""/>
26291 <param name=
"col" type=
"int" default=
""/>
26294 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
26295 <autodoc>SetReadOnly(int row, int col, bool isReadOnly=True)
</autodoc>
26297 <param name=
"row" type=
"int" default=
""/>
26298 <param name=
"col" type=
"int" default=
""/>
26299 <param name=
"isReadOnly" type=
"bool" default=
"True"/>
26302 <method name=
"SelectRow" type=
"" overloaded=
"no">
26303 <autodoc>SelectRow(int row, bool addToSelected=False)
</autodoc>
26305 <param name=
"row" type=
"int" default=
""/>
26306 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26309 <method name=
"SelectCol" type=
"" overloaded=
"no">
26310 <autodoc>SelectCol(int col, bool addToSelected=False)
</autodoc>
26312 <param name=
"col" type=
"int" default=
""/>
26313 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26316 <method name=
"SelectBlock" type=
"" overloaded=
"no">
26317 <autodoc>SelectBlock(int topRow, int leftCol, int bottomRow, int rightCol,
26318 bool addToSelected=False)
</autodoc>
26320 <param name=
"topRow" type=
"int" default=
""/>
26321 <param name=
"leftCol" type=
"int" default=
""/>
26322 <param name=
"bottomRow" type=
"int" default=
""/>
26323 <param name=
"rightCol" type=
"int" default=
""/>
26324 <param name=
"addToSelected" type=
"bool" default=
"False"/>
26327 <method name=
"SelectAll" type=
"" overloaded=
"no">
26328 <autodoc>SelectAll()
</autodoc>
26330 <method name=
"IsSelection" type=
"bool" overloaded=
"no">
26331 <autodoc>IsSelection() -
> bool
</autodoc>
26333 <method name=
"ClearSelection" type=
"" overloaded=
"no">
26334 <autodoc>ClearSelection()
</autodoc>
26336 <method name=
"IsInSelection" type=
"bool" overloaded=
"no">
26337 <autodoc>IsInSelection(int row, int col) -
> bool
</autodoc>
26339 <param name=
"row" type=
"int" default=
""/>
26340 <param name=
"col" type=
"int" default=
""/>
26343 <method name=
"GetSelectedCells" type=
"wxGridCellCoordsArray" overloaded=
"no">
26344 <autodoc>GetSelectedCells() -
> wxGridCellCoordsArray
</autodoc>
26346 <method name=
"GetSelectionBlockTopLeft" type=
"wxGridCellCoordsArray" overloaded=
"no">
26347 <autodoc>GetSelectionBlockTopLeft() -
> wxGridCellCoordsArray
</autodoc>
26349 <method name=
"GetSelectionBlockBottomRight" type=
"wxGridCellCoordsArray" overloaded=
"no">
26350 <autodoc>GetSelectionBlockBottomRight() -
> wxGridCellCoordsArray
</autodoc>
26352 <method name=
"GetSelectedRows" type=
"wxArrayInt" overloaded=
"no">
26353 <autodoc>GetSelectedRows() -
> wxArrayInt
</autodoc>
26355 <method name=
"GetSelectedCols" type=
"wxArrayInt" overloaded=
"no">
26356 <autodoc>GetSelectedCols() -
> wxArrayInt
</autodoc>
26358 <method name=
"DeselectRow" type=
"" overloaded=
"no">
26359 <autodoc>DeselectRow(int row)
</autodoc>
26361 <param name=
"row" type=
"int" default=
""/>
26364 <method name=
"DeselectCol" type=
"" overloaded=
"no">
26365 <autodoc>DeselectCol(int col)
</autodoc>
26367 <param name=
"col" type=
"int" default=
""/>
26370 <method name=
"DeselectCell" type=
"" overloaded=
"no">
26371 <autodoc>DeselectCell(int row, int col)
</autodoc>
26373 <param name=
"row" type=
"int" default=
""/>
26374 <param name=
"col" type=
"int" default=
""/>
26377 <method name=
"BlockToDeviceRect" type=
"Rect" overloaded=
"no">
26378 <autodoc>BlockToDeviceRect(GridCellCoords topLeft, GridCellCoords bottomRight) -
> Rect
</autodoc>
26380 <param name=
"topLeft" type=
"GridCellCoords" default=
""/>
26381 <param name=
"bottomRight" type=
"GridCellCoords" default=
""/>
26384 <method name=
"GetSelectionBackground" type=
"Colour" overloaded=
"no">
26385 <autodoc>GetSelectionBackground() -
> Colour
</autodoc>
26387 <method name=
"GetSelectionForeground" type=
"Colour" overloaded=
"no">
26388 <autodoc>GetSelectionForeground() -
> Colour
</autodoc>
26390 <method name=
"SetSelectionBackground" type=
"" overloaded=
"no">
26391 <autodoc>SetSelectionBackground(Colour c)
</autodoc>
26393 <param name=
"c" type=
"Colour" default=
""/>
26396 <method name=
"SetSelectionForeground" type=
"" overloaded=
"no">
26397 <autodoc>SetSelectionForeground(Colour c)
</autodoc>
26399 <param name=
"c" type=
"Colour" default=
""/>
26402 <method name=
"RegisterDataType" type=
"" overloaded=
"no">
26403 <autodoc>RegisterDataType(String typeName, GridCellRenderer renderer, GridCellEditor editor)
</autodoc>
26405 <param name=
"typeName" type=
"String" default=
""/>
26406 <param name=
"renderer" type=
"GridCellRenderer" default=
""/>
26407 <param name=
"editor" type=
"GridCellEditor" default=
""/>
26410 <method name=
"GetDefaultEditorForCell" type=
"GridCellEditor" overloaded=
"no">
26411 <autodoc>GetDefaultEditorForCell(int row, int col) -
> GridCellEditor
</autodoc>
26413 <param name=
"row" type=
"int" default=
""/>
26414 <param name=
"col" type=
"int" default=
""/>
26417 <method name=
"GetDefaultRendererForCell" type=
"GridCellRenderer" overloaded=
"no">
26418 <autodoc>GetDefaultRendererForCell(int row, int col) -
> GridCellRenderer
</autodoc>
26420 <param name=
"row" type=
"int" default=
""/>
26421 <param name=
"col" type=
"int" default=
""/>
26424 <method name=
"GetDefaultEditorForType" type=
"GridCellEditor" overloaded=
"no">
26425 <autodoc>GetDefaultEditorForType(String typeName) -
> GridCellEditor
</autodoc>
26427 <param name=
"typeName" type=
"String" default=
""/>
26430 <method name=
"GetDefaultRendererForType" type=
"GridCellRenderer" overloaded=
"no">
26431 <autodoc>GetDefaultRendererForType(String typeName) -
> GridCellRenderer
</autodoc>
26433 <param name=
"typeName" type=
"String" default=
""/>
26436 <method name=
"SetMargins" type=
"" overloaded=
"no">
26437 <autodoc>SetMargins(int extraWidth, int extraHeight)
</autodoc>
26439 <param name=
"extraWidth" type=
"int" default=
""/>
26440 <param name=
"extraHeight" type=
"int" default=
""/>
26443 <method name=
"GetGridWindow" type=
"Window" overloaded=
"no">
26444 <autodoc>GetGridWindow() -
> Window
</autodoc>
26446 <method name=
"GetGridRowLabelWindow" type=
"Window" overloaded=
"no">
26447 <autodoc>GetGridRowLabelWindow() -
> Window
</autodoc>
26449 <method name=
"GetGridColLabelWindow" type=
"Window" overloaded=
"no">
26450 <autodoc>GetGridColLabelWindow() -
> Window
</autodoc>
26452 <method name=
"GetGridCornerLabelWindow" type=
"Window" overloaded=
"no">
26453 <autodoc>GetGridCornerLabelWindow() -
> Window
</autodoc>
26456 <class name=
"GridEvent" oldname=
"wxGridEvent" module=
"grid">
26457 <baseclass name=
"NotifyEvent"/>
26458 <constructor name=
"GridEvent" overloaded=
"no">
26459 <autodoc>__init__(int id, wxEventType type, Grid obj, int row=-
1, int col=-
1,
26460 int x=-
1, int y=-
1, bool sel=True, bool control=False,
26461 bool shift=False, bool alt=False,
26462 bool meta=False) -
> GridEvent
</autodoc>
26464 <param name=
"id" type=
"int" default=
""/>
26465 <param name=
"type" type=
"wxEventType" default=
""/>
26466 <param name=
"obj" type=
"Grid" default=
""/>
26467 <param name=
"row" type=
"int" default=
"-1"/>
26468 <param name=
"col" type=
"int" default=
"-1"/>
26469 <param name=
"x" type=
"int" default=
"-1"/>
26470 <param name=
"y" type=
"int" default=
"-1"/>
26471 <param name=
"sel" type=
"bool" default=
"True"/>
26472 <param name=
"control" type=
"bool" default=
"False"/>
26473 <param name=
"shift" type=
"bool" default=
"False"/>
26474 <param name=
"alt" type=
"bool" default=
"False"/>
26475 <param name=
"meta" type=
"bool" default=
"False"/>
26478 <method name=
"GetRow" type=
"int" overloaded=
"no">
26479 <autodoc>GetRow() -
> int
</autodoc>
26481 <method name=
"GetCol" type=
"int" overloaded=
"no">
26482 <autodoc>GetCol() -
> int
</autodoc>
26484 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
26485 <autodoc>GetPosition() -
> Point
</autodoc>
26487 <method name=
"Selecting" type=
"bool" overloaded=
"no">
26488 <autodoc>Selecting() -
> bool
</autodoc>
26490 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26491 <autodoc>ControlDown() -
> bool
</autodoc>
26493 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26494 <autodoc>MetaDown() -
> bool
</autodoc>
26496 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26497 <autodoc>ShiftDown() -
> bool
</autodoc>
26499 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26500 <autodoc>AltDown() -
> bool
</autodoc>
26503 <class name=
"GridSizeEvent" oldname=
"wxGridSizeEvent" module=
"grid">
26504 <baseclass name=
"NotifyEvent"/>
26505 <constructor name=
"GridSizeEvent" overloaded=
"no">
26506 <autodoc>__init__(int id, wxEventType type, Grid obj, int rowOrCol=-
1,
26507 int x=-
1, int y=-
1, bool control=False, bool shift=False,
26508 bool alt=False, bool meta=False) -
> GridSizeEvent
</autodoc>
26510 <param name=
"id" type=
"int" default=
""/>
26511 <param name=
"type" type=
"wxEventType" default=
""/>
26512 <param name=
"obj" type=
"Grid" default=
""/>
26513 <param name=
"rowOrCol" type=
"int" default=
"-1"/>
26514 <param name=
"x" type=
"int" default=
"-1"/>
26515 <param name=
"y" type=
"int" default=
"-1"/>
26516 <param name=
"control" type=
"bool" default=
"False"/>
26517 <param name=
"shift" type=
"bool" default=
"False"/>
26518 <param name=
"alt" type=
"bool" default=
"False"/>
26519 <param name=
"meta" type=
"bool" default=
"False"/>
26522 <method name=
"GetRowOrCol" type=
"int" overloaded=
"no">
26523 <autodoc>GetRowOrCol() -
> int
</autodoc>
26525 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
26526 <autodoc>GetPosition() -
> Point
</autodoc>
26528 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26529 <autodoc>ControlDown() -
> bool
</autodoc>
26531 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26532 <autodoc>MetaDown() -
> bool
</autodoc>
26534 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26535 <autodoc>ShiftDown() -
> bool
</autodoc>
26537 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26538 <autodoc>AltDown() -
> bool
</autodoc>
26541 <class name=
"GridRangeSelectEvent" oldname=
"wxGridRangeSelectEvent" module=
"grid">
26542 <baseclass name=
"NotifyEvent"/>
26543 <constructor name=
"GridRangeSelectEvent" overloaded=
"no">
26544 <autodoc>__init__(int id, wxEventType type, Grid obj, GridCellCoords topLeft,
26545 GridCellCoords bottomRight, bool sel=True,
26546 bool control=False, bool shift=False,
26547 bool alt=False, bool meta=False) -
> GridRangeSelectEvent
</autodoc>
26549 <param name=
"id" type=
"int" default=
""/>
26550 <param name=
"type" type=
"wxEventType" default=
""/>
26551 <param name=
"obj" type=
"Grid" default=
""/>
26552 <param name=
"topLeft" type=
"GridCellCoords" default=
""/>
26553 <param name=
"bottomRight" type=
"GridCellCoords" default=
""/>
26554 <param name=
"sel" type=
"bool" default=
"True"/>
26555 <param name=
"control" type=
"bool" default=
"False"/>
26556 <param name=
"shift" type=
"bool" default=
"False"/>
26557 <param name=
"alt" type=
"bool" default=
"False"/>
26558 <param name=
"meta" type=
"bool" default=
"False"/>
26561 <method name=
"GetTopLeftCoords" type=
"GridCellCoords" overloaded=
"no">
26562 <autodoc>GetTopLeftCoords() -
> GridCellCoords
</autodoc>
26564 <method name=
"GetBottomRightCoords" type=
"GridCellCoords" overloaded=
"no">
26565 <autodoc>GetBottomRightCoords() -
> GridCellCoords
</autodoc>
26567 <method name=
"GetTopRow" type=
"int" overloaded=
"no">
26568 <autodoc>GetTopRow() -
> int
</autodoc>
26570 <method name=
"GetBottomRow" type=
"int" overloaded=
"no">
26571 <autodoc>GetBottomRow() -
> int
</autodoc>
26573 <method name=
"GetLeftCol" type=
"int" overloaded=
"no">
26574 <autodoc>GetLeftCol() -
> int
</autodoc>
26576 <method name=
"GetRightCol" type=
"int" overloaded=
"no">
26577 <autodoc>GetRightCol() -
> int
</autodoc>
26579 <method name=
"Selecting" type=
"bool" overloaded=
"no">
26580 <autodoc>Selecting() -
> bool
</autodoc>
26582 <method name=
"ControlDown" type=
"bool" overloaded=
"no">
26583 <autodoc>ControlDown() -
> bool
</autodoc>
26585 <method name=
"MetaDown" type=
"bool" overloaded=
"no">
26586 <autodoc>MetaDown() -
> bool
</autodoc>
26588 <method name=
"ShiftDown" type=
"bool" overloaded=
"no">
26589 <autodoc>ShiftDown() -
> bool
</autodoc>
26591 <method name=
"AltDown" type=
"bool" overloaded=
"no">
26592 <autodoc>AltDown() -
> bool
</autodoc>
26595 <class name=
"GridEditorCreatedEvent" oldname=
"wxGridEditorCreatedEvent" module=
"grid">
26596 <baseclass name=
"CommandEvent"/>
26597 <constructor name=
"GridEditorCreatedEvent" overloaded=
"no">
26598 <autodoc>__init__(int id, wxEventType type, Object obj, int row, int col,
26599 Control ctrl) -
> GridEditorCreatedEvent
</autodoc>
26601 <param name=
"id" type=
"int" default=
""/>
26602 <param name=
"type" type=
"wxEventType" default=
""/>
26603 <param name=
"obj" type=
"Object" default=
""/>
26604 <param name=
"row" type=
"int" default=
""/>
26605 <param name=
"col" type=
"int" default=
""/>
26606 <param name=
"ctrl" type=
"Control" default=
""/>
26609 <method name=
"GetRow" type=
"int" overloaded=
"no">
26610 <autodoc>GetRow() -
> int
</autodoc>
26612 <method name=
"GetCol" type=
"int" overloaded=
"no">
26613 <autodoc>GetCol() -
> int
</autodoc>
26615 <method name=
"GetControl" type=
"Control" overloaded=
"no">
26616 <autodoc>GetControl() -
> Control
</autodoc>
26618 <method name=
"SetRow" type=
"" overloaded=
"no">
26619 <autodoc>SetRow(int row)
</autodoc>
26621 <param name=
"row" type=
"int" default=
""/>
26624 <method name=
"SetCol" type=
"" overloaded=
"no">
26625 <autodoc>SetCol(int col)
</autodoc>
26627 <param name=
"col" type=
"int" default=
""/>
26630 <method name=
"SetControl" type=
"" overloaded=
"no">
26631 <autodoc>SetControl(Control ctrl)
</autodoc>
26633 <param name=
"ctrl" type=
"Control" default=
""/>
26638 EVT_GRID_CELL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_CLICK )
26639 EVT_GRID_CELL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_CLICK )
26640 EVT_GRID_CELL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_LEFT_DCLICK )
26641 EVT_GRID_CELL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_CELL_RIGHT_DCLICK )
26642 EVT_GRID_LABEL_LEFT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_CLICK )
26643 EVT_GRID_LABEL_RIGHT_CLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_CLICK )
26644 EVT_GRID_LABEL_LEFT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_LEFT_DCLICK )
26645 EVT_GRID_LABEL_RIGHT_DCLICK = wx.PyEventBinder( wxEVT_GRID_LABEL_RIGHT_DCLICK )
26646 EVT_GRID_ROW_SIZE = wx.PyEventBinder( wxEVT_GRID_ROW_SIZE )
26647 EVT_GRID_COL_SIZE = wx.PyEventBinder( wxEVT_GRID_COL_SIZE )
26648 EVT_GRID_RANGE_SELECT = wx.PyEventBinder( wxEVT_GRID_RANGE_SELECT )
26649 EVT_GRID_CELL_CHANGE = wx.PyEventBinder( wxEVT_GRID_CELL_CHANGE )
26650 EVT_GRID_SELECT_CELL = wx.PyEventBinder( wxEVT_GRID_SELECT_CELL )
26651 EVT_GRID_EDITOR_SHOWN = wx.PyEventBinder( wxEVT_GRID_EDITOR_SHOWN )
26652 EVT_GRID_EDITOR_HIDDEN = wx.PyEventBinder( wxEVT_GRID_EDITOR_HIDDEN )
26653 EVT_GRID_EDITOR_CREATED = wx.PyEventBinder( wxEVT_GRID_EDITOR_CREATED )
26656 <module name=
"html">
26657 <import name=
"windows"/>
26658 <pythoncode> wx = core
</pythoncode>
26660 #---------------------------------------------------------------------------
26662 <class name=
"HtmlLinkInfo" oldname=
"wxHtmlLinkInfo" module=
"html">
26663 <baseclass name=
"Object"/>
26664 <constructor name=
"HtmlLinkInfo" overloaded=
"no">
26665 <autodoc>__init__(String href, String target=EmptyString) -
> HtmlLinkInfo
</autodoc>
26667 <param name=
"href" type=
"String" default=
""/>
26668 <param name=
"target" type=
"String" default=
"wxPyEmptyString"/>
26671 <method name=
"GetHref" type=
"String" overloaded=
"no">
26672 <autodoc>GetHref() -
> String
</autodoc>
26674 <method name=
"GetTarget" type=
"String" overloaded=
"no">
26675 <autodoc>GetTarget() -
> String
</autodoc>
26677 <method name=
"GetEvent" type=
"MouseEvent" overloaded=
"no">
26678 <autodoc>GetEvent() -
> MouseEvent
</autodoc>
26680 <method name=
"GetHtmlCell" type=
"wxHtmlCell" overloaded=
"no">
26681 <autodoc>GetHtmlCell() -
> HtmlCell
</autodoc>
26683 <method name=
"SetEvent" type=
"" overloaded=
"no">
26684 <autodoc>SetEvent(MouseEvent e)
</autodoc>
26686 <param name=
"e" type=
"MouseEvent" default=
""/>
26689 <method name=
"SetHtmlCell" type=
"" overloaded=
"no">
26690 <autodoc>SetHtmlCell(HtmlCell e)
</autodoc>
26692 <param name=
"e" type=
"wxHtmlCell" default=
""/>
26696 <class name=
"HtmlTag" oldname=
"wxHtmlTag" module=
"html">
26697 <baseclass name=
"Object"/>
26698 <method name=
"GetName" type=
"String" overloaded=
"no">
26699 <autodoc>GetName() -
> String
</autodoc>
26701 <method name=
"HasParam" type=
"bool" overloaded=
"no">
26702 <autodoc>HasParam(String par) -
> bool
</autodoc>
26704 <param name=
"par" type=
"String" default=
""/>
26707 <method name=
"GetParam" type=
"String" overloaded=
"no">
26708 <autodoc>GetParam(String par, int with_commas=False) -
> String
</autodoc>
26710 <param name=
"par" type=
"String" default=
""/>
26711 <param name=
"with_commas" type=
"int" default=
"False"/>
26714 <method name=
"GetAllParams" type=
"String" overloaded=
"no">
26715 <autodoc>GetAllParams() -
> String
</autodoc>
26717 <method name=
"HasEnding" type=
"bool" overloaded=
"no">
26718 <autodoc>HasEnding() -
> bool
</autodoc>
26720 <method name=
"GetBeginPos" type=
"int" overloaded=
"no">
26721 <autodoc>GetBeginPos() -
> int
</autodoc>
26723 <method name=
"GetEndPos1" type=
"int" overloaded=
"no">
26724 <autodoc>GetEndPos1() -
> int
</autodoc>
26726 <method name=
"GetEndPos2" type=
"int" overloaded=
"no">
26727 <autodoc>GetEndPos2() -
> int
</autodoc>
26730 <class name=
"HtmlParser" oldname=
"wxHtmlParser" module=
"html">
26731 <baseclass name=
"Object"/>
26732 <method name=
"SetFS" type=
"" overloaded=
"no">
26733 <autodoc>SetFS(FileSystem fs)
</autodoc>
26735 <param name=
"fs" type=
"FileSystem" default=
""/>
26738 <method name=
"GetFS" type=
"FileSystem" overloaded=
"no">
26739 <autodoc>GetFS() -
> FileSystem
</autodoc>
26741 <method name=
"Parse" type=
"Object" overloaded=
"no">
26742 <autodoc>Parse(String source) -
> Object
</autodoc>
26744 <param name=
"source" type=
"String" default=
""/>
26747 <method name=
"InitParser" type=
"" overloaded=
"no">
26748 <autodoc>InitParser(String source)
</autodoc>
26750 <param name=
"source" type=
"String" default=
""/>
26753 <method name=
"DoneParser" type=
"" overloaded=
"no">
26754 <autodoc>DoneParser()
</autodoc>
26756 <method name=
"DoParsing" type=
"" overloaded=
"no">
26757 <autodoc>DoParsing(int begin_pos, int end_pos)
</autodoc>
26759 <param name=
"begin_pos" type=
"int" default=
""/>
26760 <param name=
"end_pos" type=
"int" default=
""/>
26763 <method name=
"StopParsing" type=
"" overloaded=
"no">
26764 <autodoc>StopParsing()
</autodoc>
26766 <method name=
"AddTagHandler" type=
"" overloaded=
"no">
26767 <autodoc>AddTagHandler(HtmlTagHandler handler)
</autodoc>
26769 <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/>
26772 <method name=
"GetSource" type=
"String" overloaded=
"no">
26773 <autodoc>GetSource() -
> String
</autodoc>
26775 <method name=
"PushTagHandler" type=
"" overloaded=
"no">
26776 <autodoc>PushTagHandler(HtmlTagHandler handler, String tags)
</autodoc>
26778 <param name=
"handler" type=
"wxHtmlTagHandler" default=
""/>
26779 <param name=
"tags" type=
"String" default=
""/>
26782 <method name=
"PopTagHandler" type=
"" overloaded=
"no">
26783 <autodoc>PopTagHandler()
</autodoc>
26786 <class name=
"HtmlWinParser" oldname=
"wxHtmlWinParser" module=
"html">
26787 <baseclass name=
"HtmlParser"/>
26788 <constructor name=
"HtmlWinParser" overloaded=
"no">
26789 <autodoc>__init__(HtmlWindow wnd=None) -
> HtmlWinParser
</autodoc>
26791 <param name=
"wnd" type=
"wxPyHtmlWindow" default=
"NULL"/>
26794 <method name=
"SetDC" type=
"" overloaded=
"no">
26795 <autodoc>SetDC(DC dc)
</autodoc>
26797 <param name=
"dc" type=
"DC" default=
""/>
26800 <method name=
"GetDC" type=
"DC" overloaded=
"no">
26801 <autodoc>GetDC() -
> DC
</autodoc>
26803 <method name=
"GetCharHeight" type=
"int" overloaded=
"no">
26804 <autodoc>GetCharHeight() -
> int
</autodoc>
26806 <method name=
"GetCharWidth" type=
"int" overloaded=
"no">
26807 <autodoc>GetCharWidth() -
> int
</autodoc>
26809 <method name=
"GetWindow" type=
"wxPyHtmlWindow" overloaded=
"no">
26810 <autodoc>GetWindow() -
> HtmlWindow
</autodoc>
26812 <method name=
"SetFonts" type=
"" overloaded=
"no">
26813 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
26815 <param name=
"normal_face" type=
"String" default=
""/>
26816 <param name=
"fixed_face" type=
"String" default=
""/>
26817 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
26820 <method name=
"GetContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
26821 <autodoc>GetContainer() -
> HtmlContainerCell
</autodoc>
26823 <method name=
"OpenContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
26824 <autodoc>OpenContainer() -
> HtmlContainerCell
</autodoc>
26826 <method name=
"SetContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
26827 <autodoc>SetContainer(HtmlContainerCell c) -
> HtmlContainerCell
</autodoc>
26829 <param name=
"c" type=
"wxHtmlContainerCell" default=
""/>
26832 <method name=
"CloseContainer" type=
"wxHtmlContainerCell" overloaded=
"no">
26833 <autodoc>CloseContainer() -
> HtmlContainerCell
</autodoc>
26835 <method name=
"GetFontSize" type=
"int" overloaded=
"no">
26836 <autodoc>GetFontSize() -
> int
</autodoc>
26838 <method name=
"SetFontSize" type=
"" overloaded=
"no">
26839 <autodoc>SetFontSize(int s)
</autodoc>
26841 <param name=
"s" type=
"int" default=
""/>
26844 <method name=
"GetFontBold" type=
"int" overloaded=
"no">
26845 <autodoc>GetFontBold() -
> int
</autodoc>
26847 <method name=
"SetFontBold" type=
"" overloaded=
"no">
26848 <autodoc>SetFontBold(int x)
</autodoc>
26850 <param name=
"x" type=
"int" default=
""/>
26853 <method name=
"GetFontItalic" type=
"int" overloaded=
"no">
26854 <autodoc>GetFontItalic() -
> int
</autodoc>
26856 <method name=
"SetFontItalic" type=
"" overloaded=
"no">
26857 <autodoc>SetFontItalic(int x)
</autodoc>
26859 <param name=
"x" type=
"int" default=
""/>
26862 <method name=
"GetFontUnderlined" type=
"int" overloaded=
"no">
26863 <autodoc>GetFontUnderlined() -
> int
</autodoc>
26865 <method name=
"SetFontUnderlined" type=
"" overloaded=
"no">
26866 <autodoc>SetFontUnderlined(int x)
</autodoc>
26868 <param name=
"x" type=
"int" default=
""/>
26871 <method name=
"GetFontFixed" type=
"int" overloaded=
"no">
26872 <autodoc>GetFontFixed() -
> int
</autodoc>
26874 <method name=
"SetFontFixed" type=
"" overloaded=
"no">
26875 <autodoc>SetFontFixed(int x)
</autodoc>
26877 <param name=
"x" type=
"int" default=
""/>
26880 <method name=
"GetAlign" type=
"int" overloaded=
"no">
26881 <autodoc>GetAlign() -
> int
</autodoc>
26883 <method name=
"SetAlign" type=
"" overloaded=
"no">
26884 <autodoc>SetAlign(int a)
</autodoc>
26886 <param name=
"a" type=
"int" default=
""/>
26889 <method name=
"GetLinkColor" type=
"Colour" overloaded=
"no">
26890 <autodoc>GetLinkColor() -
> Colour
</autodoc>
26892 <method name=
"SetLinkColor" type=
"" overloaded=
"no">
26893 <autodoc>SetLinkColor(Colour clr)
</autodoc>
26895 <param name=
"clr" type=
"Colour" default=
""/>
26898 <method name=
"GetActualColor" type=
"Colour" overloaded=
"no">
26899 <autodoc>GetActualColor() -
> Colour
</autodoc>
26901 <method name=
"SetActualColor" type=
"" overloaded=
"no">
26902 <autodoc>SetActualColor(Colour clr)
</autodoc>
26904 <param name=
"clr" type=
"Colour" default=
""/>
26907 <method name=
"SetLink" type=
"" overloaded=
"no">
26908 <autodoc>SetLink(String link)
</autodoc>
26910 <param name=
"link" type=
"String" default=
""/>
26913 <method name=
"CreateCurrentFont" type=
"Font" overloaded=
"no">
26914 <autodoc>CreateCurrentFont() -
> Font
</autodoc>
26916 <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no">
26917 <autodoc>GetLink() -
> HtmlLinkInfo
</autodoc>
26920 <class name=
"HtmlTagHandler" oldname=
"wxPyHtmlTagHandler" module=
"html">
26921 <baseclass name=
"Object"/>
26922 <constructor name=
"wxPyHtmlTagHandler" overloaded=
"no">
26923 <autodoc>__init__() -
> HtmlTagHandler
</autodoc>
26925 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
26926 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
26928 <param name=
"self" type=
"PyObject" default=
""/>
26929 <param name=
"_class" type=
"PyObject" default=
""/>
26932 <method name=
"SetParser" type=
"" overloaded=
"no">
26933 <autodoc>SetParser(HtmlParser parser)
</autodoc>
26935 <param name=
"parser" type=
"HtmlParser" default=
""/>
26938 <method name=
"GetParser" type=
"HtmlParser" overloaded=
"no">
26939 <autodoc>GetParser() -
> HtmlParser
</autodoc>
26941 <method name=
"ParseInner" type=
"" overloaded=
"no">
26942 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
26944 <param name=
"tag" type=
"HtmlTag" default=
""/>
26948 <class name=
"HtmlWinTagHandler" oldname=
"wxPyHtmlWinTagHandler" module=
"html">
26949 <baseclass name=
"HtmlTagHandler"/>
26950 <constructor name=
"wxPyHtmlWinTagHandler" overloaded=
"no">
26951 <autodoc>__init__() -
> HtmlWinTagHandler
</autodoc>
26953 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
26954 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
26956 <param name=
"self" type=
"PyObject" default=
""/>
26957 <param name=
"_class" type=
"PyObject" default=
""/>
26960 <method name=
"SetParser" type=
"" overloaded=
"no">
26961 <autodoc>SetParser(HtmlParser parser)
</autodoc>
26963 <param name=
"parser" type=
"HtmlParser" default=
""/>
26966 <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no">
26967 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
26969 <method name=
"ParseInner" type=
"" overloaded=
"no">
26970 <autodoc>ParseInner(HtmlTag tag)
</autodoc>
26972 <param name=
"tag" type=
"HtmlTag" default=
""/>
26976 <method name=
"HtmlWinParser_AddTagHandler" oldname=
"wxHtmlWinParser_AddTagHandler" type=
"" overloaded=
"no">
26977 <autodoc>HtmlWinParser_AddTagHandler(PyObject tagHandlerClass)
</autodoc>
26979 <param name=
"tagHandlerClass" type=
"PyObject" default=
""/>
26983 #---------------------------------------------------------------------------
26985 <class name=
"HtmlSelection" oldname=
"wxHtmlSelection" module=
"html">
26986 <constructor name=
"HtmlSelection" overloaded=
"no">
26987 <autodoc>__init__() -
> HtmlSelection
</autodoc>
26989 <destructor name=
"~wxHtmlSelection" overloaded=
"no">
26990 <autodoc>__del__()
</autodoc>
26992 <method name=
"Set" type=
"" overloaded=
"no">
26993 <autodoc>Set(Point fromPos, HtmlCell fromCell, Point toPos, HtmlCell toCell)
</autodoc>
26995 <param name=
"fromPos" type=
"Point" default=
""/>
26996 <param name=
"fromCell" type=
"wxHtmlCell" default=
""/>
26997 <param name=
"toPos" type=
"Point" default=
""/>
26998 <param name=
"toCell" type=
"wxHtmlCell" default=
""/>
27001 <method name=
"SetCells" type=
"" overloaded=
"no">
27002 <autodoc>SetCells(HtmlCell fromCell, HtmlCell toCell)
</autodoc>
27004 <param name=
"fromCell" type=
"wxHtmlCell" default=
""/>
27005 <param name=
"toCell" type=
"wxHtmlCell" default=
""/>
27008 <method name=
"GetFromCell" type=
"wxHtmlCell" overloaded=
"no">
27009 <autodoc>GetFromCell() -
> HtmlCell
</autodoc>
27011 <method name=
"GetToCell" type=
"wxHtmlCell" overloaded=
"no">
27012 <autodoc>GetToCell() -
> HtmlCell
</autodoc>
27014 <method name=
"GetFromPos" type=
"Point" overloaded=
"no">
27015 <autodoc>GetFromPos() -
> Point
</autodoc>
27017 <method name=
"GetToPos" type=
"Point" overloaded=
"no">
27018 <autodoc>GetToPos() -
> Point
</autodoc>
27020 <method name=
"GetFromPrivPos" type=
"Point" overloaded=
"no">
27021 <autodoc>GetFromPrivPos() -
> Point
</autodoc>
27023 <method name=
"GetToPrivPos" type=
"Point" overloaded=
"no">
27024 <autodoc>GetToPrivPos() -
> Point
</autodoc>
27026 <method name=
"SetFromPrivPos" type=
"" overloaded=
"no">
27027 <autodoc>SetFromPrivPos(Point pos)
</autodoc>
27029 <param name=
"pos" type=
"Point" default=
""/>
27032 <method name=
"SetToPrivPos" type=
"" overloaded=
"no">
27033 <autodoc>SetToPrivPos(Point pos)
</autodoc>
27035 <param name=
"pos" type=
"Point" default=
""/>
27038 <method name=
"ClearPrivPos" type=
"" overloaded=
"no">
27039 <autodoc>ClearPrivPos()
</autodoc>
27041 <method name=
"IsEmpty" type=
"bool" overloaded=
"no">
27042 <autodoc>IsEmpty() -
> bool
</autodoc>
27045 <class name=
"HtmlRenderingState" oldname=
"wxHtmlRenderingState" module=
"html">
27046 <constructor name=
"HtmlRenderingState" overloaded=
"no">
27047 <autodoc>__init__() -
> HtmlRenderingState
</autodoc>
27049 <destructor name=
"~wxHtmlRenderingState" overloaded=
"no">
27050 <autodoc>__del__()
</autodoc>
27052 <method name=
"SetSelectionState" type=
"" overloaded=
"no">
27053 <autodoc>SetSelectionState(int s)
</autodoc>
27055 <param name=
"s" type=
"wxHtmlSelectionState" default=
""/>
27058 <method name=
"GetSelectionState" type=
"wxHtmlSelectionState" overloaded=
"no">
27059 <autodoc>GetSelectionState() -
> int
</autodoc>
27061 <method name=
"SetFgColour" type=
"" overloaded=
"no">
27062 <autodoc>SetFgColour(Colour c)
</autodoc>
27064 <param name=
"c" type=
"Colour" default=
""/>
27067 <method name=
"GetFgColour" type=
"Colour" overloaded=
"no">
27068 <autodoc>GetFgColour() -
> Colour
</autodoc>
27070 <method name=
"SetBgColour" type=
"" overloaded=
"no">
27071 <autodoc>SetBgColour(Colour c)
</autodoc>
27073 <param name=
"c" type=
"Colour" default=
""/>
27076 <method name=
"GetBgColour" type=
"Colour" overloaded=
"no">
27077 <autodoc>GetBgColour() -
> Colour
</autodoc>
27080 <class name=
"HtmlRenderingStyle" oldname=
"wxHtmlRenderingStyle" module=
"html">
27081 <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no">
27082 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
27084 <param name=
"clr" type=
"Colour" default=
""/>
27087 <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no">
27088 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
27090 <param name=
"clr" type=
"Colour" default=
""/>
27094 <class name=
"DefaultHtmlRenderingStyle" oldname=
"wxDefaultHtmlRenderingStyle" module=
"html">
27095 <baseclass name=
"HtmlRenderingStyle"/>
27096 <method name=
"GetSelectedTextColour" type=
"Colour" overloaded=
"no">
27097 <autodoc>GetSelectedTextColour(Colour clr) -
> Colour
</autodoc>
27099 <param name=
"clr" type=
"Colour" default=
""/>
27102 <method name=
"GetSelectedTextBgColour" type=
"Colour" overloaded=
"no">
27103 <autodoc>GetSelectedTextBgColour(Colour clr) -
> Colour
</autodoc>
27105 <param name=
"clr" type=
"Colour" default=
""/>
27109 <class name=
"HtmlRenderingInfo" oldname=
"wxHtmlRenderingInfo" module=
"html">
27110 <constructor name=
"HtmlRenderingInfo" overloaded=
"no">
27111 <autodoc>__init__() -
> HtmlRenderingInfo
</autodoc>
27113 <destructor name=
"~wxHtmlRenderingInfo" overloaded=
"no">
27114 <autodoc>__del__()
</autodoc>
27116 <method name=
"SetSelection" type=
"" overloaded=
"no">
27117 <autodoc>SetSelection(HtmlSelection s)
</autodoc>
27119 <param name=
"s" type=
"HtmlSelection" default=
""/>
27122 <method name=
"GetSelection" type=
"HtmlSelection" overloaded=
"no">
27123 <autodoc>GetSelection() -
> HtmlSelection
</autodoc>
27125 <method name=
"SetStyle" type=
"" overloaded=
"no">
27126 <autodoc>SetStyle(HtmlRenderingStyle style)
</autodoc>
27128 <param name=
"style" type=
"HtmlRenderingStyle" default=
""/>
27131 <method name=
"GetStyle" type=
"HtmlRenderingStyle" overloaded=
"no">
27132 <autodoc>GetStyle() -
> HtmlRenderingStyle
</autodoc>
27134 <method name=
"GetState" type=
"HtmlRenderingState" overloaded=
"no">
27135 <autodoc>GetState() -
> HtmlRenderingState
</autodoc>
27139 #---------------------------------------------------------------------------
27141 <class name=
"HtmlCell" oldname=
"wxHtmlCell" module=
"html">
27142 <baseclass name=
"Object"/>
27143 <constructor name=
"HtmlCell" overloaded=
"no">
27144 <autodoc>__init__() -
> HtmlCell
</autodoc>
27146 <method name=
"GetPosX" type=
"int" overloaded=
"no">
27147 <autodoc>GetPosX() -
> int
</autodoc>
27149 <method name=
"GetPosY" type=
"int" overloaded=
"no">
27150 <autodoc>GetPosY() -
> int
</autodoc>
27152 <method name=
"GetWidth" type=
"int" overloaded=
"no">
27153 <autodoc>GetWidth() -
> int
</autodoc>
27155 <method name=
"GetHeight" type=
"int" overloaded=
"no">
27156 <autodoc>GetHeight() -
> int
</autodoc>
27158 <method name=
"GetDescent" type=
"int" overloaded=
"no">
27159 <autodoc>GetDescent() -
> int
</autodoc>
27161 <method name=
"GetId" type=
"String" overloaded=
"no">
27162 <autodoc>GetId() -
> String
</autodoc>
27164 <method name=
"SetId" type=
"" overloaded=
"no">
27165 <autodoc>SetId(String id)
</autodoc>
27167 <param name=
"id" type=
"String" default=
""/>
27170 <method name=
"GetLink" type=
"HtmlLinkInfo" overloaded=
"no">
27171 <autodoc>GetLink(int x=
0, int y=
0) -
> HtmlLinkInfo
</autodoc>
27173 <param name=
"x" type=
"int" default=
"0"/>
27174 <param name=
"y" type=
"int" default=
"0"/>
27177 <method name=
"GetNext" type=
"HtmlCell" overloaded=
"no">
27178 <autodoc>GetNext() -
> HtmlCell
</autodoc>
27180 <method name=
"GetParent" type=
"wxHtmlContainerCell" overloaded=
"no">
27181 <autodoc>GetParent() -
> HtmlContainerCell
</autodoc>
27183 <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no">
27184 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
27186 <method name=
"GetCursor" type=
"Cursor" overloaded=
"no">
27187 <autodoc>GetCursor() -
> Cursor
</autodoc>
27189 <method name=
"IsFormattingCell" type=
"bool" overloaded=
"no">
27190 <autodoc>IsFormattingCell() -
> bool
</autodoc>
27192 <method name=
"SetLink" type=
"" overloaded=
"no">
27193 <autodoc>SetLink(HtmlLinkInfo link)
</autodoc>
27195 <param name=
"link" type=
"HtmlLinkInfo" default=
""/>
27198 <method name=
"SetNext" type=
"" overloaded=
"no">
27199 <autodoc>SetNext(HtmlCell cell)
</autodoc>
27201 <param name=
"cell" type=
"HtmlCell" default=
""/>
27204 <method name=
"SetParent" type=
"" overloaded=
"no">
27205 <autodoc>SetParent(HtmlContainerCell p)
</autodoc>
27207 <param name=
"p" type=
"wxHtmlContainerCell" default=
""/>
27210 <method name=
"SetPos" type=
"" overloaded=
"no">
27211 <autodoc>SetPos(int x, int y)
</autodoc>
27213 <param name=
"x" type=
"int" default=
""/>
27214 <param name=
"y" type=
"int" default=
""/>
27217 <method name=
"Layout" type=
"" overloaded=
"no">
27218 <autodoc>Layout(int w)
</autodoc>
27220 <param name=
"w" type=
"int" default=
""/>
27223 <method name=
"Draw" type=
"" overloaded=
"no">
27224 <autodoc>Draw(DC dc, int x, int y, int view_y1, int view_y2, HtmlRenderingInfo info)
</autodoc>
27226 <param name=
"dc" type=
"DC" default=
""/>
27227 <param name=
"x" type=
"int" default=
""/>
27228 <param name=
"y" type=
"int" default=
""/>
27229 <param name=
"view_y1" type=
"int" default=
""/>
27230 <param name=
"view_y2" type=
"int" default=
""/>
27231 <param name=
"info" type=
"HtmlRenderingInfo" default=
""/>
27234 <method name=
"DrawInvisible" type=
"" overloaded=
"no">
27235 <autodoc>DrawInvisible(DC dc, int x, int y, HtmlRenderingInfo info)
</autodoc>
27237 <param name=
"dc" type=
"DC" default=
""/>
27238 <param name=
"x" type=
"int" default=
""/>
27239 <param name=
"y" type=
"int" default=
""/>
27240 <param name=
"info" type=
"HtmlRenderingInfo" default=
""/>
27243 <method name=
"Find" type=
"HtmlCell" overloaded=
"no">
27244 <autodoc>Find(int condition, void param) -
> HtmlCell
</autodoc>
27246 <param name=
"condition" type=
"int" default=
""/>
27247 <param name=
"param" type=
"" default=
""/>
27250 <method name=
"AdjustPagebreak" type=
"bool" overloaded=
"no">
27251 <autodoc>AdjustPagebreak(int INOUT) -
> bool
</autodoc>
27253 <param name=
"INOUT" type=
"int" default=
""/>
27256 <method name=
"SetCanLiveOnPagebreak" type=
"" overloaded=
"no">
27257 <autodoc>SetCanLiveOnPagebreak(bool can)
</autodoc>
27259 <param name=
"can" type=
"bool" default=
""/>
27262 <method name=
"IsLinebreakAllowed" type=
"bool" overloaded=
"no">
27263 <autodoc>IsLinebreakAllowed() -
> bool
</autodoc>
27265 <method name=
"IsTerminalCell" type=
"bool" overloaded=
"no">
27266 <autodoc>IsTerminalCell() -
> bool
</autodoc>
27268 <method name=
"FindCellByPos" type=
"HtmlCell" overloaded=
"no">
27269 <autodoc>FindCellByPos(int x, int y, unsigned int flags=HTML_FIND_EXACT) -
> HtmlCell
</autodoc>
27271 <param name=
"x" type=
"int" default=
""/>
27272 <param name=
"y" type=
"int" default=
""/>
27273 <param name=
"flags" type=
"unsigned int" default=
"wxHTML_FIND_EXACT"/>
27276 <method name=
"GetAbsPos" type=
"Point" overloaded=
"no">
27277 <autodoc>GetAbsPos() -
> Point
</autodoc>
27279 <method name=
"GetFirstTerminal" type=
"HtmlCell" overloaded=
"no">
27280 <autodoc>GetFirstTerminal() -
> HtmlCell
</autodoc>
27282 <method name=
"GetLastTerminal" type=
"HtmlCell" overloaded=
"no">
27283 <autodoc>GetLastTerminal() -
> HtmlCell
</autodoc>
27285 <method name=
"GetDepth" type=
"unsigned int" overloaded=
"no">
27286 <autodoc>GetDepth() -
> unsigned int
</autodoc>
27288 <method name=
"IsBefore" type=
"bool" overloaded=
"no">
27289 <autodoc>IsBefore(HtmlCell cell) -
> bool
</autodoc>
27291 <param name=
"cell" type=
"HtmlCell" default=
""/>
27294 <method name=
"ConvertToText" type=
"String" overloaded=
"no">
27295 <autodoc>ConvertToText(HtmlSelection sel) -
> String
</autodoc>
27297 <param name=
"sel" type=
"HtmlSelection" default=
""/>
27301 <class name=
"HtmlWordCell" oldname=
"wxHtmlWordCell" module=
"html">
27302 <baseclass name=
"HtmlCell"/>
27303 <constructor name=
"HtmlWordCell" overloaded=
"no">
27304 <autodoc>__init__(String word, DC dc) -
> HtmlWordCell
</autodoc>
27306 <param name=
"word" type=
"String" default=
""/>
27307 <param name=
"dc" type=
"DC" default=
""/>
27311 <class name=
"HtmlContainerCell" oldname=
"wxHtmlContainerCell" module=
"html">
27312 <baseclass name=
"HtmlCell"/>
27313 <constructor name=
"HtmlContainerCell" overloaded=
"no">
27314 <autodoc>__init__(HtmlContainerCell parent) -
> HtmlContainerCell
</autodoc>
27316 <param name=
"parent" type=
"HtmlContainerCell" default=
""/>
27319 <method name=
"InsertCell" type=
"" overloaded=
"no">
27320 <autodoc>InsertCell(HtmlCell cell)
</autodoc>
27322 <param name=
"cell" type=
"HtmlCell" default=
""/>
27325 <method name=
"SetAlignHor" type=
"" overloaded=
"no">
27326 <autodoc>SetAlignHor(int al)
</autodoc>
27328 <param name=
"al" type=
"int" default=
""/>
27331 <method name=
"GetAlignHor" type=
"int" overloaded=
"no">
27332 <autodoc>GetAlignHor() -
> int
</autodoc>
27334 <method name=
"SetAlignVer" type=
"" overloaded=
"no">
27335 <autodoc>SetAlignVer(int al)
</autodoc>
27337 <param name=
"al" type=
"int" default=
""/>
27340 <method name=
"GetAlignVer" type=
"int" overloaded=
"no">
27341 <autodoc>GetAlignVer() -
> int
</autodoc>
27343 <method name=
"SetIndent" type=
"" overloaded=
"no">
27344 <autodoc>SetIndent(int i, int what, int units=HTML_UNITS_PIXELS)
</autodoc>
27346 <param name=
"i" type=
"int" default=
""/>
27347 <param name=
"what" type=
"int" default=
""/>
27348 <param name=
"units" type=
"int" default=
"wxHTML_UNITS_PIXELS"/>
27351 <method name=
"GetIndent" type=
"int" overloaded=
"no">
27352 <autodoc>GetIndent(int ind) -
> int
</autodoc>
27354 <param name=
"ind" type=
"int" default=
""/>
27357 <method name=
"GetIndentUnits" type=
"int" overloaded=
"no">
27358 <autodoc>GetIndentUnits(int ind) -
> int
</autodoc>
27360 <param name=
"ind" type=
"int" default=
""/>
27363 <method name=
"SetAlign" type=
"" overloaded=
"no">
27364 <autodoc>SetAlign(HtmlTag tag)
</autodoc>
27366 <param name=
"tag" type=
"HtmlTag" default=
""/>
27369 <method name=
"SetWidthFloat" type=
"" overloaded=
"no">
27370 <autodoc>SetWidthFloat(int w, int units)
</autodoc>
27372 <param name=
"w" type=
"int" default=
""/>
27373 <param name=
"units" type=
"int" default=
""/>
27376 <method name=
"SetWidthFloatFromTag" type=
"" overloaded=
"no">
27377 <autodoc>SetWidthFloatFromTag(HtmlTag tag)
</autodoc>
27379 <param name=
"tag" type=
"HtmlTag" default=
""/>
27382 <method name=
"SetMinHeight" type=
"" overloaded=
"no">
27383 <autodoc>SetMinHeight(int h, int align=HTML_ALIGN_TOP)
</autodoc>
27385 <param name=
"h" type=
"int" default=
""/>
27386 <param name=
"align" type=
"int" default=
"wxHTML_ALIGN_TOP"/>
27389 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
27390 <autodoc>SetBackgroundColour(Colour clr)
</autodoc>
27392 <param name=
"clr" type=
"Colour" default=
""/>
27395 <method name=
"GetBackgroundColour" type=
"Colour" overloaded=
"no">
27396 <autodoc>GetBackgroundColour() -
> Colour
</autodoc>
27398 <method name=
"SetBorder" type=
"" overloaded=
"no">
27399 <autodoc>SetBorder(Colour clr1, Colour clr2)
</autodoc>
27401 <param name=
"clr1" type=
"Colour" default=
""/>
27402 <param name=
"clr2" type=
"Colour" default=
""/>
27405 <method name=
"GetFirstChild" type=
"HtmlCell" overloaded=
"no">
27406 <autodoc>GetFirstChild() -
> HtmlCell
</autodoc>
27409 <class name=
"HtmlColourCell" oldname=
"wxHtmlColourCell" module=
"html">
27410 <baseclass name=
"HtmlCell"/>
27411 <constructor name=
"HtmlColourCell" overloaded=
"no">
27412 <autodoc>__init__(Colour clr, int flags=HTML_CLR_FOREGROUND) -
> HtmlColourCell
</autodoc>
27414 <param name=
"clr" type=
"Colour" default=
""/>
27415 <param name=
"flags" type=
"int" default=
"wxHTML_CLR_FOREGROUND"/>
27419 <class name=
"HtmlFontCell" oldname=
"wxHtmlFontCell" module=
"html">
27420 <baseclass name=
"HtmlCell"/>
27421 <constructor name=
"HtmlFontCell" overloaded=
"no">
27422 <autodoc>__init__(Font font) -
> HtmlFontCell
</autodoc>
27424 <param name=
"font" type=
"Font" default=
""/>
27428 <class name=
"HtmlWidgetCell" oldname=
"wxHtmlWidgetCell" module=
"html">
27429 <baseclass name=
"HtmlCell"/>
27430 <constructor name=
"HtmlWidgetCell" overloaded=
"no">
27431 <autodoc>__init__(Window wnd, int w=
0) -
> HtmlWidgetCell
</autodoc>
27433 <param name=
"wnd" type=
"Window" default=
""/>
27434 <param name=
"w" type=
"int" default=
"0"/>
27439 #---------------------------------------------------------------------------
27441 <class name=
"HtmlFilter" oldname=
"wxPyHtmlFilter" module=
"html">
27442 <baseclass name=
"Object"/>
27443 <constructor name=
"wxPyHtmlFilter" overloaded=
"no">
27444 <autodoc>__init__() -
> HtmlFilter
</autodoc>
27446 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27447 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27449 <param name=
"self" type=
"PyObject" default=
""/>
27450 <param name=
"_class" type=
"PyObject" default=
""/>
27455 #---------------------------------------------------------------------------
27457 <class name=
"HtmlWindow" oldname=
"wxPyHtmlWindow" module=
"html">
27458 <baseclass name=
"ScrolledWindow"/>
27459 <constructor name=
"wxPyHtmlWindow" overloaded=
"no">
27460 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
27461 Size size=DefaultSize, int style=HW_DEFAULT_STYLE,
27462 String name=HtmlWindowNameStr) -
> HtmlWindow
</autodoc>
27464 <param name=
"parent" type=
"Window" default=
""/>
27465 <param name=
"id" type=
"int" default=
"-1"/>
27466 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
27467 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
27468 <param name=
"style" type=
"int" default=
"wxHW_DEFAULT_STYLE"/>
27469 <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/>
27472 <constructor name=
"PreHtmlWindow" overloaded=
"no">
27473 <autodoc>PreHtmlWindow() -
> HtmlWindow
</autodoc>
27475 <method name=
"Create" type=
"bool" overloaded=
"no">
27476 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
27477 Size size=DefaultSize, int style=HW_SCROLLBAR_AUTO,
27478 String name=HtmlWindowNameStr) -
> bool
</autodoc>
27480 <param name=
"parent" type=
"Window" default=
""/>
27481 <param name=
"id" type=
"int" default=
"-1"/>
27482 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
27483 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
27484 <param name=
"style" type=
"int" default=
"wxHW_SCROLLBAR_AUTO"/>
27485 <param name=
"name" type=
"String" default=
"wxPyHtmlWindowNameStr"/>
27488 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
27489 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
27491 <param name=
"self" type=
"PyObject" default=
""/>
27492 <param name=
"_class" type=
"PyObject" default=
""/>
27495 <method name=
"SetPage" type=
"bool" overloaded=
"no">
27496 <autodoc>SetPage(String source) -
> bool
</autodoc>
27498 <param name=
"source" type=
"String" default=
""/>
27501 <method name=
"LoadPage" type=
"bool" overloaded=
"no">
27502 <autodoc>LoadPage(String location) -
> bool
</autodoc>
27504 <param name=
"location" type=
"String" default=
""/>
27507 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
27508 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
27510 <param name=
"filename" type=
"String" default=
""/>
27513 <method name=
"AppendToPage" type=
"bool" overloaded=
"no">
27514 <autodoc>AppendToPage(String source) -
> bool
</autodoc>
27516 <param name=
"source" type=
"String" default=
""/>
27519 <method name=
"GetOpenedPage" type=
"String" overloaded=
"no">
27520 <autodoc>GetOpenedPage() -
> String
</autodoc>
27522 <method name=
"GetOpenedAnchor" type=
"String" overloaded=
"no">
27523 <autodoc>GetOpenedAnchor() -
> String
</autodoc>
27525 <method name=
"GetOpenedPageTitle" type=
"String" overloaded=
"no">
27526 <autodoc>GetOpenedPageTitle() -
> String
</autodoc>
27528 <method name=
"SetRelatedFrame" type=
"" overloaded=
"no">
27529 <autodoc>SetRelatedFrame(Frame frame, String format)
</autodoc>
27531 <param name=
"frame" type=
"Frame" default=
""/>
27532 <param name=
"format" type=
"String" default=
""/>
27535 <method name=
"GetRelatedFrame" type=
"Frame" overloaded=
"no">
27536 <autodoc>GetRelatedFrame() -
> Frame
</autodoc>
27538 <method name=
"SetRelatedStatusBar" type=
"" overloaded=
"no">
27539 <autodoc>SetRelatedStatusBar(int bar)
</autodoc>
27541 <param name=
"bar" type=
"int" default=
""/>
27544 <method name=
"SetFonts" type=
"" overloaded=
"no">
27545 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27547 <param name=
"normal_face" type=
"String" default=
""/>
27548 <param name=
"fixed_face" type=
"String" default=
""/>
27549 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27552 <method name=
"SetTitle" type=
"" overloaded=
"no">
27553 <autodoc>SetTitle(String title)
</autodoc>
27554 <docstring>Sets the window's title. Applicable only to frames and dialogs.
</docstring>
27556 <param name=
"title" type=
"String" default=
""/>
27559 <method name=
"SetBorders" type=
"" overloaded=
"no">
27560 <autodoc>SetBorders(int b)
</autodoc>
27562 <param name=
"b" type=
"int" default=
""/>
27565 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
27566 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
27568 <param name=
"cfg" type=
"ConfigBase" default=
""/>
27569 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
27572 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
27573 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
27575 <param name=
"cfg" type=
"ConfigBase" default=
""/>
27576 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
27579 <method name=
"HistoryBack" type=
"bool" overloaded=
"no">
27580 <autodoc>HistoryBack() -
> bool
</autodoc>
27582 <method name=
"HistoryForward" type=
"bool" overloaded=
"no">
27583 <autodoc>HistoryForward() -
> bool
</autodoc>
27585 <method name=
"HistoryCanBack" type=
"bool" overloaded=
"no">
27586 <autodoc>HistoryCanBack() -
> bool
</autodoc>
27588 <method name=
"HistoryCanForward" type=
"bool" overloaded=
"no">
27589 <autodoc>HistoryCanForward() -
> bool
</autodoc>
27591 <method name=
"HistoryClear" type=
"" overloaded=
"no">
27592 <autodoc>HistoryClear()
</autodoc>
27594 <method name=
"GetInternalRepresentation" type=
"HtmlContainerCell" overloaded=
"no">
27595 <autodoc>GetInternalRepresentation() -
> HtmlContainerCell
</autodoc>
27597 <method name=
"GetParser" type=
"HtmlWinParser" overloaded=
"no">
27598 <autodoc>GetParser() -
> HtmlWinParser
</autodoc>
27600 <method name=
"ScrollToAnchor" type=
"bool" overloaded=
"no">
27601 <autodoc>ScrollToAnchor(String anchor) -
> bool
</autodoc>
27603 <param name=
"anchor" type=
"String" default=
""/>
27606 <method name=
"HasAnchor" type=
"bool" overloaded=
"no">
27607 <autodoc>HasAnchor(String anchor) -
> bool
</autodoc>
27609 <param name=
"anchor" type=
"String" default=
""/>
27612 <staticmethod name=
"AddFilter" type=
"" overloaded=
"no">
27613 <autodoc>AddFilter(HtmlFilter filter)
</autodoc>
27615 <param name=
"filter" type=
"HtmlFilter" default=
""/>
27618 <method name=
"SelectWord" type=
"" overloaded=
"no">
27619 <autodoc>SelectWord(Point pos)
</autodoc>
27621 <param name=
"pos" type=
"Point" default=
""/>
27624 <method name=
"SelectLine" type=
"" overloaded=
"no">
27625 <autodoc>SelectLine(Point pos)
</autodoc>
27627 <param name=
"pos" type=
"Point" default=
""/>
27630 <method name=
"SelectAll" type=
"" overloaded=
"no">
27631 <autodoc>SelectAll()
</autodoc>
27633 <method name=
"base_OnLinkClicked" type=
"" overloaded=
"no">
27634 <autodoc>base_OnLinkClicked(HtmlLinkInfo link)
</autodoc>
27636 <param name=
"link" type=
"HtmlLinkInfo" default=
""/>
27639 <method name=
"base_OnSetTitle" type=
"" overloaded=
"no">
27640 <autodoc>base_OnSetTitle(String title)
</autodoc>
27642 <param name=
"title" type=
"String" default=
""/>
27645 <method name=
"base_OnCellMouseHover" type=
"" overloaded=
"no">
27646 <autodoc>base_OnCellMouseHover(HtmlCell cell, int x, int y)
</autodoc>
27648 <param name=
"cell" type=
"HtmlCell" default=
""/>
27649 <param name=
"x" type=
"int" default=
""/>
27650 <param name=
"y" type=
"int" default=
""/>
27653 <method name=
"base_OnCellClicked" type=
"" overloaded=
"no">
27654 <autodoc>base_OnCellClicked(HtmlCell cell, int x, int y, MouseEvent event)
</autodoc>
27656 <param name=
"cell" type=
"HtmlCell" default=
""/>
27657 <param name=
"x" type=
"int" default=
""/>
27658 <param name=
"y" type=
"int" default=
""/>
27659 <param name=
"event" type=
"MouseEvent" default=
""/>
27664 #---------------------------------------------------------------------------
27666 <class name=
"HtmlDCRenderer" oldname=
"wxHtmlDCRenderer" module=
"html">
27667 <baseclass name=
"Object"/>
27668 <constructor name=
"HtmlDCRenderer" overloaded=
"no">
27669 <autodoc>__init__() -
> HtmlDCRenderer
</autodoc>
27671 <destructor name=
"~wxHtmlDCRenderer" overloaded=
"no">
27672 <autodoc>__del__()
</autodoc>
27674 <method name=
"SetDC" type=
"" overloaded=
"no">
27675 <autodoc>SetDC(DC dc, int maxwidth)
</autodoc>
27677 <param name=
"dc" type=
"DC" default=
""/>
27678 <param name=
"maxwidth" type=
"int" default=
""/>
27681 <method name=
"SetSize" type=
"" overloaded=
"no">
27682 <autodoc>SetSize(int width, int height)
</autodoc>
27684 <param name=
"width" type=
"int" default=
""/>
27685 <param name=
"height" type=
"int" default=
""/>
27688 <method name=
"SetHtmlText" type=
"" overloaded=
"no">
27689 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
27691 <param name=
"html" type=
"String" default=
""/>
27692 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27693 <param name=
"isdir" type=
"bool" default=
"True"/>
27696 <method name=
"SetFonts" type=
"" overloaded=
"no">
27697 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27699 <param name=
"normal_face" type=
"String" default=
""/>
27700 <param name=
"fixed_face" type=
"String" default=
""/>
27701 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27704 <method name=
"Render" type=
"int" overloaded=
"no">
27705 <autodoc>Render(int x, int y, int from=
0, int dont_render=False, int to=INT_MAX,
27706 int choices=None, int LCOUNT=
0) -
> int
</autodoc>
27708 <param name=
"x" type=
"int" default=
""/>
27709 <param name=
"y" type=
"int" default=
""/>
27710 <param name=
"from" type=
"int" default=
"0"/>
27711 <param name=
"dont_render" type=
"int" default=
"False"/>
27712 <param name=
"to" type=
"int" default=
"INT_MAX"/>
27713 <param name=
"choices" type=
"int" default=
"NULL"/>
27714 <param name=
"LCOUNT" type=
"int" default=
"0"/>
27717 <method name=
"GetTotalHeight" type=
"int" overloaded=
"no">
27718 <autodoc>GetTotalHeight() -
> int
</autodoc>
27721 <class name=
"HtmlPrintout" oldname=
"wxHtmlPrintout" module=
"html">
27722 <baseclass name=
"Printout"/>
27723 <constructor name=
"HtmlPrintout" overloaded=
"no">
27724 <autodoc>__init__(String title=HtmlPrintoutTitleStr) -
> HtmlPrintout
</autodoc>
27726 <param name=
"title" type=
"String" default=
"wxPyHtmlPrintoutTitleStr"/>
27729 <method name=
"SetHtmlText" type=
"" overloaded=
"no">
27730 <autodoc>SetHtmlText(String html, String basepath=EmptyString, bool isdir=True)
</autodoc>
27732 <param name=
"html" type=
"String" default=
""/>
27733 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27734 <param name=
"isdir" type=
"bool" default=
"True"/>
27737 <method name=
"SetHtmlFile" type=
"" overloaded=
"no">
27738 <autodoc>SetHtmlFile(String htmlfile)
</autodoc>
27740 <param name=
"htmlfile" type=
"String" default=
""/>
27743 <method name=
"SetHeader" type=
"" overloaded=
"no">
27744 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
27746 <param name=
"header" type=
"String" default=
""/>
27747 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27750 <method name=
"SetFooter" type=
"" overloaded=
"no">
27751 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
27753 <param name=
"footer" type=
"String" default=
""/>
27754 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27757 <method name=
"SetFonts" type=
"" overloaded=
"no">
27758 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27760 <param name=
"normal_face" type=
"String" default=
""/>
27761 <param name=
"fixed_face" type=
"String" default=
""/>
27762 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27765 <method name=
"SetMargins" type=
"" overloaded=
"no">
27766 <autodoc>SetMargins(float top=
25.2, float bottom=
25.2, float left=
25.2,
27767 float right=
25.2, float spaces=
5)
</autodoc>
27769 <param name=
"top" type=
"float" default=
"25.2"/>
27770 <param name=
"bottom" type=
"float" default=
"25.2"/>
27771 <param name=
"left" type=
"float" default=
"25.2"/>
27772 <param name=
"right" type=
"float" default=
"25.2"/>
27773 <param name=
"spaces" type=
"float" default=
"5"/>
27776 <staticmethod name=
"AddFilter" type=
"" overloaded=
"no">
27777 <autodoc>AddFilter(wxHtmlFilter filter)
</autodoc>
27779 <param name=
"filter" type=
"wxHtmlFilter" default=
""/>
27782 <staticmethod name=
"CleanUpStatics" type=
"" overloaded=
"no">
27783 <autodoc>CleanUpStatics()
</autodoc>
27786 <class name=
"HtmlEasyPrinting" oldname=
"wxHtmlEasyPrinting" module=
"html">
27787 <baseclass name=
"Object"/>
27788 <constructor name=
"HtmlEasyPrinting" overloaded=
"no">
27789 <autodoc>__init__(String name=HtmlPrintingTitleStr, Window parentWindow=None) -
> HtmlEasyPrinting
</autodoc>
27791 <param name=
"name" type=
"String" default=
"wxPyHtmlPrintingTitleStr"/>
27792 <param name=
"parentWindow" type=
"Window" default=
"NULL"/>
27795 <destructor name=
"~wxHtmlEasyPrinting" overloaded=
"no">
27796 <autodoc>__del__()
</autodoc>
27798 <method name=
"PreviewFile" type=
"" overloaded=
"no">
27799 <autodoc>PreviewFile(String htmlfile)
</autodoc>
27801 <param name=
"htmlfile" type=
"String" default=
""/>
27804 <method name=
"PreviewText" type=
"" overloaded=
"no">
27805 <autodoc>PreviewText(String htmltext, String basepath=EmptyString)
</autodoc>
27807 <param name=
"htmltext" type=
"String" default=
""/>
27808 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27811 <method name=
"PrintFile" type=
"" overloaded=
"no">
27812 <autodoc>PrintFile(String htmlfile)
</autodoc>
27814 <param name=
"htmlfile" type=
"String" default=
""/>
27817 <method name=
"PrintText" type=
"" overloaded=
"no">
27818 <autodoc>PrintText(String htmltext, String basepath=EmptyString)
</autodoc>
27820 <param name=
"htmltext" type=
"String" default=
""/>
27821 <param name=
"basepath" type=
"String" default=
"wxPyEmptyString"/>
27824 <method name=
"PrinterSetup" type=
"" overloaded=
"no">
27825 <autodoc>PrinterSetup()
</autodoc>
27827 <method name=
"PageSetup" type=
"" overloaded=
"no">
27828 <autodoc>PageSetup()
</autodoc>
27830 <method name=
"SetHeader" type=
"" overloaded=
"no">
27831 <autodoc>SetHeader(String header, int pg=PAGE_ALL)
</autodoc>
27833 <param name=
"header" type=
"String" default=
""/>
27834 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27837 <method name=
"SetFooter" type=
"" overloaded=
"no">
27838 <autodoc>SetFooter(String footer, int pg=PAGE_ALL)
</autodoc>
27840 <param name=
"footer" type=
"String" default=
""/>
27841 <param name=
"pg" type=
"int" default=
"wxPAGE_ALL"/>
27844 <method name=
"SetFonts" type=
"" overloaded=
"no">
27845 <autodoc>SetFonts(String normal_face, String fixed_face, PyObject sizes=None)
</autodoc>
27847 <param name=
"normal_face" type=
"String" default=
""/>
27848 <param name=
"fixed_face" type=
"String" default=
""/>
27849 <param name=
"sizes" type=
"PyObject" default=
"NULL"/>
27852 <method name=
"GetPrintData" type=
"PrintData" overloaded=
"no">
27853 <autodoc>GetPrintData() -
> PrintData
</autodoc>
27855 <method name=
"GetPageSetupData" type=
"PageSetupDialogData" overloaded=
"no">
27856 <autodoc>GetPageSetupData() -
> PageSetupDialogData
</autodoc>
27860 #---------------------------------------------------------------------------
27862 <class name=
"HtmlBookRecord" oldname=
"wxHtmlBookRecord" module=
"html">
27863 <constructor name=
"HtmlBookRecord" overloaded=
"no">
27864 <autodoc>__init__(String bookfile, String basepath, String title, String start) -
> HtmlBookRecord
</autodoc>
27866 <param name=
"bookfile" type=
"String" default=
""/>
27867 <param name=
"basepath" type=
"String" default=
""/>
27868 <param name=
"title" type=
"String" default=
""/>
27869 <param name=
"start" type=
"String" default=
""/>
27872 <method name=
"GetBookFile" type=
"String" overloaded=
"no">
27873 <autodoc>GetBookFile() -
> String
</autodoc>
27875 <method name=
"GetTitle" type=
"String" overloaded=
"no">
27876 <autodoc>GetTitle() -
> String
</autodoc>
27878 <method name=
"GetStart" type=
"String" overloaded=
"no">
27879 <autodoc>GetStart() -
> String
</autodoc>
27881 <method name=
"GetBasePath" type=
"String" overloaded=
"no">
27882 <autodoc>GetBasePath() -
> String
</autodoc>
27884 <method name=
"SetContentsRange" type=
"" overloaded=
"no">
27885 <autodoc>SetContentsRange(int start, int end)
</autodoc>
27887 <param name=
"start" type=
"int" default=
""/>
27888 <param name=
"end" type=
"int" default=
""/>
27891 <method name=
"GetContentsStart" type=
"int" overloaded=
"no">
27892 <autodoc>GetContentsStart() -
> int
</autodoc>
27894 <method name=
"GetContentsEnd" type=
"int" overloaded=
"no">
27895 <autodoc>GetContentsEnd() -
> int
</autodoc>
27897 <method name=
"SetTitle" type=
"" overloaded=
"no">
27898 <autodoc>SetTitle(String title)
</autodoc>
27900 <param name=
"title" type=
"String" default=
""/>
27903 <method name=
"SetBasePath" type=
"" overloaded=
"no">
27904 <autodoc>SetBasePath(String path)
</autodoc>
27906 <param name=
"path" type=
"String" default=
""/>
27909 <method name=
"SetStart" type=
"" overloaded=
"no">
27910 <autodoc>SetStart(String start)
</autodoc>
27912 <param name=
"start" type=
"String" default=
""/>
27915 <method name=
"GetFullPath" type=
"String" overloaded=
"no">
27916 <autodoc>GetFullPath(String page) -
> String
</autodoc>
27918 <param name=
"page" type=
"String" default=
""/>
27922 <class name=
"HtmlContentsItem" oldname=
"wxHtmlContentsItem" module=
"html">
27923 <method name=
"GetLevel" type=
"int" overloaded=
"no">
27924 <autodoc>GetLevel() -
> int
</autodoc>
27926 <method name=
"GetID" type=
"int" overloaded=
"no">
27927 <autodoc>GetID() -
> int
</autodoc>
27929 <method name=
"GetName" type=
"String" overloaded=
"no">
27930 <autodoc>GetName() -
> String
</autodoc>
27932 <method name=
"GetPage" type=
"String" overloaded=
"no">
27933 <autodoc>GetPage() -
> String
</autodoc>
27935 <method name=
"GetBook" type=
"HtmlBookRecord" overloaded=
"no">
27936 <autodoc>GetBook() -
> HtmlBookRecord
</autodoc>
27939 <class name=
"HtmlSearchStatus" oldname=
"wxHtmlSearchStatus" module=
"html">
27940 <method name=
"Search" type=
"bool" overloaded=
"no">
27941 <autodoc>Search() -
> bool
</autodoc>
27943 <method name=
"IsActive" type=
"bool" overloaded=
"no">
27944 <autodoc>IsActive() -
> bool
</autodoc>
27946 <method name=
"GetCurIndex" type=
"int" overloaded=
"no">
27947 <autodoc>GetCurIndex() -
> int
</autodoc>
27949 <method name=
"GetMaxIndex" type=
"int" overloaded=
"no">
27950 <autodoc>GetMaxIndex() -
> int
</autodoc>
27952 <method name=
"GetName" type=
"String" overloaded=
"no">
27953 <autodoc>GetName() -
> String
</autodoc>
27955 <method name=
"GetContentsItem" type=
"HtmlContentsItem" overloaded=
"no">
27956 <autodoc>GetContentsItem() -
> HtmlContentsItem
</autodoc>
27959 <class name=
"HtmlHelpData" oldname=
"wxHtmlHelpData" module=
"html">
27960 <constructor name=
"HtmlHelpData" overloaded=
"no">
27961 <autodoc>__init__() -
> HtmlHelpData
</autodoc>
27963 <destructor name=
"~wxHtmlHelpData" overloaded=
"no">
27964 <autodoc>__del__()
</autodoc>
27966 <method name=
"SetTempDir" type=
"" overloaded=
"no">
27967 <autodoc>SetTempDir(String path)
</autodoc>
27969 <param name=
"path" type=
"String" default=
""/>
27972 <method name=
"AddBook" type=
"bool" overloaded=
"no">
27973 <autodoc>AddBook(String book) -
> bool
</autodoc>
27975 <param name=
"book" type=
"String" default=
""/>
27978 <method name=
"FindPageByName" type=
"String" overloaded=
"no">
27979 <autodoc>FindPageByName(String page) -
> String
</autodoc>
27981 <param name=
"page" type=
"String" default=
""/>
27984 <method name=
"FindPageById" type=
"String" overloaded=
"no">
27985 <autodoc>FindPageById(int id) -
> String
</autodoc>
27987 <param name=
"id" type=
"int" default=
""/>
27990 <method name=
"GetBookRecArray" type=
"wxHtmlBookRecArray" overloaded=
"no">
27991 <autodoc>GetBookRecArray() -
> wxHtmlBookRecArray
</autodoc>
27993 <method name=
"GetContents" type=
"HtmlContentsItem" overloaded=
"no">
27994 <autodoc>GetContents() -
> HtmlContentsItem
</autodoc>
27996 <method name=
"GetContentsCnt" type=
"int" overloaded=
"no">
27997 <autodoc>GetContentsCnt() -
> int
</autodoc>
27999 <method name=
"GetIndex" type=
"HtmlContentsItem" overloaded=
"no">
28000 <autodoc>GetIndex() -
> HtmlContentsItem
</autodoc>
28002 <method name=
"GetIndexCnt" type=
"int" overloaded=
"no">
28003 <autodoc>GetIndexCnt() -
> int
</autodoc>
28006 <class name=
"HtmlHelpFrame" oldname=
"wxHtmlHelpFrame" module=
"html">
28007 <baseclass name=
"Frame"/>
28008 <constructor name=
"HtmlHelpFrame" overloaded=
"no">
28009 <autodoc>__init__(Window parent, int ??, String title=EmptyString, int style=HF_DEFAULTSTYLE,
28010 HtmlHelpData data=None) -
> HtmlHelpFrame
</autodoc>
28012 <param name=
"parent" type=
"Window" default=
""/>
28013 <param name=
"" type=
"int" default=
""/>
28014 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28015 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
28016 <param name=
"data" type=
"HtmlHelpData" default=
"NULL"/>
28019 <method name=
"GetData" type=
"HtmlHelpData" overloaded=
"no">
28020 <autodoc>GetData() -
> HtmlHelpData
</autodoc>
28022 <method name=
"SetTitleFormat" type=
"" overloaded=
"no">
28023 <autodoc>SetTitleFormat(String format)
</autodoc>
28025 <param name=
"format" type=
"String" default=
""/>
28028 <method name=
"Display" type=
"" overloaded=
"no">
28029 <autodoc>Display(String x)
</autodoc>
28031 <param name=
"x" type=
"String" default=
""/>
28034 <method name=
"DisplayID" type=
"" overloaded=
"no">
28035 <autodoc>DisplayID(int id)
</autodoc>
28037 <param name=
"id" type=
"int" default=
""/>
28040 <method name=
"DisplayContents" type=
"" overloaded=
"no">
28041 <autodoc>DisplayContents()
</autodoc>
28043 <method name=
"DisplayIndex" type=
"" overloaded=
"no">
28044 <autodoc>DisplayIndex()
</autodoc>
28046 <method name=
"KeywordSearch" type=
"bool" overloaded=
"no">
28047 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
28049 <param name=
"keyword" type=
"String" default=
""/>
28052 <method name=
"UseConfig" type=
"" overloaded=
"no">
28053 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
28055 <param name=
"config" type=
"ConfigBase" default=
""/>
28056 <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/>
28059 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
28060 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28062 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28063 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28066 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
28067 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28069 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28070 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28074 <class name=
"HtmlHelpController" oldname=
"wxHtmlHelpController" module=
"html">
28075 <baseclass name=
"EvtHandler"/>
28076 <constructor name=
"HtmlHelpController" overloaded=
"no">
28077 <autodoc>__init__(int style=HF_DEFAULTSTYLE) -
> HtmlHelpController
</autodoc>
28079 <param name=
"style" type=
"int" default=
"wxHF_DEFAULTSTYLE"/>
28082 <destructor name=
"~wxHtmlHelpController" overloaded=
"no">
28083 <autodoc>__del__()
</autodoc>
28085 <method name=
"SetTitleFormat" type=
"" overloaded=
"no">
28086 <autodoc>SetTitleFormat(String format)
</autodoc>
28088 <param name=
"format" type=
"String" default=
""/>
28091 <method name=
"SetTempDir" type=
"" overloaded=
"no">
28092 <autodoc>SetTempDir(String path)
</autodoc>
28094 <param name=
"path" type=
"String" default=
""/>
28097 <method name=
"AddBook" type=
"bool" overloaded=
"no">
28098 <autodoc>AddBook(String book, int show_wait_msg=False) -
> bool
</autodoc>
28100 <param name=
"book" type=
"String" default=
""/>
28101 <param name=
"show_wait_msg" type=
"int" default=
"False"/>
28104 <method name=
"Display" type=
"" overloaded=
"no">
28105 <autodoc>Display(String x)
</autodoc>
28107 <param name=
"x" type=
"String" default=
""/>
28110 <method name=
"DisplayID" type=
"" overloaded=
"no">
28111 <autodoc>DisplayID(int id)
</autodoc>
28113 <param name=
"id" type=
"int" default=
""/>
28116 <method name=
"DisplayContents" type=
"" overloaded=
"no">
28117 <autodoc>DisplayContents()
</autodoc>
28119 <method name=
"DisplayIndex" type=
"" overloaded=
"no">
28120 <autodoc>DisplayIndex()
</autodoc>
28122 <method name=
"KeywordSearch" type=
"bool" overloaded=
"no">
28123 <autodoc>KeywordSearch(String keyword) -
> bool
</autodoc>
28125 <param name=
"keyword" type=
"String" default=
""/>
28128 <method name=
"UseConfig" type=
"" overloaded=
"no">
28129 <autodoc>UseConfig(ConfigBase config, String rootpath=EmptyString)
</autodoc>
28131 <param name=
"config" type=
"ConfigBase" default=
""/>
28132 <param name=
"rootpath" type=
"String" default=
"wxPyEmptyString"/>
28135 <method name=
"ReadCustomization" type=
"" overloaded=
"no">
28136 <autodoc>ReadCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28138 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28139 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28142 <method name=
"WriteCustomization" type=
"" overloaded=
"no">
28143 <autodoc>WriteCustomization(ConfigBase cfg, String path=EmptyString)
</autodoc>
28145 <param name=
"cfg" type=
"ConfigBase" default=
""/>
28146 <param name=
"path" type=
"String" default=
"wxPyEmptyString"/>
28149 <method name=
"GetFrame" type=
"HtmlHelpFrame" overloaded=
"no">
28150 <autodoc>GetFrame() -
> HtmlHelpFrame
</autodoc>
28154 <module name=
"wizard">
28155 <import name=
"windows"/>
28156 <pythoncode> wx = core
</pythoncode>
28158 EVT_WIZARD_PAGE_CHANGED = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGED,
1)
28159 EVT_WIZARD_PAGE_CHANGING = wx.PyEventBinder( wxEVT_WIZARD_PAGE_CHANGING,
1)
28160 EVT_WIZARD_CANCEL = wx.PyEventBinder( wxEVT_WIZARD_CANCEL,
1)
28161 EVT_WIZARD_HELP = wx.PyEventBinder( wxEVT_WIZARD_HELP,
1)
28162 EVT_WIZARD_FINISHED = wx.PyEventBinder( wxEVT_WIZARD_FINISHED,
1)
28164 <class name=
"WizardEvent" oldname=
"wxWizardEvent" module=
"wizard">
28165 <baseclass name=
"NotifyEvent"/>
28166 <constructor name=
"WizardEvent" overloaded=
"no">
28167 <autodoc>__init__(wxEventType type=wxEVT_NULL, int id=-
1, bool direction=True,
28168 WizardPage page=None) -
> WizardEvent
</autodoc>
28170 <param name=
"type" type=
"wxEventType" default=
"wxEVT_NULL"/>
28171 <param name=
"id" type=
"int" default=
"-1"/>
28172 <param name=
"direction" type=
"bool" default=
"True"/>
28173 <param name=
"page" type=
"wxWizardPage" default=
"NULL"/>
28176 <method name=
"GetDirection" type=
"bool" overloaded=
"no">
28177 <autodoc>GetDirection() -
> bool
</autodoc>
28179 <method name=
"GetPage" type=
"wxWizardPage" overloaded=
"no">
28180 <autodoc>GetPage() -
> WizardPage
</autodoc>
28183 <class name=
"WizardPage" oldname=
"wxWizardPage" module=
"wizard">
28184 <baseclass name=
"Panel"/>
28185 <method name=
"Create" type=
"bool" overloaded=
"no">
28186 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
28188 <param name=
"parent" type=
"wxWizard" default=
""/>
28189 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28190 <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/>
28193 <method name=
"GetPrev" type=
"WizardPage" overloaded=
"no">
28194 <autodoc>GetPrev() -
> WizardPage
</autodoc>
28196 <method name=
"GetNext" type=
"WizardPage" overloaded=
"no">
28197 <autodoc>GetNext() -
> WizardPage
</autodoc>
28199 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
28200 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
28203 <class name=
"PyWizardPage" oldname=
"wxPyWizardPage" module=
"wizard">
28204 <baseclass name=
"WizardPage"/>
28205 <constructor name=
"PyWizardPage" overloaded=
"no">
28206 <autodoc>__init__(Wizard parent, Bitmap bitmap=
&wxNullBitmap, String resource=
&wxPyEmptyString) -
> PyWizardPage
</autodoc>
28208 <param name=
"parent" type=
"wxWizard" default=
""/>
28209 <param name=
"bitmap" type=
"Bitmap" default=
"&wxNullBitmap"/>
28210 <param name=
"resource" type=
"String" default=
"&wxPyEmptyString"/>
28213 <constructor name=
"PrePyWizardPage" overloaded=
"no">
28214 <autodoc>PrePyWizardPage() -
> PyWizardPage
</autodoc>
28216 <method name=
"Create" type=
"bool" overloaded=
"no">
28217 <autodoc>Create(Wizard parent, Bitmap bitmap=wxNullBitmap, String resource=EmptyString) -
> bool
</autodoc>
28219 <param name=
"parent" type=
"wxWizard" default=
""/>
28220 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28221 <param name=
"resource" type=
"String" default=
"wxPyEmptyString"/>
28224 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
28225 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
28227 <param name=
"self" type=
"PyObject" default=
""/>
28228 <param name=
"_class" type=
"PyObject" default=
""/>
28231 <method name=
"base_DoMoveWindow" type=
"" overloaded=
"no">
28232 <autodoc>base_DoMoveWindow(int x, int y, int width, int height)
</autodoc>
28234 <param name=
"x" type=
"int" default=
""/>
28235 <param name=
"y" type=
"int" default=
""/>
28236 <param name=
"width" type=
"int" default=
""/>
28237 <param name=
"height" type=
"int" default=
""/>
28240 <method name=
"base_DoSetSize" type=
"" overloaded=
"no">
28241 <autodoc>base_DoSetSize(int x, int y, int width, int height, int sizeFlags=SIZE_AUTO)
</autodoc>
28243 <param name=
"x" type=
"int" default=
""/>
28244 <param name=
"y" type=
"int" default=
""/>
28245 <param name=
"width" type=
"int" default=
""/>
28246 <param name=
"height" type=
"int" default=
""/>
28247 <param name=
"sizeFlags" type=
"int" default=
"wxSIZE_AUTO"/>
28250 <method name=
"base_DoSetClientSize" type=
"" overloaded=
"no">
28251 <autodoc>base_DoSetClientSize(int width, int height)
</autodoc>
28253 <param name=
"width" type=
"int" default=
""/>
28254 <param name=
"height" type=
"int" default=
""/>
28257 <method name=
"base_DoSetVirtualSize" type=
"" overloaded=
"no">
28258 <autodoc>base_DoSetVirtualSize(int x, int y)
</autodoc>
28260 <param name=
"x" type=
"int" default=
""/>
28261 <param name=
"y" type=
"int" default=
""/>
28264 <method name=
"base_DoGetSize" type=
"" overloaded=
"no">
28265 <autodoc>base_DoGetSize() -
> (width, height)
</autodoc>
28267 <param name=
"OUTPUT" type=
"int" default=
""/>
28268 <param name=
"OUTPUT" type=
"int" default=
""/>
28271 <method name=
"base_DoGetClientSize" type=
"" overloaded=
"no">
28272 <autodoc>base_DoGetClientSize() -
> (width, height)
</autodoc>
28274 <param name=
"OUTPUT" type=
"int" default=
""/>
28275 <param name=
"OUTPUT" type=
"int" default=
""/>
28278 <method name=
"base_DoGetPosition" type=
"" overloaded=
"no">
28279 <autodoc>base_DoGetPosition() -
> (x,y)
</autodoc>
28281 <param name=
"OUTPUT" type=
"int" default=
""/>
28282 <param name=
"OUTPUT" type=
"int" default=
""/>
28285 <method name=
"base_DoGetVirtualSize" type=
"Size" overloaded=
"no">
28286 <autodoc>base_DoGetVirtualSize() -
> Size
</autodoc>
28288 <method name=
"base_DoGetBestSize" type=
"Size" overloaded=
"no">
28289 <autodoc>base_DoGetBestSize() -
> Size
</autodoc>
28291 <method name=
"base_InitDialog" type=
"" overloaded=
"no">
28292 <autodoc>base_InitDialog()
</autodoc>
28294 <method name=
"base_TransferDataToWindow" type=
"bool" overloaded=
"no">
28295 <autodoc>base_TransferDataToWindow() -
> bool
</autodoc>
28297 <method name=
"base_TransferDataFromWindow" type=
"bool" overloaded=
"no">
28298 <autodoc>base_TransferDataFromWindow() -
> bool
</autodoc>
28300 <method name=
"base_Validate" type=
"bool" overloaded=
"no">
28301 <autodoc>base_Validate() -
> bool
</autodoc>
28303 <method name=
"base_AcceptsFocus" type=
"bool" overloaded=
"no">
28304 <autodoc>base_AcceptsFocus() -
> bool
</autodoc>
28306 <method name=
"base_AcceptsFocusFromKeyboard" type=
"bool" overloaded=
"no">
28307 <autodoc>base_AcceptsFocusFromKeyboard() -
> bool
</autodoc>
28309 <method name=
"base_GetMaxSize" type=
"Size" overloaded=
"no">
28310 <autodoc>base_GetMaxSize() -
> Size
</autodoc>
28312 <method name=
"base_AddChild" type=
"" overloaded=
"no">
28313 <autodoc>base_AddChild(Window child)
</autodoc>
28315 <param name=
"child" type=
"Window" default=
""/>
28318 <method name=
"base_RemoveChild" type=
"" overloaded=
"no">
28319 <autodoc>base_RemoveChild(Window child)
</autodoc>
28321 <param name=
"child" type=
"Window" default=
""/>
28325 <class name=
"WizardPageSimple" oldname=
"wxWizardPageSimple" module=
"wizard">
28326 <baseclass name=
"WizardPage"/>
28327 <constructor name=
"WizardPageSimple" overloaded=
"no">
28328 <autodoc>__init__(Wizard parent, WizardPage prev=None, WizardPage next=None,
28329 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> WizardPageSimple
</autodoc>
28331 <param name=
"parent" type=
"wxWizard" default=
""/>
28332 <param name=
"prev" type=
"WizardPage" default=
"NULL"/>
28333 <param name=
"next" type=
"WizardPage" default=
"NULL"/>
28334 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28335 <param name=
"resource" type=
"wxChar" default=
"NULL"/>
28338 <constructor name=
"PreWizardPageSimple" overloaded=
"no">
28339 <autodoc>PreWizardPageSimple() -
> WizardPageSimple
</autodoc>
28341 <method name=
"Create" type=
"bool" overloaded=
"no">
28342 <autodoc>Create(Wizard parent=None, WizardPage prev=None, WizardPage next=None,
28343 Bitmap bitmap=wxNullBitmap, wxChar resource=None) -
> bool
</autodoc>
28345 <param name=
"parent" type=
"wxWizard" default=
"NULL"/>
28346 <param name=
"prev" type=
"WizardPage" default=
"NULL"/>
28347 <param name=
"next" type=
"WizardPage" default=
"NULL"/>
28348 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28349 <param name=
"resource" type=
"wxChar" default=
"NULL"/>
28352 <method name=
"SetPrev" type=
"" overloaded=
"no">
28353 <autodoc>SetPrev(WizardPage prev)
</autodoc>
28355 <param name=
"prev" type=
"WizardPage" default=
""/>
28358 <method name=
"SetNext" type=
"" overloaded=
"no">
28359 <autodoc>SetNext(WizardPage next)
</autodoc>
28361 <param name=
"next" type=
"WizardPage" default=
""/>
28364 <staticmethod name=
"Chain" type=
"" overloaded=
"no">
28365 <autodoc>Chain(WizardPageSimple first, WizardPageSimple second)
</autodoc>
28367 <param name=
"first" type=
"WizardPageSimple" default=
""/>
28368 <param name=
"second" type=
"WizardPageSimple" default=
""/>
28372 <class name=
"Wizard" oldname=
"wxWizard" module=
"wizard">
28373 <baseclass name=
"Dialog"/>
28374 <constructor name=
"Wizard" overloaded=
"no">
28375 <autodoc>__init__(Window parent, int id=-
1, String title=EmptyString,
28376 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition,
28377 long style=DEFAULT_DIALOG_STYLE) -
> Wizard
</autodoc>
28379 <param name=
"parent" type=
"Window" default=
""/>
28380 <param name=
"id" type=
"int" default=
"-1"/>
28381 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28382 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28383 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28384 <param name=
"style" type=
"long" default=
"wxDEFAULT_DIALOG_STYLE"/>
28387 <constructor name=
"PreWizard" overloaded=
"no">
28388 <autodoc>PreWizard() -
> Wizard
</autodoc>
28390 <method name=
"Create" type=
"bool" overloaded=
"no">
28391 <autodoc>Create(Window parent, int id=-
1, String title=EmptyString,
28392 Bitmap bitmap=wxNullBitmap, Point pos=DefaultPosition) -
> bool
</autodoc>
28394 <param name=
"parent" type=
"Window" default=
""/>
28395 <param name=
"id" type=
"int" default=
"-1"/>
28396 <param name=
"title" type=
"String" default=
"wxPyEmptyString"/>
28397 <param name=
"bitmap" type=
"Bitmap" default=
"wxNullBitmap"/>
28398 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28401 <method name=
"Init" type=
"" overloaded=
"no">
28402 <autodoc>Init()
</autodoc>
28404 <method name=
"RunWizard" type=
"bool" overloaded=
"no">
28405 <autodoc>RunWizard(WizardPage firstPage) -
> bool
</autodoc>
28407 <param name=
"firstPage" type=
"WizardPage" default=
""/>
28410 <method name=
"GetCurrentPage" type=
"WizardPage" overloaded=
"no">
28411 <autodoc>GetCurrentPage() -
> WizardPage
</autodoc>
28413 <method name=
"SetPageSize" type=
"" overloaded=
"no">
28414 <autodoc>SetPageSize(Size size)
</autodoc>
28416 <param name=
"size" type=
"Size" default=
""/>
28419 <method name=
"GetPageSize" type=
"Size" overloaded=
"no">
28420 <autodoc>GetPageSize() -
> Size
</autodoc>
28422 <method name=
"FitToPage" type=
"" overloaded=
"no">
28423 <autodoc>FitToPage(WizardPage firstPage)
</autodoc>
28425 <param name=
"firstPage" type=
"WizardPage" default=
""/>
28428 <method name=
"GetPageAreaSizer" type=
"Sizer" overloaded=
"no">
28429 <autodoc>GetPageAreaSizer() -
> Sizer
</autodoc>
28431 <method name=
"SetBorder" type=
"" overloaded=
"no">
28432 <autodoc>SetBorder(int border)
</autodoc>
28434 <param name=
"border" type=
"int" default=
""/>
28437 <method name=
"IsRunning" type=
"bool" overloaded=
"no">
28438 <autodoc>IsRunning() -
> bool
</autodoc>
28440 <method name=
"ShowPage" type=
"bool" overloaded=
"no">
28441 <autodoc>ShowPage(WizardPage page, bool goingForward=True) -
> bool
</autodoc>
28443 <param name=
"page" type=
"WizardPage" default=
""/>
28444 <param name=
"goingForward" type=
"bool" default=
"True"/>
28447 <method name=
"HasNextPage" type=
"bool" overloaded=
"no">
28448 <autodoc>HasNextPage(WizardPage page) -
> bool
</autodoc>
28450 <param name=
"page" type=
"WizardPage" default=
""/>
28453 <method name=
"HasPrevPage" type=
"bool" overloaded=
"no">
28454 <autodoc>HasPrevPage(WizardPage page) -
> bool
</autodoc>
28456 <param name=
"page" type=
"WizardPage" default=
""/>
28461 <module name=
"glcanvas">
28462 <import name=
"core"/>
28463 <pythoncode> wx = core
</pythoncode>
28464 <class name=
"GLContext" oldname=
"wxGLContext" module=
"glcanvas">
28465 <baseclass name=
"Object"/>
28466 <constructor name=
"GLContext" overloaded=
"no">
28467 <autodoc>__init__(bool isRGB, GLCanvas win, wxPalette palette=wxNullPalette,
28468 GLContext other=None) -
> GLContext
</autodoc>
28470 <param name=
"isRGB" type=
"bool" default=
""/>
28471 <param name=
"win" type=
"wxGLCanvas" default=
""/>
28472 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28473 <param name=
"other" type=
"GLContext" default=
"NULL"/>
28476 <destructor name=
"~wxGLContext" overloaded=
"no">
28477 <autodoc>__del__()
</autodoc>
28479 <method name=
"SetCurrent" type=
"" overloaded=
"no">
28480 <autodoc>SetCurrent()
</autodoc>
28482 <method name=
"SetColour" type=
"" overloaded=
"no">
28483 <autodoc>SetColour(String colour)
</autodoc>
28485 <param name=
"colour" type=
"String" default=
""/>
28488 <method name=
"SwapBuffers" type=
"" overloaded=
"no">
28489 <autodoc>SwapBuffers()
</autodoc>
28491 <method name=
"SetupPixelFormat" type=
"" overloaded=
"no">
28492 <autodoc>SetupPixelFormat()
</autodoc>
28494 <method name=
"SetupPalette" type=
"" overloaded=
"no">
28495 <autodoc>SetupPalette(wxPalette palette)
</autodoc>
28497 <param name=
"palette" type=
"Palette" default=
""/>
28500 <method name=
"CreateDefaultPalette" type=
"Palette" overloaded=
"no">
28501 <autodoc>CreateDefaultPalette() -
> wxPalette
</autodoc>
28503 <method name=
"GetPalette" type=
"Palette" overloaded=
"no">
28504 <autodoc>GetPalette() -
> wxPalette
</autodoc>
28506 <method name=
"GetWindow" type=
"Window" overloaded=
"no">
28507 <autodoc>GetWindow() -
> Window
</autodoc>
28510 <class name=
"GLCanvas" oldname=
"wxGLCanvas" module=
"glcanvas">
28511 <baseclass name=
"Window"/>
28512 <constructor name=
"GLCanvas" overloaded=
"no">
28513 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
28514 Size size=DefaultSize, long style=
0, String name=GLCanvasNameStr,
28515 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
28517 <param name=
"parent" type=
"Window" default=
""/>
28518 <param name=
"id" type=
"int" default=
"-1"/>
28519 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28520 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
28521 <param name=
"style" type=
"long" default=
"0"/>
28522 <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/>
28523 <param name=
"attribList" type=
"int" default=
"NULL"/>
28524 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28527 <constructor name=
"GLCanvasWithContext" overloaded=
"no">
28528 <autodoc>GLCanvasWithContext(Window parent, GLContext shared=None, int id=-
1, Point pos=DefaultPosition,
28529 Size size=DefaultSize,
28530 long style=
0, String name=GLCanvasNameStr,
28531 int attribList=None, wxPalette palette=wxNullPalette) -
> GLCanvas
</autodoc>
28533 <param name=
"parent" type=
"Window" default=
""/>
28534 <param name=
"shared" type=
"GLContext" default=
"NULL"/>
28535 <param name=
"id" type=
"int" default=
"-1"/>
28536 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
28537 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
28538 <param name=
"style" type=
"long" default=
"0"/>
28539 <param name=
"name" type=
"String" default=
"wxPyGLCanvasNameStr"/>
28540 <param name=
"attribList" type=
"int" default=
"NULL"/>
28541 <param name=
"palette" type=
"Palette" default=
"wxNullPalette"/>
28544 <method name=
"SetCurrent" type=
"" overloaded=
"no">
28545 <autodoc>SetCurrent()
</autodoc>
28547 <method name=
"SetColour" type=
"" overloaded=
"no">
28548 <autodoc>SetColour(String colour)
</autodoc>
28550 <param name=
"colour" type=
"String" default=
""/>
28553 <method name=
"SwapBuffers" type=
"" overloaded=
"no">
28554 <autodoc>SwapBuffers()
</autodoc>
28556 <method name=
"GetContext" type=
"GLContext" overloaded=
"no">
28557 <autodoc>GetContext() -
> GLContext
</autodoc>
28561 <module name=
"ogl">
28562 <import name=
"windows"/>
28563 <pythoncode> wx = core
</pythoncode>
28565 #---------------------------------------------------------------------------
28567 <class name=
"ShapeRegion" oldname=
"wxShapeRegion" module=
"ogl">
28568 <baseclass name=
"Object"/>
28569 <constructor name=
"ShapeRegion" overloaded=
"no">
28570 <autodoc>__init__() -
> ShapeRegion
</autodoc>
28572 <method name=
"SetText" type=
"" overloaded=
"no">
28573 <autodoc>SetText(String s)
</autodoc>
28575 <param name=
"s" type=
"String" default=
""/>
28578 <method name=
"SetFont" type=
"" overloaded=
"no">
28579 <autodoc>SetFont(Font f)
</autodoc>
28581 <param name=
"f" type=
"Font" default=
""/>
28584 <method name=
"SetMinSize" type=
"" overloaded=
"no">
28585 <autodoc>SetMinSize(double w, double h)
</autodoc>
28587 <param name=
"w" type=
"double" default=
""/>
28588 <param name=
"h" type=
"double" default=
""/>
28591 <method name=
"SetSize" type=
"" overloaded=
"no">
28592 <autodoc>SetSize(double w, double h)
</autodoc>
28594 <param name=
"w" type=
"double" default=
""/>
28595 <param name=
"h" type=
"double" default=
""/>
28598 <method name=
"SetPosition" type=
"" overloaded=
"no">
28599 <autodoc>SetPosition(double x, double y)
</autodoc>
28601 <param name=
"x" type=
"double" default=
""/>
28602 <param name=
"y" type=
"double" default=
""/>
28605 <method name=
"SetProportions" type=
"" overloaded=
"no">
28606 <autodoc>SetProportions(double x, double y)
</autodoc>
28608 <param name=
"x" type=
"double" default=
""/>
28609 <param name=
"y" type=
"double" default=
""/>
28612 <method name=
"SetFormatMode" type=
"" overloaded=
"no">
28613 <autodoc>SetFormatMode(int mode)
</autodoc>
28615 <param name=
"mode" type=
"int" default=
""/>
28618 <method name=
"SetName" type=
"" overloaded=
"no">
28619 <autodoc>SetName(String s)
</autodoc>
28621 <param name=
"s" type=
"String" default=
""/>
28624 <method name=
"SetColour" type=
"" overloaded=
"no">
28625 <autodoc>SetColour(String col)
</autodoc>
28627 <param name=
"col" type=
"String" default=
""/>
28630 <method name=
"GetText" type=
"String" overloaded=
"no">
28631 <autodoc>GetText() -
> String
</autodoc>
28633 <method name=
"GetFont" type=
"Font" overloaded=
"no">
28634 <autodoc>GetFont() -
> Font
</autodoc>
28636 <method name=
"GetMinSize" type=
"" overloaded=
"no">
28637 <autodoc>GetMinSize(double OUTPUT, double OUTPUT)
</autodoc>
28639 <param name=
"OUTPUT" type=
"double" default=
""/>
28640 <param name=
"OUTPUT" type=
"double" default=
""/>
28643 <method name=
"GetProportion" type=
"" overloaded=
"no">
28644 <autodoc>GetProportion(double OUTPUT, double OUTPUT)
</autodoc>
28646 <param name=
"OUTPUT" type=
"double" default=
""/>
28647 <param name=
"OUTPUT" type=
"double" default=
""/>
28650 <method name=
"GetSize" type=
"" overloaded=
"no">
28651 <autodoc>GetSize(double OUTPUT, double OUTPUT)
</autodoc>
28653 <param name=
"OUTPUT" type=
"double" default=
""/>
28654 <param name=
"OUTPUT" type=
"double" default=
""/>
28657 <method name=
"GetPosition" type=
"" overloaded=
"no">
28658 <autodoc>GetPosition(double OUTPUT, double OUTPUT)
</autodoc>
28660 <param name=
"OUTPUT" type=
"double" default=
""/>
28661 <param name=
"OUTPUT" type=
"double" default=
""/>
28664 <method name=
"GetFormatMode" type=
"int" overloaded=
"no">
28665 <autodoc>GetFormatMode() -
> int
</autodoc>
28667 <method name=
"GetName" type=
"String" overloaded=
"no">
28668 <autodoc>GetName() -
> String
</autodoc>
28670 <method name=
"GetColour" type=
"String" overloaded=
"no">
28671 <autodoc>GetColour() -
> String
</autodoc>
28673 <method name=
"GetActualColourObject" type=
"Colour" overloaded=
"no">
28674 <autodoc>GetActualColourObject() -
> Colour
</autodoc>
28676 <method name=
"GetFormattedText" type=
"wxList" overloaded=
"no">
28677 <autodoc>GetFormattedText() -
> wxList
</autodoc>
28679 <method name=
"GetPenColour" type=
"String" overloaded=
"no">
28680 <autodoc>GetPenColour() -
> String
</autodoc>
28682 <method name=
"GetPenStyle" type=
"int" overloaded=
"no">
28683 <autodoc>GetPenStyle() -
> int
</autodoc>
28685 <method name=
"SetPenStyle" type=
"" overloaded=
"no">
28686 <autodoc>SetPenStyle(int style)
</autodoc>
28688 <param name=
"style" type=
"int" default=
""/>
28691 <method name=
"SetPenColour" type=
"" overloaded=
"no">
28692 <autodoc>SetPenColour(String col)
</autodoc>
28694 <param name=
"col" type=
"String" default=
""/>
28697 <method name=
"GetActualPen" type=
"Pen" overloaded=
"no">
28698 <autodoc>GetActualPen() -
> wxPen
</autodoc>
28700 <method name=
"GetWidth" type=
"double" overloaded=
"no">
28701 <autodoc>GetWidth() -
> double
</autodoc>
28703 <method name=
"GetHeight" type=
"double" overloaded=
"no">
28704 <autodoc>GetHeight() -
> double
</autodoc>
28706 <method name=
"ClearText" type=
"" overloaded=
"no">
28707 <autodoc>ClearText()
</autodoc>
28710 <class name=
"AttachmentPoint" oldname=
"wxAttachmentPoint" module=
"ogl">
28711 <baseclass name=
"Object"/>
28712 <constructor name=
"AttachmentPoint" overloaded=
"no">
28713 <autodoc>__init__(int id=
0, double x=
0.0, double y=
0.0) -
> AttachmentPoint
</autodoc>
28715 <param name=
"id" type=
"int" default=
"0"/>
28716 <param name=
"x" type=
"double" default=
"0.0"/>
28717 <param name=
"y" type=
"double" default=
"0.0"/>
28720 <property name=
"m_id" type=
"int" readonly=
"no"/>
28721 <property name=
"m_x" type=
"double" readonly=
"no"/>
28722 <property name=
"m_y" type=
"double" readonly=
"no"/>
28724 <class name=
"PyShapeEvtHandler" oldname=
"wxPyShapeEvtHandler" module=
"ogl">
28725 <baseclass name=
"Object"/>
28726 <constructor name=
"PyShapeEvtHandler" overloaded=
"no">
28727 <autodoc>__init__(PyShapeEvtHandler prev=None, PyShape shape=None) -
> PyShapeEvtHandler
</autodoc>
28729 <param name=
"prev" type=
"PyShapeEvtHandler" default=
"NULL"/>
28730 <param name=
"shape" type=
"wxPyShape" default=
"NULL"/>
28733 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
28734 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
28736 <param name=
"self" type=
"PyObject" default=
""/>
28737 <param name=
"_class" type=
"PyObject" default=
""/>
28740 <method name=
"_setOORInfo" type=
"" overloaded=
"no">
28741 <autodoc>_setOORInfo(PyObject _self)
</autodoc>
28743 <param name=
"_self" type=
"PyObject" default=
""/>
28746 <method name=
"SetShape" type=
"" overloaded=
"no">
28747 <autodoc>SetShape(PyShape sh)
</autodoc>
28749 <param name=
"sh" type=
"wxPyShape" default=
""/>
28752 <method name=
"GetShape" type=
"wxPyShape" overloaded=
"no">
28753 <autodoc>GetShape() -
> PyShape
</autodoc>
28755 <method name=
"SetPreviousHandler" type=
"" overloaded=
"no">
28756 <autodoc>SetPreviousHandler(PyShapeEvtHandler handler)
</autodoc>
28758 <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/>
28761 <method name=
"GetPreviousHandler" type=
"PyShapeEvtHandler" overloaded=
"no">
28762 <autodoc>GetPreviousHandler() -
> PyShapeEvtHandler
</autodoc>
28764 <method name=
"CreateNewCopy" type=
"PyShapeEvtHandler" overloaded=
"no">
28765 <autodoc>CreateNewCopy() -
> PyShapeEvtHandler
</autodoc>
28767 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
28768 <autodoc>base_OnDelete()
</autodoc>
28770 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
28771 <autodoc>base_OnDraw(DC dc)
</autodoc>
28773 <param name=
"dc" type=
"DC" default=
""/>
28776 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
28777 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
28779 <param name=
"dc" type=
"DC" default=
""/>
28782 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
28783 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
28785 <param name=
"dc" type=
"DC" default=
""/>
28786 <param name=
"erase" type=
"bool" default=
"False"/>
28789 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
28790 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
28792 <param name=
"dc" type=
"DC" default=
""/>
28795 <method name=
"base_OnErase" type=
"" overloaded=
"no">
28796 <autodoc>base_OnErase(DC dc)
</autodoc>
28798 <param name=
"dc" type=
"DC" default=
""/>
28801 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
28802 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
28804 <param name=
"dc" type=
"DC" default=
""/>
28807 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
28808 <autodoc>base_OnHighlight(DC dc)
</autodoc>
28810 <param name=
"dc" type=
"DC" default=
""/>
28813 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
28814 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28816 <param name=
"x" type=
"double" default=
""/>
28817 <param name=
"y" type=
"double" default=
""/>
28818 <param name=
"keys" type=
"int" default=
"0"/>
28819 <param name=
"attachment" type=
"int" default=
"0"/>
28822 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
28823 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28825 <param name=
"x" type=
"double" default=
""/>
28826 <param name=
"y" type=
"double" default=
""/>
28827 <param name=
"keys" type=
"int" default=
"0"/>
28828 <param name=
"attachment" type=
"int" default=
"0"/>
28831 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
28832 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28834 <param name=
"x" type=
"double" default=
""/>
28835 <param name=
"y" type=
"double" default=
""/>
28836 <param name=
"keys" type=
"int" default=
"0"/>
28837 <param name=
"attachment" type=
"int" default=
"0"/>
28840 <method name=
"base_OnSize" type=
"" overloaded=
"no">
28841 <autodoc>base_OnSize(double x, double y)
</autodoc>
28843 <param name=
"x" type=
"double" default=
""/>
28844 <param name=
"y" type=
"double" default=
""/>
28847 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
28848 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
28849 bool display=True) -
> bool
</autodoc>
28851 <param name=
"dc" type=
"DC" default=
""/>
28852 <param name=
"x" type=
"double" default=
""/>
28853 <param name=
"y" type=
"double" default=
""/>
28854 <param name=
"old_x" type=
"double" default=
""/>
28855 <param name=
"old_y" type=
"double" default=
""/>
28856 <param name=
"display" type=
"bool" default=
"True"/>
28859 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
28860 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
28861 bool display=True)
</autodoc>
28863 <param name=
"dc" type=
"DC" default=
""/>
28864 <param name=
"x" type=
"double" default=
""/>
28865 <param name=
"y" type=
"double" default=
""/>
28866 <param name=
"old_x" type=
"double" default=
""/>
28867 <param name=
"old_y" type=
"double" default=
""/>
28868 <param name=
"display" type=
"bool" default=
"True"/>
28871 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
28872 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28874 <param name=
"draw" type=
"bool" default=
""/>
28875 <param name=
"x" type=
"double" default=
""/>
28876 <param name=
"y" type=
"double" default=
""/>
28877 <param name=
"keys" type=
"int" default=
"0"/>
28878 <param name=
"attachment" type=
"int" default=
"0"/>
28881 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
28882 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28884 <param name=
"x" type=
"double" default=
""/>
28885 <param name=
"y" type=
"double" default=
""/>
28886 <param name=
"keys" type=
"int" default=
"0"/>
28887 <param name=
"attachment" type=
"int" default=
"0"/>
28890 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
28891 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28893 <param name=
"x" type=
"double" default=
""/>
28894 <param name=
"y" type=
"double" default=
""/>
28895 <param name=
"keys" type=
"int" default=
"0"/>
28896 <param name=
"attachment" type=
"int" default=
"0"/>
28899 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
28900 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28902 <param name=
"draw" type=
"bool" default=
""/>
28903 <param name=
"x" type=
"double" default=
""/>
28904 <param name=
"y" type=
"double" default=
""/>
28905 <param name=
"keys" type=
"int" default=
"0"/>
28906 <param name=
"attachment" type=
"int" default=
"0"/>
28909 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
28910 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28912 <param name=
"x" type=
"double" default=
""/>
28913 <param name=
"y" type=
"double" default=
""/>
28914 <param name=
"keys" type=
"int" default=
"0"/>
28915 <param name=
"attachment" type=
"int" default=
"0"/>
28918 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
28919 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
28921 <param name=
"x" type=
"double" default=
""/>
28922 <param name=
"y" type=
"double" default=
""/>
28923 <param name=
"keys" type=
"int" default=
"0"/>
28924 <param name=
"attachment" type=
"int" default=
"0"/>
28927 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
28928 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
28930 <param name=
"dc" type=
"DC" default=
""/>
28931 <param name=
"x" type=
"double" default=
""/>
28932 <param name=
"y" type=
"double" default=
""/>
28933 <param name=
"w" type=
"double" default=
""/>
28934 <param name=
"h" type=
"double" default=
""/>
28937 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
28938 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
28940 <param name=
"dc" type=
"DC" default=
""/>
28943 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
28944 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
28946 <param name=
"dc" type=
"DC" default=
""/>
28949 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
28950 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
28952 <param name=
"dc" type=
"DC" default=
""/>
28953 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
28956 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
28957 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
28958 int attachment=
0)
</autodoc>
28960 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
28961 <param name=
"draw" type=
"bool" default=
""/>
28962 <param name=
"x" type=
"double" default=
""/>
28963 <param name=
"y" type=
"double" default=
""/>
28964 <param name=
"keys" type=
"int" default=
"0"/>
28965 <param name=
"attachment" type=
"int" default=
"0"/>
28968 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
28969 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
28970 int attachment=
0)
</autodoc>
28972 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
28973 <param name=
"x" type=
"double" default=
""/>
28974 <param name=
"y" type=
"double" default=
""/>
28975 <param name=
"keys" type=
"int" default=
"0"/>
28976 <param name=
"attachment" type=
"int" default=
"0"/>
28979 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
28980 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
28981 int attachment=
0)
</autodoc>
28983 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
28984 <param name=
"x" type=
"double" default=
""/>
28985 <param name=
"y" type=
"double" default=
""/>
28986 <param name=
"keys" type=
"int" default=
"0"/>
28987 <param name=
"attachment" type=
"int" default=
"0"/>
28990 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
28991 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
28993 <param name=
"w" type=
"double" default=
""/>
28994 <param name=
"h" type=
"double" default=
""/>
28997 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
28998 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29000 <param name=
"w" type=
"double" default=
""/>
29001 <param name=
"h" type=
"double" default=
""/>
29005 <class name=
"PyShape" oldname=
"wxPyShape" module=
"ogl">
29006 <baseclass name=
"PyShapeEvtHandler"/>
29007 <constructor name=
"PyShape" overloaded=
"no">
29008 <autodoc>__init__(PyShapeCanvas can=None) -
> PyShape
</autodoc>
29010 <param name=
"can" type=
"wxPyShapeCanvas" default=
"NULL"/>
29013 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
29014 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
29016 <param name=
"self" type=
"PyObject" default=
""/>
29017 <param name=
"_class" type=
"PyObject" default=
""/>
29020 <method name=
"GetBoundingBoxMax" type=
"" overloaded=
"no">
29021 <autodoc>GetBoundingBoxMax(double OUTPUT, double OUTPUT)
</autodoc>
29023 <param name=
"OUTPUT" type=
"double" default=
""/>
29024 <param name=
"OUTPUT" type=
"double" default=
""/>
29027 <method name=
"GetBoundingBoxMin" type=
"" overloaded=
"no">
29028 <autodoc>GetBoundingBoxMin(double OUTPUT, double OUTPUT)
</autodoc>
29030 <param name=
"OUTPUT" type=
"double" default=
""/>
29031 <param name=
"OUTPUT" type=
"double" default=
""/>
29034 <method name=
"GetPerimeterPoint" type=
"bool" overloaded=
"no">
29035 <autodoc>GetPerimeterPoint(double x1, double y1, double x2, double y2, double OUTPUT,
29036 double OUTPUT) -
> bool
</autodoc>
29038 <param name=
"x1" type=
"double" default=
""/>
29039 <param name=
"y1" type=
"double" default=
""/>
29040 <param name=
"x2" type=
"double" default=
""/>
29041 <param name=
"y2" type=
"double" default=
""/>
29042 <param name=
"OUTPUT" type=
"double" default=
""/>
29043 <param name=
"OUTPUT" type=
"double" default=
""/>
29046 <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no">
29047 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
29049 <method name=
"SetCanvas" type=
"" overloaded=
"no">
29050 <autodoc>SetCanvas(PyShapeCanvas the_canvas)
</autodoc>
29052 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29055 <method name=
"AddToCanvas" type=
"" overloaded=
"no">
29056 <autodoc>AddToCanvas(PyShapeCanvas the_canvas, PyShape addAfter=None)
</autodoc>
29058 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29059 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
29062 <method name=
"InsertInCanvas" type=
"" overloaded=
"no">
29063 <autodoc>InsertInCanvas(PyShapeCanvas the_canvas)
</autodoc>
29065 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29068 <method name=
"RemoveFromCanvas" type=
"" overloaded=
"no">
29069 <autodoc>RemoveFromCanvas(PyShapeCanvas the_canvas)
</autodoc>
29071 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
""/>
29074 <method name=
"GetX" type=
"double" overloaded=
"no">
29075 <autodoc>GetX() -
> double
</autodoc>
29077 <method name=
"GetY" type=
"double" overloaded=
"no">
29078 <autodoc>GetY() -
> double
</autodoc>
29080 <method name=
"SetX" type=
"" overloaded=
"no">
29081 <autodoc>SetX(double x)
</autodoc>
29083 <param name=
"x" type=
"double" default=
""/>
29086 <method name=
"SetY" type=
"" overloaded=
"no">
29087 <autodoc>SetY(double y)
</autodoc>
29089 <param name=
"y" type=
"double" default=
""/>
29092 <method name=
"GetParent" type=
"PyShape" overloaded=
"no">
29093 <autodoc>GetParent() -
> PyShape
</autodoc>
29095 <method name=
"SetParent" type=
"" overloaded=
"no">
29096 <autodoc>SetParent(PyShape p)
</autodoc>
29098 <param name=
"p" type=
"PyShape" default=
""/>
29101 <method name=
"GetTopAncestor" type=
"PyShape" overloaded=
"no">
29102 <autodoc>GetTopAncestor() -
> PyShape
</autodoc>
29104 <method name=
"GetChildren" type=
"PyObject" overloaded=
"no">
29105 <autodoc>GetChildren() -
> PyObject
</autodoc>
29107 <method name=
"Unlink" type=
"" overloaded=
"no">
29108 <autodoc>Unlink()
</autodoc>
29110 <method name=
"SetDrawHandles" type=
"" overloaded=
"no">
29111 <autodoc>SetDrawHandles(bool drawH)
</autodoc>
29113 <param name=
"drawH" type=
"bool" default=
""/>
29116 <method name=
"GetDrawHandles" type=
"bool" overloaded=
"no">
29117 <autodoc>GetDrawHandles() -
> bool
</autodoc>
29119 <method name=
"MakeControlPoints" type=
"" overloaded=
"no">
29120 <autodoc>MakeControlPoints()
</autodoc>
29122 <method name=
"DeleteControlPoints" type=
"" overloaded=
"no">
29123 <autodoc>DeleteControlPoints(DC dc=None)
</autodoc>
29125 <param name=
"dc" type=
"DC" default=
"NULL"/>
29128 <method name=
"ResetControlPoints" type=
"" overloaded=
"no">
29129 <autodoc>ResetControlPoints()
</autodoc>
29131 <method name=
"GetEventHandler" type=
"PyShapeEvtHandler" overloaded=
"no">
29132 <autodoc>GetEventHandler() -
> PyShapeEvtHandler
</autodoc>
29134 <method name=
"SetEventHandler" type=
"" overloaded=
"no">
29135 <autodoc>SetEventHandler(PyShapeEvtHandler handler)
</autodoc>
29137 <param name=
"handler" type=
"PyShapeEvtHandler" default=
""/>
29140 <method name=
"MakeMandatoryControlPoints" type=
"" overloaded=
"no">
29141 <autodoc>MakeMandatoryControlPoints()
</autodoc>
29143 <method name=
"ResetMandatoryControlPoints" type=
"" overloaded=
"no">
29144 <autodoc>ResetMandatoryControlPoints()
</autodoc>
29146 <method name=
"Recompute" type=
"bool" overloaded=
"no">
29147 <autodoc>Recompute() -
> bool
</autodoc>
29149 <method name=
"CalculateSize" type=
"" overloaded=
"no">
29150 <autodoc>CalculateSize()
</autodoc>
29152 <method name=
"Select" type=
"" overloaded=
"no">
29153 <autodoc>Select(bool select=True, DC dc=None)
</autodoc>
29155 <param name=
"select" type=
"bool" default=
"True"/>
29156 <param name=
"dc" type=
"DC" default=
"NULL"/>
29159 <method name=
"SetHighlight" type=
"" overloaded=
"no">
29160 <autodoc>SetHighlight(bool hi=True, bool recurse=False)
</autodoc>
29162 <param name=
"hi" type=
"bool" default=
"True"/>
29163 <param name=
"recurse" type=
"bool" default=
"False"/>
29166 <method name=
"IsHighlighted" type=
"bool" overloaded=
"no">
29167 <autodoc>IsHighlighted() -
> bool
</autodoc>
29169 <method name=
"Selected" type=
"bool" overloaded=
"no">
29170 <autodoc>Selected() -
> bool
</autodoc>
29172 <method name=
"AncestorSelected" type=
"bool" overloaded=
"no">
29173 <autodoc>AncestorSelected() -
> bool
</autodoc>
29175 <method name=
"SetSensitivityFilter" type=
"" overloaded=
"no">
29176 <autodoc>SetSensitivityFilter(int sens=OP_ALL, bool recursive=False)
</autodoc>
29178 <param name=
"sens" type=
"int" default=
"OP_ALL"/>
29179 <param name=
"recursive" type=
"bool" default=
"False"/>
29182 <method name=
"GetSensitivityFilter" type=
"int" overloaded=
"no">
29183 <autodoc>GetSensitivityFilter() -
> int
</autodoc>
29185 <method name=
"SetDraggable" type=
"" overloaded=
"no">
29186 <autodoc>SetDraggable(bool drag, bool recursive=False)
</autodoc>
29188 <param name=
"drag" type=
"bool" default=
""/>
29189 <param name=
"recursive" type=
"bool" default=
"False"/>
29192 <method name=
"SetFixedSize" type=
"" overloaded=
"no">
29193 <autodoc>SetFixedSize(bool x, bool y)
</autodoc>
29195 <param name=
"x" type=
"bool" default=
""/>
29196 <param name=
"y" type=
"bool" default=
""/>
29199 <method name=
"GetFixedSize" type=
"" overloaded=
"no">
29200 <autodoc>GetFixedSize(bool OUTPUT, bool OUTPUT)
</autodoc>
29202 <param name=
"OUTPUT" type=
"bool" default=
""/>
29203 <param name=
"OUTPUT" type=
"bool" default=
""/>
29206 <method name=
"GetFixedWidth" type=
"bool" overloaded=
"no">
29207 <autodoc>GetFixedWidth() -
> bool
</autodoc>
29209 <method name=
"GetFixedHeight" type=
"bool" overloaded=
"no">
29210 <autodoc>GetFixedHeight() -
> bool
</autodoc>
29212 <method name=
"SetSpaceAttachments" type=
"" overloaded=
"no">
29213 <autodoc>SetSpaceAttachments(bool sp)
</autodoc>
29215 <param name=
"sp" type=
"bool" default=
""/>
29218 <method name=
"GetSpaceAttachments" type=
"bool" overloaded=
"no">
29219 <autodoc>GetSpaceAttachments() -
> bool
</autodoc>
29221 <method name=
"SetShadowMode" type=
"" overloaded=
"no">
29222 <autodoc>SetShadowMode(int mode, bool redraw=False)
</autodoc>
29224 <param name=
"mode" type=
"int" default=
""/>
29225 <param name=
"redraw" type=
"bool" default=
"False"/>
29228 <method name=
"GetShadowMode" type=
"int" overloaded=
"no">
29229 <autodoc>GetShadowMode() -
> int
</autodoc>
29231 <method name=
"HitTest" type=
"bool" overloaded=
"no">
29232 <autodoc>HitTest(double x, double y, int OUTPUT, double OUTPUT) -
> bool
</autodoc>
29234 <param name=
"x" type=
"double" default=
""/>
29235 <param name=
"y" type=
"double" default=
""/>
29236 <param name=
"OUTPUT" type=
"int" default=
""/>
29237 <param name=
"OUTPUT" type=
"double" default=
""/>
29240 <method name=
"SetCentreResize" type=
"" overloaded=
"no">
29241 <autodoc>SetCentreResize(bool cr)
</autodoc>
29243 <param name=
"cr" type=
"bool" default=
""/>
29246 <method name=
"GetCentreResize" type=
"bool" overloaded=
"no">
29247 <autodoc>GetCentreResize() -
> bool
</autodoc>
29249 <method name=
"SetMaintainAspectRatio" type=
"" overloaded=
"no">
29250 <autodoc>SetMaintainAspectRatio(bool ar)
</autodoc>
29252 <param name=
"ar" type=
"bool" default=
""/>
29255 <method name=
"GetMaintainAspectRatio" type=
"bool" overloaded=
"no">
29256 <autodoc>GetMaintainAspectRatio() -
> bool
</autodoc>
29258 <method name=
"GetLines" type=
"PyObject" overloaded=
"no">
29259 <autodoc>GetLines() -
> PyObject
</autodoc>
29261 <method name=
"SetDisableLabel" type=
"" overloaded=
"no">
29262 <autodoc>SetDisableLabel(bool flag)
</autodoc>
29264 <param name=
"flag" type=
"bool" default=
""/>
29267 <method name=
"GetDisableLabel" type=
"bool" overloaded=
"no">
29268 <autodoc>GetDisableLabel() -
> bool
</autodoc>
29270 <method name=
"SetAttachmentMode" type=
"" overloaded=
"no">
29271 <autodoc>SetAttachmentMode(int mode)
</autodoc>
29273 <param name=
"mode" type=
"int" default=
""/>
29276 <method name=
"GetAttachmentMode" type=
"int" overloaded=
"no">
29277 <autodoc>GetAttachmentMode() -
> int
</autodoc>
29279 <method name=
"SetId" type=
"" overloaded=
"no">
29280 <autodoc>SetId(long i)
</autodoc>
29282 <param name=
"i" type=
"long" default=
""/>
29285 <method name=
"GetId" type=
"long" overloaded=
"no">
29286 <autodoc>GetId() -
> long
</autodoc>
29288 <method name=
"SetPen" type=
"" overloaded=
"no">
29289 <autodoc>SetPen(wxPen pen)
</autodoc>
29291 <param name=
"pen" type=
"Pen" default=
""/>
29294 <method name=
"SetBrush" type=
"" overloaded=
"no">
29295 <autodoc>SetBrush(wxBrush brush)
</autodoc>
29297 <param name=
"brush" type=
"Brush" default=
""/>
29300 <method name=
"Show" type=
"" overloaded=
"no">
29301 <autodoc>Show(bool show)
</autodoc>
29303 <param name=
"show" type=
"bool" default=
""/>
29306 <method name=
"IsShown" type=
"bool" overloaded=
"no">
29307 <autodoc>IsShown() -
> bool
</autodoc>
29309 <method name=
"Move" type=
"" overloaded=
"no">
29310 <autodoc>Move(DC dc, double x1, double y1, bool display=True)
</autodoc>
29312 <param name=
"dc" type=
"DC" default=
""/>
29313 <param name=
"x1" type=
"double" default=
""/>
29314 <param name=
"y1" type=
"double" default=
""/>
29315 <param name=
"display" type=
"bool" default=
"True"/>
29318 <method name=
"Erase" type=
"" overloaded=
"no">
29319 <autodoc>Erase(DC dc)
</autodoc>
29321 <param name=
"dc" type=
"DC" default=
""/>
29324 <method name=
"EraseContents" type=
"" overloaded=
"no">
29325 <autodoc>EraseContents(DC dc)
</autodoc>
29327 <param name=
"dc" type=
"DC" default=
""/>
29330 <method name=
"Draw" type=
"" overloaded=
"no">
29331 <autodoc>Draw(DC dc)
</autodoc>
29333 <param name=
"dc" type=
"DC" default=
""/>
29336 <method name=
"Flash" type=
"" overloaded=
"no">
29337 <autodoc>Flash()
</autodoc>
29339 <method name=
"MoveLinks" type=
"" overloaded=
"no">
29340 <autodoc>MoveLinks(DC dc)
</autodoc>
29342 <param name=
"dc" type=
"DC" default=
""/>
29345 <method name=
"DrawContents" type=
"" overloaded=
"no">
29346 <autodoc>DrawContents(DC dc)
</autodoc>
29348 <param name=
"dc" type=
"DC" default=
""/>
29351 <method name=
"SetSize" type=
"" overloaded=
"no">
29352 <autodoc>SetSize(double x, double y, bool recursive=True)
</autodoc>
29354 <param name=
"x" type=
"double" default=
""/>
29355 <param name=
"y" type=
"double" default=
""/>
29356 <param name=
"recursive" type=
"bool" default=
"True"/>
29359 <method name=
"SetAttachmentSize" type=
"" overloaded=
"no">
29360 <autodoc>SetAttachmentSize(double x, double y)
</autodoc>
29362 <param name=
"x" type=
"double" default=
""/>
29363 <param name=
"y" type=
"double" default=
""/>
29366 <method name=
"Attach" type=
"" overloaded=
"no">
29367 <autodoc>Attach(PyShapeCanvas can)
</autodoc>
29369 <param name=
"can" type=
"wxPyShapeCanvas" default=
""/>
29372 <method name=
"Detach" type=
"" overloaded=
"no">
29373 <autodoc>Detach()
</autodoc>
29375 <method name=
"Constrain" type=
"bool" overloaded=
"no">
29376 <autodoc>Constrain() -
> bool
</autodoc>
29378 <method name=
"AddLine" type=
"" overloaded=
"no">
29379 <autodoc>AddLine(PyLineShape line, PyShape other, int attachFrom=
0,
29380 int attachTo=
0, int positionFrom=-
1, int positionTo=-
1)
</autodoc>
29382 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29383 <param name=
"other" type=
"PyShape" default=
""/>
29384 <param name=
"attachFrom" type=
"int" default=
"0"/>
29385 <param name=
"attachTo" type=
"int" default=
"0"/>
29386 <param name=
"positionFrom" type=
"int" default=
"-1"/>
29387 <param name=
"positionTo" type=
"int" default=
"-1"/>
29390 <method name=
"GetLinePosition" type=
"int" overloaded=
"no">
29391 <autodoc>GetLinePosition(PyLineShape line) -
> int
</autodoc>
29393 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29396 <method name=
"AddText" type=
"" overloaded=
"no">
29397 <autodoc>AddText(String string)
</autodoc>
29399 <param name=
"string" type=
"String" default=
""/>
29402 <method name=
"GetPen" type=
"Pen" overloaded=
"no">
29403 <autodoc>GetPen() -
> wxPen
</autodoc>
29405 <method name=
"GetBrush" type=
"Brush" overloaded=
"no">
29406 <autodoc>GetBrush() -
> wxBrush
</autodoc>
29408 <method name=
"SetDefaultRegionSize" type=
"" overloaded=
"no">
29409 <autodoc>SetDefaultRegionSize()
</autodoc>
29411 <method name=
"FormatText" type=
"" overloaded=
"no">
29412 <autodoc>FormatText(DC dc, String s, int regionId=
0)
</autodoc>
29414 <param name=
"dc" type=
"DC" default=
""/>
29415 <param name=
"s" type=
"String" default=
""/>
29416 <param name=
"regionId" type=
"int" default=
"0"/>
29419 <method name=
"SetFormatMode" type=
"" overloaded=
"no">
29420 <autodoc>SetFormatMode(int mode, int regionId=
0)
</autodoc>
29422 <param name=
"mode" type=
"int" default=
""/>
29423 <param name=
"regionId" type=
"int" default=
"0"/>
29426 <method name=
"GetFormatMode" type=
"int" overloaded=
"no">
29427 <autodoc>GetFormatMode(int regionId=
0) -
> int
</autodoc>
29429 <param name=
"regionId" type=
"int" default=
"0"/>
29432 <method name=
"SetFont" type=
"" overloaded=
"no">
29433 <autodoc>SetFont(Font font, int regionId=
0)
</autodoc>
29435 <param name=
"font" type=
"Font" default=
""/>
29436 <param name=
"regionId" type=
"int" default=
"0"/>
29439 <method name=
"GetFont" type=
"Font" overloaded=
"no">
29440 <autodoc>GetFont(int regionId=
0) -
> Font
</autodoc>
29442 <param name=
"regionId" type=
"int" default=
"0"/>
29445 <method name=
"SetTextColour" type=
"" overloaded=
"no">
29446 <autodoc>SetTextColour(String colour, int regionId=
0)
</autodoc>
29448 <param name=
"colour" type=
"String" default=
""/>
29449 <param name=
"regionId" type=
"int" default=
"0"/>
29452 <method name=
"GetTextColour" type=
"String" overloaded=
"no">
29453 <autodoc>GetTextColour(int regionId=
0) -
> String
</autodoc>
29455 <param name=
"regionId" type=
"int" default=
"0"/>
29458 <method name=
"GetNumberOfTextRegions" type=
"int" overloaded=
"no">
29459 <autodoc>GetNumberOfTextRegions() -
> int
</autodoc>
29461 <method name=
"SetRegionName" type=
"" overloaded=
"no">
29462 <autodoc>SetRegionName(String name, int regionId=
0)
</autodoc>
29464 <param name=
"name" type=
"String" default=
""/>
29465 <param name=
"regionId" type=
"int" default=
"0"/>
29468 <method name=
"GetRegionName" type=
"String" overloaded=
"no">
29469 <autodoc>GetRegionName(int regionId) -
> String
</autodoc>
29471 <param name=
"regionId" type=
"int" default=
""/>
29474 <method name=
"GetRegionId" type=
"int" overloaded=
"no">
29475 <autodoc>GetRegionId(String name) -
> int
</autodoc>
29477 <param name=
"name" type=
"String" default=
""/>
29480 <method name=
"NameRegions" type=
"" overloaded=
"no">
29481 <autodoc>NameRegions(String parentName=EmptyString)
</autodoc>
29483 <param name=
"parentName" type=
"String" default=
"wxPyEmptyString"/>
29486 <method name=
"GetRegions" type=
"PyObject" overloaded=
"no">
29487 <autodoc>GetRegions() -
> PyObject
</autodoc>
29489 <method name=
"AddRegion" type=
"" overloaded=
"no">
29490 <autodoc>AddRegion(ShapeRegion region)
</autodoc>
29492 <param name=
"region" type=
"ShapeRegion" default=
""/>
29495 <method name=
"ClearRegions" type=
"" overloaded=
"no">
29496 <autodoc>ClearRegions()
</autodoc>
29498 <method name=
"AssignNewIds" type=
"" overloaded=
"no">
29499 <autodoc>AssignNewIds()
</autodoc>
29501 <method name=
"FindRegion" type=
"PyShape" overloaded=
"no">
29502 <autodoc>FindRegion(String regionName, int OUTPUT) -
> PyShape
</autodoc>
29504 <param name=
"regionName" type=
"String" default=
""/>
29505 <param name=
"OUTPUT" type=
"int" default=
""/>
29508 <method name=
"FindRegionNames" type=
"" overloaded=
"no">
29509 <autodoc>FindRegionNames(wxStringList list)
</autodoc>
29511 <param name=
"list" type=
"wxStringList" default=
""/>
29514 <method name=
"ClearText" type=
"" overloaded=
"no">
29515 <autodoc>ClearText(int regionId=
0)
</autodoc>
29517 <param name=
"regionId" type=
"int" default=
"0"/>
29520 <method name=
"RemoveLine" type=
"" overloaded=
"no">
29521 <autodoc>RemoveLine(PyLineShape line)
</autodoc>
29523 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29526 <method name=
"GetAttachmentPosition" type=
"bool" overloaded=
"no">
29527 <autodoc>GetAttachmentPosition(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
29528 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
29530 <param name=
"attachment" type=
"int" default=
""/>
29531 <param name=
"OUTPUT" type=
"double" default=
""/>
29532 <param name=
"OUTPUT" type=
"double" default=
""/>
29533 <param name=
"nth" type=
"int" default=
"0"/>
29534 <param name=
"no_arcs" type=
"int" default=
"1"/>
29535 <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/>
29538 <method name=
"GetNumberOfAttachments" type=
"int" overloaded=
"no">
29539 <autodoc>GetNumberOfAttachments() -
> int
</autodoc>
29541 <method name=
"AttachmentIsValid" type=
"bool" overloaded=
"no">
29542 <autodoc>AttachmentIsValid(int attachment) -
> bool
</autodoc>
29544 <param name=
"attachment" type=
"int" default=
""/>
29547 <method name=
"GetAttachments" type=
"PyObject" overloaded=
"no">
29548 <autodoc>GetAttachments() -
> PyObject
</autodoc>
29550 <method name=
"GetAttachmentPositionEdge" type=
"bool" overloaded=
"no">
29551 <autodoc>GetAttachmentPositionEdge(int attachment, double OUTPUT, double OUTPUT, int nth=
0,
29552 int no_arcs=
1, PyLineShape line=None) -
> bool
</autodoc>
29554 <param name=
"attachment" type=
"int" default=
""/>
29555 <param name=
"OUTPUT" type=
"double" default=
""/>
29556 <param name=
"OUTPUT" type=
"double" default=
""/>
29557 <param name=
"nth" type=
"int" default=
"0"/>
29558 <param name=
"no_arcs" type=
"int" default=
"1"/>
29559 <param name=
"line" type=
"wxPyLineShape" default=
"NULL"/>
29562 <method name=
"CalcSimpleAttachment" type=
"RealPoint" overloaded=
"no">
29563 <autodoc>CalcSimpleAttachment(RealPoint pt1, RealPoint pt2, int nth, int noArcs,
29564 PyLineShape line) -
> RealPoint
</autodoc>
29566 <param name=
"pt1" type=
"RealPoint" default=
""/>
29567 <param name=
"pt2" type=
"RealPoint" default=
""/>
29568 <param name=
"nth" type=
"int" default=
""/>
29569 <param name=
"noArcs" type=
"int" default=
""/>
29570 <param name=
"line" type=
"wxPyLineShape" default=
""/>
29573 <method name=
"AttachmentSortTest" type=
"bool" overloaded=
"no">
29574 <autodoc>AttachmentSortTest(int attachmentPoint, RealPoint pt1, RealPoint pt2) -
> bool
</autodoc>
29576 <param name=
"attachmentPoint" type=
"int" default=
""/>
29577 <param name=
"pt1" type=
"RealPoint" default=
""/>
29578 <param name=
"pt2" type=
"RealPoint" default=
""/>
29581 <method name=
"EraseLinks" type=
"" overloaded=
"no">
29582 <autodoc>EraseLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
29584 <param name=
"dc" type=
"DC" default=
""/>
29585 <param name=
"attachment" type=
"int" default=
"-1"/>
29586 <param name=
"recurse" type=
"bool" default=
"False"/>
29589 <method name=
"DrawLinks" type=
"" overloaded=
"no">
29590 <autodoc>DrawLinks(DC dc, int attachment=-
1, bool recurse=False)
</autodoc>
29592 <param name=
"dc" type=
"DC" default=
""/>
29593 <param name=
"attachment" type=
"int" default=
"-1"/>
29594 <param name=
"recurse" type=
"bool" default=
"False"/>
29597 <method name=
"MoveLineToNewAttachment" type=
"bool" overloaded=
"no">
29598 <autodoc>MoveLineToNewAttachment(DC dc, PyLineShape to_move, double x, double y) -
> bool
</autodoc>
29600 <param name=
"dc" type=
"DC" default=
""/>
29601 <param name=
"to_move" type=
"wxPyLineShape" default=
""/>
29602 <param name=
"x" type=
"double" default=
""/>
29603 <param name=
"y" type=
"double" default=
""/>
29606 <method name=
"ApplyAttachmentOrdering" type=
"" overloaded=
"no">
29607 <autodoc>ApplyAttachmentOrdering(PyObject linesToSort)
</autodoc>
29609 <param name=
"linesToSort" type=
"PyObject" default=
""/>
29612 <method name=
"GetBranchingAttachmentRoot" type=
"RealPoint" overloaded=
"no">
29613 <autodoc>GetBranchingAttachmentRoot(int attachment) -
> RealPoint
</autodoc>
29615 <param name=
"attachment" type=
"int" default=
""/>
29618 <method name=
"GetBranchingAttachmentInfo" type=
"bool" overloaded=
"no">
29619 <autodoc>GetBranchingAttachmentInfo(int attachment, RealPoint root, RealPoint neck, RealPoint shoulder1,
29620 RealPoint shoulder2) -
> bool
</autodoc>
29622 <param name=
"attachment" type=
"int" default=
""/>
29623 <param name=
"root" type=
"RealPoint" default=
""/>
29624 <param name=
"neck" type=
"RealPoint" default=
""/>
29625 <param name=
"shoulder1" type=
"RealPoint" default=
""/>
29626 <param name=
"shoulder2" type=
"RealPoint" default=
""/>
29629 <method name=
"GetBranchingAttachmentPoint" type=
"bool" overloaded=
"no">
29630 <autodoc>GetBranchingAttachmentPoint(int attachment, int n, RealPoint attachmentPoint, RealPoint stemPoint) -
> bool
</autodoc>
29632 <param name=
"attachment" type=
"int" default=
""/>
29633 <param name=
"n" type=
"int" default=
""/>
29634 <param name=
"attachmentPoint" type=
"RealPoint" default=
""/>
29635 <param name=
"stemPoint" type=
"RealPoint" default=
""/>
29638 <method name=
"GetAttachmentLineCount" type=
"int" overloaded=
"no">
29639 <autodoc>GetAttachmentLineCount(int attachment) -
> int
</autodoc>
29641 <param name=
"attachment" type=
"int" default=
""/>
29644 <method name=
"SetBranchNeckLength" type=
"" overloaded=
"no">
29645 <autodoc>SetBranchNeckLength(int len)
</autodoc>
29647 <param name=
"len" type=
"int" default=
""/>
29650 <method name=
"GetBranchNeckLength" type=
"int" overloaded=
"no">
29651 <autodoc>GetBranchNeckLength() -
> int
</autodoc>
29653 <method name=
"SetBranchStemLength" type=
"" overloaded=
"no">
29654 <autodoc>SetBranchStemLength(int len)
</autodoc>
29656 <param name=
"len" type=
"int" default=
""/>
29659 <method name=
"GetBranchStemLength" type=
"int" overloaded=
"no">
29660 <autodoc>GetBranchStemLength() -
> int
</autodoc>
29662 <method name=
"SetBranchSpacing" type=
"" overloaded=
"no">
29663 <autodoc>SetBranchSpacing(int len)
</autodoc>
29665 <param name=
"len" type=
"int" default=
""/>
29668 <method name=
"GetBranchSpacing" type=
"int" overloaded=
"no">
29669 <autodoc>GetBranchSpacing() -
> int
</autodoc>
29671 <method name=
"SetBranchStyle" type=
"" overloaded=
"no">
29672 <autodoc>SetBranchStyle(long style)
</autodoc>
29674 <param name=
"style" type=
"long" default=
""/>
29677 <method name=
"GetBranchStyle" type=
"long" overloaded=
"no">
29678 <autodoc>GetBranchStyle() -
> long
</autodoc>
29680 <method name=
"PhysicalToLogicalAttachment" type=
"int" overloaded=
"no">
29681 <autodoc>PhysicalToLogicalAttachment(int physicalAttachment) -
> int
</autodoc>
29683 <param name=
"physicalAttachment" type=
"int" default=
""/>
29686 <method name=
"LogicalToPhysicalAttachment" type=
"int" overloaded=
"no">
29687 <autodoc>LogicalToPhysicalAttachment(int logicalAttachment) -
> int
</autodoc>
29689 <param name=
"logicalAttachment" type=
"int" default=
""/>
29692 <method name=
"Draggable" type=
"bool" overloaded=
"no">
29693 <autodoc>Draggable() -
> bool
</autodoc>
29695 <method name=
"HasDescendant" type=
"bool" overloaded=
"no">
29696 <autodoc>HasDescendant(PyShape image) -
> bool
</autodoc>
29698 <param name=
"image" type=
"PyShape" default=
""/>
29701 <method name=
"CreateNewCopy" type=
"PyShape" overloaded=
"no">
29702 <autodoc>CreateNewCopy(bool resetMapping=True, bool recompute=True) -
> PyShape
</autodoc>
29704 <param name=
"resetMapping" type=
"bool" default=
"True"/>
29705 <param name=
"recompute" type=
"bool" default=
"True"/>
29708 <method name=
"Copy" type=
"" overloaded=
"no">
29709 <autodoc>Copy(PyShape copy)
</autodoc>
29711 <param name=
"copy" type=
"PyShape" default=
""/>
29714 <method name=
"CopyWithHandler" type=
"" overloaded=
"no">
29715 <autodoc>CopyWithHandler(PyShape copy)
</autodoc>
29717 <param name=
"copy" type=
"PyShape" default=
""/>
29720 <method name=
"Rotate" type=
"" overloaded=
"no">
29721 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
29723 <param name=
"x" type=
"double" default=
""/>
29724 <param name=
"y" type=
"double" default=
""/>
29725 <param name=
"theta" type=
"double" default=
""/>
29728 <method name=
"GetRotation" type=
"double" overloaded=
"no">
29729 <autodoc>GetRotation() -
> double
</autodoc>
29731 <method name=
"SetRotation" type=
"" overloaded=
"no">
29732 <autodoc>SetRotation(double rotation)
</autodoc>
29734 <param name=
"rotation" type=
"double" default=
""/>
29737 <method name=
"ClearAttachments" type=
"" overloaded=
"no">
29738 <autodoc>ClearAttachments()
</autodoc>
29740 <method name=
"Recentre" type=
"" overloaded=
"no">
29741 <autodoc>Recentre(DC dc)
</autodoc>
29743 <param name=
"dc" type=
"DC" default=
""/>
29746 <method name=
"ClearPointList" type=
"" overloaded=
"no">
29747 <autodoc>ClearPointList(wxList list)
</autodoc>
29749 <param name=
"list" type=
"wxList" default=
""/>
29752 <method name=
"GetBackgroundPen" type=
"Pen" overloaded=
"no">
29753 <autodoc>GetBackgroundPen() -
> wxPen
</autodoc>
29755 <method name=
"GetBackgroundBrush" type=
"Brush" overloaded=
"no">
29756 <autodoc>GetBackgroundBrush() -
> wxBrush
</autodoc>
29758 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
29759 <autodoc>base_OnDelete()
</autodoc>
29761 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
29762 <autodoc>base_OnDraw(DC dc)
</autodoc>
29764 <param name=
"dc" type=
"DC" default=
""/>
29767 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
29768 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
29770 <param name=
"dc" type=
"DC" default=
""/>
29773 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
29774 <autodoc>base_OnDrawBranches(DC dc, bool erase=False)
</autodoc>
29776 <param name=
"dc" type=
"DC" default=
""/>
29777 <param name=
"erase" type=
"bool" default=
"False"/>
29780 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
29781 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
29783 <param name=
"dc" type=
"DC" default=
""/>
29786 <method name=
"base_OnErase" type=
"" overloaded=
"no">
29787 <autodoc>base_OnErase(DC dc)
</autodoc>
29789 <param name=
"dc" type=
"DC" default=
""/>
29792 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
29793 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
29795 <param name=
"dc" type=
"DC" default=
""/>
29798 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
29799 <autodoc>base_OnHighlight(DC dc)
</autodoc>
29801 <param name=
"dc" type=
"DC" default=
""/>
29804 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
29805 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29807 <param name=
"x" type=
"double" default=
""/>
29808 <param name=
"y" type=
"double" default=
""/>
29809 <param name=
"keys" type=
"int" default=
"0"/>
29810 <param name=
"attachment" type=
"int" default=
"0"/>
29813 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
29814 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29816 <param name=
"x" type=
"double" default=
""/>
29817 <param name=
"y" type=
"double" default=
""/>
29818 <param name=
"keys" type=
"int" default=
"0"/>
29819 <param name=
"attachment" type=
"int" default=
"0"/>
29822 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
29823 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29825 <param name=
"x" type=
"double" default=
""/>
29826 <param name=
"y" type=
"double" default=
""/>
29827 <param name=
"keys" type=
"int" default=
"0"/>
29828 <param name=
"attachment" type=
"int" default=
"0"/>
29831 <method name=
"base_OnSize" type=
"" overloaded=
"no">
29832 <autodoc>base_OnSize(double x, double y)
</autodoc>
29834 <param name=
"x" type=
"double" default=
""/>
29835 <param name=
"y" type=
"double" default=
""/>
29838 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
29839 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
29840 bool display=True) -
> bool
</autodoc>
29842 <param name=
"dc" type=
"DC" default=
""/>
29843 <param name=
"x" type=
"double" default=
""/>
29844 <param name=
"y" type=
"double" default=
""/>
29845 <param name=
"old_x" type=
"double" default=
""/>
29846 <param name=
"old_y" type=
"double" default=
""/>
29847 <param name=
"display" type=
"bool" default=
"True"/>
29850 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
29851 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
29852 bool display=True)
</autodoc>
29854 <param name=
"dc" type=
"DC" default=
""/>
29855 <param name=
"x" type=
"double" default=
""/>
29856 <param name=
"y" type=
"double" default=
""/>
29857 <param name=
"old_x" type=
"double" default=
""/>
29858 <param name=
"old_y" type=
"double" default=
""/>
29859 <param name=
"display" type=
"bool" default=
"True"/>
29862 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
29863 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29865 <param name=
"draw" type=
"bool" default=
""/>
29866 <param name=
"x" type=
"double" default=
""/>
29867 <param name=
"y" type=
"double" default=
""/>
29868 <param name=
"keys" type=
"int" default=
"0"/>
29869 <param name=
"attachment" type=
"int" default=
"0"/>
29872 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
29873 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29875 <param name=
"x" type=
"double" default=
""/>
29876 <param name=
"y" type=
"double" default=
""/>
29877 <param name=
"keys" type=
"int" default=
"0"/>
29878 <param name=
"attachment" type=
"int" default=
"0"/>
29881 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
29882 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29884 <param name=
"x" type=
"double" default=
""/>
29885 <param name=
"y" type=
"double" default=
""/>
29886 <param name=
"keys" type=
"int" default=
"0"/>
29887 <param name=
"attachment" type=
"int" default=
"0"/>
29890 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
29891 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29893 <param name=
"draw" type=
"bool" default=
""/>
29894 <param name=
"x" type=
"double" default=
""/>
29895 <param name=
"y" type=
"double" default=
""/>
29896 <param name=
"keys" type=
"int" default=
"0"/>
29897 <param name=
"attachment" type=
"int" default=
"0"/>
29900 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
29901 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29903 <param name=
"x" type=
"double" default=
""/>
29904 <param name=
"y" type=
"double" default=
""/>
29905 <param name=
"keys" type=
"int" default=
"0"/>
29906 <param name=
"attachment" type=
"int" default=
"0"/>
29909 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
29910 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
29912 <param name=
"x" type=
"double" default=
""/>
29913 <param name=
"y" type=
"double" default=
""/>
29914 <param name=
"keys" type=
"int" default=
"0"/>
29915 <param name=
"attachment" type=
"int" default=
"0"/>
29918 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
29919 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
29921 <param name=
"dc" type=
"DC" default=
""/>
29922 <param name=
"x" type=
"double" default=
""/>
29923 <param name=
"y" type=
"double" default=
""/>
29924 <param name=
"w" type=
"double" default=
""/>
29925 <param name=
"h" type=
"double" default=
""/>
29928 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
29929 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
29931 <param name=
"dc" type=
"DC" default=
""/>
29934 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
29935 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
29937 <param name=
"dc" type=
"DC" default=
""/>
29940 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
29941 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
29943 <param name=
"dc" type=
"DC" default=
""/>
29944 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
29947 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
29948 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
29949 int attachment=
0)
</autodoc>
29951 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29952 <param name=
"draw" type=
"bool" default=
""/>
29953 <param name=
"x" type=
"double" default=
""/>
29954 <param name=
"y" type=
"double" default=
""/>
29955 <param name=
"keys" type=
"int" default=
"0"/>
29956 <param name=
"attachment" type=
"int" default=
"0"/>
29959 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
29960 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29961 int attachment=
0)
</autodoc>
29963 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29964 <param name=
"x" type=
"double" default=
""/>
29965 <param name=
"y" type=
"double" default=
""/>
29966 <param name=
"keys" type=
"int" default=
"0"/>
29967 <param name=
"attachment" type=
"int" default=
"0"/>
29970 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
29971 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
29972 int attachment=
0)
</autodoc>
29974 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
29975 <param name=
"x" type=
"double" default=
""/>
29976 <param name=
"y" type=
"double" default=
""/>
29977 <param name=
"keys" type=
"int" default=
"0"/>
29978 <param name=
"attachment" type=
"int" default=
"0"/>
29981 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
29982 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
29984 <param name=
"w" type=
"double" default=
""/>
29985 <param name=
"h" type=
"double" default=
""/>
29988 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
29989 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
29991 <param name=
"w" type=
"double" default=
""/>
29992 <param name=
"h" type=
"double" default=
""/>
29996 <class name=
"PseudoMetaFile" oldname=
"wxPseudoMetaFile" module=
"ogl">
29997 <baseclass name=
"Object"/>
29998 <constructor name=
"PseudoMetaFile" overloaded=
"no">
29999 <autodoc>__init__() -
> PseudoMetaFile
</autodoc>
30001 <destructor name=
"~wxPseudoMetaFile" overloaded=
"no">
30002 <autodoc>__del__()
</autodoc>
30004 <method name=
"Draw" type=
"" overloaded=
"no">
30005 <autodoc>Draw(DC dc, double xoffset, double yoffset)
</autodoc>
30007 <param name=
"dc" type=
"DC" default=
""/>
30008 <param name=
"xoffset" type=
"double" default=
""/>
30009 <param name=
"yoffset" type=
"double" default=
""/>
30012 <method name=
"Clear" type=
"" overloaded=
"no">
30013 <autodoc>Clear()
</autodoc>
30015 <method name=
"Copy" type=
"" overloaded=
"no">
30016 <autodoc>Copy(PseudoMetaFile copy)
</autodoc>
30018 <param name=
"copy" type=
"PseudoMetaFile" default=
""/>
30021 <method name=
"Scale" type=
"" overloaded=
"no">
30022 <autodoc>Scale(double sx, double sy)
</autodoc>
30024 <param name=
"sx" type=
"double" default=
""/>
30025 <param name=
"sy" type=
"double" default=
""/>
30028 <method name=
"ScaleTo" type=
"" overloaded=
"no">
30029 <autodoc>ScaleTo(double w, double h)
</autodoc>
30031 <param name=
"w" type=
"double" default=
""/>
30032 <param name=
"h" type=
"double" default=
""/>
30035 <method name=
"Translate" type=
"" overloaded=
"no">
30036 <autodoc>Translate(double x, double y)
</autodoc>
30038 <param name=
"x" type=
"double" default=
""/>
30039 <param name=
"y" type=
"double" default=
""/>
30042 <method name=
"Rotate" type=
"" overloaded=
"no">
30043 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
30045 <param name=
"x" type=
"double" default=
""/>
30046 <param name=
"y" type=
"double" default=
""/>
30047 <param name=
"theta" type=
"double" default=
""/>
30050 <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no">
30051 <autodoc>LoadFromMetaFile(String filename, double width, double height) -
> bool
</autodoc>
30053 <param name=
"filename" type=
"String" default=
""/>
30054 <param name=
"width" type=
"double" default=
""/>
30055 <param name=
"height" type=
"double" default=
""/>
30058 <method name=
"GetBounds" type=
"" overloaded=
"no">
30059 <autodoc>GetBounds(double minX, double minY, double maxX, double maxY)
</autodoc>
30061 <param name=
"minX" type=
"double" default=
""/>
30062 <param name=
"minY" type=
"double" default=
""/>
30063 <param name=
"maxX" type=
"double" default=
""/>
30064 <param name=
"maxY" type=
"double" default=
""/>
30067 <method name=
"CalculateSize" type=
"" overloaded=
"no">
30068 <autodoc>CalculateSize(PyDrawnShape shape)
</autodoc>
30070 <param name=
"shape" type=
"wxPyDrawnShape" default=
""/>
30073 <method name=
"SetRotateable" type=
"" overloaded=
"no">
30074 <autodoc>SetRotateable(bool rot)
</autodoc>
30076 <param name=
"rot" type=
"bool" default=
""/>
30079 <method name=
"GetRotateable" type=
"bool" overloaded=
"no">
30080 <autodoc>GetRotateable() -
> bool
</autodoc>
30082 <method name=
"SetSize" type=
"" overloaded=
"no">
30083 <autodoc>SetSize(double w, double h)
</autodoc>
30085 <param name=
"w" type=
"double" default=
""/>
30086 <param name=
"h" type=
"double" default=
""/>
30089 <method name=
"SetFillBrush" type=
"" overloaded=
"no">
30090 <autodoc>SetFillBrush(wxBrush brush)
</autodoc>
30092 <param name=
"brush" type=
"Brush" default=
""/>
30095 <method name=
"GetFillBrush" type=
"Brush" overloaded=
"no">
30096 <autodoc>GetFillBrush() -
> wxBrush
</autodoc>
30098 <method name=
"SetOutlinePen" type=
"" overloaded=
"no">
30099 <autodoc>SetOutlinePen(wxPen pen)
</autodoc>
30101 <param name=
"pen" type=
"Pen" default=
""/>
30104 <method name=
"GetOutlinePen" type=
"Pen" overloaded=
"no">
30105 <autodoc>GetOutlinePen() -
> wxPen
</autodoc>
30107 <method name=
"SetOutlineOp" type=
"" overloaded=
"no">
30108 <autodoc>SetOutlineOp(int op)
</autodoc>
30110 <param name=
"op" type=
"int" default=
""/>
30113 <method name=
"GetOutlineOp" type=
"int" overloaded=
"no">
30114 <autodoc>GetOutlineOp() -
> int
</autodoc>
30116 <method name=
"IsValid" type=
"bool" overloaded=
"no">
30117 <autodoc>IsValid() -
> bool
</autodoc>
30119 <method name=
"DrawLine" type=
"" overloaded=
"no">
30120 <autodoc>DrawLine(Point pt1, Point pt2)
</autodoc>
30122 <param name=
"pt1" type=
"Point" default=
""/>
30123 <param name=
"pt2" type=
"Point" default=
""/>
30126 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
30127 <autodoc>DrawRectangle(Rect rect)
</autodoc>
30129 <param name=
"rect" type=
"Rect" default=
""/>
30132 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
30133 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
30135 <param name=
"rect" type=
"Rect" default=
""/>
30136 <param name=
"radius" type=
"double" default=
""/>
30139 <method name=
"DrawArc" type=
"" overloaded=
"no">
30140 <autodoc>DrawArc(Point centrePt, Point startPt, Point endPt)
</autodoc>
30142 <param name=
"centrePt" type=
"Point" default=
""/>
30143 <param name=
"startPt" type=
"Point" default=
""/>
30144 <param name=
"endPt" type=
"Point" default=
""/>
30147 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
30148 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
30150 <param name=
"rect" type=
"Rect" default=
""/>
30151 <param name=
"startAngle" type=
"double" default=
""/>
30152 <param name=
"endAngle" type=
"double" default=
""/>
30155 <method name=
"DrawEllipse" type=
"" overloaded=
"no">
30156 <autodoc>DrawEllipse(Rect rect)
</autodoc>
30158 <param name=
"rect" type=
"Rect" default=
""/>
30161 <method name=
"DrawPoint" type=
"" overloaded=
"no">
30162 <autodoc>DrawPoint(Point pt)
</autodoc>
30164 <param name=
"pt" type=
"Point" default=
""/>
30167 <method name=
"DrawText" type=
"" overloaded=
"no">
30168 <autodoc>DrawText(String text, Point pt)
</autodoc>
30170 <param name=
"text" type=
"String" default=
""/>
30171 <param name=
"pt" type=
"Point" default=
""/>
30174 <method name=
"DrawLines" type=
"" overloaded=
"no">
30175 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
30177 <param name=
"PCOUNT" type=
"int" default=
""/>
30178 <param name=
"points" type=
"Point" default=
""/>
30181 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
30182 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
30184 <param name=
"PCOUNT" type=
"int" default=
""/>
30185 <param name=
"points" type=
"Point" default=
""/>
30186 <param name=
"flags" type=
"int" default=
"0"/>
30189 <method name=
"DrawSpline" type=
"" overloaded=
"no">
30190 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
30192 <param name=
"PCOUNT" type=
"int" default=
""/>
30193 <param name=
"points" type=
"Point" default=
""/>
30196 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
30197 <autodoc>SetClippingRect(Rect rect)
</autodoc>
30199 <param name=
"rect" type=
"Rect" default=
""/>
30202 <method name=
"DestroyClippingRect" type=
"" overloaded=
"no">
30203 <autodoc>DestroyClippingRect()
</autodoc>
30205 <method name=
"SetPen" type=
"" overloaded=
"no">
30206 <autodoc>SetPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
30208 <param name=
"pen" type=
"Pen" default=
""/>
30209 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
30212 <method name=
"SetBrush" type=
"" overloaded=
"no">
30213 <autodoc>SetBrush(wxBrush brush, bool isFill=FALSE)
</autodoc>
30215 <param name=
"brush" type=
"Brush" default=
""/>
30216 <param name=
"isFill" type=
"bool" default=
"FALSE"/>
30219 <method name=
"SetFont" type=
"" overloaded=
"no">
30220 <autodoc>SetFont(Font font)
</autodoc>
30222 <param name=
"font" type=
"Font" default=
""/>
30225 <method name=
"SetTextColour" type=
"" overloaded=
"no">
30226 <autodoc>SetTextColour(Colour colour)
</autodoc>
30228 <param name=
"colour" type=
"Colour" default=
""/>
30231 <method name=
"SetBackgroundColour" type=
"" overloaded=
"no">
30232 <autodoc>SetBackgroundColour(Colour colour)
</autodoc>
30234 <param name=
"colour" type=
"Colour" default=
""/>
30237 <method name=
"SetBackgroundMode" type=
"" overloaded=
"no">
30238 <autodoc>SetBackgroundMode(int mode)
</autodoc>
30240 <param name=
"mode" type=
"int" default=
""/>
30244 <class name=
"PyRectangleShape" oldname=
"wxPyRectangleShape" module=
"ogl">
30245 <baseclass name=
"PyShape"/>
30246 <constructor name=
"PyRectangleShape" overloaded=
"no">
30247 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyRectangleShape
</autodoc>
30249 <param name=
"width" type=
"double" default=
"0.0"/>
30250 <param name=
"height" type=
"double" default=
"0.0"/>
30253 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30254 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30256 <param name=
"self" type=
"PyObject" default=
""/>
30257 <param name=
"_class" type=
"PyObject" default=
""/>
30260 <method name=
"SetCornerRadius" type=
"" overloaded=
"no">
30261 <autodoc>SetCornerRadius(double radius)
</autodoc>
30263 <param name=
"radius" type=
"double" default=
""/>
30266 <method name=
"GetCornerRadius" type=
"double" overloaded=
"no">
30267 <autodoc>GetCornerRadius() -
> double
</autodoc>
30269 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
30270 <autodoc>base_OnDelete()
</autodoc>
30272 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
30273 <autodoc>base_OnDraw(DC dc)
</autodoc>
30275 <param name=
"dc" type=
"DC" default=
""/>
30278 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
30279 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30281 <param name=
"dc" type=
"DC" default=
""/>
30284 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
30285 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30287 <param name=
"dc" type=
"DC" default=
""/>
30288 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30291 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
30292 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30294 <param name=
"dc" type=
"DC" default=
""/>
30297 <method name=
"base_OnErase" type=
"" overloaded=
"no">
30298 <autodoc>base_OnErase(DC dc)
</autodoc>
30300 <param name=
"dc" type=
"DC" default=
""/>
30303 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
30304 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30306 <param name=
"dc" type=
"DC" default=
""/>
30309 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
30310 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30312 <param name=
"dc" type=
"DC" default=
""/>
30315 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30316 <autodoc>base_OnLeftClick(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_OnLeftDoubleClick" type=
"" overloaded=
"no">
30325 <autodoc>base_OnLeftDoubleClick(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_OnRightClick" type=
"" overloaded=
"no">
30334 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30336 <param name=
"x" type=
"double" default=
""/>
30337 <param name=
"y" type=
"double" default=
""/>
30338 <param name=
"keys" type=
"int" default=
"0"/>
30339 <param name=
"attachment" type=
"int" default=
"0"/>
30342 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30343 <autodoc>base_OnSize(double x, double y)
</autodoc>
30345 <param name=
"x" type=
"double" default=
""/>
30346 <param name=
"y" type=
"double" default=
""/>
30349 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30350 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30351 bool display=True) -
> bool
</autodoc>
30353 <param name=
"dc" type=
"DC" default=
""/>
30354 <param name=
"x" type=
"double" default=
""/>
30355 <param name=
"y" type=
"double" default=
""/>
30356 <param name=
"old_x" type=
"double" default=
""/>
30357 <param name=
"old_y" type=
"double" default=
""/>
30358 <param name=
"display" type=
"bool" default=
"True"/>
30361 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30362 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30363 bool display=True)
</autodoc>
30365 <param name=
"dc" type=
"DC" default=
""/>
30366 <param name=
"x" type=
"double" default=
""/>
30367 <param name=
"y" type=
"double" default=
""/>
30368 <param name=
"old_x" type=
"double" default=
""/>
30369 <param name=
"old_y" type=
"double" default=
""/>
30370 <param name=
"display" type=
"bool" default=
"True"/>
30373 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30374 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30376 <param name=
"draw" type=
"bool" default=
""/>
30377 <param name=
"x" type=
"double" default=
""/>
30378 <param name=
"y" type=
"double" default=
""/>
30379 <param name=
"keys" type=
"int" default=
"0"/>
30380 <param name=
"attachment" type=
"int" default=
"0"/>
30383 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
30384 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30386 <param name=
"x" type=
"double" default=
""/>
30387 <param name=
"y" type=
"double" default=
""/>
30388 <param name=
"keys" type=
"int" default=
"0"/>
30389 <param name=
"attachment" type=
"int" default=
"0"/>
30392 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30393 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30395 <param name=
"x" type=
"double" default=
""/>
30396 <param name=
"y" type=
"double" default=
""/>
30397 <param name=
"keys" type=
"int" default=
"0"/>
30398 <param name=
"attachment" type=
"int" default=
"0"/>
30401 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30402 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30404 <param name=
"draw" type=
"bool" default=
""/>
30405 <param name=
"x" type=
"double" default=
""/>
30406 <param name=
"y" type=
"double" default=
""/>
30407 <param name=
"keys" type=
"int" default=
"0"/>
30408 <param name=
"attachment" type=
"int" default=
"0"/>
30411 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30412 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30414 <param name=
"x" type=
"double" default=
""/>
30415 <param name=
"y" type=
"double" default=
""/>
30416 <param name=
"keys" type=
"int" default=
"0"/>
30417 <param name=
"attachment" type=
"int" default=
"0"/>
30420 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30421 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30423 <param name=
"x" type=
"double" default=
""/>
30424 <param name=
"y" type=
"double" default=
""/>
30425 <param name=
"keys" type=
"int" default=
"0"/>
30426 <param name=
"attachment" type=
"int" default=
"0"/>
30429 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30430 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30432 <param name=
"dc" type=
"DC" default=
""/>
30433 <param name=
"x" type=
"double" default=
""/>
30434 <param name=
"y" type=
"double" default=
""/>
30435 <param name=
"w" type=
"double" default=
""/>
30436 <param name=
"h" type=
"double" default=
""/>
30439 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30440 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30442 <param name=
"dc" type=
"DC" default=
""/>
30445 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30446 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30448 <param name=
"dc" type=
"DC" default=
""/>
30451 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30452 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30454 <param name=
"dc" type=
"DC" default=
""/>
30455 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30458 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30459 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30460 int attachment=
0)
</autodoc>
30462 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30463 <param name=
"draw" type=
"bool" default=
""/>
30464 <param name=
"x" type=
"double" default=
""/>
30465 <param name=
"y" type=
"double" default=
""/>
30466 <param name=
"keys" type=
"int" default=
"0"/>
30467 <param name=
"attachment" type=
"int" default=
"0"/>
30470 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
30471 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30472 int attachment=
0)
</autodoc>
30474 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30475 <param name=
"x" type=
"double" default=
""/>
30476 <param name=
"y" type=
"double" default=
""/>
30477 <param name=
"keys" type=
"int" default=
"0"/>
30478 <param name=
"attachment" type=
"int" default=
"0"/>
30481 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
30482 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30483 int attachment=
0)
</autodoc>
30485 <param name=
"pt" type=
"wxPyControlPoint" default=
""/>
30486 <param name=
"x" type=
"double" default=
""/>
30487 <param name=
"y" type=
"double" default=
""/>
30488 <param name=
"keys" type=
"int" default=
"0"/>
30489 <param name=
"attachment" type=
"int" default=
"0"/>
30492 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
30493 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30495 <param name=
"w" type=
"double" default=
""/>
30496 <param name=
"h" type=
"double" default=
""/>
30499 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
30500 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30502 <param name=
"w" type=
"double" default=
""/>
30503 <param name=
"h" type=
"double" default=
""/>
30507 <class name=
"PyControlPoint" oldname=
"wxPyControlPoint" module=
"ogl">
30508 <baseclass name=
"PyRectangleShape"/>
30509 <constructor name=
"PyControlPoint" overloaded=
"no">
30510 <autodoc>__init__(PyShapeCanvas the_canvas=None, PyShape object=None,
30511 double size=
0.0, double the_xoffset=
0.0, double the_yoffset=
0.0,
30512 int the_type=
0) -
> PyControlPoint
</autodoc>
30514 <param name=
"the_canvas" type=
"wxPyShapeCanvas" default=
"NULL"/>
30515 <param name=
"object" type=
"PyShape" default=
"NULL"/>
30516 <param name=
"size" type=
"double" default=
"0.0"/>
30517 <param name=
"the_xoffset" type=
"double" default=
"0.0"/>
30518 <param name=
"the_yoffset" type=
"double" default=
"0.0"/>
30519 <param name=
"the_type" type=
"int" default=
"0"/>
30522 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30523 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30525 <param name=
"self" type=
"PyObject" default=
""/>
30526 <param name=
"_class" type=
"PyObject" default=
""/>
30529 <method name=
"SetCornerRadius" type=
"" overloaded=
"no">
30530 <autodoc>SetCornerRadius(double radius)
</autodoc>
30532 <param name=
"radius" type=
"double" default=
""/>
30535 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
30536 <autodoc>base_OnDelete()
</autodoc>
30538 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
30539 <autodoc>base_OnDraw(DC dc)
</autodoc>
30541 <param name=
"dc" type=
"DC" default=
""/>
30544 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
30545 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30547 <param name=
"dc" type=
"DC" default=
""/>
30550 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
30551 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30553 <param name=
"dc" type=
"DC" default=
""/>
30554 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30557 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
30558 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30560 <param name=
"dc" type=
"DC" default=
""/>
30563 <method name=
"base_OnErase" type=
"" overloaded=
"no">
30564 <autodoc>base_OnErase(DC dc)
</autodoc>
30566 <param name=
"dc" type=
"DC" default=
""/>
30569 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
30570 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30572 <param name=
"dc" type=
"DC" default=
""/>
30575 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
30576 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30578 <param name=
"dc" type=
"DC" default=
""/>
30581 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30582 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30584 <param name=
"x" type=
"double" default=
""/>
30585 <param name=
"y" type=
"double" default=
""/>
30586 <param name=
"keys" type=
"int" default=
"0"/>
30587 <param name=
"attachment" type=
"int" default=
"0"/>
30590 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
30591 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30593 <param name=
"x" type=
"double" default=
""/>
30594 <param name=
"y" type=
"double" default=
""/>
30595 <param name=
"keys" type=
"int" default=
"0"/>
30596 <param name=
"attachment" type=
"int" default=
"0"/>
30599 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
30600 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30602 <param name=
"x" type=
"double" default=
""/>
30603 <param name=
"y" type=
"double" default=
""/>
30604 <param name=
"keys" type=
"int" default=
"0"/>
30605 <param name=
"attachment" type=
"int" default=
"0"/>
30608 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30609 <autodoc>base_OnSize(double x, double y)
</autodoc>
30611 <param name=
"x" type=
"double" default=
""/>
30612 <param name=
"y" type=
"double" default=
""/>
30615 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30616 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30617 bool display=True) -
> bool
</autodoc>
30619 <param name=
"dc" type=
"DC" default=
""/>
30620 <param name=
"x" type=
"double" default=
""/>
30621 <param name=
"y" type=
"double" default=
""/>
30622 <param name=
"old_x" type=
"double" default=
""/>
30623 <param name=
"old_y" type=
"double" default=
""/>
30624 <param name=
"display" type=
"bool" default=
"True"/>
30627 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30628 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30629 bool display=True)
</autodoc>
30631 <param name=
"dc" type=
"DC" default=
""/>
30632 <param name=
"x" type=
"double" default=
""/>
30633 <param name=
"y" type=
"double" default=
""/>
30634 <param name=
"old_x" type=
"double" default=
""/>
30635 <param name=
"old_y" type=
"double" default=
""/>
30636 <param name=
"display" type=
"bool" default=
"True"/>
30639 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30640 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30642 <param name=
"draw" type=
"bool" default=
""/>
30643 <param name=
"x" type=
"double" default=
""/>
30644 <param name=
"y" type=
"double" default=
""/>
30645 <param name=
"keys" type=
"int" default=
"0"/>
30646 <param name=
"attachment" type=
"int" default=
"0"/>
30649 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
30650 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30652 <param name=
"x" type=
"double" default=
""/>
30653 <param name=
"y" type=
"double" default=
""/>
30654 <param name=
"keys" type=
"int" default=
"0"/>
30655 <param name=
"attachment" type=
"int" default=
"0"/>
30658 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30659 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30661 <param name=
"x" type=
"double" default=
""/>
30662 <param name=
"y" type=
"double" default=
""/>
30663 <param name=
"keys" type=
"int" default=
"0"/>
30664 <param name=
"attachment" type=
"int" default=
"0"/>
30667 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30668 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30670 <param name=
"draw" type=
"bool" default=
""/>
30671 <param name=
"x" type=
"double" default=
""/>
30672 <param name=
"y" type=
"double" default=
""/>
30673 <param name=
"keys" type=
"int" default=
"0"/>
30674 <param name=
"attachment" type=
"int" default=
"0"/>
30677 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30678 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30680 <param name=
"x" type=
"double" default=
""/>
30681 <param name=
"y" type=
"double" default=
""/>
30682 <param name=
"keys" type=
"int" default=
"0"/>
30683 <param name=
"attachment" type=
"int" default=
"0"/>
30686 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30687 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30689 <param name=
"x" type=
"double" default=
""/>
30690 <param name=
"y" type=
"double" default=
""/>
30691 <param name=
"keys" type=
"int" default=
"0"/>
30692 <param name=
"attachment" type=
"int" default=
"0"/>
30695 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30696 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30698 <param name=
"dc" type=
"DC" default=
""/>
30699 <param name=
"x" type=
"double" default=
""/>
30700 <param name=
"y" type=
"double" default=
""/>
30701 <param name=
"w" type=
"double" default=
""/>
30702 <param name=
"h" type=
"double" default=
""/>
30705 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30706 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30708 <param name=
"dc" type=
"DC" default=
""/>
30711 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30712 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30714 <param name=
"dc" type=
"DC" default=
""/>
30717 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30718 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30720 <param name=
"dc" type=
"DC" default=
""/>
30721 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30724 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30725 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30726 int attachment=
0)
</autodoc>
30728 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30729 <param name=
"draw" type=
"bool" default=
""/>
30730 <param name=
"x" type=
"double" default=
""/>
30731 <param name=
"y" type=
"double" default=
""/>
30732 <param name=
"keys" type=
"int" default=
"0"/>
30733 <param name=
"attachment" type=
"int" default=
"0"/>
30736 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
30737 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30738 int attachment=
0)
</autodoc>
30740 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30741 <param name=
"x" type=
"double" default=
""/>
30742 <param name=
"y" type=
"double" default=
""/>
30743 <param name=
"keys" type=
"int" default=
"0"/>
30744 <param name=
"attachment" type=
"int" default=
"0"/>
30747 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
30748 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
30749 int attachment=
0)
</autodoc>
30751 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30752 <param name=
"x" type=
"double" default=
""/>
30753 <param name=
"y" type=
"double" default=
""/>
30754 <param name=
"keys" type=
"int" default=
"0"/>
30755 <param name=
"attachment" type=
"int" default=
"0"/>
30758 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
30759 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
30761 <param name=
"w" type=
"double" default=
""/>
30762 <param name=
"h" type=
"double" default=
""/>
30765 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
30766 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
30768 <param name=
"w" type=
"double" default=
""/>
30769 <param name=
"h" type=
"double" default=
""/>
30773 <class name=
"PyBitmapShape" oldname=
"wxPyBitmapShape" module=
"ogl">
30774 <baseclass name=
"PyRectangleShape"/>
30775 <constructor name=
"PyBitmapShape" overloaded=
"no">
30776 <autodoc>__init__() -
> PyBitmapShape
</autodoc>
30778 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
30779 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
30781 <param name=
"self" type=
"PyObject" default=
""/>
30782 <param name=
"_class" type=
"PyObject" default=
""/>
30785 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
30786 <autodoc>GetBitmap() -
> Bitmap
</autodoc>
30788 <method name=
"GetFilename" type=
"String" overloaded=
"no">
30789 <autodoc>GetFilename() -
> String
</autodoc>
30791 <method name=
"SetBitmap" type=
"" overloaded=
"no">
30792 <autodoc>SetBitmap(Bitmap bitmap)
</autodoc>
30794 <param name=
"bitmap" type=
"Bitmap" default=
""/>
30797 <method name=
"SetFilename" type=
"" overloaded=
"no">
30798 <autodoc>SetFilename(String filename)
</autodoc>
30800 <param name=
"filename" type=
"String" default=
""/>
30803 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
30804 <autodoc>base_OnDelete()
</autodoc>
30806 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
30807 <autodoc>base_OnDraw(DC dc)
</autodoc>
30809 <param name=
"dc" type=
"DC" default=
""/>
30812 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
30813 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
30815 <param name=
"dc" type=
"DC" default=
""/>
30818 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
30819 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
30821 <param name=
"dc" type=
"DC" default=
""/>
30822 <param name=
"erase" type=
"bool" default=
"FALSE"/>
30825 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
30826 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
30828 <param name=
"dc" type=
"DC" default=
""/>
30831 <method name=
"base_OnErase" type=
"" overloaded=
"no">
30832 <autodoc>base_OnErase(DC dc)
</autodoc>
30834 <param name=
"dc" type=
"DC" default=
""/>
30837 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
30838 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
30840 <param name=
"dc" type=
"DC" default=
""/>
30843 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
30844 <autodoc>base_OnHighlight(DC dc)
</autodoc>
30846 <param name=
"dc" type=
"DC" default=
""/>
30849 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
30850 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30852 <param name=
"x" type=
"double" default=
""/>
30853 <param name=
"y" type=
"double" default=
""/>
30854 <param name=
"keys" type=
"int" default=
"0"/>
30855 <param name=
"attachment" type=
"int" default=
"0"/>
30858 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
30859 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30861 <param name=
"x" type=
"double" default=
""/>
30862 <param name=
"y" type=
"double" default=
""/>
30863 <param name=
"keys" type=
"int" default=
"0"/>
30864 <param name=
"attachment" type=
"int" default=
"0"/>
30867 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
30868 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30870 <param name=
"x" type=
"double" default=
""/>
30871 <param name=
"y" type=
"double" default=
""/>
30872 <param name=
"keys" type=
"int" default=
"0"/>
30873 <param name=
"attachment" type=
"int" default=
"0"/>
30876 <method name=
"base_OnSize" type=
"" overloaded=
"no">
30877 <autodoc>base_OnSize(double x, double y)
</autodoc>
30879 <param name=
"x" type=
"double" default=
""/>
30880 <param name=
"y" type=
"double" default=
""/>
30883 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
30884 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
30885 bool display=True) -
> bool
</autodoc>
30887 <param name=
"dc" type=
"DC" default=
""/>
30888 <param name=
"x" type=
"double" default=
""/>
30889 <param name=
"y" type=
"double" default=
""/>
30890 <param name=
"old_x" type=
"double" default=
""/>
30891 <param name=
"old_y" type=
"double" default=
""/>
30892 <param name=
"display" type=
"bool" default=
"True"/>
30895 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
30896 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
30897 bool display=True)
</autodoc>
30899 <param name=
"dc" type=
"DC" default=
""/>
30900 <param name=
"x" type=
"double" default=
""/>
30901 <param name=
"y" type=
"double" default=
""/>
30902 <param name=
"old_x" type=
"double" default=
""/>
30903 <param name=
"old_y" type=
"double" default=
""/>
30904 <param name=
"display" type=
"bool" default=
"True"/>
30907 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
30908 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30910 <param name=
"draw" type=
"bool" default=
""/>
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_OnBeginDragLeft" type=
"" overloaded=
"no">
30918 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30920 <param name=
"x" type=
"double" default=
""/>
30921 <param name=
"y" type=
"double" default=
""/>
30922 <param name=
"keys" type=
"int" default=
"0"/>
30923 <param name=
"attachment" type=
"int" default=
"0"/>
30926 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
30927 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30929 <param name=
"x" type=
"double" default=
""/>
30930 <param name=
"y" type=
"double" default=
""/>
30931 <param name=
"keys" type=
"int" default=
"0"/>
30932 <param name=
"attachment" type=
"int" default=
"0"/>
30935 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
30936 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30938 <param name=
"draw" type=
"bool" default=
""/>
30939 <param name=
"x" type=
"double" default=
""/>
30940 <param name=
"y" type=
"double" default=
""/>
30941 <param name=
"keys" type=
"int" default=
"0"/>
30942 <param name=
"attachment" type=
"int" default=
"0"/>
30945 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
30946 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30948 <param name=
"x" type=
"double" default=
""/>
30949 <param name=
"y" type=
"double" default=
""/>
30950 <param name=
"keys" type=
"int" default=
"0"/>
30951 <param name=
"attachment" type=
"int" default=
"0"/>
30954 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
30955 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
30957 <param name=
"x" type=
"double" default=
""/>
30958 <param name=
"y" type=
"double" default=
""/>
30959 <param name=
"keys" type=
"int" default=
"0"/>
30960 <param name=
"attachment" type=
"int" default=
"0"/>
30963 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
30964 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
30966 <param name=
"dc" type=
"DC" default=
""/>
30967 <param name=
"x" type=
"double" default=
""/>
30968 <param name=
"y" type=
"double" default=
""/>
30969 <param name=
"w" type=
"double" default=
""/>
30970 <param name=
"h" type=
"double" default=
""/>
30973 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
30974 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
30976 <param name=
"dc" type=
"DC" default=
""/>
30979 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
30980 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
30982 <param name=
"dc" type=
"DC" default=
""/>
30985 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
30986 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
30988 <param name=
"dc" type=
"DC" default=
""/>
30989 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
30992 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
30993 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
30994 int attachment=
0)
</autodoc>
30996 <param name=
"pt" type=
"PyControlPoint" default=
""/>
30997 <param name=
"draw" type=
"bool" default=
""/>
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_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31005 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31006 int attachment=
0)
</autodoc>
31008 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31009 <param name=
"x" type=
"double" default=
""/>
31010 <param name=
"y" type=
"double" default=
""/>
31011 <param name=
"keys" type=
"int" default=
"0"/>
31012 <param name=
"attachment" type=
"int" default=
"0"/>
31015 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31016 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31017 int attachment=
0)
</autodoc>
31019 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31020 <param name=
"x" type=
"double" default=
""/>
31021 <param name=
"y" type=
"double" default=
""/>
31022 <param name=
"keys" type=
"int" default=
"0"/>
31023 <param name=
"attachment" type=
"int" default=
"0"/>
31026 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31027 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31029 <param name=
"w" type=
"double" default=
""/>
31030 <param name=
"h" type=
"double" default=
""/>
31033 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31034 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31036 <param name=
"w" type=
"double" default=
""/>
31037 <param name=
"h" type=
"double" default=
""/>
31041 <class name=
"PyDrawnShape" oldname=
"wxPyDrawnShape" module=
"ogl">
31042 <baseclass name=
"PyRectangleShape"/>
31043 <constructor name=
"PyDrawnShape" overloaded=
"no">
31044 <autodoc>__init__() -
> PyDrawnShape
</autodoc>
31046 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
31047 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31049 <param name=
"self" type=
"PyObject" default=
""/>
31050 <param name=
"_class" type=
"PyObject" default=
""/>
31053 <method name=
"CalculateSize" type=
"" overloaded=
"no">
31054 <autodoc>CalculateSize()
</autodoc>
31056 <method name=
"DestroyClippingRect" type=
"" overloaded=
"no">
31057 <autodoc>DestroyClippingRect()
</autodoc>
31059 <method name=
"DrawArc" type=
"" overloaded=
"no">
31060 <autodoc>DrawArc(Point centrePoint, Point startPoint, Point endPoint)
</autodoc>
31062 <param name=
"centrePoint" type=
"Point" default=
""/>
31063 <param name=
"startPoint" type=
"Point" default=
""/>
31064 <param name=
"endPoint" type=
"Point" default=
""/>
31067 <method name=
"DrawAtAngle" type=
"" overloaded=
"no">
31068 <autodoc>DrawAtAngle(int angle)
</autodoc>
31070 <param name=
"angle" type=
"int" default=
""/>
31073 <method name=
"DrawEllipticArc" type=
"" overloaded=
"no">
31074 <autodoc>DrawEllipticArc(Rect rect, double startAngle, double endAngle)
</autodoc>
31076 <param name=
"rect" type=
"Rect" default=
""/>
31077 <param name=
"startAngle" type=
"double" default=
""/>
31078 <param name=
"endAngle" type=
"double" default=
""/>
31081 <method name=
"DrawLine" type=
"" overloaded=
"no">
31082 <autodoc>DrawLine(Point point1, Point point2)
</autodoc>
31084 <param name=
"point1" type=
"Point" default=
""/>
31085 <param name=
"point2" type=
"Point" default=
""/>
31088 <method name=
"DrawLines" type=
"" overloaded=
"no">
31089 <autodoc>DrawLines(int PCOUNT, Point points)
</autodoc>
31091 <param name=
"PCOUNT" type=
"int" default=
""/>
31092 <param name=
"points" type=
"Point" default=
""/>
31095 <method name=
"DrawPoint" type=
"" overloaded=
"no">
31096 <autodoc>DrawPoint(Point point)
</autodoc>
31098 <param name=
"point" type=
"Point" default=
""/>
31101 <method name=
"DrawPolygon" type=
"" overloaded=
"no">
31102 <autodoc>DrawPolygon(int PCOUNT, Point points, int flags=
0)
</autodoc>
31104 <param name=
"PCOUNT" type=
"int" default=
""/>
31105 <param name=
"points" type=
"Point" default=
""/>
31106 <param name=
"flags" type=
"int" default=
"0"/>
31109 <method name=
"DrawRectangle" type=
"" overloaded=
"no">
31110 <autodoc>DrawRectangle(Rect rect)
</autodoc>
31112 <param name=
"rect" type=
"Rect" default=
""/>
31115 <method name=
"DrawRoundedRectangle" type=
"" overloaded=
"no">
31116 <autodoc>DrawRoundedRectangle(Rect rect, double radius)
</autodoc>
31118 <param name=
"rect" type=
"Rect" default=
""/>
31119 <param name=
"radius" type=
"double" default=
""/>
31122 <method name=
"DrawSpline" type=
"" overloaded=
"no">
31123 <autodoc>DrawSpline(int PCOUNT, Point points)
</autodoc>
31125 <param name=
"PCOUNT" type=
"int" default=
""/>
31126 <param name=
"points" type=
"Point" default=
""/>
31129 <method name=
"DrawText" type=
"" overloaded=
"no">
31130 <autodoc>DrawText(String text, Point point)
</autodoc>
31132 <param name=
"text" type=
"String" default=
""/>
31133 <param name=
"point" type=
"Point" default=
""/>
31136 <method name=
"GetAngle" type=
"int" overloaded=
"no">
31137 <autodoc>GetAngle() -
> int
</autodoc>
31139 <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no">
31140 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
31142 <method name=
"GetRotation" type=
"double" overloaded=
"no">
31143 <autodoc>GetRotation() -
> double
</autodoc>
31145 <method name=
"LoadFromMetaFile" type=
"bool" overloaded=
"no">
31146 <autodoc>LoadFromMetaFile(String filename) -
> bool
</autodoc>
31148 <param name=
"filename" type=
"String" default=
""/>
31151 <method name=
"Rotate" type=
"" overloaded=
"no">
31152 <autodoc>Rotate(double x, double y, double theta)
</autodoc>
31154 <param name=
"x" type=
"double" default=
""/>
31155 <param name=
"y" type=
"double" default=
""/>
31156 <param name=
"theta" type=
"double" default=
""/>
31159 <method name=
"SetClippingRect" type=
"" overloaded=
"no">
31160 <autodoc>SetClippingRect(Rect rect)
</autodoc>
31162 <param name=
"rect" type=
"Rect" default=
""/>
31165 <method name=
"SetDrawnBackgroundColour" type=
"" overloaded=
"no">
31166 <autodoc>SetDrawnBackgroundColour(Colour colour)
</autodoc>
31168 <param name=
"colour" type=
"Colour" default=
""/>
31171 <method name=
"SetDrawnBackgroundMode" type=
"" overloaded=
"no">
31172 <autodoc>SetDrawnBackgroundMode(int mode)
</autodoc>
31174 <param name=
"mode" type=
"int" default=
""/>
31177 <method name=
"SetDrawnBrush" type=
"" overloaded=
"no">
31178 <autodoc>SetDrawnBrush(wxBrush pen, bool isOutline=FALSE)
</autodoc>
31180 <param name=
"pen" type=
"Brush" default=
""/>
31181 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
31184 <method name=
"SetDrawnFont" type=
"" overloaded=
"no">
31185 <autodoc>SetDrawnFont(Font font)
</autodoc>
31187 <param name=
"font" type=
"Font" default=
""/>
31190 <method name=
"SetDrawnPen" type=
"" overloaded=
"no">
31191 <autodoc>SetDrawnPen(wxPen pen, bool isOutline=FALSE)
</autodoc>
31193 <param name=
"pen" type=
"Pen" default=
""/>
31194 <param name=
"isOutline" type=
"bool" default=
"FALSE"/>
31197 <method name=
"SetDrawnTextColour" type=
"" overloaded=
"no">
31198 <autodoc>SetDrawnTextColour(Colour colour)
</autodoc>
31200 <param name=
"colour" type=
"Colour" default=
""/>
31203 <method name=
"Scale" type=
"" overloaded=
"no">
31204 <autodoc>Scale(double sx, double sy)
</autodoc>
31206 <param name=
"sx" type=
"double" default=
""/>
31207 <param name=
"sy" type=
"double" default=
""/>
31210 <method name=
"SetSaveToFile" type=
"" overloaded=
"no">
31211 <autodoc>SetSaveToFile(bool save)
</autodoc>
31213 <param name=
"save" type=
"bool" default=
""/>
31216 <method name=
"Translate" type=
"" overloaded=
"no">
31217 <autodoc>Translate(double x, double y)
</autodoc>
31219 <param name=
"x" type=
"double" default=
""/>
31220 <param name=
"y" type=
"double" default=
""/>
31223 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31224 <autodoc>base_OnDelete()
</autodoc>
31226 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31227 <autodoc>base_OnDraw(DC dc)
</autodoc>
31229 <param name=
"dc" type=
"DC" default=
""/>
31232 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31233 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31235 <param name=
"dc" type=
"DC" default=
""/>
31238 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31239 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31241 <param name=
"dc" type=
"DC" default=
""/>
31242 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31245 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31246 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31248 <param name=
"dc" type=
"DC" default=
""/>
31251 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31252 <autodoc>base_OnErase(DC dc)
</autodoc>
31254 <param name=
"dc" type=
"DC" default=
""/>
31257 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31258 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31260 <param name=
"dc" type=
"DC" default=
""/>
31263 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31264 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31266 <param name=
"dc" type=
"DC" default=
""/>
31269 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31270 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31272 <param name=
"x" type=
"double" default=
""/>
31273 <param name=
"y" type=
"double" default=
""/>
31274 <param name=
"keys" type=
"int" default=
"0"/>
31275 <param name=
"attachment" type=
"int" default=
"0"/>
31278 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31279 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31281 <param name=
"x" type=
"double" default=
""/>
31282 <param name=
"y" type=
"double" default=
""/>
31283 <param name=
"keys" type=
"int" default=
"0"/>
31284 <param name=
"attachment" type=
"int" default=
"0"/>
31287 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31288 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
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_OnSize" type=
"" overloaded=
"no">
31297 <autodoc>base_OnSize(double x, double y)
</autodoc>
31299 <param name=
"x" type=
"double" default=
""/>
31300 <param name=
"y" type=
"double" default=
""/>
31303 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31304 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31305 bool display=True) -
> bool
</autodoc>
31307 <param name=
"dc" type=
"DC" default=
""/>
31308 <param name=
"x" type=
"double" default=
""/>
31309 <param name=
"y" type=
"double" default=
""/>
31310 <param name=
"old_x" type=
"double" default=
""/>
31311 <param name=
"old_y" type=
"double" default=
""/>
31312 <param name=
"display" type=
"bool" default=
"True"/>
31315 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31316 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31317 bool display=True)
</autodoc>
31319 <param name=
"dc" type=
"DC" default=
""/>
31320 <param name=
"x" type=
"double" default=
""/>
31321 <param name=
"y" type=
"double" default=
""/>
31322 <param name=
"old_x" type=
"double" default=
""/>
31323 <param name=
"old_y" type=
"double" default=
""/>
31324 <param name=
"display" type=
"bool" default=
"True"/>
31327 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31328 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31330 <param name=
"draw" type=
"bool" default=
""/>
31331 <param name=
"x" type=
"double" default=
""/>
31332 <param name=
"y" type=
"double" default=
""/>
31333 <param name=
"keys" type=
"int" default=
"0"/>
31334 <param name=
"attachment" type=
"int" default=
"0"/>
31337 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31338 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31340 <param name=
"x" type=
"double" default=
""/>
31341 <param name=
"y" type=
"double" default=
""/>
31342 <param name=
"keys" type=
"int" default=
"0"/>
31343 <param name=
"attachment" type=
"int" default=
"0"/>
31346 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31347 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31349 <param name=
"x" type=
"double" default=
""/>
31350 <param name=
"y" type=
"double" default=
""/>
31351 <param name=
"keys" type=
"int" default=
"0"/>
31352 <param name=
"attachment" type=
"int" default=
"0"/>
31355 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31356 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31358 <param name=
"draw" type=
"bool" default=
""/>
31359 <param name=
"x" type=
"double" default=
""/>
31360 <param name=
"y" type=
"double" default=
""/>
31361 <param name=
"keys" type=
"int" default=
"0"/>
31362 <param name=
"attachment" type=
"int" default=
"0"/>
31365 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31366 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31368 <param name=
"x" type=
"double" default=
""/>
31369 <param name=
"y" type=
"double" default=
""/>
31370 <param name=
"keys" type=
"int" default=
"0"/>
31371 <param name=
"attachment" type=
"int" default=
"0"/>
31374 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31375 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31377 <param name=
"x" type=
"double" default=
""/>
31378 <param name=
"y" type=
"double" default=
""/>
31379 <param name=
"keys" type=
"int" default=
"0"/>
31380 <param name=
"attachment" type=
"int" default=
"0"/>
31383 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31384 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31386 <param name=
"dc" type=
"DC" default=
""/>
31387 <param name=
"x" type=
"double" default=
""/>
31388 <param name=
"y" type=
"double" default=
""/>
31389 <param name=
"w" type=
"double" default=
""/>
31390 <param name=
"h" type=
"double" default=
""/>
31393 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
31394 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31396 <param name=
"dc" type=
"DC" default=
""/>
31399 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
31400 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31402 <param name=
"dc" type=
"DC" default=
""/>
31405 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
31406 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31408 <param name=
"dc" type=
"DC" default=
""/>
31409 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31412 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
31413 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31414 int attachment=
0)
</autodoc>
31416 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31417 <param name=
"draw" type=
"bool" default=
""/>
31418 <param name=
"x" type=
"double" default=
""/>
31419 <param name=
"y" type=
"double" default=
""/>
31420 <param name=
"keys" type=
"int" default=
"0"/>
31421 <param name=
"attachment" type=
"int" default=
"0"/>
31424 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31425 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31426 int attachment=
0)
</autodoc>
31428 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31429 <param name=
"x" type=
"double" default=
""/>
31430 <param name=
"y" type=
"double" default=
""/>
31431 <param name=
"keys" type=
"int" default=
"0"/>
31432 <param name=
"attachment" type=
"int" default=
"0"/>
31435 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31436 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31437 int attachment=
0)
</autodoc>
31439 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31440 <param name=
"x" type=
"double" default=
""/>
31441 <param name=
"y" type=
"double" default=
""/>
31442 <param name=
"keys" type=
"int" default=
"0"/>
31443 <param name=
"attachment" type=
"int" default=
"0"/>
31446 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31447 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31449 <param name=
"w" type=
"double" default=
""/>
31450 <param name=
"h" type=
"double" default=
""/>
31453 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31454 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31456 <param name=
"w" type=
"double" default=
""/>
31457 <param name=
"h" type=
"double" default=
""/>
31461 <class name=
"OGLConstraint" oldname=
"wxOGLConstraint" module=
"ogl">
31462 <baseclass name=
"Object"/>
31463 <constructor name=
"OGLConstraint" overloaded=
"no">
31464 <autodoc>__init__(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
31466 <param name=
"type" type=
"int" default=
""/>
31467 <param name=
"constraining" type=
"PyShape" default=
""/>
31468 <param name=
"constrained" type=
"PyObject" default=
""/>
31471 <method name=
"Evaluate" type=
"bool" overloaded=
"no">
31472 <autodoc>Evaluate() -
> bool
</autodoc>
31474 <method name=
"SetSpacing" type=
"" overloaded=
"no">
31475 <autodoc>SetSpacing(double x, double y)
</autodoc>
31477 <param name=
"x" type=
"double" default=
""/>
31478 <param name=
"y" type=
"double" default=
""/>
31481 <method name=
"Equals" type=
"bool" overloaded=
"no">
31482 <autodoc>Equals(double a, double b) -
> bool
</autodoc>
31484 <param name=
"a" type=
"double" default=
""/>
31485 <param name=
"b" type=
"double" default=
""/>
31489 <class name=
"PyCompositeShape" oldname=
"wxPyCompositeShape" module=
"ogl">
31490 <baseclass name=
"PyRectangleShape"/>
31491 <constructor name=
"PyCompositeShape" overloaded=
"no">
31492 <autodoc>__init__() -
> PyCompositeShape
</autodoc>
31494 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
31495 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31497 <param name=
"self" type=
"PyObject" default=
""/>
31498 <param name=
"_class" type=
"PyObject" default=
""/>
31501 <method name=
"AddChild" type=
"" overloaded=
"no">
31502 <autodoc>AddChild(PyShape child, PyShape addAfter=None)
</autodoc>
31504 <param name=
"child" type=
"PyShape" default=
""/>
31505 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
31508 <method name=
"AddConstraint" type=
"OGLConstraint" overloaded=
"no">
31509 <autodoc>AddConstraint(OGLConstraint constraint) -
> OGLConstraint
</autodoc>
31511 <param name=
"constraint" type=
"OGLConstraint" default=
""/>
31514 <method name=
"AddConstrainedShapes" type=
"OGLConstraint" overloaded=
"no">
31515 <autodoc>AddConstrainedShapes(int type, PyShape constraining, PyObject constrained) -
> OGLConstraint
</autodoc>
31517 <param name=
"type" type=
"int" default=
""/>
31518 <param name=
"constraining" type=
"PyShape" default=
""/>
31519 <param name=
"constrained" type=
"PyObject" default=
""/>
31522 <method name=
"AddSimpleConstraint" type=
"OGLConstraint" overloaded=
"no">
31523 <autodoc>AddSimpleConstraint(int type, PyShape constraining, PyShape constrained) -
> OGLConstraint
</autodoc>
31525 <param name=
"type" type=
"int" default=
""/>
31526 <param name=
"constraining" type=
"PyShape" default=
""/>
31527 <param name=
"constrained" type=
"PyShape" default=
""/>
31530 <method name=
"CalculateSize" type=
"" overloaded=
"no">
31531 <autodoc>CalculateSize()
</autodoc>
31533 <method name=
"ContainsDivision" type=
"bool" overloaded=
"no">
31534 <autodoc>ContainsDivision(PyDivisionShape division) -
> bool
</autodoc>
31536 <param name=
"division" type=
"wxPyDivisionShape" default=
""/>
31539 <method name=
"DeleteConstraint" type=
"" overloaded=
"no">
31540 <autodoc>DeleteConstraint(OGLConstraint constraint)
</autodoc>
31542 <param name=
"constraint" type=
"OGLConstraint" default=
""/>
31545 <method name=
"DeleteConstraintsInvolvingChild" type=
"" overloaded=
"no">
31546 <autodoc>DeleteConstraintsInvolvingChild(PyShape child)
</autodoc>
31548 <param name=
"child" type=
"PyShape" default=
""/>
31551 <method name=
"FindContainerImage" type=
"PyShape" overloaded=
"no">
31552 <autodoc>FindContainerImage() -
> PyShape
</autodoc>
31554 <method name=
"GetConstraints" type=
"PyObject" overloaded=
"no">
31555 <autodoc>GetConstraints() -
> PyObject
</autodoc>
31557 <method name=
"GetDivisions" type=
"PyObject" overloaded=
"no">
31558 <autodoc>GetDivisions() -
> PyObject
</autodoc>
31560 <method name=
"MakeContainer" type=
"" overloaded=
"no">
31561 <autodoc>MakeContainer()
</autodoc>
31563 <method name=
"Recompute" type=
"bool" overloaded=
"no">
31564 <autodoc>Recompute() -
> bool
</autodoc>
31566 <method name=
"RemoveChild" type=
"" overloaded=
"no">
31567 <autodoc>RemoveChild(PyShape child)
</autodoc>
31569 <param name=
"child" type=
"PyShape" default=
""/>
31572 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31573 <autodoc>base_OnDelete()
</autodoc>
31575 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31576 <autodoc>base_OnDraw(DC dc)
</autodoc>
31578 <param name=
"dc" type=
"DC" default=
""/>
31581 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31582 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31584 <param name=
"dc" type=
"DC" default=
""/>
31587 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31588 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31590 <param name=
"dc" type=
"DC" default=
""/>
31591 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31594 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31595 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31597 <param name=
"dc" type=
"DC" default=
""/>
31600 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31601 <autodoc>base_OnErase(DC dc)
</autodoc>
31603 <param name=
"dc" type=
"DC" default=
""/>
31606 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31607 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31609 <param name=
"dc" type=
"DC" default=
""/>
31612 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31613 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31615 <param name=
"dc" type=
"DC" default=
""/>
31618 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31619 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31621 <param name=
"x" type=
"double" default=
""/>
31622 <param name=
"y" type=
"double" default=
""/>
31623 <param name=
"keys" type=
"int" default=
"0"/>
31624 <param name=
"attachment" type=
"int" default=
"0"/>
31627 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31628 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31630 <param name=
"x" type=
"double" default=
""/>
31631 <param name=
"y" type=
"double" default=
""/>
31632 <param name=
"keys" type=
"int" default=
"0"/>
31633 <param name=
"attachment" type=
"int" default=
"0"/>
31636 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31637 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31639 <param name=
"x" type=
"double" default=
""/>
31640 <param name=
"y" type=
"double" default=
""/>
31641 <param name=
"keys" type=
"int" default=
"0"/>
31642 <param name=
"attachment" type=
"int" default=
"0"/>
31645 <method name=
"base_OnSize" type=
"" overloaded=
"no">
31646 <autodoc>base_OnSize(double x, double y)
</autodoc>
31648 <param name=
"x" type=
"double" default=
""/>
31649 <param name=
"y" type=
"double" default=
""/>
31652 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31653 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31654 bool display=True) -
> bool
</autodoc>
31656 <param name=
"dc" type=
"DC" default=
""/>
31657 <param name=
"x" type=
"double" default=
""/>
31658 <param name=
"y" type=
"double" default=
""/>
31659 <param name=
"old_x" type=
"double" default=
""/>
31660 <param name=
"old_y" type=
"double" default=
""/>
31661 <param name=
"display" type=
"bool" default=
"True"/>
31664 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31665 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31666 bool display=True)
</autodoc>
31668 <param name=
"dc" type=
"DC" default=
""/>
31669 <param name=
"x" type=
"double" default=
""/>
31670 <param name=
"y" type=
"double" default=
""/>
31671 <param name=
"old_x" type=
"double" default=
""/>
31672 <param name=
"old_y" type=
"double" default=
""/>
31673 <param name=
"display" type=
"bool" default=
"True"/>
31676 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31677 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31679 <param name=
"draw" type=
"bool" default=
""/>
31680 <param name=
"x" type=
"double" default=
""/>
31681 <param name=
"y" type=
"double" default=
""/>
31682 <param name=
"keys" type=
"int" default=
"0"/>
31683 <param name=
"attachment" type=
"int" default=
"0"/>
31686 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31687 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31689 <param name=
"x" type=
"double" default=
""/>
31690 <param name=
"y" type=
"double" default=
""/>
31691 <param name=
"keys" type=
"int" default=
"0"/>
31692 <param name=
"attachment" type=
"int" default=
"0"/>
31695 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31696 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31698 <param name=
"x" type=
"double" default=
""/>
31699 <param name=
"y" type=
"double" default=
""/>
31700 <param name=
"keys" type=
"int" default=
"0"/>
31701 <param name=
"attachment" type=
"int" default=
"0"/>
31704 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31705 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31707 <param name=
"draw" type=
"bool" default=
""/>
31708 <param name=
"x" type=
"double" default=
""/>
31709 <param name=
"y" type=
"double" default=
""/>
31710 <param name=
"keys" type=
"int" default=
"0"/>
31711 <param name=
"attachment" type=
"int" default=
"0"/>
31714 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31715 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31717 <param name=
"x" type=
"double" default=
""/>
31718 <param name=
"y" type=
"double" default=
""/>
31719 <param name=
"keys" type=
"int" default=
"0"/>
31720 <param name=
"attachment" type=
"int" default=
"0"/>
31723 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31724 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31726 <param name=
"x" type=
"double" default=
""/>
31727 <param name=
"y" type=
"double" default=
""/>
31728 <param name=
"keys" type=
"int" default=
"0"/>
31729 <param name=
"attachment" type=
"int" default=
"0"/>
31732 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31733 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31735 <param name=
"dc" type=
"DC" default=
""/>
31736 <param name=
"x" type=
"double" default=
""/>
31737 <param name=
"y" type=
"double" default=
""/>
31738 <param name=
"w" type=
"double" default=
""/>
31739 <param name=
"h" type=
"double" default=
""/>
31742 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
31743 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
31745 <param name=
"dc" type=
"DC" default=
""/>
31748 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
31749 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
31751 <param name=
"dc" type=
"DC" default=
""/>
31754 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
31755 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
31757 <param name=
"dc" type=
"DC" default=
""/>
31758 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
31761 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
31762 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
31763 int attachment=
0)
</autodoc>
31765 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31766 <param name=
"draw" type=
"bool" default=
""/>
31767 <param name=
"x" type=
"double" default=
""/>
31768 <param name=
"y" type=
"double" default=
""/>
31769 <param name=
"keys" type=
"int" default=
"0"/>
31770 <param name=
"attachment" type=
"int" default=
"0"/>
31773 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
31774 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31775 int attachment=
0)
</autodoc>
31777 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31778 <param name=
"x" type=
"double" default=
""/>
31779 <param name=
"y" type=
"double" default=
""/>
31780 <param name=
"keys" type=
"int" default=
"0"/>
31781 <param name=
"attachment" type=
"int" default=
"0"/>
31784 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
31785 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
31786 int attachment=
0)
</autodoc>
31788 <param name=
"pt" type=
"PyControlPoint" default=
""/>
31789 <param name=
"x" type=
"double" default=
""/>
31790 <param name=
"y" type=
"double" default=
""/>
31791 <param name=
"keys" type=
"int" default=
"0"/>
31792 <param name=
"attachment" type=
"int" default=
"0"/>
31795 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
31796 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
31798 <param name=
"w" type=
"double" default=
""/>
31799 <param name=
"h" type=
"double" default=
""/>
31802 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
31803 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
31805 <param name=
"w" type=
"double" default=
""/>
31806 <param name=
"h" type=
"double" default=
""/>
31810 <class name=
"PyDividedShape" oldname=
"wxPyDividedShape" module=
"ogl">
31811 <baseclass name=
"PyRectangleShape"/>
31812 <constructor name=
"PyDividedShape" overloaded=
"no">
31813 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyDividedShape
</autodoc>
31815 <param name=
"width" type=
"double" default=
"0.0"/>
31816 <param name=
"height" type=
"double" default=
"0.0"/>
31819 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
31820 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
31822 <param name=
"self" type=
"PyObject" default=
""/>
31823 <param name=
"_class" type=
"PyObject" default=
""/>
31826 <method name=
"EditRegions" type=
"" overloaded=
"no">
31827 <autodoc>EditRegions()
</autodoc>
31829 <method name=
"SetRegionSizes" type=
"" overloaded=
"no">
31830 <autodoc>SetRegionSizes()
</autodoc>
31832 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
31833 <autodoc>base_OnDelete()
</autodoc>
31835 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
31836 <autodoc>base_OnDraw(DC dc)
</autodoc>
31838 <param name=
"dc" type=
"DC" default=
""/>
31841 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
31842 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
31844 <param name=
"dc" type=
"DC" default=
""/>
31847 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
31848 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
31850 <param name=
"dc" type=
"DC" default=
""/>
31851 <param name=
"erase" type=
"bool" default=
"FALSE"/>
31854 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
31855 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
31857 <param name=
"dc" type=
"DC" default=
""/>
31860 <method name=
"base_OnErase" type=
"" overloaded=
"no">
31861 <autodoc>base_OnErase(DC dc)
</autodoc>
31863 <param name=
"dc" type=
"DC" default=
""/>
31866 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
31867 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
31869 <param name=
"dc" type=
"DC" default=
""/>
31872 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
31873 <autodoc>base_OnHighlight(DC dc)
</autodoc>
31875 <param name=
"dc" type=
"DC" default=
""/>
31878 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
31879 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31881 <param name=
"x" type=
"double" default=
""/>
31882 <param name=
"y" type=
"double" default=
""/>
31883 <param name=
"keys" type=
"int" default=
"0"/>
31884 <param name=
"attachment" type=
"int" default=
"0"/>
31887 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
31888 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31890 <param name=
"x" type=
"double" default=
""/>
31891 <param name=
"y" type=
"double" default=
""/>
31892 <param name=
"keys" type=
"int" default=
"0"/>
31893 <param name=
"attachment" type=
"int" default=
"0"/>
31896 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
31897 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31899 <param name=
"x" type=
"double" default=
""/>
31900 <param name=
"y" type=
"double" default=
""/>
31901 <param name=
"keys" type=
"int" default=
"0"/>
31902 <param name=
"attachment" type=
"int" default=
"0"/>
31905 <method name=
"base_OnSize" type=
"" overloaded=
"no">
31906 <autodoc>base_OnSize(double x, double y)
</autodoc>
31908 <param name=
"x" type=
"double" default=
""/>
31909 <param name=
"y" type=
"double" default=
""/>
31912 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
31913 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
31914 bool display=True) -
> bool
</autodoc>
31916 <param name=
"dc" type=
"DC" default=
""/>
31917 <param name=
"x" type=
"double" default=
""/>
31918 <param name=
"y" type=
"double" default=
""/>
31919 <param name=
"old_x" type=
"double" default=
""/>
31920 <param name=
"old_y" type=
"double" default=
""/>
31921 <param name=
"display" type=
"bool" default=
"True"/>
31924 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
31925 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
31926 bool display=True)
</autodoc>
31928 <param name=
"dc" type=
"DC" default=
""/>
31929 <param name=
"x" type=
"double" default=
""/>
31930 <param name=
"y" type=
"double" default=
""/>
31931 <param name=
"old_x" type=
"double" default=
""/>
31932 <param name=
"old_y" type=
"double" default=
""/>
31933 <param name=
"display" type=
"bool" default=
"True"/>
31936 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
31937 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31939 <param name=
"draw" type=
"bool" default=
""/>
31940 <param name=
"x" type=
"double" default=
""/>
31941 <param name=
"y" type=
"double" default=
""/>
31942 <param name=
"keys" type=
"int" default=
"0"/>
31943 <param name=
"attachment" type=
"int" default=
"0"/>
31946 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
31947 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31949 <param name=
"x" type=
"double" default=
""/>
31950 <param name=
"y" type=
"double" default=
""/>
31951 <param name=
"keys" type=
"int" default=
"0"/>
31952 <param name=
"attachment" type=
"int" default=
"0"/>
31955 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
31956 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31958 <param name=
"x" type=
"double" default=
""/>
31959 <param name=
"y" type=
"double" default=
""/>
31960 <param name=
"keys" type=
"int" default=
"0"/>
31961 <param name=
"attachment" type=
"int" default=
"0"/>
31964 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
31965 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31967 <param name=
"draw" type=
"bool" default=
""/>
31968 <param name=
"x" type=
"double" default=
""/>
31969 <param name=
"y" type=
"double" default=
""/>
31970 <param name=
"keys" type=
"int" default=
"0"/>
31971 <param name=
"attachment" type=
"int" default=
"0"/>
31974 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
31975 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31977 <param name=
"x" type=
"double" default=
""/>
31978 <param name=
"y" type=
"double" default=
""/>
31979 <param name=
"keys" type=
"int" default=
"0"/>
31980 <param name=
"attachment" type=
"int" default=
"0"/>
31983 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
31984 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
31986 <param name=
"x" type=
"double" default=
""/>
31987 <param name=
"y" type=
"double" default=
""/>
31988 <param name=
"keys" type=
"int" default=
"0"/>
31989 <param name=
"attachment" type=
"int" default=
"0"/>
31992 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
31993 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
31995 <param name=
"dc" type=
"DC" default=
""/>
31996 <param name=
"x" type=
"double" default=
""/>
31997 <param name=
"y" type=
"double" default=
""/>
31998 <param name=
"w" type=
"double" default=
""/>
31999 <param name=
"h" type=
"double" default=
""/>
32002 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32003 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32005 <param name=
"dc" type=
"DC" default=
""/>
32008 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32009 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32011 <param name=
"dc" type=
"DC" default=
""/>
32014 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32015 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32017 <param name=
"dc" type=
"DC" default=
""/>
32018 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32021 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32022 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32023 int attachment=
0)
</autodoc>
32025 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32026 <param name=
"draw" type=
"bool" default=
""/>
32027 <param name=
"x" type=
"double" default=
""/>
32028 <param name=
"y" type=
"double" default=
""/>
32029 <param name=
"keys" type=
"int" default=
"0"/>
32030 <param name=
"attachment" type=
"int" default=
"0"/>
32033 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32034 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32035 int attachment=
0)
</autodoc>
32037 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32038 <param name=
"x" type=
"double" default=
""/>
32039 <param name=
"y" type=
"double" default=
""/>
32040 <param name=
"keys" type=
"int" default=
"0"/>
32041 <param name=
"attachment" type=
"int" default=
"0"/>
32044 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32045 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32046 int attachment=
0)
</autodoc>
32048 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32049 <param name=
"x" type=
"double" default=
""/>
32050 <param name=
"y" type=
"double" default=
""/>
32051 <param name=
"keys" type=
"int" default=
"0"/>
32052 <param name=
"attachment" type=
"int" default=
"0"/>
32055 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32056 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32058 <param name=
"w" type=
"double" default=
""/>
32059 <param name=
"h" type=
"double" default=
""/>
32062 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32063 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32065 <param name=
"w" type=
"double" default=
""/>
32066 <param name=
"h" type=
"double" default=
""/>
32070 <class name=
"PyDivisionShape" oldname=
"wxPyDivisionShape" module=
"ogl">
32071 <baseclass name=
"PyCompositeShape"/>
32072 <constructor name=
"PyDivisionShape" overloaded=
"no">
32073 <autodoc>__init__() -
> PyDivisionShape
</autodoc>
32075 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32076 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32078 <param name=
"self" type=
"PyObject" default=
""/>
32079 <param name=
"_class" type=
"PyObject" default=
""/>
32082 <method name=
"AdjustBottom" type=
"" overloaded=
"no">
32083 <autodoc>AdjustBottom(double bottom, bool test)
</autodoc>
32085 <param name=
"bottom" type=
"double" default=
""/>
32086 <param name=
"test" type=
"bool" default=
""/>
32089 <method name=
"AdjustLeft" type=
"" overloaded=
"no">
32090 <autodoc>AdjustLeft(double left, bool test)
</autodoc>
32092 <param name=
"left" type=
"double" default=
""/>
32093 <param name=
"test" type=
"bool" default=
""/>
32096 <method name=
"AdjustRight" type=
"" overloaded=
"no">
32097 <autodoc>AdjustRight(double right, bool test)
</autodoc>
32099 <param name=
"right" type=
"double" default=
""/>
32100 <param name=
"test" type=
"bool" default=
""/>
32103 <method name=
"AdjustTop" type=
"" overloaded=
"no">
32104 <autodoc>AdjustTop(double top, bool test)
</autodoc>
32106 <param name=
"top" type=
"double" default=
""/>
32107 <param name=
"test" type=
"bool" default=
""/>
32110 <method name=
"Divide" type=
"" overloaded=
"no">
32111 <autodoc>Divide(int direction)
</autodoc>
32113 <param name=
"direction" type=
"int" default=
""/>
32116 <method name=
"EditEdge" type=
"" overloaded=
"no">
32117 <autodoc>EditEdge(int side)
</autodoc>
32119 <param name=
"side" type=
"int" default=
""/>
32122 <method name=
"GetBottomSide" type=
"PyDivisionShape" overloaded=
"no">
32123 <autodoc>GetBottomSide() -
> PyDivisionShape
</autodoc>
32125 <method name=
"GetHandleSide" type=
"int" overloaded=
"no">
32126 <autodoc>GetHandleSide() -
> int
</autodoc>
32128 <method name=
"GetLeftSide" type=
"PyDivisionShape" overloaded=
"no">
32129 <autodoc>GetLeftSide() -
> PyDivisionShape
</autodoc>
32131 <method name=
"GetLeftSideColour" type=
"String" overloaded=
"no">
32132 <autodoc>GetLeftSideColour() -
> String
</autodoc>
32134 <method name=
"GetLeftSidePen" type=
"Pen" overloaded=
"no">
32135 <autodoc>GetLeftSidePen() -
> wxPen
</autodoc>
32137 <method name=
"GetRightSide" type=
"PyDivisionShape" overloaded=
"no">
32138 <autodoc>GetRightSide() -
> PyDivisionShape
</autodoc>
32140 <method name=
"GetTopSide" type=
"PyDivisionShape" overloaded=
"no">
32141 <autodoc>GetTopSide() -
> PyDivisionShape
</autodoc>
32143 <method name=
"GetTopSidePen" type=
"Pen" overloaded=
"no">
32144 <autodoc>GetTopSidePen() -
> wxPen
</autodoc>
32146 <method name=
"ResizeAdjoining" type=
"" overloaded=
"no">
32147 <autodoc>ResizeAdjoining(int side, double newPos, bool test)
</autodoc>
32149 <param name=
"side" type=
"int" default=
""/>
32150 <param name=
"newPos" type=
"double" default=
""/>
32151 <param name=
"test" type=
"bool" default=
""/>
32154 <method name=
"PopupMenu" type=
"" overloaded=
"no">
32155 <autodoc>PopupMenu(double x, double y)
</autodoc>
32157 <param name=
"x" type=
"double" default=
""/>
32158 <param name=
"y" type=
"double" default=
""/>
32161 <method name=
"SetBottomSide" type=
"" overloaded=
"no">
32162 <autodoc>SetBottomSide(PyDivisionShape shape)
</autodoc>
32164 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32167 <method name=
"SetHandleSide" type=
"" overloaded=
"no">
32168 <autodoc>SetHandleSide(int side)
</autodoc>
32170 <param name=
"side" type=
"int" default=
""/>
32173 <method name=
"SetLeftSide" type=
"" overloaded=
"no">
32174 <autodoc>SetLeftSide(PyDivisionShape shape)
</autodoc>
32176 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32179 <method name=
"SetLeftSideColour" type=
"" overloaded=
"no">
32180 <autodoc>SetLeftSideColour(String colour)
</autodoc>
32182 <param name=
"colour" type=
"String" default=
""/>
32185 <method name=
"SetLeftSidePen" type=
"" overloaded=
"no">
32186 <autodoc>SetLeftSidePen(wxPen pen)
</autodoc>
32188 <param name=
"pen" type=
"Pen" default=
""/>
32191 <method name=
"SetRightSide" type=
"" overloaded=
"no">
32192 <autodoc>SetRightSide(PyDivisionShape shape)
</autodoc>
32194 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32197 <method name=
"SetTopSide" type=
"" overloaded=
"no">
32198 <autodoc>SetTopSide(PyDivisionShape shape)
</autodoc>
32200 <param name=
"shape" type=
"PyDivisionShape" default=
""/>
32203 <method name=
"SetTopSideColour" type=
"" overloaded=
"no">
32204 <autodoc>SetTopSideColour(String colour)
</autodoc>
32206 <param name=
"colour" type=
"String" default=
""/>
32209 <method name=
"SetTopSidePen" type=
"" overloaded=
"no">
32210 <autodoc>SetTopSidePen(wxPen pen)
</autodoc>
32212 <param name=
"pen" type=
"Pen" default=
""/>
32215 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
32216 <autodoc>base_OnDelete()
</autodoc>
32218 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32219 <autodoc>base_OnDraw(DC dc)
</autodoc>
32221 <param name=
"dc" type=
"DC" default=
""/>
32224 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32225 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32227 <param name=
"dc" type=
"DC" default=
""/>
32230 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32231 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32233 <param name=
"dc" type=
"DC" default=
""/>
32234 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32237 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32238 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32240 <param name=
"dc" type=
"DC" default=
""/>
32243 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32244 <autodoc>base_OnErase(DC dc)
</autodoc>
32246 <param name=
"dc" type=
"DC" default=
""/>
32249 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32250 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32252 <param name=
"dc" type=
"DC" default=
""/>
32255 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32256 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32258 <param name=
"dc" type=
"DC" default=
""/>
32261 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32262 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32264 <param name=
"x" type=
"double" default=
""/>
32265 <param name=
"y" type=
"double" default=
""/>
32266 <param name=
"keys" type=
"int" default=
"0"/>
32267 <param name=
"attachment" type=
"int" default=
"0"/>
32270 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32271 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32273 <param name=
"x" type=
"double" default=
""/>
32274 <param name=
"y" type=
"double" default=
""/>
32275 <param name=
"keys" type=
"int" default=
"0"/>
32276 <param name=
"attachment" type=
"int" default=
"0"/>
32279 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32280 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32282 <param name=
"x" type=
"double" default=
""/>
32283 <param name=
"y" type=
"double" default=
""/>
32284 <param name=
"keys" type=
"int" default=
"0"/>
32285 <param name=
"attachment" type=
"int" default=
"0"/>
32288 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32289 <autodoc>base_OnSize(double x, double y)
</autodoc>
32291 <param name=
"x" type=
"double" default=
""/>
32292 <param name=
"y" type=
"double" default=
""/>
32295 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32296 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32297 bool display=True) -
> bool
</autodoc>
32299 <param name=
"dc" type=
"DC" default=
""/>
32300 <param name=
"x" type=
"double" default=
""/>
32301 <param name=
"y" type=
"double" default=
""/>
32302 <param name=
"old_x" type=
"double" default=
""/>
32303 <param name=
"old_y" type=
"double" default=
""/>
32304 <param name=
"display" type=
"bool" default=
"True"/>
32307 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32308 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32309 bool display=True)
</autodoc>
32311 <param name=
"dc" type=
"DC" default=
""/>
32312 <param name=
"x" type=
"double" default=
""/>
32313 <param name=
"y" type=
"double" default=
""/>
32314 <param name=
"old_x" type=
"double" default=
""/>
32315 <param name=
"old_y" type=
"double" default=
""/>
32316 <param name=
"display" type=
"bool" default=
"True"/>
32319 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32320 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32322 <param name=
"draw" type=
"bool" default=
""/>
32323 <param name=
"x" type=
"double" default=
""/>
32324 <param name=
"y" type=
"double" default=
""/>
32325 <param name=
"keys" type=
"int" default=
"0"/>
32326 <param name=
"attachment" type=
"int" default=
"0"/>
32329 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32330 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32332 <param name=
"x" type=
"double" default=
""/>
32333 <param name=
"y" type=
"double" default=
""/>
32334 <param name=
"keys" type=
"int" default=
"0"/>
32335 <param name=
"attachment" type=
"int" default=
"0"/>
32338 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32339 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32341 <param name=
"x" type=
"double" default=
""/>
32342 <param name=
"y" type=
"double" default=
""/>
32343 <param name=
"keys" type=
"int" default=
"0"/>
32344 <param name=
"attachment" type=
"int" default=
"0"/>
32347 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32348 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32350 <param name=
"draw" type=
"bool" default=
""/>
32351 <param name=
"x" type=
"double" default=
""/>
32352 <param name=
"y" type=
"double" default=
""/>
32353 <param name=
"keys" type=
"int" default=
"0"/>
32354 <param name=
"attachment" type=
"int" default=
"0"/>
32357 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32358 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32360 <param name=
"x" type=
"double" default=
""/>
32361 <param name=
"y" type=
"double" default=
""/>
32362 <param name=
"keys" type=
"int" default=
"0"/>
32363 <param name=
"attachment" type=
"int" default=
"0"/>
32366 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
32367 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32369 <param name=
"x" type=
"double" default=
""/>
32370 <param name=
"y" type=
"double" default=
""/>
32371 <param name=
"keys" type=
"int" default=
"0"/>
32372 <param name=
"attachment" type=
"int" default=
"0"/>
32375 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
32376 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32378 <param name=
"dc" type=
"DC" default=
""/>
32379 <param name=
"x" type=
"double" default=
""/>
32380 <param name=
"y" type=
"double" default=
""/>
32381 <param name=
"w" type=
"double" default=
""/>
32382 <param name=
"h" type=
"double" default=
""/>
32385 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32386 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32388 <param name=
"dc" type=
"DC" default=
""/>
32391 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32392 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32394 <param name=
"dc" type=
"DC" default=
""/>
32397 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32398 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32400 <param name=
"dc" type=
"DC" default=
""/>
32401 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32404 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32405 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32406 int attachment=
0)
</autodoc>
32408 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32409 <param name=
"draw" type=
"bool" default=
""/>
32410 <param name=
"x" type=
"double" default=
""/>
32411 <param name=
"y" type=
"double" default=
""/>
32412 <param name=
"keys" type=
"int" default=
"0"/>
32413 <param name=
"attachment" type=
"int" default=
"0"/>
32416 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32417 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32418 int attachment=
0)
</autodoc>
32420 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32421 <param name=
"x" type=
"double" default=
""/>
32422 <param name=
"y" type=
"double" default=
""/>
32423 <param name=
"keys" type=
"int" default=
"0"/>
32424 <param name=
"attachment" type=
"int" default=
"0"/>
32427 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32428 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32429 int attachment=
0)
</autodoc>
32431 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32432 <param name=
"x" type=
"double" default=
""/>
32433 <param name=
"y" type=
"double" default=
""/>
32434 <param name=
"keys" type=
"int" default=
"0"/>
32435 <param name=
"attachment" type=
"int" default=
"0"/>
32438 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32439 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32441 <param name=
"w" type=
"double" default=
""/>
32442 <param name=
"h" type=
"double" default=
""/>
32445 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32446 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32448 <param name=
"w" type=
"double" default=
""/>
32449 <param name=
"h" type=
"double" default=
""/>
32453 <class name=
"PyEllipseShape" oldname=
"wxPyEllipseShape" module=
"ogl">
32454 <baseclass name=
"PyShape"/>
32455 <constructor name=
"PyEllipseShape" overloaded=
"no">
32456 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyEllipseShape
</autodoc>
32458 <param name=
"width" type=
"double" default=
"0.0"/>
32459 <param name=
"height" type=
"double" default=
"0.0"/>
32462 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32463 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32465 <param name=
"self" type=
"PyObject" default=
""/>
32466 <param name=
"_class" type=
"PyObject" default=
""/>
32469 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32470 <autodoc>base_OnDraw(DC dc)
</autodoc>
32472 <param name=
"dc" type=
"DC" default=
""/>
32475 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32476 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32478 <param name=
"dc" type=
"DC" default=
""/>
32481 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32482 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32484 <param name=
"dc" type=
"DC" default=
""/>
32485 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32488 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32489 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32491 <param name=
"dc" type=
"DC" default=
""/>
32494 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32495 <autodoc>base_OnErase(DC dc)
</autodoc>
32497 <param name=
"dc" type=
"DC" default=
""/>
32500 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32501 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32503 <param name=
"dc" type=
"DC" default=
""/>
32506 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32507 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32509 <param name=
"dc" type=
"DC" default=
""/>
32512 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32513 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32515 <param name=
"x" type=
"double" default=
""/>
32516 <param name=
"y" type=
"double" default=
""/>
32517 <param name=
"keys" type=
"int" default=
"0"/>
32518 <param name=
"attachment" type=
"int" default=
"0"/>
32521 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32522 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32524 <param name=
"x" type=
"double" default=
""/>
32525 <param name=
"y" type=
"double" default=
""/>
32526 <param name=
"keys" type=
"int" default=
"0"/>
32527 <param name=
"attachment" type=
"int" default=
"0"/>
32530 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32531 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32533 <param name=
"x" type=
"double" default=
""/>
32534 <param name=
"y" type=
"double" default=
""/>
32535 <param name=
"keys" type=
"int" default=
"0"/>
32536 <param name=
"attachment" type=
"int" default=
"0"/>
32539 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32540 <autodoc>base_OnSize(double x, double y)
</autodoc>
32542 <param name=
"x" type=
"double" default=
""/>
32543 <param name=
"y" type=
"double" default=
""/>
32546 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32547 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32548 bool display=True) -
> bool
</autodoc>
32550 <param name=
"dc" type=
"DC" default=
""/>
32551 <param name=
"x" type=
"double" default=
""/>
32552 <param name=
"y" type=
"double" default=
""/>
32553 <param name=
"old_x" type=
"double" default=
""/>
32554 <param name=
"old_y" type=
"double" default=
""/>
32555 <param name=
"display" type=
"bool" default=
"True"/>
32558 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32559 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32560 bool display=True)
</autodoc>
32562 <param name=
"dc" type=
"DC" default=
""/>
32563 <param name=
"x" type=
"double" default=
""/>
32564 <param name=
"y" type=
"double" default=
""/>
32565 <param name=
"old_x" type=
"double" default=
""/>
32566 <param name=
"old_y" type=
"double" default=
""/>
32567 <param name=
"display" type=
"bool" default=
"True"/>
32570 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32571 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32573 <param name=
"draw" type=
"bool" default=
""/>
32574 <param name=
"x" type=
"double" default=
""/>
32575 <param name=
"y" type=
"double" default=
""/>
32576 <param name=
"keys" type=
"int" default=
"0"/>
32577 <param name=
"attachment" type=
"int" default=
"0"/>
32580 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32581 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32583 <param name=
"x" type=
"double" default=
""/>
32584 <param name=
"y" type=
"double" default=
""/>
32585 <param name=
"keys" type=
"int" default=
"0"/>
32586 <param name=
"attachment" type=
"int" default=
"0"/>
32589 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32590 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32592 <param name=
"x" type=
"double" default=
""/>
32593 <param name=
"y" type=
"double" default=
""/>
32594 <param name=
"keys" type=
"int" default=
"0"/>
32595 <param name=
"attachment" type=
"int" default=
"0"/>
32598 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32599 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32601 <param name=
"draw" type=
"bool" default=
""/>
32602 <param name=
"x" type=
"double" default=
""/>
32603 <param name=
"y" type=
"double" default=
""/>
32604 <param name=
"keys" type=
"int" default=
"0"/>
32605 <param name=
"attachment" type=
"int" default=
"0"/>
32608 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32609 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
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_OnEndDragRight" type=
"" overloaded=
"no">
32618 <autodoc>base_OnEndDragRight(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_OnDrawOutline" type=
"" overloaded=
"no">
32627 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32629 <param name=
"dc" type=
"DC" default=
""/>
32630 <param name=
"x" type=
"double" default=
""/>
32631 <param name=
"y" type=
"double" default=
""/>
32632 <param name=
"w" type=
"double" default=
""/>
32633 <param name=
"h" type=
"double" default=
""/>
32636 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32637 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32639 <param name=
"dc" type=
"DC" default=
""/>
32642 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32643 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32645 <param name=
"dc" type=
"DC" default=
""/>
32648 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32649 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32651 <param name=
"dc" type=
"DC" default=
""/>
32652 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32655 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32656 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32657 int attachment=
0)
</autodoc>
32659 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32660 <param name=
"draw" type=
"bool" default=
""/>
32661 <param name=
"x" type=
"double" default=
""/>
32662 <param name=
"y" type=
"double" default=
""/>
32663 <param name=
"keys" type=
"int" default=
"0"/>
32664 <param name=
"attachment" type=
"int" default=
"0"/>
32667 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32668 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32669 int attachment=
0)
</autodoc>
32671 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32672 <param name=
"x" type=
"double" default=
""/>
32673 <param name=
"y" type=
"double" default=
""/>
32674 <param name=
"keys" type=
"int" default=
"0"/>
32675 <param name=
"attachment" type=
"int" default=
"0"/>
32678 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32679 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32680 int attachment=
0)
</autodoc>
32682 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32683 <param name=
"x" type=
"double" default=
""/>
32684 <param name=
"y" type=
"double" default=
""/>
32685 <param name=
"keys" type=
"int" default=
"0"/>
32686 <param name=
"attachment" type=
"int" default=
"0"/>
32689 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32690 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32692 <param name=
"w" type=
"double" default=
""/>
32693 <param name=
"h" type=
"double" default=
""/>
32696 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32697 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32699 <param name=
"w" type=
"double" default=
""/>
32700 <param name=
"h" type=
"double" default=
""/>
32704 <class name=
"PyCircleShape" oldname=
"wxPyCircleShape" module=
"ogl">
32705 <baseclass name=
"PyEllipseShape"/>
32706 <constructor name=
"PyCircleShape" overloaded=
"no">
32707 <autodoc>__init__(double width=
0.0) -
> PyCircleShape
</autodoc>
32709 <param name=
"width" type=
"double" default=
"0.0"/>
32712 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
32713 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
32715 <param name=
"self" type=
"PyObject" default=
""/>
32716 <param name=
"_class" type=
"PyObject" default=
""/>
32719 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
32720 <autodoc>base_OnDraw(DC dc)
</autodoc>
32722 <param name=
"dc" type=
"DC" default=
""/>
32725 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
32726 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
32728 <param name=
"dc" type=
"DC" default=
""/>
32731 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
32732 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
32734 <param name=
"dc" type=
"DC" default=
""/>
32735 <param name=
"erase" type=
"bool" default=
"FALSE"/>
32738 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
32739 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
32741 <param name=
"dc" type=
"DC" default=
""/>
32744 <method name=
"base_OnErase" type=
"" overloaded=
"no">
32745 <autodoc>base_OnErase(DC dc)
</autodoc>
32747 <param name=
"dc" type=
"DC" default=
""/>
32750 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
32751 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
32753 <param name=
"dc" type=
"DC" default=
""/>
32756 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
32757 <autodoc>base_OnHighlight(DC dc)
</autodoc>
32759 <param name=
"dc" type=
"DC" default=
""/>
32762 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
32763 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32765 <param name=
"x" type=
"double" default=
""/>
32766 <param name=
"y" type=
"double" default=
""/>
32767 <param name=
"keys" type=
"int" default=
"0"/>
32768 <param name=
"attachment" type=
"int" default=
"0"/>
32771 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
32772 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32774 <param name=
"x" type=
"double" default=
""/>
32775 <param name=
"y" type=
"double" default=
""/>
32776 <param name=
"keys" type=
"int" default=
"0"/>
32777 <param name=
"attachment" type=
"int" default=
"0"/>
32780 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
32781 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32783 <param name=
"x" type=
"double" default=
""/>
32784 <param name=
"y" type=
"double" default=
""/>
32785 <param name=
"keys" type=
"int" default=
"0"/>
32786 <param name=
"attachment" type=
"int" default=
"0"/>
32789 <method name=
"base_OnSize" type=
"" overloaded=
"no">
32790 <autodoc>base_OnSize(double x, double y)
</autodoc>
32792 <param name=
"x" type=
"double" default=
""/>
32793 <param name=
"y" type=
"double" default=
""/>
32796 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
32797 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
32798 bool display=True) -
> bool
</autodoc>
32800 <param name=
"dc" type=
"DC" default=
""/>
32801 <param name=
"x" type=
"double" default=
""/>
32802 <param name=
"y" type=
"double" default=
""/>
32803 <param name=
"old_x" type=
"double" default=
""/>
32804 <param name=
"old_y" type=
"double" default=
""/>
32805 <param name=
"display" type=
"bool" default=
"True"/>
32808 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
32809 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
32810 bool display=True)
</autodoc>
32812 <param name=
"dc" type=
"DC" default=
""/>
32813 <param name=
"x" type=
"double" default=
""/>
32814 <param name=
"y" type=
"double" default=
""/>
32815 <param name=
"old_x" type=
"double" default=
""/>
32816 <param name=
"old_y" type=
"double" default=
""/>
32817 <param name=
"display" type=
"bool" default=
"True"/>
32820 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
32821 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32823 <param name=
"draw" type=
"bool" default=
""/>
32824 <param name=
"x" type=
"double" default=
""/>
32825 <param name=
"y" type=
"double" default=
""/>
32826 <param name=
"keys" type=
"int" default=
"0"/>
32827 <param name=
"attachment" type=
"int" default=
"0"/>
32830 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
32831 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32833 <param name=
"x" type=
"double" default=
""/>
32834 <param name=
"y" type=
"double" default=
""/>
32835 <param name=
"keys" type=
"int" default=
"0"/>
32836 <param name=
"attachment" type=
"int" default=
"0"/>
32839 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
32840 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32842 <param name=
"x" type=
"double" default=
""/>
32843 <param name=
"y" type=
"double" default=
""/>
32844 <param name=
"keys" type=
"int" default=
"0"/>
32845 <param name=
"attachment" type=
"int" default=
"0"/>
32848 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
32849 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32851 <param name=
"draw" type=
"bool" default=
""/>
32852 <param name=
"x" type=
"double" default=
""/>
32853 <param name=
"y" type=
"double" default=
""/>
32854 <param name=
"keys" type=
"int" default=
"0"/>
32855 <param name=
"attachment" type=
"int" default=
"0"/>
32858 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
32859 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32861 <param name=
"x" type=
"double" default=
""/>
32862 <param name=
"y" type=
"double" default=
""/>
32863 <param name=
"keys" type=
"int" default=
"0"/>
32864 <param name=
"attachment" type=
"int" default=
"0"/>
32867 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
32868 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
32870 <param name=
"x" type=
"double" default=
""/>
32871 <param name=
"y" type=
"double" default=
""/>
32872 <param name=
"keys" type=
"int" default=
"0"/>
32873 <param name=
"attachment" type=
"int" default=
"0"/>
32876 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
32877 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
32879 <param name=
"dc" type=
"DC" default=
""/>
32880 <param name=
"x" type=
"double" default=
""/>
32881 <param name=
"y" type=
"double" default=
""/>
32882 <param name=
"w" type=
"double" default=
""/>
32883 <param name=
"h" type=
"double" default=
""/>
32886 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
32887 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
32889 <param name=
"dc" type=
"DC" default=
""/>
32892 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
32893 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
32895 <param name=
"dc" type=
"DC" default=
""/>
32898 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
32899 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
32901 <param name=
"dc" type=
"DC" default=
""/>
32902 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
32905 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
32906 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
32907 int attachment=
0)
</autodoc>
32909 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32910 <param name=
"draw" type=
"bool" default=
""/>
32911 <param name=
"x" type=
"double" default=
""/>
32912 <param name=
"y" type=
"double" default=
""/>
32913 <param name=
"keys" type=
"int" default=
"0"/>
32914 <param name=
"attachment" type=
"int" default=
"0"/>
32917 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
32918 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32919 int attachment=
0)
</autodoc>
32921 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32922 <param name=
"x" type=
"double" default=
""/>
32923 <param name=
"y" type=
"double" default=
""/>
32924 <param name=
"keys" type=
"int" default=
"0"/>
32925 <param name=
"attachment" type=
"int" default=
"0"/>
32928 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
32929 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
32930 int attachment=
0)
</autodoc>
32932 <param name=
"pt" type=
"PyControlPoint" default=
""/>
32933 <param name=
"x" type=
"double" default=
""/>
32934 <param name=
"y" type=
"double" default=
""/>
32935 <param name=
"keys" type=
"int" default=
"0"/>
32936 <param name=
"attachment" type=
"int" default=
"0"/>
32939 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
32940 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
32942 <param name=
"w" type=
"double" default=
""/>
32943 <param name=
"h" type=
"double" default=
""/>
32946 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
32947 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
32949 <param name=
"w" type=
"double" default=
""/>
32950 <param name=
"h" type=
"double" default=
""/>
32954 <class name=
"ArrowHead" oldname=
"wxArrowHead" module=
"ogl">
32955 <baseclass name=
"Object"/>
32956 <constructor name=
"ArrowHead" overloaded=
"no">
32957 <autodoc>__init__(int type=
0, int end=
0, double size=
0.0, double dist=
0.0,
32958 String name=EmptyString, PseudoMetaFile mf=None,
32959 long arrowId=-
1) -
> ArrowHead
</autodoc>
32961 <param name=
"type" type=
"int" default=
"0"/>
32962 <param name=
"end" type=
"int" default=
"0"/>
32963 <param name=
"size" type=
"double" default=
"0.0"/>
32964 <param name=
"dist" type=
"double" default=
"0.0"/>
32965 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
32966 <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/>
32967 <param name=
"arrowId" type=
"long" default=
"-1"/>
32970 <destructor name=
"~wxArrowHead" overloaded=
"no">
32971 <autodoc>__del__()
</autodoc>
32973 <method name=
"_GetType" type=
"int" overloaded=
"no">
32974 <autodoc>_GetType() -
> int
</autodoc>
32976 <method name=
"GetPosition" type=
"int" overloaded=
"no">
32977 <autodoc>GetPosition() -
> int
</autodoc>
32979 <method name=
"SetPosition" type=
"" overloaded=
"no">
32980 <autodoc>SetPosition(int pos)
</autodoc>
32982 <param name=
"pos" type=
"int" default=
""/>
32985 <method name=
"GetXOffset" type=
"double" overloaded=
"no">
32986 <autodoc>GetXOffset() -
> double
</autodoc>
32988 <method name=
"GetYOffset" type=
"double" overloaded=
"no">
32989 <autodoc>GetYOffset() -
> double
</autodoc>
32991 <method name=
"GetSpacing" type=
"double" overloaded=
"no">
32992 <autodoc>GetSpacing() -
> double
</autodoc>
32994 <method name=
"GetSize" type=
"double" overloaded=
"no">
32995 <autodoc>GetSize() -
> double
</autodoc>
32997 <method name=
"GetName" type=
"String" overloaded=
"no">
32998 <autodoc>GetName() -
> String
</autodoc>
33000 <method name=
"SetXOffset" type=
"" overloaded=
"no">
33001 <autodoc>SetXOffset(double x)
</autodoc>
33003 <param name=
"x" type=
"double" default=
""/>
33006 <method name=
"SetYOffset" type=
"" overloaded=
"no">
33007 <autodoc>SetYOffset(double y)
</autodoc>
33009 <param name=
"y" type=
"double" default=
""/>
33012 <method name=
"GetMetaFile" type=
"PseudoMetaFile" overloaded=
"no">
33013 <autodoc>GetMetaFile() -
> PseudoMetaFile
</autodoc>
33015 <method name=
"GetId" type=
"long" overloaded=
"no">
33016 <autodoc>GetId() -
> long
</autodoc>
33018 <method name=
"GetArrowEnd" type=
"int" overloaded=
"no">
33019 <autodoc>GetArrowEnd() -
> int
</autodoc>
33021 <method name=
"GetArrowSize" type=
"double" overloaded=
"no">
33022 <autodoc>GetArrowSize() -
> double
</autodoc>
33024 <method name=
"SetSize" type=
"" overloaded=
"no">
33025 <autodoc>SetSize(double size)
</autodoc>
33027 <param name=
"size" type=
"double" default=
""/>
33030 <method name=
"SetSpacing" type=
"" overloaded=
"no">
33031 <autodoc>SetSpacing(double sp)
</autodoc>
33033 <param name=
"sp" type=
"double" default=
""/>
33037 <class name=
"PyLineShape" oldname=
"wxPyLineShape" module=
"ogl">
33038 <baseclass name=
"PyShape"/>
33039 <constructor name=
"PyLineShape" overloaded=
"no">
33040 <autodoc>__init__() -
> PyLineShape
</autodoc>
33042 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
33043 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
33045 <param name=
"self" type=
"PyObject" default=
""/>
33046 <param name=
"_class" type=
"PyObject" default=
""/>
33049 <method name=
"AddArrow" type=
"" overloaded=
"no">
33050 <autodoc>AddArrow(int type, int end=ARROW_POSITION_END, double arrowSize=
10.0,
33051 double xOffset=
0.0, String name=EmptyString,
33052 PseudoMetaFile mf=None, long arrowId=-
1)
</autodoc>
33054 <param name=
"type" type=
"int" default=
""/>
33055 <param name=
"end" type=
"int" default=
"ARROW_POSITION_END"/>
33056 <param name=
"arrowSize" type=
"double" default=
"10.0"/>
33057 <param name=
"xOffset" type=
"double" default=
"0.0"/>
33058 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
33059 <param name=
"mf" type=
"PseudoMetaFile" default=
"NULL"/>
33060 <param name=
"arrowId" type=
"long" default=
"-1"/>
33063 <method name=
"AddArrowOrdered" type=
"" overloaded=
"no">
33064 <autodoc>AddArrowOrdered(ArrowHead arrow, PyObject referenceList, int end)
</autodoc>
33066 <param name=
"arrow" type=
"ArrowHead" default=
""/>
33067 <param name=
"referenceList" type=
"PyObject" default=
""/>
33068 <param name=
"end" type=
"int" default=
""/>
33071 <method name=
"ClearArrow" type=
"bool" overloaded=
"no">
33072 <autodoc>ClearArrow(String name) -
> bool
</autodoc>
33074 <param name=
"name" type=
"String" default=
""/>
33077 <method name=
"ClearArrowsAtPosition" type=
"" overloaded=
"no">
33078 <autodoc>ClearArrowsAtPosition(int position=-
1)
</autodoc>
33080 <param name=
"position" type=
"int" default=
"-1"/>
33083 <method name=
"DrawArrow" type=
"" overloaded=
"no">
33084 <autodoc>DrawArrow(DC dc, ArrowHead arrow, double xOffset, bool proportionalOffset)
</autodoc>
33086 <param name=
"dc" type=
"DC" default=
""/>
33087 <param name=
"arrow" type=
"ArrowHead" default=
""/>
33088 <param name=
"xOffset" type=
"double" default=
""/>
33089 <param name=
"proportionalOffset" type=
"bool" default=
""/>
33092 <method name=
"DeleteArrowHeadId" type=
"bool" overloaded=
"no">
33093 <autodoc>DeleteArrowHeadId(long arrowId) -
> bool
</autodoc>
33095 <param name=
"arrowId" type=
"long" default=
""/>
33098 <method name=
"DeleteArrowHead" type=
"bool" overloaded=
"no">
33099 <autodoc>DeleteArrowHead(int position, String name) -
> bool
</autodoc>
33101 <param name=
"position" type=
"int" default=
""/>
33102 <param name=
"name" type=
"String" default=
""/>
33105 <method name=
"DeleteLineControlPoint" type=
"bool" overloaded=
"no">
33106 <autodoc>DeleteLineControlPoint() -
> bool
</autodoc>
33108 <method name=
"DrawArrows" type=
"" overloaded=
"no">
33109 <autodoc>DrawArrows(DC dc)
</autodoc>
33111 <param name=
"dc" type=
"DC" default=
""/>
33114 <method name=
"DrawRegion" type=
"" overloaded=
"no">
33115 <autodoc>DrawRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
33117 <param name=
"dc" type=
"DC" default=
""/>
33118 <param name=
"region" type=
"ShapeRegion" default=
""/>
33119 <param name=
"x" type=
"double" default=
""/>
33120 <param name=
"y" type=
"double" default=
""/>
33123 <method name=
"EraseRegion" type=
"" overloaded=
"no">
33124 <autodoc>EraseRegion(DC dc, ShapeRegion region, double x, double y)
</autodoc>
33126 <param name=
"dc" type=
"DC" default=
""/>
33127 <param name=
"region" type=
"ShapeRegion" default=
""/>
33128 <param name=
"x" type=
"double" default=
""/>
33129 <param name=
"y" type=
"double" default=
""/>
33132 <method name=
"FindArrowHeadId" type=
"ArrowHead" overloaded=
"no">
33133 <autodoc>FindArrowHeadId(long arrowId) -
> ArrowHead
</autodoc>
33135 <param name=
"arrowId" type=
"long" default=
""/>
33138 <method name=
"FindArrowHead" type=
"ArrowHead" overloaded=
"no">
33139 <autodoc>FindArrowHead(int position, String name) -
> ArrowHead
</autodoc>
33141 <param name=
"position" type=
"int" default=
""/>
33142 <param name=
"name" type=
"String" default=
""/>
33145 <method name=
"FindLineEndPoints" type=
"" overloaded=
"no">
33146 <autodoc>FindLineEndPoints(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
33148 <param name=
"OUTPUT" type=
"double" default=
""/>
33149 <param name=
"OUTPUT" type=
"double" default=
""/>
33150 <param name=
"OUTPUT" type=
"double" default=
""/>
33151 <param name=
"OUTPUT" type=
"double" default=
""/>
33154 <method name=
"FindLinePosition" type=
"int" overloaded=
"no">
33155 <autodoc>FindLinePosition(double x, double y) -
> int
</autodoc>
33157 <param name=
"x" type=
"double" default=
""/>
33158 <param name=
"y" type=
"double" default=
""/>
33161 <method name=
"FindMinimumWidth" type=
"double" overloaded=
"no">
33162 <autodoc>FindMinimumWidth() -
> double
</autodoc>
33164 <method name=
"FindNth" type=
"" overloaded=
"no">
33165 <autodoc>FindNth(PyShape image, int OUTPUT, int OUTPUT, bool incoming)
</autodoc>
33167 <param name=
"image" type=
"PyShape" default=
""/>
33168 <param name=
"OUTPUT" type=
"int" default=
""/>
33169 <param name=
"OUTPUT" type=
"int" default=
""/>
33170 <param name=
"incoming" type=
"bool" default=
""/>
33173 <method name=
"GetAttachmentFrom" type=
"int" overloaded=
"no">
33174 <autodoc>GetAttachmentFrom() -
> int
</autodoc>
33176 <method name=
"GetAttachmentTo" type=
"int" overloaded=
"no">
33177 <autodoc>GetAttachmentTo() -
> int
</autodoc>
33179 <method name=
"GetEnds" type=
"" overloaded=
"no">
33180 <autodoc>GetEnds(double OUTPUT, double OUTPUT, double OUTPUT, double OUTPUT)
</autodoc>
33182 <param name=
"OUTPUT" type=
"double" default=
""/>
33183 <param name=
"OUTPUT" type=
"double" default=
""/>
33184 <param name=
"OUTPUT" type=
"double" default=
""/>
33185 <param name=
"OUTPUT" type=
"double" default=
""/>
33188 <method name=
"GetFrom" type=
"PyShape" overloaded=
"no">
33189 <autodoc>GetFrom() -
> PyShape
</autodoc>
33191 <method name=
"GetLabelPosition" type=
"" overloaded=
"no">
33192 <autodoc>GetLabelPosition(int position, double OUTPUT, double OUTPUT)
</autodoc>
33194 <param name=
"position" type=
"int" default=
""/>
33195 <param name=
"OUTPUT" type=
"double" default=
""/>
33196 <param name=
"OUTPUT" type=
"double" default=
""/>
33199 <method name=
"GetNextControlPoint" type=
"RealPoint" overloaded=
"no">
33200 <autodoc>GetNextControlPoint(PyShape shape) -
> RealPoint
</autodoc>
33202 <param name=
"shape" type=
"PyShape" default=
""/>
33205 <method name=
"GetTo" type=
"PyShape" overloaded=
"no">
33206 <autodoc>GetTo() -
> PyShape
</autodoc>
33208 <method name=
"Initialise" type=
"" overloaded=
"no">
33209 <autodoc>Initialise()
</autodoc>
33211 <method name=
"InsertLineControlPoint" type=
"" overloaded=
"no">
33212 <autodoc>InsertLineControlPoint(DC dc)
</autodoc>
33214 <param name=
"dc" type=
"DC" default=
""/>
33217 <method name=
"IsEnd" type=
"bool" overloaded=
"no">
33218 <autodoc>IsEnd(PyShape shape) -
> bool
</autodoc>
33220 <param name=
"shape" type=
"PyShape" default=
""/>
33223 <method name=
"IsSpline" type=
"bool" overloaded=
"no">
33224 <autodoc>IsSpline() -
> bool
</autodoc>
33226 <method name=
"MakeLineControlPoints" type=
"" overloaded=
"no">
33227 <autodoc>MakeLineControlPoints(int n)
</autodoc>
33229 <param name=
"n" type=
"int" default=
""/>
33232 <method name=
"GetLineControlPoints" type=
"PyObject" overloaded=
"no">
33233 <autodoc>GetLineControlPoints() -
> PyObject
</autodoc>
33235 <method name=
"SetAttachmentFrom" type=
"" overloaded=
"no">
33236 <autodoc>SetAttachmentFrom(int fromAttach)
</autodoc>
33238 <param name=
"fromAttach" type=
"int" default=
""/>
33241 <method name=
"SetAttachments" type=
"" overloaded=
"no">
33242 <autodoc>SetAttachments(int fromAttach, int toAttach)
</autodoc>
33244 <param name=
"fromAttach" type=
"int" default=
""/>
33245 <param name=
"toAttach" type=
"int" default=
""/>
33248 <method name=
"SetAttachmentTo" type=
"" overloaded=
"no">
33249 <autodoc>SetAttachmentTo(int toAttach)
</autodoc>
33251 <param name=
"toAttach" type=
"int" default=
""/>
33254 <method name=
"SetEnds" type=
"" overloaded=
"no">
33255 <autodoc>SetEnds(double x1, double y1, double x2, double y2)
</autodoc>
33257 <param name=
"x1" type=
"double" default=
""/>
33258 <param name=
"y1" type=
"double" default=
""/>
33259 <param name=
"x2" type=
"double" default=
""/>
33260 <param name=
"y2" type=
"double" default=
""/>
33263 <method name=
"SetFrom" type=
"" overloaded=
"no">
33264 <autodoc>SetFrom(PyShape object)
</autodoc>
33266 <param name=
"object" type=
"PyShape" default=
""/>
33269 <method name=
"SetIgnoreOffsets" type=
"" overloaded=
"no">
33270 <autodoc>SetIgnoreOffsets(bool ignore)
</autodoc>
33272 <param name=
"ignore" type=
"bool" default=
""/>
33275 <method name=
"SetSpline" type=
"" overloaded=
"no">
33276 <autodoc>SetSpline(bool spline)
</autodoc>
33278 <param name=
"spline" type=
"bool" default=
""/>
33281 <method name=
"SetTo" type=
"" overloaded=
"no">
33282 <autodoc>SetTo(PyShape object)
</autodoc>
33284 <param name=
"object" type=
"PyShape" default=
""/>
33287 <method name=
"Straighten" type=
"" overloaded=
"no">
33288 <autodoc>Straighten(DC dc=None)
</autodoc>
33290 <param name=
"dc" type=
"DC" default=
"NULL"/>
33293 <method name=
"Unlink" type=
"" overloaded=
"no">
33294 <autodoc>Unlink()
</autodoc>
33296 <method name=
"SetAlignmentOrientation" type=
"" overloaded=
"no">
33297 <autodoc>SetAlignmentOrientation(bool isEnd, bool isHoriz)
</autodoc>
33299 <param name=
"isEnd" type=
"bool" default=
""/>
33300 <param name=
"isHoriz" type=
"bool" default=
""/>
33303 <method name=
"SetAlignmentType" type=
"" overloaded=
"no">
33304 <autodoc>SetAlignmentType(bool isEnd, int alignType)
</autodoc>
33306 <param name=
"isEnd" type=
"bool" default=
""/>
33307 <param name=
"alignType" type=
"int" default=
""/>
33310 <method name=
"GetAlignmentOrientation" type=
"bool" overloaded=
"no">
33311 <autodoc>GetAlignmentOrientation(bool isEnd) -
> bool
</autodoc>
33313 <param name=
"isEnd" type=
"bool" default=
""/>
33316 <method name=
"GetAlignmentType" type=
"int" overloaded=
"no">
33317 <autodoc>GetAlignmentType(bool isEnd) -
> int
</autodoc>
33319 <param name=
"isEnd" type=
"bool" default=
""/>
33322 <method name=
"GetAlignmentStart" type=
"int" overloaded=
"no">
33323 <autodoc>GetAlignmentStart() -
> int
</autodoc>
33325 <method name=
"GetAlignmentEnd" type=
"int" overloaded=
"no">
33326 <autodoc>GetAlignmentEnd() -
> int
</autodoc>
33328 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
33329 <autodoc>base_OnDraw(DC dc)
</autodoc>
33331 <param name=
"dc" type=
"DC" default=
""/>
33334 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
33335 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
33337 <param name=
"dc" type=
"DC" default=
""/>
33340 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
33341 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
33343 <param name=
"dc" type=
"DC" default=
""/>
33344 <param name=
"erase" type=
"bool" default=
"FALSE"/>
33347 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
33348 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
33350 <param name=
"dc" type=
"DC" default=
""/>
33353 <method name=
"base_OnErase" type=
"" overloaded=
"no">
33354 <autodoc>base_OnErase(DC dc)
</autodoc>
33356 <param name=
"dc" type=
"DC" default=
""/>
33359 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
33360 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
33362 <param name=
"dc" type=
"DC" default=
""/>
33365 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
33366 <autodoc>base_OnHighlight(DC dc)
</autodoc>
33368 <param name=
"dc" type=
"DC" default=
""/>
33371 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
33372 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33374 <param name=
"x" type=
"double" default=
""/>
33375 <param name=
"y" type=
"double" default=
""/>
33376 <param name=
"keys" type=
"int" default=
"0"/>
33377 <param name=
"attachment" type=
"int" default=
"0"/>
33380 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
33381 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33383 <param name=
"x" type=
"double" default=
""/>
33384 <param name=
"y" type=
"double" default=
""/>
33385 <param name=
"keys" type=
"int" default=
"0"/>
33386 <param name=
"attachment" type=
"int" default=
"0"/>
33389 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
33390 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33392 <param name=
"x" type=
"double" default=
""/>
33393 <param name=
"y" type=
"double" default=
""/>
33394 <param name=
"keys" type=
"int" default=
"0"/>
33395 <param name=
"attachment" type=
"int" default=
"0"/>
33398 <method name=
"base_OnSize" type=
"" overloaded=
"no">
33399 <autodoc>base_OnSize(double x, double y)
</autodoc>
33401 <param name=
"x" type=
"double" default=
""/>
33402 <param name=
"y" type=
"double" default=
""/>
33405 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
33406 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
33407 bool display=True) -
> bool
</autodoc>
33409 <param name=
"dc" type=
"DC" default=
""/>
33410 <param name=
"x" type=
"double" default=
""/>
33411 <param name=
"y" type=
"double" default=
""/>
33412 <param name=
"old_x" type=
"double" default=
""/>
33413 <param name=
"old_y" type=
"double" default=
""/>
33414 <param name=
"display" type=
"bool" default=
"True"/>
33417 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33418 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33419 bool display=True)
</autodoc>
33421 <param name=
"dc" type=
"DC" default=
""/>
33422 <param name=
"x" type=
"double" default=
""/>
33423 <param name=
"y" type=
"double" default=
""/>
33424 <param name=
"old_x" type=
"double" default=
""/>
33425 <param name=
"old_y" type=
"double" default=
""/>
33426 <param name=
"display" type=
"bool" default=
"True"/>
33429 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33430 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33432 <param name=
"draw" type=
"bool" default=
""/>
33433 <param name=
"x" type=
"double" default=
""/>
33434 <param name=
"y" type=
"double" default=
""/>
33435 <param name=
"keys" type=
"int" default=
"0"/>
33436 <param name=
"attachment" type=
"int" default=
"0"/>
33439 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33440 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33442 <param name=
"x" type=
"double" default=
""/>
33443 <param name=
"y" type=
"double" default=
""/>
33444 <param name=
"keys" type=
"int" default=
"0"/>
33445 <param name=
"attachment" type=
"int" default=
"0"/>
33448 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33449 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33451 <param name=
"x" type=
"double" default=
""/>
33452 <param name=
"y" type=
"double" default=
""/>
33453 <param name=
"keys" type=
"int" default=
"0"/>
33454 <param name=
"attachment" type=
"int" default=
"0"/>
33457 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
33458 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33460 <param name=
"draw" type=
"bool" default=
""/>
33461 <param name=
"x" type=
"double" default=
""/>
33462 <param name=
"y" type=
"double" default=
""/>
33463 <param name=
"keys" type=
"int" default=
"0"/>
33464 <param name=
"attachment" type=
"int" default=
"0"/>
33467 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
33468 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33470 <param name=
"x" type=
"double" default=
""/>
33471 <param name=
"y" type=
"double" default=
""/>
33472 <param name=
"keys" type=
"int" default=
"0"/>
33473 <param name=
"attachment" type=
"int" default=
"0"/>
33476 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
33477 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33479 <param name=
"x" type=
"double" default=
""/>
33480 <param name=
"y" type=
"double" default=
""/>
33481 <param name=
"keys" type=
"int" default=
"0"/>
33482 <param name=
"attachment" type=
"int" default=
"0"/>
33485 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
33486 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
33488 <param name=
"dc" type=
"DC" default=
""/>
33489 <param name=
"x" type=
"double" default=
""/>
33490 <param name=
"y" type=
"double" default=
""/>
33491 <param name=
"w" type=
"double" default=
""/>
33492 <param name=
"h" type=
"double" default=
""/>
33495 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
33496 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
33498 <param name=
"dc" type=
"DC" default=
""/>
33501 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
33502 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
33504 <param name=
"dc" type=
"DC" default=
""/>
33507 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
33508 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
33510 <param name=
"dc" type=
"DC" default=
""/>
33511 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
33514 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
33515 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
33516 int attachment=
0)
</autodoc>
33518 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33519 <param name=
"draw" type=
"bool" default=
""/>
33520 <param name=
"x" type=
"double" default=
""/>
33521 <param name=
"y" type=
"double" default=
""/>
33522 <param name=
"keys" type=
"int" default=
"0"/>
33523 <param name=
"attachment" type=
"int" default=
"0"/>
33526 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
33527 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33528 int attachment=
0)
</autodoc>
33530 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33531 <param name=
"x" type=
"double" default=
""/>
33532 <param name=
"y" type=
"double" default=
""/>
33533 <param name=
"keys" type=
"int" default=
"0"/>
33534 <param name=
"attachment" type=
"int" default=
"0"/>
33537 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
33538 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33539 int attachment=
0)
</autodoc>
33541 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33542 <param name=
"x" type=
"double" default=
""/>
33543 <param name=
"y" type=
"double" default=
""/>
33544 <param name=
"keys" type=
"int" default=
"0"/>
33545 <param name=
"attachment" type=
"int" default=
"0"/>
33548 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
33549 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
33551 <param name=
"w" type=
"double" default=
""/>
33552 <param name=
"h" type=
"double" default=
""/>
33555 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
33556 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
33558 <param name=
"w" type=
"double" default=
""/>
33559 <param name=
"h" type=
"double" default=
""/>
33563 <class name=
"PyPolygonShape" oldname=
"wxPyPolygonShape" module=
"ogl">
33564 <baseclass name=
"PyShape"/>
33565 <constructor name=
"PyPolygonShape" overloaded=
"no">
33566 <autodoc>__init__() -
> PyPolygonShape
</autodoc>
33568 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
33569 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
33571 <param name=
"self" type=
"PyObject" default=
""/>
33572 <param name=
"_class" type=
"PyObject" default=
""/>
33575 <method name=
"Create" type=
"PyObject" overloaded=
"no">
33576 <autodoc>Create(PyObject points) -
> PyObject
</autodoc>
33578 <param name=
"points" type=
"PyObject" default=
""/>
33581 <method name=
"AddPolygonPoint" type=
"" overloaded=
"no">
33582 <autodoc>AddPolygonPoint(int pos=
0)
</autodoc>
33584 <param name=
"pos" type=
"int" default=
"0"/>
33587 <method name=
"CalculatePolygonCentre" type=
"" overloaded=
"no">
33588 <autodoc>CalculatePolygonCentre()
</autodoc>
33590 <method name=
"DeletePolygonPoint" type=
"" overloaded=
"no">
33591 <autodoc>DeletePolygonPoint(int pos=
0)
</autodoc>
33593 <param name=
"pos" type=
"int" default=
"0"/>
33596 <method name=
"GetPoints" type=
"PyObject" overloaded=
"no">
33597 <autodoc>GetPoints() -
> PyObject
</autodoc>
33599 <method name=
"GetOriginalPoints" type=
"PyObject" overloaded=
"no">
33600 <autodoc>GetOriginalPoints() -
> PyObject
</autodoc>
33602 <method name=
"GetOriginalWidth" type=
"double" overloaded=
"no">
33603 <autodoc>GetOriginalWidth() -
> double
</autodoc>
33605 <method name=
"GetOriginalHeight" type=
"double" overloaded=
"no">
33606 <autodoc>GetOriginalHeight() -
> double
</autodoc>
33608 <method name=
"SetOriginalWidth" type=
"" overloaded=
"no">
33609 <autodoc>SetOriginalWidth(double w)
</autodoc>
33611 <param name=
"w" type=
"double" default=
""/>
33614 <method name=
"SetOriginalHeight" type=
"" overloaded=
"no">
33615 <autodoc>SetOriginalHeight(double h)
</autodoc>
33617 <param name=
"h" type=
"double" default=
""/>
33620 <method name=
"UpdateOriginalPoints" type=
"" overloaded=
"no">
33621 <autodoc>UpdateOriginalPoints()
</autodoc>
33623 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
33624 <autodoc>base_OnDraw(DC dc)
</autodoc>
33626 <param name=
"dc" type=
"DC" default=
""/>
33629 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
33630 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
33632 <param name=
"dc" type=
"DC" default=
""/>
33635 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
33636 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
33638 <param name=
"dc" type=
"DC" default=
""/>
33639 <param name=
"erase" type=
"bool" default=
"FALSE"/>
33642 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
33643 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
33645 <param name=
"dc" type=
"DC" default=
""/>
33648 <method name=
"base_OnErase" type=
"" overloaded=
"no">
33649 <autodoc>base_OnErase(DC dc)
</autodoc>
33651 <param name=
"dc" type=
"DC" default=
""/>
33654 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
33655 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
33657 <param name=
"dc" type=
"DC" default=
""/>
33660 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
33661 <autodoc>base_OnHighlight(DC dc)
</autodoc>
33663 <param name=
"dc" type=
"DC" default=
""/>
33666 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
33667 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33669 <param name=
"x" type=
"double" default=
""/>
33670 <param name=
"y" type=
"double" default=
""/>
33671 <param name=
"keys" type=
"int" default=
"0"/>
33672 <param name=
"attachment" type=
"int" default=
"0"/>
33675 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
33676 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33678 <param name=
"x" type=
"double" default=
""/>
33679 <param name=
"y" type=
"double" default=
""/>
33680 <param name=
"keys" type=
"int" default=
"0"/>
33681 <param name=
"attachment" type=
"int" default=
"0"/>
33684 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
33685 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33687 <param name=
"x" type=
"double" default=
""/>
33688 <param name=
"y" type=
"double" default=
""/>
33689 <param name=
"keys" type=
"int" default=
"0"/>
33690 <param name=
"attachment" type=
"int" default=
"0"/>
33693 <method name=
"base_OnSize" type=
"" overloaded=
"no">
33694 <autodoc>base_OnSize(double x, double y)
</autodoc>
33696 <param name=
"x" type=
"double" default=
""/>
33697 <param name=
"y" type=
"double" default=
""/>
33700 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
33701 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
33702 bool display=True) -
> bool
</autodoc>
33704 <param name=
"dc" type=
"DC" default=
""/>
33705 <param name=
"x" type=
"double" default=
""/>
33706 <param name=
"y" type=
"double" default=
""/>
33707 <param name=
"old_x" type=
"double" default=
""/>
33708 <param name=
"old_y" type=
"double" default=
""/>
33709 <param name=
"display" type=
"bool" default=
"True"/>
33712 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33713 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33714 bool display=True)
</autodoc>
33716 <param name=
"dc" type=
"DC" default=
""/>
33717 <param name=
"x" type=
"double" default=
""/>
33718 <param name=
"y" type=
"double" default=
""/>
33719 <param name=
"old_x" type=
"double" default=
""/>
33720 <param name=
"old_y" type=
"double" default=
""/>
33721 <param name=
"display" type=
"bool" default=
"True"/>
33724 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33725 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33727 <param name=
"draw" type=
"bool" default=
""/>
33728 <param name=
"x" type=
"double" default=
""/>
33729 <param name=
"y" type=
"double" default=
""/>
33730 <param name=
"keys" type=
"int" default=
"0"/>
33731 <param name=
"attachment" type=
"int" default=
"0"/>
33734 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33735 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33737 <param name=
"x" type=
"double" default=
""/>
33738 <param name=
"y" type=
"double" default=
""/>
33739 <param name=
"keys" type=
"int" default=
"0"/>
33740 <param name=
"attachment" type=
"int" default=
"0"/>
33743 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33744 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33746 <param name=
"x" type=
"double" default=
""/>
33747 <param name=
"y" type=
"double" default=
""/>
33748 <param name=
"keys" type=
"int" default=
"0"/>
33749 <param name=
"attachment" type=
"int" default=
"0"/>
33752 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
33753 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33755 <param name=
"draw" type=
"bool" default=
""/>
33756 <param name=
"x" type=
"double" default=
""/>
33757 <param name=
"y" type=
"double" default=
""/>
33758 <param name=
"keys" type=
"int" default=
"0"/>
33759 <param name=
"attachment" type=
"int" default=
"0"/>
33762 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
33763 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33765 <param name=
"x" type=
"double" default=
""/>
33766 <param name=
"y" type=
"double" default=
""/>
33767 <param name=
"keys" type=
"int" default=
"0"/>
33768 <param name=
"attachment" type=
"int" default=
"0"/>
33771 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
33772 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33774 <param name=
"x" type=
"double" default=
""/>
33775 <param name=
"y" type=
"double" default=
""/>
33776 <param name=
"keys" type=
"int" default=
"0"/>
33777 <param name=
"attachment" type=
"int" default=
"0"/>
33780 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
33781 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
33783 <param name=
"dc" type=
"DC" default=
""/>
33784 <param name=
"x" type=
"double" default=
""/>
33785 <param name=
"y" type=
"double" default=
""/>
33786 <param name=
"w" type=
"double" default=
""/>
33787 <param name=
"h" type=
"double" default=
""/>
33790 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
33791 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
33793 <param name=
"dc" type=
"DC" default=
""/>
33796 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
33797 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
33799 <param name=
"dc" type=
"DC" default=
""/>
33802 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
33803 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
33805 <param name=
"dc" type=
"DC" default=
""/>
33806 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
33809 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
33810 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
33811 int attachment=
0)
</autodoc>
33813 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33814 <param name=
"draw" type=
"bool" default=
""/>
33815 <param name=
"x" type=
"double" default=
""/>
33816 <param name=
"y" type=
"double" default=
""/>
33817 <param name=
"keys" type=
"int" default=
"0"/>
33818 <param name=
"attachment" type=
"int" default=
"0"/>
33821 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
33822 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33823 int attachment=
0)
</autodoc>
33825 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33826 <param name=
"x" type=
"double" default=
""/>
33827 <param name=
"y" type=
"double" default=
""/>
33828 <param name=
"keys" type=
"int" default=
"0"/>
33829 <param name=
"attachment" type=
"int" default=
"0"/>
33832 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
33833 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
33834 int attachment=
0)
</autodoc>
33836 <param name=
"pt" type=
"PyControlPoint" default=
""/>
33837 <param name=
"x" type=
"double" default=
""/>
33838 <param name=
"y" type=
"double" default=
""/>
33839 <param name=
"keys" type=
"int" default=
"0"/>
33840 <param name=
"attachment" type=
"int" default=
"0"/>
33843 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
33844 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
33846 <param name=
"w" type=
"double" default=
""/>
33847 <param name=
"h" type=
"double" default=
""/>
33850 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
33851 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
33853 <param name=
"w" type=
"double" default=
""/>
33854 <param name=
"h" type=
"double" default=
""/>
33858 <class name=
"PyTextShape" oldname=
"wxPyTextShape" module=
"ogl">
33859 <baseclass name=
"PyRectangleShape"/>
33860 <constructor name=
"PyTextShape" overloaded=
"no">
33861 <autodoc>__init__(double width=
0.0, double height=
0.0) -
> PyTextShape
</autodoc>
33863 <param name=
"width" type=
"double" default=
"0.0"/>
33864 <param name=
"height" type=
"double" default=
"0.0"/>
33867 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
33868 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
33870 <param name=
"self" type=
"PyObject" default=
""/>
33871 <param name=
"_class" type=
"PyObject" default=
""/>
33874 <method name=
"base_OnDelete" type=
"" overloaded=
"no">
33875 <autodoc>base_OnDelete()
</autodoc>
33877 <method name=
"base_OnDraw" type=
"" overloaded=
"no">
33878 <autodoc>base_OnDraw(DC dc)
</autodoc>
33880 <param name=
"dc" type=
"DC" default=
""/>
33883 <method name=
"base_OnDrawContents" type=
"" overloaded=
"no">
33884 <autodoc>base_OnDrawContents(DC dc)
</autodoc>
33886 <param name=
"dc" type=
"DC" default=
""/>
33889 <method name=
"base_OnDrawBranches" type=
"" overloaded=
"no">
33890 <autodoc>base_OnDrawBranches(DC dc, bool erase=FALSE)
</autodoc>
33892 <param name=
"dc" type=
"DC" default=
""/>
33893 <param name=
"erase" type=
"bool" default=
"FALSE"/>
33896 <method name=
"base_OnMoveLinks" type=
"" overloaded=
"no">
33897 <autodoc>base_OnMoveLinks(DC dc)
</autodoc>
33899 <param name=
"dc" type=
"DC" default=
""/>
33902 <method name=
"base_OnErase" type=
"" overloaded=
"no">
33903 <autodoc>base_OnErase(DC dc)
</autodoc>
33905 <param name=
"dc" type=
"DC" default=
""/>
33908 <method name=
"base_OnEraseContents" type=
"" overloaded=
"no">
33909 <autodoc>base_OnEraseContents(DC dc)
</autodoc>
33911 <param name=
"dc" type=
"DC" default=
""/>
33914 <method name=
"base_OnHighlight" type=
"" overloaded=
"no">
33915 <autodoc>base_OnHighlight(DC dc)
</autodoc>
33917 <param name=
"dc" type=
"DC" default=
""/>
33920 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
33921 <autodoc>base_OnLeftClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33923 <param name=
"x" type=
"double" default=
""/>
33924 <param name=
"y" type=
"double" default=
""/>
33925 <param name=
"keys" type=
"int" default=
"0"/>
33926 <param name=
"attachment" type=
"int" default=
"0"/>
33929 <method name=
"base_OnLeftDoubleClick" type=
"" overloaded=
"no">
33930 <autodoc>base_OnLeftDoubleClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33932 <param name=
"x" type=
"double" default=
""/>
33933 <param name=
"y" type=
"double" default=
""/>
33934 <param name=
"keys" type=
"int" default=
"0"/>
33935 <param name=
"attachment" type=
"int" default=
"0"/>
33938 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
33939 <autodoc>base_OnRightClick(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33941 <param name=
"x" type=
"double" default=
""/>
33942 <param name=
"y" type=
"double" default=
""/>
33943 <param name=
"keys" type=
"int" default=
"0"/>
33944 <param name=
"attachment" type=
"int" default=
"0"/>
33947 <method name=
"base_OnSize" type=
"" overloaded=
"no">
33948 <autodoc>base_OnSize(double x, double y)
</autodoc>
33950 <param name=
"x" type=
"double" default=
""/>
33951 <param name=
"y" type=
"double" default=
""/>
33954 <method name=
"base_OnMovePre" type=
"bool" overloaded=
"no">
33955 <autodoc>base_OnMovePre(DC dc, double x, double y, double old_x, double old_y,
33956 bool display=True) -
> bool
</autodoc>
33958 <param name=
"dc" type=
"DC" default=
""/>
33959 <param name=
"x" type=
"double" default=
""/>
33960 <param name=
"y" type=
"double" default=
""/>
33961 <param name=
"old_x" type=
"double" default=
""/>
33962 <param name=
"old_y" type=
"double" default=
""/>
33963 <param name=
"display" type=
"bool" default=
"True"/>
33966 <method name=
"base_OnMovePost" type=
"" overloaded=
"no">
33967 <autodoc>base_OnMovePost(DC dc, double x, double y, double old_x, double old_y,
33968 bool display=True)
</autodoc>
33970 <param name=
"dc" type=
"DC" default=
""/>
33971 <param name=
"x" type=
"double" default=
""/>
33972 <param name=
"y" type=
"double" default=
""/>
33973 <param name=
"old_x" type=
"double" default=
""/>
33974 <param name=
"old_y" type=
"double" default=
""/>
33975 <param name=
"display" type=
"bool" default=
"True"/>
33978 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
33979 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33981 <param name=
"draw" type=
"bool" default=
""/>
33982 <param name=
"x" type=
"double" default=
""/>
33983 <param name=
"y" type=
"double" default=
""/>
33984 <param name=
"keys" type=
"int" default=
"0"/>
33985 <param name=
"attachment" type=
"int" default=
"0"/>
33988 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
33989 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
33991 <param name=
"x" type=
"double" default=
""/>
33992 <param name=
"y" type=
"double" default=
""/>
33993 <param name=
"keys" type=
"int" default=
"0"/>
33994 <param name=
"attachment" type=
"int" default=
"0"/>
33997 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
33998 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34000 <param name=
"x" type=
"double" default=
""/>
34001 <param name=
"y" type=
"double" default=
""/>
34002 <param name=
"keys" type=
"int" default=
"0"/>
34003 <param name=
"attachment" type=
"int" default=
"0"/>
34006 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
34007 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34009 <param name=
"draw" type=
"bool" default=
""/>
34010 <param name=
"x" type=
"double" default=
""/>
34011 <param name=
"y" type=
"double" default=
""/>
34012 <param name=
"keys" type=
"int" default=
"0"/>
34013 <param name=
"attachment" type=
"int" default=
"0"/>
34016 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
34017 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34019 <param name=
"x" type=
"double" default=
""/>
34020 <param name=
"y" type=
"double" default=
""/>
34021 <param name=
"keys" type=
"int" default=
"0"/>
34022 <param name=
"attachment" type=
"int" default=
"0"/>
34025 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
34026 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0, int attachment=
0)
</autodoc>
34028 <param name=
"x" type=
"double" default=
""/>
34029 <param name=
"y" type=
"double" default=
""/>
34030 <param name=
"keys" type=
"int" default=
"0"/>
34031 <param name=
"attachment" type=
"int" default=
"0"/>
34034 <method name=
"base_OnDrawOutline" type=
"" overloaded=
"no">
34035 <autodoc>base_OnDrawOutline(DC dc, double x, double y, double w, double h)
</autodoc>
34037 <param name=
"dc" type=
"DC" default=
""/>
34038 <param name=
"x" type=
"double" default=
""/>
34039 <param name=
"y" type=
"double" default=
""/>
34040 <param name=
"w" type=
"double" default=
""/>
34041 <param name=
"h" type=
"double" default=
""/>
34044 <method name=
"base_OnDrawControlPoints" type=
"" overloaded=
"no">
34045 <autodoc>base_OnDrawControlPoints(DC dc)
</autodoc>
34047 <param name=
"dc" type=
"DC" default=
""/>
34050 <method name=
"base_OnEraseControlPoints" type=
"" overloaded=
"no">
34051 <autodoc>base_OnEraseControlPoints(DC dc)
</autodoc>
34053 <param name=
"dc" type=
"DC" default=
""/>
34056 <method name=
"base_OnMoveLink" type=
"" overloaded=
"no">
34057 <autodoc>base_OnMoveLink(DC dc, bool moveControlPoints=True)
</autodoc>
34059 <param name=
"dc" type=
"DC" default=
""/>
34060 <param name=
"moveControlPoints" type=
"bool" default=
"True"/>
34063 <method name=
"base_OnSizingDragLeft" type=
"" overloaded=
"no">
34064 <autodoc>base_OnSizingDragLeft(PyControlPoint pt, bool draw, double x, double y, int keys=
0,
34065 int attachment=
0)
</autodoc>
34067 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34068 <param name=
"draw" type=
"bool" default=
""/>
34069 <param name=
"x" type=
"double" default=
""/>
34070 <param name=
"y" type=
"double" default=
""/>
34071 <param name=
"keys" type=
"int" default=
"0"/>
34072 <param name=
"attachment" type=
"int" default=
"0"/>
34075 <method name=
"base_OnSizingBeginDragLeft" type=
"" overloaded=
"no">
34076 <autodoc>base_OnSizingBeginDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34077 int attachment=
0)
</autodoc>
34079 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34080 <param name=
"x" type=
"double" default=
""/>
34081 <param name=
"y" type=
"double" default=
""/>
34082 <param name=
"keys" type=
"int" default=
"0"/>
34083 <param name=
"attachment" type=
"int" default=
"0"/>
34086 <method name=
"base_OnSizingEndDragLeft" type=
"" overloaded=
"no">
34087 <autodoc>base_OnSizingEndDragLeft(PyControlPoint pt, double x, double y, int keys=
0,
34088 int attachment=
0)
</autodoc>
34090 <param name=
"pt" type=
"PyControlPoint" default=
""/>
34091 <param name=
"x" type=
"double" default=
""/>
34092 <param name=
"y" type=
"double" default=
""/>
34093 <param name=
"keys" type=
"int" default=
"0"/>
34094 <param name=
"attachment" type=
"int" default=
"0"/>
34097 <method name=
"base_OnBeginSize" type=
"" overloaded=
"no">
34098 <autodoc>base_OnBeginSize(double w, double h)
</autodoc>
34100 <param name=
"w" type=
"double" default=
""/>
34101 <param name=
"h" type=
"double" default=
""/>
34104 <method name=
"base_OnEndSize" type=
"" overloaded=
"no">
34105 <autodoc>base_OnEndSize(double w, double h)
</autodoc>
34107 <param name=
"w" type=
"double" default=
""/>
34108 <param name=
"h" type=
"double" default=
""/>
34112 <class name=
"Diagram" oldname=
"wxDiagram" module=
"ogl">
34113 <baseclass name=
"Object"/>
34114 <constructor name=
"Diagram" overloaded=
"no">
34115 <autodoc>__init__() -
> Diagram
</autodoc>
34117 <method name=
"AddShape" type=
"" overloaded=
"no">
34118 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
34120 <param name=
"shape" type=
"PyShape" default=
""/>
34121 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
34124 <method name=
"Clear" type=
"" overloaded=
"no">
34125 <autodoc>Clear(DC dc)
</autodoc>
34127 <param name=
"dc" type=
"DC" default=
""/>
34130 <method name=
"DeleteAllShapes" type=
"" overloaded=
"no">
34131 <autodoc>DeleteAllShapes()
</autodoc>
34133 <method name=
"DrawOutline" type=
"" overloaded=
"no">
34134 <autodoc>DrawOutline(DC dc, double x1, double y1, double x2, double y2)
</autodoc>
34136 <param name=
"dc" type=
"DC" default=
""/>
34137 <param name=
"x1" type=
"double" default=
""/>
34138 <param name=
"y1" type=
"double" default=
""/>
34139 <param name=
"x2" type=
"double" default=
""/>
34140 <param name=
"y2" type=
"double" default=
""/>
34143 <method name=
"FindShape" type=
"PyShape" overloaded=
"no">
34144 <autodoc>FindShape(long id) -
> PyShape
</autodoc>
34146 <param name=
"id" type=
"long" default=
""/>
34149 <method name=
"GetCanvas" type=
"wxPyShapeCanvas" overloaded=
"no">
34150 <autodoc>GetCanvas() -
> PyShapeCanvas
</autodoc>
34152 <method name=
"GetCount" type=
"int" overloaded=
"no">
34153 <autodoc>GetCount() -
> int
</autodoc>
34155 <method name=
"GetGridSpacing" type=
"double" overloaded=
"no">
34156 <autodoc>GetGridSpacing() -
> double
</autodoc>
34158 <method name=
"GetMouseTolerance" type=
"int" overloaded=
"no">
34159 <autodoc>GetMouseTolerance() -
> int
</autodoc>
34161 <method name=
"GetShapeList" type=
"PyObject" overloaded=
"no">
34162 <autodoc>GetShapeList() -
> PyObject
</autodoc>
34164 <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no">
34165 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
34167 <method name=
"GetSnapToGrid" type=
"bool" overloaded=
"no">
34168 <autodoc>GetSnapToGrid() -
> bool
</autodoc>
34170 <method name=
"InsertShape" type=
"" overloaded=
"no">
34171 <autodoc>InsertShape(PyShape shape)
</autodoc>
34173 <param name=
"shape" type=
"PyShape" default=
""/>
34176 <method name=
"RecentreAll" type=
"" overloaded=
"no">
34177 <autodoc>RecentreAll(DC dc)
</autodoc>
34179 <param name=
"dc" type=
"DC" default=
""/>
34182 <method name=
"Redraw" type=
"" overloaded=
"no">
34183 <autodoc>Redraw(DC dc)
</autodoc>
34185 <param name=
"dc" type=
"DC" default=
""/>
34188 <method name=
"RemoveAllShapes" type=
"" overloaded=
"no">
34189 <autodoc>RemoveAllShapes()
</autodoc>
34191 <method name=
"RemoveShape" type=
"" overloaded=
"no">
34192 <autodoc>RemoveShape(PyShape shape)
</autodoc>
34194 <param name=
"shape" type=
"PyShape" default=
""/>
34197 <method name=
"SetCanvas" type=
"" overloaded=
"no">
34198 <autodoc>SetCanvas(PyShapeCanvas canvas)
</autodoc>
34200 <param name=
"canvas" type=
"wxPyShapeCanvas" default=
""/>
34203 <method name=
"SetGridSpacing" type=
"" overloaded=
"no">
34204 <autodoc>SetGridSpacing(double spacing)
</autodoc>
34206 <param name=
"spacing" type=
"double" default=
""/>
34209 <method name=
"SetMouseTolerance" type=
"" overloaded=
"no">
34210 <autodoc>SetMouseTolerance(int tolerance)
</autodoc>
34212 <param name=
"tolerance" type=
"int" default=
""/>
34215 <method name=
"SetQuickEditMode" type=
"" overloaded=
"no">
34216 <autodoc>SetQuickEditMode(bool mode)
</autodoc>
34218 <param name=
"mode" type=
"bool" default=
""/>
34221 <method name=
"SetSnapToGrid" type=
"" overloaded=
"no">
34222 <autodoc>SetSnapToGrid(bool snap)
</autodoc>
34224 <param name=
"snap" type=
"bool" default=
""/>
34227 <method name=
"ShowAll" type=
"" overloaded=
"no">
34228 <autodoc>ShowAll(bool show)
</autodoc>
34230 <param name=
"show" type=
"bool" default=
""/>
34233 <method name=
"Snap" type=
"" overloaded=
"no">
34234 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
34236 <param name=
"INOUT" type=
"double" default=
""/>
34237 <param name=
"INOUT" type=
"double" default=
""/>
34241 <class name=
"PyShapeCanvas" oldname=
"wxPyShapeCanvas" module=
"ogl">
34242 <baseclass name=
"ScrolledWindow"/>
34243 <constructor name=
"PyShapeCanvas" overloaded=
"no">
34244 <autodoc>__init__(Window parent=None, int id=-
1, Point pos=DefaultPosition,
34245 Size size=DefaultSize, long style=BORDER,
34246 String name=wxPyShapeCanvasNameStr) -
> PyShapeCanvas
</autodoc>
34248 <param name=
"parent" type=
"Window" default=
"NULL"/>
34249 <param name=
"id" type=
"int" default=
"-1"/>
34250 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34251 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34252 <param name=
"style" type=
"long" default=
"wxBORDER"/>
34253 <param name=
"name" type=
"String" default=
"wxPyShapeCanvasNameStr"/>
34256 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
34257 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
34259 <param name=
"self" type=
"PyObject" default=
""/>
34260 <param name=
"_class" type=
"PyObject" default=
""/>
34263 <method name=
"AddShape" type=
"" overloaded=
"no">
34264 <autodoc>AddShape(PyShape shape, PyShape addAfter=None)
</autodoc>
34266 <param name=
"shape" type=
"PyShape" default=
""/>
34267 <param name=
"addAfter" type=
"PyShape" default=
"NULL"/>
34270 <method name=
"FindShape" type=
"PyShape" overloaded=
"no">
34271 <autodoc>FindShape(double x1, double y, int OUTPUT, wxClassInfo info=None,
34272 PyShape notImage=None) -
> PyShape
</autodoc>
34274 <param name=
"x1" type=
"double" default=
""/>
34275 <param name=
"y" type=
"double" default=
""/>
34276 <param name=
"OUTPUT" type=
"int" default=
""/>
34277 <param name=
"info" type=
"wxClassInfo" default=
"NULL"/>
34278 <param name=
"notImage" type=
"PyShape" default=
"NULL"/>
34281 <method name=
"FindFirstSensitiveShape" type=
"PyShape" overloaded=
"no">
34282 <autodoc>FindFirstSensitiveShape(double x1, double y, int OUTPUT, int op) -
> PyShape
</autodoc>
34284 <param name=
"x1" type=
"double" default=
""/>
34285 <param name=
"y" type=
"double" default=
""/>
34286 <param name=
"OUTPUT" type=
"int" default=
""/>
34287 <param name=
"op" type=
"int" default=
""/>
34290 <method name=
"GetDiagram" type=
"Diagram" overloaded=
"no">
34291 <autodoc>GetDiagram() -
> Diagram
</autodoc>
34293 <method name=
"GetQuickEditMode" type=
"bool" overloaded=
"no">
34294 <autodoc>GetQuickEditMode() -
> bool
</autodoc>
34296 <method name=
"InsertShape" type=
"" overloaded=
"no">
34297 <autodoc>InsertShape(PyShape shape)
</autodoc>
34299 <param name=
"shape" type=
"PyShape" default=
""/>
34302 <method name=
"base_OnBeginDragLeft" type=
"" overloaded=
"no">
34303 <autodoc>base_OnBeginDragLeft(double x, double y, int keys=
0)
</autodoc>
34305 <param name=
"x" type=
"double" default=
""/>
34306 <param name=
"y" type=
"double" default=
""/>
34307 <param name=
"keys" type=
"int" default=
"0"/>
34310 <method name=
"base_OnBeginDragRight" type=
"" overloaded=
"no">
34311 <autodoc>base_OnBeginDragRight(double x, double y, int keys=
0)
</autodoc>
34313 <param name=
"x" type=
"double" default=
""/>
34314 <param name=
"y" type=
"double" default=
""/>
34315 <param name=
"keys" type=
"int" default=
"0"/>
34318 <method name=
"base_OnEndDragLeft" type=
"" overloaded=
"no">
34319 <autodoc>base_OnEndDragLeft(double x, double y, int keys=
0)
</autodoc>
34321 <param name=
"x" type=
"double" default=
""/>
34322 <param name=
"y" type=
"double" default=
""/>
34323 <param name=
"keys" type=
"int" default=
"0"/>
34326 <method name=
"base_OnEndDragRight" type=
"" overloaded=
"no">
34327 <autodoc>base_OnEndDragRight(double x, double y, int keys=
0)
</autodoc>
34329 <param name=
"x" type=
"double" default=
""/>
34330 <param name=
"y" type=
"double" default=
""/>
34331 <param name=
"keys" type=
"int" default=
"0"/>
34334 <method name=
"base_OnDragLeft" type=
"" overloaded=
"no">
34335 <autodoc>base_OnDragLeft(bool draw, double x, double y, int keys=
0)
</autodoc>
34337 <param name=
"draw" type=
"bool" default=
""/>
34338 <param name=
"x" type=
"double" default=
""/>
34339 <param name=
"y" type=
"double" default=
""/>
34340 <param name=
"keys" type=
"int" default=
"0"/>
34343 <method name=
"base_OnDragRight" type=
"" overloaded=
"no">
34344 <autodoc>base_OnDragRight(bool draw, double x, double y, int keys=
0)
</autodoc>
34346 <param name=
"draw" type=
"bool" default=
""/>
34347 <param name=
"x" type=
"double" default=
""/>
34348 <param name=
"y" type=
"double" default=
""/>
34349 <param name=
"keys" type=
"int" default=
"0"/>
34352 <method name=
"base_OnLeftClick" type=
"" overloaded=
"no">
34353 <autodoc>base_OnLeftClick(double x, double y, int keys=
0)
</autodoc>
34355 <param name=
"x" type=
"double" default=
""/>
34356 <param name=
"y" type=
"double" default=
""/>
34357 <param name=
"keys" type=
"int" default=
"0"/>
34360 <method name=
"base_OnRightClick" type=
"" overloaded=
"no">
34361 <autodoc>base_OnRightClick(double x, double y, int keys=
0)
</autodoc>
34363 <param name=
"x" type=
"double" default=
""/>
34364 <param name=
"y" type=
"double" default=
""/>
34365 <param name=
"keys" type=
"int" default=
"0"/>
34368 <method name=
"Redraw" type=
"" overloaded=
"no">
34369 <autodoc>Redraw(DC dc)
</autodoc>
34371 <param name=
"dc" type=
"DC" default=
""/>
34374 <method name=
"RemoveShape" type=
"" overloaded=
"no">
34375 <autodoc>RemoveShape(PyShape shape)
</autodoc>
34377 <param name=
"shape" type=
"PyShape" default=
""/>
34380 <method name=
"SetDiagram" type=
"" overloaded=
"no">
34381 <autodoc>SetDiagram(Diagram diagram)
</autodoc>
34383 <param name=
"diagram" type=
"Diagram" default=
""/>
34386 <method name=
"Snap" type=
"" overloaded=
"no">
34387 <autodoc>Snap(double INOUT, double INOUT)
</autodoc>
34389 <param name=
"INOUT" type=
"double" default=
""/>
34390 <param name=
"INOUT" type=
"double" default=
""/>
34396 ShapeCanvas = PyShapeCanvas
34397 ShapeEvtHandler = PyShapeEvtHandler
34399 RectangleShape = PyRectangleShape
34400 BitmapShape = PyBitmapShape
34401 DrawnShape = PyDrawnShape
34402 CompositeShape = PyCompositeShape
34403 DividedShape = PyDividedShape
34404 DivisionShape = PyDivisionShape
34405 EllipseShape = PyEllipseShape
34406 CircleShape = PyCircleShape
34407 LineShape = PyLineShape
34408 PolygonShape = PyPolygonShape
34409 TextShape = PyTextShape
34410 ControlPoint = PyControlPoint
34412 <method name=
"OGLInitialize" oldname=
"wxOGLInitialize" type=
"" overloaded=
"no">
34413 <autodoc>OGLInitialize()
</autodoc>
34415 <method name=
"OGLCleanUp" oldname=
"wxOGLCleanUp" type=
"" overloaded=
"no">
34416 <autodoc>OGLCleanUp()
</autodoc>
34419 <module name=
"stc">
34420 <import name=
"core"/>
34421 <import name=
"misc"/>
34422 <pythoncode> wx = core
</pythoncode>
34423 <class name=
"StyledTextCtrl" oldname=
"wxStyledTextCtrl" module=
"stc">
34424 <baseclass name=
"Control"/>
34425 <constructor name=
"StyledTextCtrl" overloaded=
"no">
34426 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
34427 long style=
0, String name=STCNameStr) -
> StyledTextCtrl
</autodoc>
34429 <param name=
"parent" type=
"Window" default=
""/>
34430 <param name=
"id" type=
"int" default=
""/>
34431 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34432 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34433 <param name=
"style" type=
"long" default=
"0"/>
34434 <param name=
"name" type=
"String" default=
"wxPySTCNameStr"/>
34437 <constructor name=
"PreStyledTextCtrl" overloaded=
"no">
34438 <autodoc>PreStyledTextCtrl() -
> StyledTextCtrl
</autodoc>
34440 <method name=
"Create" type=
"" overloaded=
"no">
34441 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
34442 long style=
0, String name=wxSTCNameStr)
</autodoc>
34444 <param name=
"parent" type=
"Window" default=
""/>
34445 <param name=
"id" type=
"int" default=
""/>
34446 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
34447 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
34448 <param name=
"style" type=
"long" default=
"0"/>
34449 <param name=
"name" type=
"String" default=
"wxSTCNameStr"/>
34452 <method name=
"AddText" type=
"" overloaded=
"no">
34453 <autodoc>AddText(String text)
</autodoc>
34455 <param name=
"text" type=
"String" default=
""/>
34458 <method name=
"AddStyledText" type=
"" overloaded=
"no">
34459 <autodoc>AddStyledText(wxMemoryBuffer data)
</autodoc>
34461 <param name=
"data" type=
"wxMemoryBuffer" default=
""/>
34464 <method name=
"InsertText" type=
"" overloaded=
"no">
34465 <autodoc>InsertText(int pos, String text)
</autodoc>
34467 <param name=
"pos" type=
"int" default=
""/>
34468 <param name=
"text" type=
"String" default=
""/>
34471 <method name=
"ClearAll" type=
"" overloaded=
"no">
34472 <autodoc>ClearAll()
</autodoc>
34474 <method name=
"ClearDocumentStyle" type=
"" overloaded=
"no">
34475 <autodoc>ClearDocumentStyle()
</autodoc>
34477 <method name=
"GetLength" type=
"int" overloaded=
"no">
34478 <autodoc>GetLength() -
> int
</autodoc>
34480 <method name=
"GetCharAt" type=
"int" overloaded=
"no">
34481 <autodoc>GetCharAt(int pos) -
> int
</autodoc>
34483 <param name=
"pos" type=
"int" default=
""/>
34486 <method name=
"GetCurrentPos" type=
"int" overloaded=
"no">
34487 <autodoc>GetCurrentPos() -
> int
</autodoc>
34489 <method name=
"GetAnchor" type=
"int" overloaded=
"no">
34490 <autodoc>GetAnchor() -
> int
</autodoc>
34492 <method name=
"GetStyleAt" type=
"int" overloaded=
"no">
34493 <autodoc>GetStyleAt(int pos) -
> int
</autodoc>
34495 <param name=
"pos" type=
"int" default=
""/>
34498 <method name=
"Redo" type=
"" overloaded=
"no">
34499 <autodoc>Redo()
</autodoc>
34501 <method name=
"SetUndoCollection" type=
"" overloaded=
"no">
34502 <autodoc>SetUndoCollection(bool collectUndo)
</autodoc>
34504 <param name=
"collectUndo" type=
"bool" default=
""/>
34507 <method name=
"SelectAll" type=
"" overloaded=
"no">
34508 <autodoc>SelectAll()
</autodoc>
34510 <method name=
"SetSavePoint" type=
"" overloaded=
"no">
34511 <autodoc>SetSavePoint()
</autodoc>
34513 <method name=
"GetStyledText" type=
"wxMemoryBuffer" overloaded=
"no">
34514 <autodoc>GetStyledText(int startPos, int endPos) -
> wxMemoryBuffer
</autodoc>
34516 <param name=
"startPos" type=
"int" default=
""/>
34517 <param name=
"endPos" type=
"int" default=
""/>
34520 <method name=
"CanRedo" type=
"bool" overloaded=
"no">
34521 <autodoc>CanRedo() -
> bool
</autodoc>
34523 <method name=
"MarkerLineFromHandle" type=
"int" overloaded=
"no">
34524 <autodoc>MarkerLineFromHandle(int handle) -
> int
</autodoc>
34526 <param name=
"handle" type=
"int" default=
""/>
34529 <method name=
"MarkerDeleteHandle" type=
"" overloaded=
"no">
34530 <autodoc>MarkerDeleteHandle(int handle)
</autodoc>
34532 <param name=
"handle" type=
"int" default=
""/>
34535 <method name=
"GetUndoCollection" type=
"bool" overloaded=
"no">
34536 <autodoc>GetUndoCollection() -
> bool
</autodoc>
34538 <method name=
"GetViewWhiteSpace" type=
"int" overloaded=
"no">
34539 <autodoc>GetViewWhiteSpace() -
> int
</autodoc>
34541 <method name=
"SetViewWhiteSpace" type=
"" overloaded=
"no">
34542 <autodoc>SetViewWhiteSpace(int viewWS)
</autodoc>
34544 <param name=
"viewWS" type=
"int" default=
""/>
34547 <method name=
"PositionFromPoint" type=
"int" overloaded=
"no">
34548 <autodoc>PositionFromPoint(Point pt) -
> int
</autodoc>
34550 <param name=
"pt" type=
"Point" default=
""/>
34553 <method name=
"PositionFromPointClose" type=
"int" overloaded=
"no">
34554 <autodoc>PositionFromPointClose(int x, int y) -
> int
</autodoc>
34556 <param name=
"x" type=
"int" default=
""/>
34557 <param name=
"y" type=
"int" default=
""/>
34560 <method name=
"GotoLine" type=
"" overloaded=
"no">
34561 <autodoc>GotoLine(int line)
</autodoc>
34563 <param name=
"line" type=
"int" default=
""/>
34566 <method name=
"GotoPos" type=
"" overloaded=
"no">
34567 <autodoc>GotoPos(int pos)
</autodoc>
34569 <param name=
"pos" type=
"int" default=
""/>
34572 <method name=
"SetAnchor" type=
"" overloaded=
"no">
34573 <autodoc>SetAnchor(int posAnchor)
</autodoc>
34575 <param name=
"posAnchor" type=
"int" default=
""/>
34578 <method name=
"GetCurLine" type=
"String" overloaded=
"no">
34579 <autodoc>GetCurLine(int OUTPUT) -
> String
</autodoc>
34581 <param name=
"OUTPUT" type=
"int" default=
""/>
34584 <method name=
"GetEndStyled" type=
"int" overloaded=
"no">
34585 <autodoc>GetEndStyled() -
> int
</autodoc>
34587 <method name=
"ConvertEOLs" type=
"" overloaded=
"no">
34588 <autodoc>ConvertEOLs(int eolMode)
</autodoc>
34590 <param name=
"eolMode" type=
"int" default=
""/>
34593 <method name=
"GetEOLMode" type=
"int" overloaded=
"no">
34594 <autodoc>GetEOLMode() -
> int
</autodoc>
34596 <method name=
"SetEOLMode" type=
"" overloaded=
"no">
34597 <autodoc>SetEOLMode(int eolMode)
</autodoc>
34599 <param name=
"eolMode" type=
"int" default=
""/>
34602 <method name=
"StartStyling" type=
"" overloaded=
"no">
34603 <autodoc>StartStyling(int pos, int mask)
</autodoc>
34605 <param name=
"pos" type=
"int" default=
""/>
34606 <param name=
"mask" type=
"int" default=
""/>
34609 <method name=
"SetStyling" type=
"" overloaded=
"no">
34610 <autodoc>SetStyling(int length, int style)
</autodoc>
34612 <param name=
"length" type=
"int" default=
""/>
34613 <param name=
"style" type=
"int" default=
""/>
34616 <method name=
"GetBufferedDraw" type=
"bool" overloaded=
"no">
34617 <autodoc>GetBufferedDraw() -
> bool
</autodoc>
34619 <method name=
"SetBufferedDraw" type=
"" overloaded=
"no">
34620 <autodoc>SetBufferedDraw(bool buffered)
</autodoc>
34622 <param name=
"buffered" type=
"bool" default=
""/>
34625 <method name=
"SetTabWidth" type=
"" overloaded=
"no">
34626 <autodoc>SetTabWidth(int tabWidth)
</autodoc>
34628 <param name=
"tabWidth" type=
"int" default=
""/>
34631 <method name=
"GetTabWidth" type=
"int" overloaded=
"no">
34632 <autodoc>GetTabWidth() -
> int
</autodoc>
34634 <method name=
"SetCodePage" type=
"" overloaded=
"no">
34635 <autodoc>SetCodePage(int codePage)
</autodoc>
34637 <param name=
"codePage" type=
"int" default=
""/>
34640 <method name=
"MarkerDefine" type=
"" overloaded=
"no">
34641 <autodoc>MarkerDefine(int markerNumber, int markerSymbol, Colour foreground=wxNullColour,
34642 Colour background=wxNullColour)
</autodoc>
34644 <param name=
"markerNumber" type=
"int" default=
""/>
34645 <param name=
"markerSymbol" type=
"int" default=
""/>
34646 <param name=
"foreground" type=
"Colour" default=
"wxNullColour"/>
34647 <param name=
"background" type=
"Colour" default=
"wxNullColour"/>
34650 <method name=
"MarkerSetForeground" type=
"" overloaded=
"no">
34651 <autodoc>MarkerSetForeground(int markerNumber, Colour fore)
</autodoc>
34653 <param name=
"markerNumber" type=
"int" default=
""/>
34654 <param name=
"fore" type=
"Colour" default=
""/>
34657 <method name=
"MarkerSetBackground" type=
"" overloaded=
"no">
34658 <autodoc>MarkerSetBackground(int markerNumber, Colour back)
</autodoc>
34660 <param name=
"markerNumber" type=
"int" default=
""/>
34661 <param name=
"back" type=
"Colour" default=
""/>
34664 <method name=
"MarkerAdd" type=
"int" overloaded=
"no">
34665 <autodoc>MarkerAdd(int line, int markerNumber) -
> int
</autodoc>
34667 <param name=
"line" type=
"int" default=
""/>
34668 <param name=
"markerNumber" type=
"int" default=
""/>
34671 <method name=
"MarkerDelete" type=
"" overloaded=
"no">
34672 <autodoc>MarkerDelete(int line, int markerNumber)
</autodoc>
34674 <param name=
"line" type=
"int" default=
""/>
34675 <param name=
"markerNumber" type=
"int" default=
""/>
34678 <method name=
"MarkerDeleteAll" type=
"" overloaded=
"no">
34679 <autodoc>MarkerDeleteAll(int markerNumber)
</autodoc>
34681 <param name=
"markerNumber" type=
"int" default=
""/>
34684 <method name=
"MarkerGet" type=
"int" overloaded=
"no">
34685 <autodoc>MarkerGet(int line) -
> int
</autodoc>
34687 <param name=
"line" type=
"int" default=
""/>
34690 <method name=
"MarkerNext" type=
"int" overloaded=
"no">
34691 <autodoc>MarkerNext(int lineStart, int markerMask) -
> int
</autodoc>
34693 <param name=
"lineStart" type=
"int" default=
""/>
34694 <param name=
"markerMask" type=
"int" default=
""/>
34697 <method name=
"MarkerPrevious" type=
"int" overloaded=
"no">
34698 <autodoc>MarkerPrevious(int lineStart, int markerMask) -
> int
</autodoc>
34700 <param name=
"lineStart" type=
"int" default=
""/>
34701 <param name=
"markerMask" type=
"int" default=
""/>
34704 <method name=
"MarkerDefineBitmap" type=
"" overloaded=
"no">
34705 <autodoc>MarkerDefineBitmap(int markerNumber, Bitmap bmp)
</autodoc>
34707 <param name=
"markerNumber" type=
"int" default=
""/>
34708 <param name=
"bmp" type=
"Bitmap" default=
""/>
34711 <method name=
"SetMarginType" type=
"" overloaded=
"no">
34712 <autodoc>SetMarginType(int margin, int marginType)
</autodoc>
34714 <param name=
"margin" type=
"int" default=
""/>
34715 <param name=
"marginType" type=
"int" default=
""/>
34718 <method name=
"GetMarginType" type=
"int" overloaded=
"no">
34719 <autodoc>GetMarginType(int margin) -
> int
</autodoc>
34721 <param name=
"margin" type=
"int" default=
""/>
34724 <method name=
"SetMarginWidth" type=
"" overloaded=
"no">
34725 <autodoc>SetMarginWidth(int margin, int pixelWidth)
</autodoc>
34727 <param name=
"margin" type=
"int" default=
""/>
34728 <param name=
"pixelWidth" type=
"int" default=
""/>
34731 <method name=
"GetMarginWidth" type=
"int" overloaded=
"no">
34732 <autodoc>GetMarginWidth(int margin) -
> int
</autodoc>
34734 <param name=
"margin" type=
"int" default=
""/>
34737 <method name=
"SetMarginMask" type=
"" overloaded=
"no">
34738 <autodoc>SetMarginMask(int margin, int mask)
</autodoc>
34740 <param name=
"margin" type=
"int" default=
""/>
34741 <param name=
"mask" type=
"int" default=
""/>
34744 <method name=
"GetMarginMask" type=
"int" overloaded=
"no">
34745 <autodoc>GetMarginMask(int margin) -
> int
</autodoc>
34747 <param name=
"margin" type=
"int" default=
""/>
34750 <method name=
"SetMarginSensitive" type=
"" overloaded=
"no">
34751 <autodoc>SetMarginSensitive(int margin, bool sensitive)
</autodoc>
34753 <param name=
"margin" type=
"int" default=
""/>
34754 <param name=
"sensitive" type=
"bool" default=
""/>
34757 <method name=
"GetMarginSensitive" type=
"bool" overloaded=
"no">
34758 <autodoc>GetMarginSensitive(int margin) -
> bool
</autodoc>
34760 <param name=
"margin" type=
"int" default=
""/>
34763 <method name=
"StyleClearAll" type=
"" overloaded=
"no">
34764 <autodoc>StyleClearAll()
</autodoc>
34766 <method name=
"StyleSetForeground" type=
"" overloaded=
"no">
34767 <autodoc>StyleSetForeground(int style, Colour fore)
</autodoc>
34769 <param name=
"style" type=
"int" default=
""/>
34770 <param name=
"fore" type=
"Colour" default=
""/>
34773 <method name=
"StyleSetBackground" type=
"" overloaded=
"no">
34774 <autodoc>StyleSetBackground(int style, Colour back)
</autodoc>
34776 <param name=
"style" type=
"int" default=
""/>
34777 <param name=
"back" type=
"Colour" default=
""/>
34780 <method name=
"StyleSetBold" type=
"" overloaded=
"no">
34781 <autodoc>StyleSetBold(int style, bool bold)
</autodoc>
34783 <param name=
"style" type=
"int" default=
""/>
34784 <param name=
"bold" type=
"bool" default=
""/>
34787 <method name=
"StyleSetItalic" type=
"" overloaded=
"no">
34788 <autodoc>StyleSetItalic(int style, bool italic)
</autodoc>
34790 <param name=
"style" type=
"int" default=
""/>
34791 <param name=
"italic" type=
"bool" default=
""/>
34794 <method name=
"StyleSetSize" type=
"" overloaded=
"no">
34795 <autodoc>StyleSetSize(int style, int sizePoints)
</autodoc>
34797 <param name=
"style" type=
"int" default=
""/>
34798 <param name=
"sizePoints" type=
"int" default=
""/>
34801 <method name=
"StyleSetFaceName" type=
"" overloaded=
"no">
34802 <autodoc>StyleSetFaceName(int style, String fontName)
</autodoc>
34804 <param name=
"style" type=
"int" default=
""/>
34805 <param name=
"fontName" type=
"String" default=
""/>
34808 <method name=
"StyleSetEOLFilled" type=
"" overloaded=
"no">
34809 <autodoc>StyleSetEOLFilled(int style, bool filled)
</autodoc>
34811 <param name=
"style" type=
"int" default=
""/>
34812 <param name=
"filled" type=
"bool" default=
""/>
34815 <method name=
"StyleResetDefault" type=
"" overloaded=
"no">
34816 <autodoc>StyleResetDefault()
</autodoc>
34818 <method name=
"StyleSetUnderline" type=
"" overloaded=
"no">
34819 <autodoc>StyleSetUnderline(int style, bool underline)
</autodoc>
34821 <param name=
"style" type=
"int" default=
""/>
34822 <param name=
"underline" type=
"bool" default=
""/>
34825 <method name=
"StyleSetCase" type=
"" overloaded=
"no">
34826 <autodoc>StyleSetCase(int style, int caseForce)
</autodoc>
34828 <param name=
"style" type=
"int" default=
""/>
34829 <param name=
"caseForce" type=
"int" default=
""/>
34832 <method name=
"StyleSetCharacterSet" type=
"" overloaded=
"no">
34833 <autodoc>StyleSetCharacterSet(int style, int characterSet)
</autodoc>
34835 <param name=
"style" type=
"int" default=
""/>
34836 <param name=
"characterSet" type=
"int" default=
""/>
34839 <method name=
"StyleSetHotSpot" type=
"" overloaded=
"no">
34840 <autodoc>StyleSetHotSpot(int style, bool hotspot)
</autodoc>
34842 <param name=
"style" type=
"int" default=
""/>
34843 <param name=
"hotspot" type=
"bool" default=
""/>
34846 <method name=
"SetSelForeground" type=
"" overloaded=
"no">
34847 <autodoc>SetSelForeground(bool useSetting, Colour fore)
</autodoc>
34849 <param name=
"useSetting" type=
"bool" default=
""/>
34850 <param name=
"fore" type=
"Colour" default=
""/>
34853 <method name=
"SetSelBackground" type=
"" overloaded=
"no">
34854 <autodoc>SetSelBackground(bool useSetting, Colour back)
</autodoc>
34856 <param name=
"useSetting" type=
"bool" default=
""/>
34857 <param name=
"back" type=
"Colour" default=
""/>
34860 <method name=
"SetCaretForeground" type=
"" overloaded=
"no">
34861 <autodoc>SetCaretForeground(Colour fore)
</autodoc>
34863 <param name=
"fore" type=
"Colour" default=
""/>
34866 <method name=
"CmdKeyAssign" type=
"" overloaded=
"no">
34867 <autodoc>CmdKeyAssign(int key, int modifiers, int cmd)
</autodoc>
34869 <param name=
"key" type=
"int" default=
""/>
34870 <param name=
"modifiers" type=
"int" default=
""/>
34871 <param name=
"cmd" type=
"int" default=
""/>
34874 <method name=
"CmdKeyClear" type=
"" overloaded=
"no">
34875 <autodoc>CmdKeyClear(int key, int modifiers)
</autodoc>
34877 <param name=
"key" type=
"int" default=
""/>
34878 <param name=
"modifiers" type=
"int" default=
""/>
34881 <method name=
"CmdKeyClearAll" type=
"" overloaded=
"no">
34882 <autodoc>CmdKeyClearAll()
</autodoc>
34884 <method name=
"SetStyleBytes" type=
"" overloaded=
"no">
34885 <autodoc>SetStyleBytes(int length, char styleBytes)
</autodoc>
34887 <param name=
"length" type=
"int" default=
""/>
34888 <param name=
"styleBytes" type=
"char" default=
""/>
34891 <method name=
"StyleSetVisible" type=
"" overloaded=
"no">
34892 <autodoc>StyleSetVisible(int style, bool visible)
</autodoc>
34894 <param name=
"style" type=
"int" default=
""/>
34895 <param name=
"visible" type=
"bool" default=
""/>
34898 <method name=
"GetCaretPeriod" type=
"int" overloaded=
"no">
34899 <autodoc>GetCaretPeriod() -
> int
</autodoc>
34901 <method name=
"SetCaretPeriod" type=
"" overloaded=
"no">
34902 <autodoc>SetCaretPeriod(int periodMilliseconds)
</autodoc>
34904 <param name=
"periodMilliseconds" type=
"int" default=
""/>
34907 <method name=
"SetWordChars" type=
"" overloaded=
"no">
34908 <autodoc>SetWordChars(String characters)
</autodoc>
34910 <param name=
"characters" type=
"String" default=
""/>
34913 <method name=
"BeginUndoAction" type=
"" overloaded=
"no">
34914 <autodoc>BeginUndoAction()
</autodoc>
34916 <method name=
"EndUndoAction" type=
"" overloaded=
"no">
34917 <autodoc>EndUndoAction()
</autodoc>
34919 <method name=
"IndicatorSetStyle" type=
"" overloaded=
"no">
34920 <autodoc>IndicatorSetStyle(int indic, int style)
</autodoc>
34922 <param name=
"indic" type=
"int" default=
""/>
34923 <param name=
"style" type=
"int" default=
""/>
34926 <method name=
"IndicatorGetStyle" type=
"int" overloaded=
"no">
34927 <autodoc>IndicatorGetStyle(int indic) -
> int
</autodoc>
34929 <param name=
"indic" type=
"int" default=
""/>
34932 <method name=
"IndicatorSetForeground" type=
"" overloaded=
"no">
34933 <autodoc>IndicatorSetForeground(int indic, Colour fore)
</autodoc>
34935 <param name=
"indic" type=
"int" default=
""/>
34936 <param name=
"fore" type=
"Colour" default=
""/>
34939 <method name=
"IndicatorGetForeground" type=
"Colour" overloaded=
"no">
34940 <autodoc>IndicatorGetForeground(int indic) -
> Colour
</autodoc>
34942 <param name=
"indic" type=
"int" default=
""/>
34945 <method name=
"SetWhitespaceForeground" type=
"" overloaded=
"no">
34946 <autodoc>SetWhitespaceForeground(bool useSetting, Colour fore)
</autodoc>
34948 <param name=
"useSetting" type=
"bool" default=
""/>
34949 <param name=
"fore" type=
"Colour" default=
""/>
34952 <method name=
"SetWhitespaceBackground" type=
"" overloaded=
"no">
34953 <autodoc>SetWhitespaceBackground(bool useSetting, Colour back)
</autodoc>
34955 <param name=
"useSetting" type=
"bool" default=
""/>
34956 <param name=
"back" type=
"Colour" default=
""/>
34959 <method name=
"SetStyleBits" type=
"" overloaded=
"no">
34960 <autodoc>SetStyleBits(int bits)
</autodoc>
34962 <param name=
"bits" type=
"int" default=
""/>
34965 <method name=
"GetStyleBits" type=
"int" overloaded=
"no">
34966 <autodoc>GetStyleBits() -
> int
</autodoc>
34968 <method name=
"SetLineState" type=
"" overloaded=
"no">
34969 <autodoc>SetLineState(int line, int state)
</autodoc>
34971 <param name=
"line" type=
"int" default=
""/>
34972 <param name=
"state" type=
"int" default=
""/>
34975 <method name=
"GetLineState" type=
"int" overloaded=
"no">
34976 <autodoc>GetLineState(int line) -
> int
</autodoc>
34978 <param name=
"line" type=
"int" default=
""/>
34981 <method name=
"GetMaxLineState" type=
"int" overloaded=
"no">
34982 <autodoc>GetMaxLineState() -
> int
</autodoc>
34984 <method name=
"GetCaretLineVisible" type=
"bool" overloaded=
"no">
34985 <autodoc>GetCaretLineVisible() -
> bool
</autodoc>
34987 <method name=
"SetCaretLineVisible" type=
"" overloaded=
"no">
34988 <autodoc>SetCaretLineVisible(bool show)
</autodoc>
34990 <param name=
"show" type=
"bool" default=
""/>
34993 <method name=
"GetCaretLineBack" type=
"Colour" overloaded=
"no">
34994 <autodoc>GetCaretLineBack() -
> Colour
</autodoc>
34996 <method name=
"SetCaretLineBack" type=
"" overloaded=
"no">
34997 <autodoc>SetCaretLineBack(Colour back)
</autodoc>
34999 <param name=
"back" type=
"Colour" default=
""/>
35002 <method name=
"StyleSetChangeable" type=
"" overloaded=
"no">
35003 <autodoc>StyleSetChangeable(int style, bool changeable)
</autodoc>
35005 <param name=
"style" type=
"int" default=
""/>
35006 <param name=
"changeable" type=
"bool" default=
""/>
35009 <method name=
"AutoCompShow" type=
"" overloaded=
"no">
35010 <autodoc>AutoCompShow(int lenEntered, String itemList)
</autodoc>
35012 <param name=
"lenEntered" type=
"int" default=
""/>
35013 <param name=
"itemList" type=
"String" default=
""/>
35016 <method name=
"AutoCompCancel" type=
"" overloaded=
"no">
35017 <autodoc>AutoCompCancel()
</autodoc>
35019 <method name=
"AutoCompActive" type=
"bool" overloaded=
"no">
35020 <autodoc>AutoCompActive() -
> bool
</autodoc>
35022 <method name=
"AutoCompPosStart" type=
"int" overloaded=
"no">
35023 <autodoc>AutoCompPosStart() -
> int
</autodoc>
35025 <method name=
"AutoCompComplete" type=
"" overloaded=
"no">
35026 <autodoc>AutoCompComplete()
</autodoc>
35028 <method name=
"AutoCompStops" type=
"" overloaded=
"no">
35029 <autodoc>AutoCompStops(String characterSet)
</autodoc>
35031 <param name=
"characterSet" type=
"String" default=
""/>
35034 <method name=
"AutoCompSetSeparator" type=
"" overloaded=
"no">
35035 <autodoc>AutoCompSetSeparator(int separatorCharacter)
</autodoc>
35037 <param name=
"separatorCharacter" type=
"int" default=
""/>
35040 <method name=
"AutoCompGetSeparator" type=
"int" overloaded=
"no">
35041 <autodoc>AutoCompGetSeparator() -
> int
</autodoc>
35043 <method name=
"AutoCompSelect" type=
"" overloaded=
"no">
35044 <autodoc>AutoCompSelect(String text)
</autodoc>
35046 <param name=
"text" type=
"String" default=
""/>
35049 <method name=
"AutoCompSetCancelAtStart" type=
"" overloaded=
"no">
35050 <autodoc>AutoCompSetCancelAtStart(bool cancel)
</autodoc>
35052 <param name=
"cancel" type=
"bool" default=
""/>
35055 <method name=
"AutoCompGetCancelAtStart" type=
"bool" overloaded=
"no">
35056 <autodoc>AutoCompGetCancelAtStart() -
> bool
</autodoc>
35058 <method name=
"AutoCompSetFillUps" type=
"" overloaded=
"no">
35059 <autodoc>AutoCompSetFillUps(String characterSet)
</autodoc>
35061 <param name=
"characterSet" type=
"String" default=
""/>
35064 <method name=
"AutoCompSetChooseSingle" type=
"" overloaded=
"no">
35065 <autodoc>AutoCompSetChooseSingle(bool chooseSingle)
</autodoc>
35067 <param name=
"chooseSingle" type=
"bool" default=
""/>
35070 <method name=
"AutoCompGetChooseSingle" type=
"bool" overloaded=
"no">
35071 <autodoc>AutoCompGetChooseSingle() -
> bool
</autodoc>
35073 <method name=
"AutoCompSetIgnoreCase" type=
"" overloaded=
"no">
35074 <autodoc>AutoCompSetIgnoreCase(bool ignoreCase)
</autodoc>
35076 <param name=
"ignoreCase" type=
"bool" default=
""/>
35079 <method name=
"AutoCompGetIgnoreCase" type=
"bool" overloaded=
"no">
35080 <autodoc>AutoCompGetIgnoreCase() -
> bool
</autodoc>
35082 <method name=
"UserListShow" type=
"" overloaded=
"no">
35083 <autodoc>UserListShow(int listType, String itemList)
</autodoc>
35085 <param name=
"listType" type=
"int" default=
""/>
35086 <param name=
"itemList" type=
"String" default=
""/>
35089 <method name=
"AutoCompSetAutoHide" type=
"" overloaded=
"no">
35090 <autodoc>AutoCompSetAutoHide(bool autoHide)
</autodoc>
35092 <param name=
"autoHide" type=
"bool" default=
""/>
35095 <method name=
"AutoCompGetAutoHide" type=
"bool" overloaded=
"no">
35096 <autodoc>AutoCompGetAutoHide() -
> bool
</autodoc>
35098 <method name=
"AutoCompSetDropRestOfWord" type=
"" overloaded=
"no">
35099 <autodoc>AutoCompSetDropRestOfWord(bool dropRestOfWord)
</autodoc>
35101 <param name=
"dropRestOfWord" type=
"bool" default=
""/>
35104 <method name=
"AutoCompGetDropRestOfWord" type=
"bool" overloaded=
"no">
35105 <autodoc>AutoCompGetDropRestOfWord() -
> bool
</autodoc>
35107 <method name=
"RegisterImage" type=
"" overloaded=
"no">
35108 <autodoc>RegisterImage(int type, Bitmap bmp)
</autodoc>
35110 <param name=
"type" type=
"int" default=
""/>
35111 <param name=
"bmp" type=
"Bitmap" default=
""/>
35114 <method name=
"ClearRegisteredImages" type=
"" overloaded=
"no">
35115 <autodoc>ClearRegisteredImages()
</autodoc>
35117 <method name=
"AutoCompGetTypeSeparator" type=
"int" overloaded=
"no">
35118 <autodoc>AutoCompGetTypeSeparator() -
> int
</autodoc>
35120 <method name=
"AutoCompSetTypeSeparator" type=
"" overloaded=
"no">
35121 <autodoc>AutoCompSetTypeSeparator(int separatorCharacter)
</autodoc>
35123 <param name=
"separatorCharacter" type=
"int" default=
""/>
35126 <method name=
"SetIndent" type=
"" overloaded=
"no">
35127 <autodoc>SetIndent(int indentSize)
</autodoc>
35129 <param name=
"indentSize" type=
"int" default=
""/>
35132 <method name=
"GetIndent" type=
"int" overloaded=
"no">
35133 <autodoc>GetIndent() -
> int
</autodoc>
35135 <method name=
"SetUseTabs" type=
"" overloaded=
"no">
35136 <autodoc>SetUseTabs(bool useTabs)
</autodoc>
35138 <param name=
"useTabs" type=
"bool" default=
""/>
35141 <method name=
"GetUseTabs" type=
"bool" overloaded=
"no">
35142 <autodoc>GetUseTabs() -
> bool
</autodoc>
35144 <method name=
"SetLineIndentation" type=
"" overloaded=
"no">
35145 <autodoc>SetLineIndentation(int line, int indentSize)
</autodoc>
35147 <param name=
"line" type=
"int" default=
""/>
35148 <param name=
"indentSize" type=
"int" default=
""/>
35151 <method name=
"GetLineIndentation" type=
"int" overloaded=
"no">
35152 <autodoc>GetLineIndentation(int line) -
> int
</autodoc>
35154 <param name=
"line" type=
"int" default=
""/>
35157 <method name=
"GetLineIndentPosition" type=
"int" overloaded=
"no">
35158 <autodoc>GetLineIndentPosition(int line) -
> int
</autodoc>
35160 <param name=
"line" type=
"int" default=
""/>
35163 <method name=
"GetColumn" type=
"int" overloaded=
"no">
35164 <autodoc>GetColumn(int pos) -
> int
</autodoc>
35166 <param name=
"pos" type=
"int" default=
""/>
35169 <method name=
"SetUseHorizontalScrollBar" type=
"" overloaded=
"no">
35170 <autodoc>SetUseHorizontalScrollBar(bool show)
</autodoc>
35172 <param name=
"show" type=
"bool" default=
""/>
35175 <method name=
"GetUseHorizontalScrollBar" type=
"bool" overloaded=
"no">
35176 <autodoc>GetUseHorizontalScrollBar() -
> bool
</autodoc>
35178 <method name=
"SetIndentationGuides" type=
"" overloaded=
"no">
35179 <autodoc>SetIndentationGuides(bool show)
</autodoc>
35181 <param name=
"show" type=
"bool" default=
""/>
35184 <method name=
"GetIndentationGuides" type=
"bool" overloaded=
"no">
35185 <autodoc>GetIndentationGuides() -
> bool
</autodoc>
35187 <method name=
"SetHighlightGuide" type=
"" overloaded=
"no">
35188 <autodoc>SetHighlightGuide(int column)
</autodoc>
35190 <param name=
"column" type=
"int" default=
""/>
35193 <method name=
"GetHighlightGuide" type=
"int" overloaded=
"no">
35194 <autodoc>GetHighlightGuide() -
> int
</autodoc>
35196 <method name=
"GetLineEndPosition" type=
"int" overloaded=
"no">
35197 <autodoc>GetLineEndPosition(int line) -
> int
</autodoc>
35199 <param name=
"line" type=
"int" default=
""/>
35202 <method name=
"GetCodePage" type=
"int" overloaded=
"no">
35203 <autodoc>GetCodePage() -
> int
</autodoc>
35205 <method name=
"GetCaretForeground" type=
"Colour" overloaded=
"no">
35206 <autodoc>GetCaretForeground() -
> Colour
</autodoc>
35208 <method name=
"GetReadOnly" type=
"bool" overloaded=
"no">
35209 <autodoc>GetReadOnly() -
> bool
</autodoc>
35211 <method name=
"SetCurrentPos" type=
"" overloaded=
"no">
35212 <autodoc>SetCurrentPos(int pos)
</autodoc>
35214 <param name=
"pos" type=
"int" default=
""/>
35217 <method name=
"SetSelectionStart" type=
"" overloaded=
"no">
35218 <autodoc>SetSelectionStart(int pos)
</autodoc>
35220 <param name=
"pos" type=
"int" default=
""/>
35223 <method name=
"GetSelectionStart" type=
"int" overloaded=
"no">
35224 <autodoc>GetSelectionStart() -
> int
</autodoc>
35226 <method name=
"SetSelectionEnd" type=
"" overloaded=
"no">
35227 <autodoc>SetSelectionEnd(int pos)
</autodoc>
35229 <param name=
"pos" type=
"int" default=
""/>
35232 <method name=
"GetSelectionEnd" type=
"int" overloaded=
"no">
35233 <autodoc>GetSelectionEnd() -
> int
</autodoc>
35235 <method name=
"SetPrintMagnification" type=
"" overloaded=
"no">
35236 <autodoc>SetPrintMagnification(int magnification)
</autodoc>
35238 <param name=
"magnification" type=
"int" default=
""/>
35241 <method name=
"GetPrintMagnification" type=
"int" overloaded=
"no">
35242 <autodoc>GetPrintMagnification() -
> int
</autodoc>
35244 <method name=
"SetPrintColourMode" type=
"" overloaded=
"no">
35245 <autodoc>SetPrintColourMode(int mode)
</autodoc>
35247 <param name=
"mode" type=
"int" default=
""/>
35250 <method name=
"GetPrintColourMode" type=
"int" overloaded=
"no">
35251 <autodoc>GetPrintColourMode() -
> int
</autodoc>
35253 <method name=
"FindText" type=
"int" overloaded=
"no">
35254 <autodoc>FindText(int minPos, int maxPos, String text, int flags=
0) -
> int
</autodoc>
35256 <param name=
"minPos" type=
"int" default=
""/>
35257 <param name=
"maxPos" type=
"int" default=
""/>
35258 <param name=
"text" type=
"String" default=
""/>
35259 <param name=
"flags" type=
"int" default=
"0"/>
35262 <method name=
"FormatRange" type=
"int" overloaded=
"no">
35263 <autodoc>FormatRange(bool doDraw, int startPos, int endPos, DC draw, DC target,
35264 Rect renderRect, Rect pageRect) -
> int
</autodoc>
35266 <param name=
"doDraw" type=
"bool" default=
""/>
35267 <param name=
"startPos" type=
"int" default=
""/>
35268 <param name=
"endPos" type=
"int" default=
""/>
35269 <param name=
"draw" type=
"DC" default=
""/>
35270 <param name=
"target" type=
"DC" default=
""/>
35271 <param name=
"renderRect" type=
"Rect" default=
""/>
35272 <param name=
"pageRect" type=
"Rect" default=
""/>
35275 <method name=
"GetFirstVisibleLine" type=
"int" overloaded=
"no">
35276 <autodoc>GetFirstVisibleLine() -
> int
</autodoc>
35278 <method name=
"GetLine" type=
"String" overloaded=
"no">
35279 <autodoc>GetLine(int line) -
> String
</autodoc>
35281 <param name=
"line" type=
"int" default=
""/>
35284 <method name=
"GetLineCount" type=
"int" overloaded=
"no">
35285 <autodoc>GetLineCount() -
> int
</autodoc>
35287 <method name=
"SetMarginLeft" type=
"" overloaded=
"no">
35288 <autodoc>SetMarginLeft(int pixelWidth)
</autodoc>
35290 <param name=
"pixelWidth" type=
"int" default=
""/>
35293 <method name=
"GetMarginLeft" type=
"int" overloaded=
"no">
35294 <autodoc>GetMarginLeft() -
> int
</autodoc>
35296 <method name=
"SetMarginRight" type=
"" overloaded=
"no">
35297 <autodoc>SetMarginRight(int pixelWidth)
</autodoc>
35299 <param name=
"pixelWidth" type=
"int" default=
""/>
35302 <method name=
"GetMarginRight" type=
"int" overloaded=
"no">
35303 <autodoc>GetMarginRight() -
> int
</autodoc>
35305 <method name=
"GetModify" type=
"bool" overloaded=
"no">
35306 <autodoc>GetModify() -
> bool
</autodoc>
35308 <method name=
"SetSelection" type=
"" overloaded=
"no">
35309 <autodoc>SetSelection(int start, int end)
</autodoc>
35311 <param name=
"start" type=
"int" default=
""/>
35312 <param name=
"end" type=
"int" default=
""/>
35315 <method name=
"GetSelectedText" type=
"String" overloaded=
"no">
35316 <autodoc>GetSelectedText() -
> String
</autodoc>
35318 <method name=
"GetTextRange" type=
"String" overloaded=
"no">
35319 <autodoc>GetTextRange(int startPos, int endPos) -
> String
</autodoc>
35321 <param name=
"startPos" type=
"int" default=
""/>
35322 <param name=
"endPos" type=
"int" default=
""/>
35325 <method name=
"HideSelection" type=
"" overloaded=
"no">
35326 <autodoc>HideSelection(bool normal)
</autodoc>
35328 <param name=
"normal" type=
"bool" default=
""/>
35331 <method name=
"LineFromPosition" type=
"int" overloaded=
"no">
35332 <autodoc>LineFromPosition(int pos) -
> int
</autodoc>
35334 <param name=
"pos" type=
"int" default=
""/>
35337 <method name=
"PositionFromLine" type=
"int" overloaded=
"no">
35338 <autodoc>PositionFromLine(int line) -
> int
</autodoc>
35340 <param name=
"line" type=
"int" default=
""/>
35343 <method name=
"LineScroll" type=
"" overloaded=
"no">
35344 <autodoc>LineScroll(int columns, int lines)
</autodoc>
35346 <param name=
"columns" type=
"int" default=
""/>
35347 <param name=
"lines" type=
"int" default=
""/>
35350 <method name=
"EnsureCaretVisible" type=
"" overloaded=
"no">
35351 <autodoc>EnsureCaretVisible()
</autodoc>
35353 <method name=
"ReplaceSelection" type=
"" overloaded=
"no">
35354 <autodoc>ReplaceSelection(String text)
</autodoc>
35356 <param name=
"text" type=
"String" default=
""/>
35359 <method name=
"SetReadOnly" type=
"" overloaded=
"no">
35360 <autodoc>SetReadOnly(bool readOnly)
</autodoc>
35362 <param name=
"readOnly" type=
"bool" default=
""/>
35365 <method name=
"CanPaste" type=
"bool" overloaded=
"no">
35366 <autodoc>CanPaste() -
> bool
</autodoc>
35368 <method name=
"CanUndo" type=
"bool" overloaded=
"no">
35369 <autodoc>CanUndo() -
> bool
</autodoc>
35371 <method name=
"EmptyUndoBuffer" type=
"" overloaded=
"no">
35372 <autodoc>EmptyUndoBuffer()
</autodoc>
35374 <method name=
"Undo" type=
"" overloaded=
"no">
35375 <autodoc>Undo()
</autodoc>
35377 <method name=
"Cut" type=
"" overloaded=
"no">
35378 <autodoc>Cut()
</autodoc>
35380 <method name=
"Copy" type=
"" overloaded=
"no">
35381 <autodoc>Copy()
</autodoc>
35383 <method name=
"Paste" type=
"" overloaded=
"no">
35384 <autodoc>Paste()
</autodoc>
35386 <method name=
"Clear" type=
"" overloaded=
"no">
35387 <autodoc>Clear()
</autodoc>
35389 <method name=
"SetText" type=
"" overloaded=
"no">
35390 <autodoc>SetText(String text)
</autodoc>
35392 <param name=
"text" type=
"String" default=
""/>
35395 <method name=
"GetText" type=
"String" overloaded=
"no">
35396 <autodoc>GetText() -
> String
</autodoc>
35398 <method name=
"GetTextLength" type=
"int" overloaded=
"no">
35399 <autodoc>GetTextLength() -
> int
</autodoc>
35401 <method name=
"SetOvertype" type=
"" overloaded=
"no">
35402 <autodoc>SetOvertype(bool overtype)
</autodoc>
35404 <param name=
"overtype" type=
"bool" default=
""/>
35407 <method name=
"GetOvertype" type=
"bool" overloaded=
"no">
35408 <autodoc>GetOvertype() -
> bool
</autodoc>
35410 <method name=
"SetCaretWidth" type=
"" overloaded=
"no">
35411 <autodoc>SetCaretWidth(int pixelWidth)
</autodoc>
35413 <param name=
"pixelWidth" type=
"int" default=
""/>
35416 <method name=
"GetCaretWidth" type=
"int" overloaded=
"no">
35417 <autodoc>GetCaretWidth() -
> int
</autodoc>
35419 <method name=
"SetTargetStart" type=
"" overloaded=
"no">
35420 <autodoc>SetTargetStart(int pos)
</autodoc>
35422 <param name=
"pos" type=
"int" default=
""/>
35425 <method name=
"GetTargetStart" type=
"int" overloaded=
"no">
35426 <autodoc>GetTargetStart() -
> int
</autodoc>
35428 <method name=
"SetTargetEnd" type=
"" overloaded=
"no">
35429 <autodoc>SetTargetEnd(int pos)
</autodoc>
35431 <param name=
"pos" type=
"int" default=
""/>
35434 <method name=
"GetTargetEnd" type=
"int" overloaded=
"no">
35435 <autodoc>GetTargetEnd() -
> int
</autodoc>
35437 <method name=
"ReplaceTarget" type=
"int" overloaded=
"no">
35438 <autodoc>ReplaceTarget(String text) -
> int
</autodoc>
35440 <param name=
"text" type=
"String" default=
""/>
35443 <method name=
"ReplaceTargetRE" type=
"int" overloaded=
"no">
35444 <autodoc>ReplaceTargetRE(String text) -
> int
</autodoc>
35446 <param name=
"text" type=
"String" default=
""/>
35449 <method name=
"SearchInTarget" type=
"int" overloaded=
"no">
35450 <autodoc>SearchInTarget(String text) -
> int
</autodoc>
35452 <param name=
"text" type=
"String" default=
""/>
35455 <method name=
"SetSearchFlags" type=
"" overloaded=
"no">
35456 <autodoc>SetSearchFlags(int flags)
</autodoc>
35458 <param name=
"flags" type=
"int" default=
""/>
35461 <method name=
"GetSearchFlags" type=
"int" overloaded=
"no">
35462 <autodoc>GetSearchFlags() -
> int
</autodoc>
35464 <method name=
"CallTipShow" type=
"" overloaded=
"no">
35465 <autodoc>CallTipShow(int pos, String definition)
</autodoc>
35467 <param name=
"pos" type=
"int" default=
""/>
35468 <param name=
"definition" type=
"String" default=
""/>
35471 <method name=
"CallTipCancel" type=
"" overloaded=
"no">
35472 <autodoc>CallTipCancel()
</autodoc>
35474 <method name=
"CallTipActive" type=
"bool" overloaded=
"no">
35475 <autodoc>CallTipActive() -
> bool
</autodoc>
35477 <method name=
"CallTipPosAtStart" type=
"int" overloaded=
"no">
35478 <autodoc>CallTipPosAtStart() -
> int
</autodoc>
35480 <method name=
"CallTipSetHighlight" type=
"" overloaded=
"no">
35481 <autodoc>CallTipSetHighlight(int start, int end)
</autodoc>
35483 <param name=
"start" type=
"int" default=
""/>
35484 <param name=
"end" type=
"int" default=
""/>
35487 <method name=
"CallTipSetBackground" type=
"" overloaded=
"no">
35488 <autodoc>CallTipSetBackground(Colour back)
</autodoc>
35490 <param name=
"back" type=
"Colour" default=
""/>
35493 <method name=
"CallTipSetForeground" type=
"" overloaded=
"no">
35494 <autodoc>CallTipSetForeground(Colour fore)
</autodoc>
35496 <param name=
"fore" type=
"Colour" default=
""/>
35499 <method name=
"CallTipSetForegroundHighlight" type=
"" overloaded=
"no">
35500 <autodoc>CallTipSetForegroundHighlight(Colour fore)
</autodoc>
35502 <param name=
"fore" type=
"Colour" default=
""/>
35505 <method name=
"VisibleFromDocLine" type=
"int" overloaded=
"no">
35506 <autodoc>VisibleFromDocLine(int line) -
> int
</autodoc>
35508 <param name=
"line" type=
"int" default=
""/>
35511 <method name=
"DocLineFromVisible" type=
"int" overloaded=
"no">
35512 <autodoc>DocLineFromVisible(int lineDisplay) -
> int
</autodoc>
35514 <param name=
"lineDisplay" type=
"int" default=
""/>
35517 <method name=
"SetFoldLevel" type=
"" overloaded=
"no">
35518 <autodoc>SetFoldLevel(int line, int level)
</autodoc>
35520 <param name=
"line" type=
"int" default=
""/>
35521 <param name=
"level" type=
"int" default=
""/>
35524 <method name=
"GetFoldLevel" type=
"int" overloaded=
"no">
35525 <autodoc>GetFoldLevel(int line) -
> int
</autodoc>
35527 <param name=
"line" type=
"int" default=
""/>
35530 <method name=
"GetLastChild" type=
"int" overloaded=
"no">
35531 <autodoc>GetLastChild(int line, int level) -
> int
</autodoc>
35533 <param name=
"line" type=
"int" default=
""/>
35534 <param name=
"level" type=
"int" default=
""/>
35537 <method name=
"GetFoldParent" type=
"int" overloaded=
"no">
35538 <autodoc>GetFoldParent(int line) -
> int
</autodoc>
35540 <param name=
"line" type=
"int" default=
""/>
35543 <method name=
"ShowLines" type=
"" overloaded=
"no">
35544 <autodoc>ShowLines(int lineStart, int lineEnd)
</autodoc>
35546 <param name=
"lineStart" type=
"int" default=
""/>
35547 <param name=
"lineEnd" type=
"int" default=
""/>
35550 <method name=
"HideLines" type=
"" overloaded=
"no">
35551 <autodoc>HideLines(int lineStart, int lineEnd)
</autodoc>
35553 <param name=
"lineStart" type=
"int" default=
""/>
35554 <param name=
"lineEnd" type=
"int" default=
""/>
35557 <method name=
"GetLineVisible" type=
"bool" overloaded=
"no">
35558 <autodoc>GetLineVisible(int line) -
> bool
</autodoc>
35560 <param name=
"line" type=
"int" default=
""/>
35563 <method name=
"SetFoldExpanded" type=
"" overloaded=
"no">
35564 <autodoc>SetFoldExpanded(int line, bool expanded)
</autodoc>
35566 <param name=
"line" type=
"int" default=
""/>
35567 <param name=
"expanded" type=
"bool" default=
""/>
35570 <method name=
"GetFoldExpanded" type=
"bool" overloaded=
"no">
35571 <autodoc>GetFoldExpanded(int line) -
> bool
</autodoc>
35573 <param name=
"line" type=
"int" default=
""/>
35576 <method name=
"ToggleFold" type=
"" overloaded=
"no">
35577 <autodoc>ToggleFold(int line)
</autodoc>
35579 <param name=
"line" type=
"int" default=
""/>
35582 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
35583 <autodoc>EnsureVisible(int line)
</autodoc>
35585 <param name=
"line" type=
"int" default=
""/>
35588 <method name=
"SetFoldFlags" type=
"" overloaded=
"no">
35589 <autodoc>SetFoldFlags(int flags)
</autodoc>
35591 <param name=
"flags" type=
"int" default=
""/>
35594 <method name=
"EnsureVisibleEnforcePolicy" type=
"" overloaded=
"no">
35595 <autodoc>EnsureVisibleEnforcePolicy(int line)
</autodoc>
35597 <param name=
"line" type=
"int" default=
""/>
35600 <method name=
"SetTabIndents" type=
"" overloaded=
"no">
35601 <autodoc>SetTabIndents(bool tabIndents)
</autodoc>
35603 <param name=
"tabIndents" type=
"bool" default=
""/>
35606 <method name=
"GetTabIndents" type=
"bool" overloaded=
"no">
35607 <autodoc>GetTabIndents() -
> bool
</autodoc>
35609 <method name=
"SetBackSpaceUnIndents" type=
"" overloaded=
"no">
35610 <autodoc>SetBackSpaceUnIndents(bool bsUnIndents)
</autodoc>
35612 <param name=
"bsUnIndents" type=
"bool" default=
""/>
35615 <method name=
"GetBackSpaceUnIndents" type=
"bool" overloaded=
"no">
35616 <autodoc>GetBackSpaceUnIndents() -
> bool
</autodoc>
35618 <method name=
"SetMouseDwellTime" type=
"" overloaded=
"no">
35619 <autodoc>SetMouseDwellTime(int periodMilliseconds)
</autodoc>
35621 <param name=
"periodMilliseconds" type=
"int" default=
""/>
35624 <method name=
"GetMouseDwellTime" type=
"int" overloaded=
"no">
35625 <autodoc>GetMouseDwellTime() -
> int
</autodoc>
35627 <method name=
"WordStartPosition" type=
"int" overloaded=
"no">
35628 <autodoc>WordStartPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
35630 <param name=
"pos" type=
"int" default=
""/>
35631 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
35634 <method name=
"WordEndPosition" type=
"int" overloaded=
"no">
35635 <autodoc>WordEndPosition(int pos, bool onlyWordCharacters) -
> int
</autodoc>
35637 <param name=
"pos" type=
"int" default=
""/>
35638 <param name=
"onlyWordCharacters" type=
"bool" default=
""/>
35641 <method name=
"SetWrapMode" type=
"" overloaded=
"no">
35642 <autodoc>SetWrapMode(int mode)
</autodoc>
35644 <param name=
"mode" type=
"int" default=
""/>
35647 <method name=
"GetWrapMode" type=
"int" overloaded=
"no">
35648 <autodoc>GetWrapMode() -
> int
</autodoc>
35650 <method name=
"SetLayoutCache" type=
"" overloaded=
"no">
35651 <autodoc>SetLayoutCache(int mode)
</autodoc>
35653 <param name=
"mode" type=
"int" default=
""/>
35656 <method name=
"GetLayoutCache" type=
"int" overloaded=
"no">
35657 <autodoc>GetLayoutCache() -
> int
</autodoc>
35659 <method name=
"SetScrollWidth" type=
"" overloaded=
"no">
35660 <autodoc>SetScrollWidth(int pixelWidth)
</autodoc>
35662 <param name=
"pixelWidth" type=
"int" default=
""/>
35665 <method name=
"GetScrollWidth" type=
"int" overloaded=
"no">
35666 <autodoc>GetScrollWidth() -
> int
</autodoc>
35668 <method name=
"TextWidth" type=
"int" overloaded=
"no">
35669 <autodoc>TextWidth(int style, String text) -
> int
</autodoc>
35671 <param name=
"style" type=
"int" default=
""/>
35672 <param name=
"text" type=
"String" default=
""/>
35675 <method name=
"SetEndAtLastLine" type=
"" overloaded=
"no">
35676 <autodoc>SetEndAtLastLine(bool endAtLastLine)
</autodoc>
35678 <param name=
"endAtLastLine" type=
"bool" default=
""/>
35681 <method name=
"GetEndAtLastLine" type=
"int" overloaded=
"no">
35682 <autodoc>GetEndAtLastLine() -
> int
</autodoc>
35684 <method name=
"TextHeight" type=
"int" overloaded=
"no">
35685 <autodoc>TextHeight(int line) -
> int
</autodoc>
35687 <param name=
"line" type=
"int" default=
""/>
35690 <method name=
"SetUseVerticalScrollBar" type=
"" overloaded=
"no">
35691 <autodoc>SetUseVerticalScrollBar(bool show)
</autodoc>
35693 <param name=
"show" type=
"bool" default=
""/>
35696 <method name=
"GetUseVerticalScrollBar" type=
"bool" overloaded=
"no">
35697 <autodoc>GetUseVerticalScrollBar() -
> bool
</autodoc>
35699 <method name=
"AppendText" type=
"" overloaded=
"no">
35700 <autodoc>AppendText(int length, String text)
</autodoc>
35702 <param name=
"length" type=
"int" default=
""/>
35703 <param name=
"text" type=
"String" default=
""/>
35706 <method name=
"GetTwoPhaseDraw" type=
"bool" overloaded=
"no">
35707 <autodoc>GetTwoPhaseDraw() -
> bool
</autodoc>
35709 <method name=
"SetTwoPhaseDraw" type=
"" overloaded=
"no">
35710 <autodoc>SetTwoPhaseDraw(bool twoPhase)
</autodoc>
35712 <param name=
"twoPhase" type=
"bool" default=
""/>
35715 <method name=
"TargetFromSelection" type=
"" overloaded=
"no">
35716 <autodoc>TargetFromSelection()
</autodoc>
35718 <method name=
"LinesJoin" type=
"" overloaded=
"no">
35719 <autodoc>LinesJoin()
</autodoc>
35721 <method name=
"LinesSplit" type=
"" overloaded=
"no">
35722 <autodoc>LinesSplit(int pixelWidth)
</autodoc>
35724 <param name=
"pixelWidth" type=
"int" default=
""/>
35727 <method name=
"SetFoldMarginColour" type=
"" overloaded=
"no">
35728 <autodoc>SetFoldMarginColour(bool useSetting, Colour back)
</autodoc>
35730 <param name=
"useSetting" type=
"bool" default=
""/>
35731 <param name=
"back" type=
"Colour" default=
""/>
35734 <method name=
"SetFoldMarginHiColour" type=
"" overloaded=
"no">
35735 <autodoc>SetFoldMarginHiColour(bool useSetting, Colour fore)
</autodoc>
35737 <param name=
"useSetting" type=
"bool" default=
""/>
35738 <param name=
"fore" type=
"Colour" default=
""/>
35741 <method name=
"LineDuplicate" type=
"" overloaded=
"no">
35742 <autodoc>LineDuplicate()
</autodoc>
35744 <method name=
"HomeDisplay" type=
"" overloaded=
"no">
35745 <autodoc>HomeDisplay()
</autodoc>
35747 <method name=
"HomeDisplayExtend" type=
"" overloaded=
"no">
35748 <autodoc>HomeDisplayExtend()
</autodoc>
35750 <method name=
"LineEndDisplay" type=
"" overloaded=
"no">
35751 <autodoc>LineEndDisplay()
</autodoc>
35753 <method name=
"LineEndDisplayExtend" type=
"" overloaded=
"no">
35754 <autodoc>LineEndDisplayExtend()
</autodoc>
35756 <method name=
"LineCopy" type=
"" overloaded=
"no">
35757 <autodoc>LineCopy()
</autodoc>
35759 <method name=
"MoveCaretInsideView" type=
"" overloaded=
"no">
35760 <autodoc>MoveCaretInsideView()
</autodoc>
35762 <method name=
"LineLength" type=
"int" overloaded=
"no">
35763 <autodoc>LineLength(int line) -
> int
</autodoc>
35765 <param name=
"line" type=
"int" default=
""/>
35768 <method name=
"BraceHighlight" type=
"" overloaded=
"no">
35769 <autodoc>BraceHighlight(int pos1, int pos2)
</autodoc>
35771 <param name=
"pos1" type=
"int" default=
""/>
35772 <param name=
"pos2" type=
"int" default=
""/>
35775 <method name=
"BraceBadLight" type=
"" overloaded=
"no">
35776 <autodoc>BraceBadLight(int pos)
</autodoc>
35778 <param name=
"pos" type=
"int" default=
""/>
35781 <method name=
"BraceMatch" type=
"int" overloaded=
"no">
35782 <autodoc>BraceMatch(int pos) -
> int
</autodoc>
35784 <param name=
"pos" type=
"int" default=
""/>
35787 <method name=
"GetViewEOL" type=
"bool" overloaded=
"no">
35788 <autodoc>GetViewEOL() -
> bool
</autodoc>
35790 <method name=
"SetViewEOL" type=
"" overloaded=
"no">
35791 <autodoc>SetViewEOL(bool visible)
</autodoc>
35793 <param name=
"visible" type=
"bool" default=
""/>
35796 <method name=
"GetDocPointer" type=
"" overloaded=
"no">
35797 <autodoc>GetDocPointer() -
> void
</autodoc>
35799 <method name=
"SetDocPointer" type=
"" overloaded=
"no">
35800 <autodoc>SetDocPointer(void docPointer)
</autodoc>
35802 <param name=
"docPointer" type=
"" default=
""/>
35805 <method name=
"SetModEventMask" type=
"" overloaded=
"no">
35806 <autodoc>SetModEventMask(int mask)
</autodoc>
35808 <param name=
"mask" type=
"int" default=
""/>
35811 <method name=
"GetEdgeColumn" type=
"int" overloaded=
"no">
35812 <autodoc>GetEdgeColumn() -
> int
</autodoc>
35814 <method name=
"SetEdgeColumn" type=
"" overloaded=
"no">
35815 <autodoc>SetEdgeColumn(int column)
</autodoc>
35817 <param name=
"column" type=
"int" default=
""/>
35820 <method name=
"GetEdgeMode" type=
"int" overloaded=
"no">
35821 <autodoc>GetEdgeMode() -
> int
</autodoc>
35823 <method name=
"SetEdgeMode" type=
"" overloaded=
"no">
35824 <autodoc>SetEdgeMode(int mode)
</autodoc>
35826 <param name=
"mode" type=
"int" default=
""/>
35829 <method name=
"GetEdgeColour" type=
"Colour" overloaded=
"no">
35830 <autodoc>GetEdgeColour() -
> Colour
</autodoc>
35832 <method name=
"SetEdgeColour" type=
"" overloaded=
"no">
35833 <autodoc>SetEdgeColour(Colour edgeColour)
</autodoc>
35835 <param name=
"edgeColour" type=
"Colour" default=
""/>
35838 <method name=
"SearchAnchor" type=
"" overloaded=
"no">
35839 <autodoc>SearchAnchor()
</autodoc>
35841 <method name=
"SearchNext" type=
"int" overloaded=
"no">
35842 <autodoc>SearchNext(int flags, String text) -
> int
</autodoc>
35844 <param name=
"flags" type=
"int" default=
""/>
35845 <param name=
"text" type=
"String" default=
""/>
35848 <method name=
"SearchPrev" type=
"int" overloaded=
"no">
35849 <autodoc>SearchPrev(int flags, String text) -
> int
</autodoc>
35851 <param name=
"flags" type=
"int" default=
""/>
35852 <param name=
"text" type=
"String" default=
""/>
35855 <method name=
"LinesOnScreen" type=
"int" overloaded=
"no">
35856 <autodoc>LinesOnScreen() -
> int
</autodoc>
35858 <method name=
"UsePopUp" type=
"" overloaded=
"no">
35859 <autodoc>UsePopUp(bool allowPopUp)
</autodoc>
35861 <param name=
"allowPopUp" type=
"bool" default=
""/>
35864 <method name=
"SelectionIsRectangle" type=
"bool" overloaded=
"no">
35865 <autodoc>SelectionIsRectangle() -
> bool
</autodoc>
35867 <method name=
"SetZoom" type=
"" overloaded=
"no">
35868 <autodoc>SetZoom(int zoom)
</autodoc>
35870 <param name=
"zoom" type=
"int" default=
""/>
35873 <method name=
"GetZoom" type=
"int" overloaded=
"no">
35874 <autodoc>GetZoom() -
> int
</autodoc>
35876 <method name=
"CreateDocument" type=
"" overloaded=
"no">
35877 <autodoc>CreateDocument() -
> void
</autodoc>
35879 <method name=
"AddRefDocument" type=
"" overloaded=
"no">
35880 <autodoc>AddRefDocument(void docPointer)
</autodoc>
35882 <param name=
"docPointer" type=
"" default=
""/>
35885 <method name=
"ReleaseDocument" type=
"" overloaded=
"no">
35886 <autodoc>ReleaseDocument(void docPointer)
</autodoc>
35888 <param name=
"docPointer" type=
"" default=
""/>
35891 <method name=
"GetModEventMask" type=
"int" overloaded=
"no">
35892 <autodoc>GetModEventMask() -
> int
</autodoc>
35894 <method name=
"SetSTCFocus" type=
"" overloaded=
"no">
35895 <autodoc>SetSTCFocus(bool focus)
</autodoc>
35897 <param name=
"focus" type=
"bool" default=
""/>
35900 <method name=
"GetSTCFocus" type=
"bool" overloaded=
"no">
35901 <autodoc>GetSTCFocus() -
> bool
</autodoc>
35903 <method name=
"SetStatus" type=
"" overloaded=
"no">
35904 <autodoc>SetStatus(int statusCode)
</autodoc>
35906 <param name=
"statusCode" type=
"int" default=
""/>
35909 <method name=
"GetStatus" type=
"int" overloaded=
"no">
35910 <autodoc>GetStatus() -
> int
</autodoc>
35912 <method name=
"SetMouseDownCaptures" type=
"" overloaded=
"no">
35913 <autodoc>SetMouseDownCaptures(bool captures)
</autodoc>
35915 <param name=
"captures" type=
"bool" default=
""/>
35918 <method name=
"GetMouseDownCaptures" type=
"bool" overloaded=
"no">
35919 <autodoc>GetMouseDownCaptures() -
> bool
</autodoc>
35921 <method name=
"SetSTCCursor" type=
"" overloaded=
"no">
35922 <autodoc>SetSTCCursor(int cursorType)
</autodoc>
35924 <param name=
"cursorType" type=
"int" default=
""/>
35927 <method name=
"GetSTCCursor" type=
"int" overloaded=
"no">
35928 <autodoc>GetSTCCursor() -
> int
</autodoc>
35930 <method name=
"SetControlCharSymbol" type=
"" overloaded=
"no">
35931 <autodoc>SetControlCharSymbol(int symbol)
</autodoc>
35933 <param name=
"symbol" type=
"int" default=
""/>
35936 <method name=
"GetControlCharSymbol" type=
"int" overloaded=
"no">
35937 <autodoc>GetControlCharSymbol() -
> int
</autodoc>
35939 <method name=
"WordPartLeft" type=
"" overloaded=
"no">
35940 <autodoc>WordPartLeft()
</autodoc>
35942 <method name=
"WordPartLeftExtend" type=
"" overloaded=
"no">
35943 <autodoc>WordPartLeftExtend()
</autodoc>
35945 <method name=
"WordPartRight" type=
"" overloaded=
"no">
35946 <autodoc>WordPartRight()
</autodoc>
35948 <method name=
"WordPartRightExtend" type=
"" overloaded=
"no">
35949 <autodoc>WordPartRightExtend()
</autodoc>
35951 <method name=
"SetVisiblePolicy" type=
"" overloaded=
"no">
35952 <autodoc>SetVisiblePolicy(int visiblePolicy, int visibleSlop)
</autodoc>
35954 <param name=
"visiblePolicy" type=
"int" default=
""/>
35955 <param name=
"visibleSlop" type=
"int" default=
""/>
35958 <method name=
"DelLineLeft" type=
"" overloaded=
"no">
35959 <autodoc>DelLineLeft()
</autodoc>
35961 <method name=
"DelLineRight" type=
"" overloaded=
"no">
35962 <autodoc>DelLineRight()
</autodoc>
35964 <method name=
"SetXOffset" type=
"" overloaded=
"no">
35965 <autodoc>SetXOffset(int newOffset)
</autodoc>
35967 <param name=
"newOffset" type=
"int" default=
""/>
35970 <method name=
"GetXOffset" type=
"int" overloaded=
"no">
35971 <autodoc>GetXOffset() -
> int
</autodoc>
35973 <method name=
"ChooseCaretX" type=
"" overloaded=
"no">
35974 <autodoc>ChooseCaretX()
</autodoc>
35976 <method name=
"SetXCaretPolicy" type=
"" overloaded=
"no">
35977 <autodoc>SetXCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
35979 <param name=
"caretPolicy" type=
"int" default=
""/>
35980 <param name=
"caretSlop" type=
"int" default=
""/>
35983 <method name=
"SetYCaretPolicy" type=
"" overloaded=
"no">
35984 <autodoc>SetYCaretPolicy(int caretPolicy, int caretSlop)
</autodoc>
35986 <param name=
"caretPolicy" type=
"int" default=
""/>
35987 <param name=
"caretSlop" type=
"int" default=
""/>
35990 <method name=
"SetPrintWrapMode" type=
"" overloaded=
"no">
35991 <autodoc>SetPrintWrapMode(int mode)
</autodoc>
35993 <param name=
"mode" type=
"int" default=
""/>
35996 <method name=
"GetPrintWrapMode" type=
"int" overloaded=
"no">
35997 <autodoc>GetPrintWrapMode() -
> int
</autodoc>
35999 <method name=
"SetHotspotActiveForeground" type=
"" overloaded=
"no">
36000 <autodoc>SetHotspotActiveForeground(bool useSetting, Colour fore)
</autodoc>
36002 <param name=
"useSetting" type=
"bool" default=
""/>
36003 <param name=
"fore" type=
"Colour" default=
""/>
36006 <method name=
"SetHotspotActiveBackground" type=
"" overloaded=
"no">
36007 <autodoc>SetHotspotActiveBackground(bool useSetting, Colour back)
</autodoc>
36009 <param name=
"useSetting" type=
"bool" default=
""/>
36010 <param name=
"back" type=
"Colour" default=
""/>
36013 <method name=
"SetHotspotActiveUnderline" type=
"" overloaded=
"no">
36014 <autodoc>SetHotspotActiveUnderline(bool underline)
</autodoc>
36016 <param name=
"underline" type=
"bool" default=
""/>
36019 <method name=
"SetHotspotSingleLine" type=
"" overloaded=
"no">
36020 <autodoc>SetHotspotSingleLine(bool singleLine)
</autodoc>
36022 <param name=
"singleLine" type=
"bool" default=
""/>
36025 <method name=
"PositionBefore" type=
"int" overloaded=
"no">
36026 <autodoc>PositionBefore(int pos) -
> int
</autodoc>
36028 <param name=
"pos" type=
"int" default=
""/>
36031 <method name=
"PositionAfter" type=
"int" overloaded=
"no">
36032 <autodoc>PositionAfter(int pos) -
> int
</autodoc>
36034 <param name=
"pos" type=
"int" default=
""/>
36037 <method name=
"CopyRange" type=
"" overloaded=
"no">
36038 <autodoc>CopyRange(int start, int end)
</autodoc>
36040 <param name=
"start" type=
"int" default=
""/>
36041 <param name=
"end" type=
"int" default=
""/>
36044 <method name=
"CopyText" type=
"" overloaded=
"no">
36045 <autodoc>CopyText(int length, String text)
</autodoc>
36047 <param name=
"length" type=
"int" default=
""/>
36048 <param name=
"text" type=
"String" default=
""/>
36051 <method name=
"SetSelectionMode" type=
"" overloaded=
"no">
36052 <autodoc>SetSelectionMode(int mode)
</autodoc>
36054 <param name=
"mode" type=
"int" default=
""/>
36057 <method name=
"GetSelectionMode" type=
"int" overloaded=
"no">
36058 <autodoc>GetSelectionMode() -
> int
</autodoc>
36060 <method name=
"GetLineSelStartPosition" type=
"int" overloaded=
"no">
36061 <autodoc>GetLineSelStartPosition(int line) -
> int
</autodoc>
36063 <param name=
"line" type=
"int" default=
""/>
36066 <method name=
"GetLineSelEndPosition" type=
"int" overloaded=
"no">
36067 <autodoc>GetLineSelEndPosition(int line) -
> int
</autodoc>
36069 <param name=
"line" type=
"int" default=
""/>
36072 <method name=
"SetWhitespaceChars" type=
"" overloaded=
"no">
36073 <autodoc>SetWhitespaceChars(String characters)
</autodoc>
36075 <param name=
"characters" type=
"String" default=
""/>
36078 <method name=
"SetCharsDefault" type=
"" overloaded=
"no">
36079 <autodoc>SetCharsDefault()
</autodoc>
36081 <method name=
"AutoCompGetCurrent" type=
"int" overloaded=
"no">
36082 <autodoc>AutoCompGetCurrent() -
> int
</autodoc>
36084 <method name=
"StartRecord" type=
"" overloaded=
"no">
36085 <autodoc>StartRecord()
</autodoc>
36087 <method name=
"StopRecord" type=
"" overloaded=
"no">
36088 <autodoc>StopRecord()
</autodoc>
36090 <method name=
"SetLexer" type=
"" overloaded=
"no">
36091 <autodoc>SetLexer(int lexer)
</autodoc>
36093 <param name=
"lexer" type=
"int" default=
""/>
36096 <method name=
"GetLexer" type=
"int" overloaded=
"no">
36097 <autodoc>GetLexer() -
> int
</autodoc>
36099 <method name=
"Colourise" type=
"" overloaded=
"no">
36100 <autodoc>Colourise(int start, int end)
</autodoc>
36102 <param name=
"start" type=
"int" default=
""/>
36103 <param name=
"end" type=
"int" default=
""/>
36106 <method name=
"SetProperty" type=
"" overloaded=
"no">
36107 <autodoc>SetProperty(String key, String value)
</autodoc>
36109 <param name=
"key" type=
"String" default=
""/>
36110 <param name=
"value" type=
"String" default=
""/>
36113 <method name=
"SetKeyWords" type=
"" overloaded=
"no">
36114 <autodoc>SetKeyWords(int keywordSet, String keyWords)
</autodoc>
36116 <param name=
"keywordSet" type=
"int" default=
""/>
36117 <param name=
"keyWords" type=
"String" default=
""/>
36120 <method name=
"SetLexerLanguage" type=
"" overloaded=
"no">
36121 <autodoc>SetLexerLanguage(String language)
</autodoc>
36123 <param name=
"language" type=
"String" default=
""/>
36126 <method name=
"GetCurrentLine" type=
"int" overloaded=
"no">
36127 <autodoc>GetCurrentLine() -
> int
</autodoc>
36129 <method name=
"StyleSetSpec" type=
"" overloaded=
"no">
36130 <autodoc>StyleSetSpec(int styleNum, String spec)
</autodoc>
36132 <param name=
"styleNum" type=
"int" default=
""/>
36133 <param name=
"spec" type=
"String" default=
""/>
36136 <method name=
"StyleSetFont" type=
"" overloaded=
"no">
36137 <autodoc>StyleSetFont(int styleNum, Font font)
</autodoc>
36139 <param name=
"styleNum" type=
"int" default=
""/>
36140 <param name=
"font" type=
"Font" default=
""/>
36143 <method name=
"StyleSetFontAttr" type=
"" overloaded=
"no">
36144 <autodoc>StyleSetFontAttr(int styleNum, int size, String faceName, bool bold,
36145 bool italic, bool underline)
</autodoc>
36147 <param name=
"styleNum" type=
"int" default=
""/>
36148 <param name=
"size" type=
"int" default=
""/>
36149 <param name=
"faceName" type=
"String" default=
""/>
36150 <param name=
"bold" type=
"bool" default=
""/>
36151 <param name=
"italic" type=
"bool" default=
""/>
36152 <param name=
"underline" type=
"bool" default=
""/>
36155 <method name=
"CmdKeyExecute" type=
"" overloaded=
"no">
36156 <autodoc>CmdKeyExecute(int cmd)
</autodoc>
36158 <param name=
"cmd" type=
"int" default=
""/>
36161 <method name=
"SetMargins" type=
"" overloaded=
"no">
36162 <autodoc>SetMargins(int left, int right)
</autodoc>
36164 <param name=
"left" type=
"int" default=
""/>
36165 <param name=
"right" type=
"int" default=
""/>
36168 <method name=
"GetSelection" type=
"" overloaded=
"no">
36169 <autodoc>GetSelection(int OUTPUT, int OUTPUT)
</autodoc>
36171 <param name=
"OUTPUT" type=
"int" default=
""/>
36172 <param name=
"OUTPUT" type=
"int" default=
""/>
36175 <method name=
"PointFromPosition" type=
"Point" overloaded=
"no">
36176 <autodoc>PointFromPosition(int pos) -
> Point
</autodoc>
36178 <param name=
"pos" type=
"int" default=
""/>
36181 <method name=
"ScrollToLine" type=
"" overloaded=
"no">
36182 <autodoc>ScrollToLine(int line)
</autodoc>
36184 <param name=
"line" type=
"int" default=
""/>
36187 <method name=
"ScrollToColumn" type=
"" overloaded=
"no">
36188 <autodoc>ScrollToColumn(int column)
</autodoc>
36190 <param name=
"column" type=
"int" default=
""/>
36193 <method name=
"SendMsg" type=
"long" overloaded=
"no">
36194 <autodoc>SendMsg(int msg, long wp=
0, long lp=
0) -
> long
</autodoc>
36196 <param name=
"msg" type=
"int" default=
""/>
36197 <param name=
"wp" type=
"long" default=
"0"/>
36198 <param name=
"lp" type=
"long" default=
"0"/>
36201 <method name=
"SetVScrollBar" type=
"" overloaded=
"no">
36202 <autodoc>SetVScrollBar(wxScrollBar bar)
</autodoc>
36204 <param name=
"bar" type=
"ScrollBar" default=
""/>
36207 <method name=
"SetHScrollBar" type=
"" overloaded=
"no">
36208 <autodoc>SetHScrollBar(wxScrollBar bar)
</autodoc>
36210 <param name=
"bar" type=
"ScrollBar" default=
""/>
36213 <method name=
"GetLastKeydownProcessed" type=
"bool" overloaded=
"no">
36214 <autodoc>GetLastKeydownProcessed() -
> bool
</autodoc>
36216 <method name=
"SetLastKeydownProcessed" type=
"" overloaded=
"no">
36217 <autodoc>SetLastKeydownProcessed(bool val)
</autodoc>
36219 <param name=
"val" type=
"bool" default=
""/>
36222 <method name=
"SaveFile" type=
"bool" overloaded=
"no">
36223 <autodoc>SaveFile(String filename) -
> bool
</autodoc>
36225 <param name=
"filename" type=
"String" default=
""/>
36228 <method name=
"LoadFile" type=
"bool" overloaded=
"no">
36229 <autodoc>LoadFile(String filename) -
> bool
</autodoc>
36231 <param name=
"filename" type=
"String" default=
""/>
36234 <method name=
"DoDragOver" type=
"wxDragResult" overloaded=
"no">
36235 <autodoc>DoDragOver(int x, int y, int def) -
> int
</autodoc>
36237 <param name=
"x" type=
"int" default=
""/>
36238 <param name=
"y" type=
"int" default=
""/>
36239 <param name=
"def" type=
"wxDragResult" default=
""/>
36242 <method name=
"DoDropText" type=
"bool" overloaded=
"no">
36243 <autodoc>DoDropText(long x, long y, String data) -
> bool
</autodoc>
36245 <param name=
"x" type=
"long" default=
""/>
36246 <param name=
"y" type=
"long" default=
""/>
36247 <param name=
"data" type=
"String" default=
""/>
36250 <method name=
"SetUseAntiAliasing" type=
"" overloaded=
"no">
36251 <autodoc>SetUseAntiAliasing(bool useAA)
</autodoc>
36253 <param name=
"useAA" type=
"bool" default=
""/>
36256 <method name=
"GetUseAntiAliasing" type=
"bool" overloaded=
"no">
36257 <autodoc>GetUseAntiAliasing() -
> bool
</autodoc>
36260 <class name=
"StyledTextEvent" oldname=
"wxStyledTextEvent" module=
"stc">
36261 <baseclass name=
"CommandEvent"/>
36262 <constructor name=
"StyledTextEvent" overloaded=
"no">
36263 <autodoc>__init__(wxEventType commandType=
0, int id=
0) -
> StyledTextEvent
</autodoc>
36265 <param name=
"commandType" type=
"wxEventType" default=
"0"/>
36266 <param name=
"id" type=
"int" default=
"0"/>
36269 <destructor name=
"~wxStyledTextEvent" overloaded=
"no">
36270 <autodoc>__del__()
</autodoc>
36272 <method name=
"SetPosition" type=
"" overloaded=
"no">
36273 <autodoc>SetPosition(int pos)
</autodoc>
36275 <param name=
"pos" type=
"int" default=
""/>
36278 <method name=
"SetKey" type=
"" overloaded=
"no">
36279 <autodoc>SetKey(int k)
</autodoc>
36281 <param name=
"k" type=
"int" default=
""/>
36284 <method name=
"SetModifiers" type=
"" overloaded=
"no">
36285 <autodoc>SetModifiers(int m)
</autodoc>
36287 <param name=
"m" type=
"int" default=
""/>
36290 <method name=
"SetModificationType" type=
"" overloaded=
"no">
36291 <autodoc>SetModificationType(int t)
</autodoc>
36293 <param name=
"t" type=
"int" default=
""/>
36296 <method name=
"SetText" type=
"" overloaded=
"no">
36297 <autodoc>SetText(String t)
</autodoc>
36299 <param name=
"t" type=
"String" default=
""/>
36302 <method name=
"SetLength" type=
"" overloaded=
"no">
36303 <autodoc>SetLength(int len)
</autodoc>
36305 <param name=
"len" type=
"int" default=
""/>
36308 <method name=
"SetLinesAdded" type=
"" overloaded=
"no">
36309 <autodoc>SetLinesAdded(int num)
</autodoc>
36311 <param name=
"num" type=
"int" default=
""/>
36314 <method name=
"SetLine" type=
"" overloaded=
"no">
36315 <autodoc>SetLine(int val)
</autodoc>
36317 <param name=
"val" type=
"int" default=
""/>
36320 <method name=
"SetFoldLevelNow" type=
"" overloaded=
"no">
36321 <autodoc>SetFoldLevelNow(int val)
</autodoc>
36323 <param name=
"val" type=
"int" default=
""/>
36326 <method name=
"SetFoldLevelPrev" type=
"" overloaded=
"no">
36327 <autodoc>SetFoldLevelPrev(int val)
</autodoc>
36329 <param name=
"val" type=
"int" default=
""/>
36332 <method name=
"SetMargin" type=
"" overloaded=
"no">
36333 <autodoc>SetMargin(int val)
</autodoc>
36335 <param name=
"val" type=
"int" default=
""/>
36338 <method name=
"SetMessage" type=
"" overloaded=
"no">
36339 <autodoc>SetMessage(int val)
</autodoc>
36341 <param name=
"val" type=
"int" default=
""/>
36344 <method name=
"SetWParam" type=
"" overloaded=
"no">
36345 <autodoc>SetWParam(int val)
</autodoc>
36347 <param name=
"val" type=
"int" default=
""/>
36350 <method name=
"SetLParam" type=
"" overloaded=
"no">
36351 <autodoc>SetLParam(int val)
</autodoc>
36353 <param name=
"val" type=
"int" default=
""/>
36356 <method name=
"SetListType" type=
"" overloaded=
"no">
36357 <autodoc>SetListType(int val)
</autodoc>
36359 <param name=
"val" type=
"int" default=
""/>
36362 <method name=
"SetX" type=
"" overloaded=
"no">
36363 <autodoc>SetX(int val)
</autodoc>
36365 <param name=
"val" type=
"int" default=
""/>
36368 <method name=
"SetY" type=
"" overloaded=
"no">
36369 <autodoc>SetY(int val)
</autodoc>
36371 <param name=
"val" type=
"int" default=
""/>
36374 <method name=
"SetDragText" type=
"" overloaded=
"no">
36375 <autodoc>SetDragText(String val)
</autodoc>
36377 <param name=
"val" type=
"String" default=
""/>
36380 <method name=
"SetDragAllowMove" type=
"" overloaded=
"no">
36381 <autodoc>SetDragAllowMove(bool val)
</autodoc>
36383 <param name=
"val" type=
"bool" default=
""/>
36386 <method name=
"SetDragResult" type=
"" overloaded=
"no">
36387 <autodoc>SetDragResult(int val)
</autodoc>
36389 <param name=
"val" type=
"wxDragResult" default=
""/>
36392 <method name=
"GetPosition" type=
"int" overloaded=
"no">
36393 <autodoc>GetPosition() -
> int
</autodoc>
36395 <method name=
"GetKey" type=
"int" overloaded=
"no">
36396 <autodoc>GetKey() -
> int
</autodoc>
36398 <method name=
"GetModifiers" type=
"int" overloaded=
"no">
36399 <autodoc>GetModifiers() -
> int
</autodoc>
36401 <method name=
"GetModificationType" type=
"int" overloaded=
"no">
36402 <autodoc>GetModificationType() -
> int
</autodoc>
36404 <method name=
"GetText" type=
"String" overloaded=
"no">
36405 <autodoc>GetText() -
> String
</autodoc>
36407 <method name=
"GetLength" type=
"int" overloaded=
"no">
36408 <autodoc>GetLength() -
> int
</autodoc>
36410 <method name=
"GetLinesAdded" type=
"int" overloaded=
"no">
36411 <autodoc>GetLinesAdded() -
> int
</autodoc>
36413 <method name=
"GetLine" type=
"int" overloaded=
"no">
36414 <autodoc>GetLine() -
> int
</autodoc>
36416 <method name=
"GetFoldLevelNow" type=
"int" overloaded=
"no">
36417 <autodoc>GetFoldLevelNow() -
> int
</autodoc>
36419 <method name=
"GetFoldLevelPrev" type=
"int" overloaded=
"no">
36420 <autodoc>GetFoldLevelPrev() -
> int
</autodoc>
36422 <method name=
"GetMargin" type=
"int" overloaded=
"no">
36423 <autodoc>GetMargin() -
> int
</autodoc>
36425 <method name=
"GetMessage" type=
"int" overloaded=
"no">
36426 <autodoc>GetMessage() -
> int
</autodoc>
36428 <method name=
"GetWParam" type=
"int" overloaded=
"no">
36429 <autodoc>GetWParam() -
> int
</autodoc>
36431 <method name=
"GetLParam" type=
"int" overloaded=
"no">
36432 <autodoc>GetLParam() -
> int
</autodoc>
36434 <method name=
"GetListType" type=
"int" overloaded=
"no">
36435 <autodoc>GetListType() -
> int
</autodoc>
36437 <method name=
"GetX" type=
"int" overloaded=
"no">
36438 <autodoc>GetX() -
> int
</autodoc>
36440 <method name=
"GetY" type=
"int" overloaded=
"no">
36441 <autodoc>GetY() -
> int
</autodoc>
36443 <method name=
"GetDragText" type=
"String" overloaded=
"no">
36444 <autodoc>GetDragText() -
> String
</autodoc>
36446 <method name=
"GetDragAllowMove" type=
"bool" overloaded=
"no">
36447 <autodoc>GetDragAllowMove() -
> bool
</autodoc>
36449 <method name=
"GetDragResult" type=
"wxDragResult" overloaded=
"no">
36450 <autodoc>GetDragResult() -
> int
</autodoc>
36452 <method name=
"GetShift" type=
"bool" overloaded=
"no">
36453 <autodoc>GetShift() -
> bool
</autodoc>
36455 <method name=
"GetControl" type=
"bool" overloaded=
"no">
36456 <autodoc>GetControl() -
> bool
</autodoc>
36458 <method name=
"GetAlt" type=
"bool" overloaded=
"no">
36459 <autodoc>GetAlt() -
> bool
</autodoc>
36461 <method name=
"Clone" type=
"Event" overloaded=
"no">
36462 <autodoc>Clone() -
> Event
</autodoc>
36466 EVT_STC_CHANGE = wx.PyEventBinder( wxEVT_STC_CHANGE,
1 )
36467 EVT_STC_STYLENEEDED = wx.PyEventBinder( wxEVT_STC_STYLENEEDED,
1 )
36468 EVT_STC_CHARADDED = wx.PyEventBinder( wxEVT_STC_CHARADDED,
1 )
36469 EVT_STC_SAVEPOINTREACHED = wx.PyEventBinder( wxEVT_STC_SAVEPOINTREACHED,
1 )
36470 EVT_STC_SAVEPOINTLEFT = wx.PyEventBinder( wxEVT_STC_SAVEPOINTLEFT,
1 )
36471 EVT_STC_ROMODIFYATTEMPT = wx.PyEventBinder( wxEVT_STC_ROMODIFYATTEMPT,
1 )
36472 EVT_STC_KEY = wx.PyEventBinder( wxEVT_STC_KEY,
1 )
36473 EVT_STC_DOUBLECLICK = wx.PyEventBinder( wxEVT_STC_DOUBLECLICK,
1 )
36474 EVT_STC_UPDATEUI = wx.PyEventBinder( wxEVT_STC_UPDATEUI,
1 )
36475 EVT_STC_MODIFIED = wx.PyEventBinder( wxEVT_STC_MODIFIED,
1 )
36476 EVT_STC_MACRORECORD = wx.PyEventBinder( wxEVT_STC_MACRORECORD,
1 )
36477 EVT_STC_MARGINCLICK = wx.PyEventBinder( wxEVT_STC_MARGINCLICK,
1 )
36478 EVT_STC_NEEDSHOWN = wx.PyEventBinder( wxEVT_STC_NEEDSHOWN,
1 )
36479 EVT_STC_POSCHANGED = wx.PyEventBinder( wxEVT_STC_POSCHANGED,
1 )
36480 EVT_STC_PAINTED = wx.PyEventBinder( wxEVT_STC_PAINTED,
1 )
36481 EVT_STC_USERLISTSELECTION = wx.PyEventBinder( wxEVT_STC_USERLISTSELECTION,
1 )
36482 EVT_STC_URIDROPPED = wx.PyEventBinder( wxEVT_STC_URIDROPPED,
1 )
36483 EVT_STC_DWELLSTART = wx.PyEventBinder( wxEVT_STC_DWELLSTART,
1 )
36484 EVT_STC_DWELLEND = wx.PyEventBinder( wxEVT_STC_DWELLEND,
1 )
36485 EVT_STC_START_DRAG = wx.PyEventBinder( wxEVT_STC_START_DRAG,
1 )
36486 EVT_STC_DRAG_OVER = wx.PyEventBinder( wxEVT_STC_DRAG_OVER,
1 )
36487 EVT_STC_DO_DROP = wx.PyEventBinder( wxEVT_STC_DO_DROP,
1 )
36488 EVT_STC_ZOOM = wx.PyEventBinder( wxEVT_STC_ZOOM,
1 )
36489 EVT_STC_HOTSPOT_CLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_CLICK,
1 )
36490 EVT_STC_HOTSPOT_DCLICK = wx.PyEventBinder( wxEVT_STC_HOTSPOT_DCLICK,
1 )
36491 EVT_STC_CALLTIP_CLICK = wx.PyEventBinder( wxEVT_STC_CALLTIP_CLICK,
1 )
36494 <module name=
"xrc">
36495 <import name=
"core"/>
36496 <pythoncode> wx = core
</pythoncode>
36498 #---------------------------------------------------------------------------
36500 <class name=
"XmlResource" oldname=
"wxXmlResource" module=
"xrc">
36501 <baseclass name=
"Object"/>
36502 <constructor name=
"XmlResource" overloaded=
"no">
36503 <autodoc>__init__(String filemask, int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
36505 <param name=
"filemask" type=
"String" default=
""/>
36506 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
36509 <constructor name=
"EmptyXmlResource" overloaded=
"no">
36510 <autodoc>EmptyXmlResource(int flags=XRC_USE_LOCALE) -
> XmlResource
</autodoc>
36512 <param name=
"flags" type=
"int" default=
"wxXRC_USE_LOCALE"/>
36515 <destructor name=
"~wxXmlResource" overloaded=
"no">
36516 <autodoc>__del__()
</autodoc>
36518 <method name=
"Load" type=
"bool" overloaded=
"no">
36519 <autodoc>Load(String filemask) -
> bool
</autodoc>
36521 <param name=
"filemask" type=
"String" default=
""/>
36524 <method name=
"LoadFromString" type=
"bool" overloaded=
"no">
36525 <autodoc>LoadFromString(String data) -
> bool
</autodoc>
36527 <param name=
"data" type=
"String" default=
""/>
36530 <method name=
"InitAllHandlers" type=
"" overloaded=
"no">
36531 <autodoc>InitAllHandlers()
</autodoc>
36533 <method name=
"AddHandler" type=
"" overloaded=
"no">
36534 <autodoc>AddHandler(XmlResourceHandler handler)
</autodoc>
36536 <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/>
36539 <method name=
"InsertHandler" type=
"" overloaded=
"no">
36540 <autodoc>InsertHandler(XmlResourceHandler handler)
</autodoc>
36542 <param name=
"handler" type=
"wxPyXmlResourceHandler" default=
""/>
36545 <method name=
"ClearHandlers" type=
"" overloaded=
"no">
36546 <autodoc>ClearHandlers()
</autodoc>
36548 <staticmethod name=
"AddSubclassFactory" type=
"" overloaded=
"no">
36549 <autodoc>AddSubclassFactory(XmlSubclassFactory factory)
</autodoc>
36551 <param name=
"factory" type=
"wxPyXmlSubclassFactory" default=
""/>
36554 <method name=
"LoadMenu" type=
"Menu" overloaded=
"no">
36555 <autodoc>LoadMenu(String name) -
> Menu
</autodoc>
36557 <param name=
"name" type=
"String" default=
""/>
36560 <method name=
"LoadMenuBar" type=
"MenuBar" overloaded=
"no">
36561 <autodoc>LoadMenuBar(String name) -
> MenuBar
</autodoc>
36563 <param name=
"name" type=
"String" default=
""/>
36566 <method name=
"LoadMenuBarOnFrame" type=
"MenuBar" overloaded=
"no">
36567 <autodoc>LoadMenuBarOnFrame(Window parent, String name) -
> MenuBar
</autodoc>
36569 <param name=
"parent" type=
"Window" default=
""/>
36570 <param name=
"name" type=
"String" default=
""/>
36573 <method name=
"LoadToolBar" type=
"ToolBar" overloaded=
"no">
36574 <autodoc>LoadToolBar(Window parent, String name) -
> wxToolBar
</autodoc>
36576 <param name=
"parent" type=
"Window" default=
""/>
36577 <param name=
"name" type=
"String" default=
""/>
36580 <method name=
"LoadDialog" type=
"Dialog" overloaded=
"no">
36581 <autodoc>LoadDialog(Window parent, String name) -
> wxDialog
</autodoc>
36583 <param name=
"parent" type=
"Window" default=
""/>
36584 <param name=
"name" type=
"String" default=
""/>
36587 <method name=
"LoadOnDialog" type=
"bool" overloaded=
"no">
36588 <autodoc>LoadOnDialog(wxDialog dlg, Window parent, String name) -
> bool
</autodoc>
36590 <param name=
"dlg" type=
"Dialog" default=
""/>
36591 <param name=
"parent" type=
"Window" default=
""/>
36592 <param name=
"name" type=
"String" default=
""/>
36595 <method name=
"LoadPanel" type=
"Panel" overloaded=
"no">
36596 <autodoc>LoadPanel(Window parent, String name) -
> wxPanel
</autodoc>
36598 <param name=
"parent" type=
"Window" default=
""/>
36599 <param name=
"name" type=
"String" default=
""/>
36602 <method name=
"LoadOnPanel" type=
"bool" overloaded=
"no">
36603 <autodoc>LoadOnPanel(wxPanel panel, Window parent, String name) -
> bool
</autodoc>
36605 <param name=
"panel" type=
"Panel" default=
""/>
36606 <param name=
"parent" type=
"Window" default=
""/>
36607 <param name=
"name" type=
"String" default=
""/>
36610 <method name=
"LoadFrame" type=
"Frame" overloaded=
"no">
36611 <autodoc>LoadFrame(Window parent, String name) -
> wxFrame
</autodoc>
36613 <param name=
"parent" type=
"Window" default=
""/>
36614 <param name=
"name" type=
"String" default=
""/>
36617 <method name=
"LoadOnFrame" type=
"bool" overloaded=
"no">
36618 <autodoc>LoadOnFrame(wxFrame frame, Window parent, String name) -
> bool
</autodoc>
36620 <param name=
"frame" type=
"Frame" default=
""/>
36621 <param name=
"parent" type=
"Window" default=
""/>
36622 <param name=
"name" type=
"String" default=
""/>
36625 <method name=
"LoadObject" type=
"Object" overloaded=
"no">
36626 <autodoc>LoadObject(Window parent, String name, String classname) -
> Object
</autodoc>
36628 <param name=
"parent" type=
"Window" default=
""/>
36629 <param name=
"name" type=
"String" default=
""/>
36630 <param name=
"classname" type=
"String" default=
""/>
36633 <method name=
"LoadOnObject" type=
"bool" overloaded=
"no">
36634 <autodoc>LoadOnObject(Object instance, Window parent, String name, String classname) -
> bool
</autodoc>
36636 <param name=
"instance" type=
"Object" default=
""/>
36637 <param name=
"parent" type=
"Window" default=
""/>
36638 <param name=
"name" type=
"String" default=
""/>
36639 <param name=
"classname" type=
"String" default=
""/>
36642 <method name=
"LoadBitmap" type=
"Bitmap" overloaded=
"no">
36643 <autodoc>LoadBitmap(String name) -
> Bitmap
</autodoc>
36645 <param name=
"name" type=
"String" default=
""/>
36648 <method name=
"LoadIcon" type=
"Icon" overloaded=
"no">
36649 <autodoc>LoadIcon(String name) -
> Icon
</autodoc>
36651 <param name=
"name" type=
"String" default=
""/>
36654 <method name=
"AttachUnknownControl" type=
"bool" overloaded=
"no">
36655 <autodoc>AttachUnknownControl(String name, Window control, Window parent=None) -
> bool
</autodoc>
36657 <param name=
"name" type=
"String" default=
""/>
36658 <param name=
"control" type=
"Window" default=
""/>
36659 <param name=
"parent" type=
"Window" default=
"NULL"/>
36662 <staticmethod name=
"GetXRCID" type=
"int" overloaded=
"no">
36663 <autodoc>GetXRCID(String str_id) -
> int
</autodoc>
36665 <param name=
"str_id" type=
"String" default=
""/>
36668 <method name=
"GetVersion" type=
"long" overloaded=
"no">
36669 <autodoc>GetVersion() -
> long
</autodoc>
36671 <method name=
"CompareVersion" type=
"int" overloaded=
"no">
36672 <autodoc>CompareVersion(int major, int minor, int release, int revision) -
> int
</autodoc>
36674 <param name=
"major" type=
"int" default=
""/>
36675 <param name=
"minor" type=
"int" default=
""/>
36676 <param name=
"release" type=
"int" default=
""/>
36677 <param name=
"revision" type=
"int" default=
""/>
36680 <staticmethod name=
"Get" type=
"XmlResource" overloaded=
"no">
36681 <autodoc>Get() -
> XmlResource
</autodoc>
36683 <staticmethod name=
"Set" type=
"XmlResource" overloaded=
"no">
36684 <autodoc>Set(XmlResource res) -
> XmlResource
</autodoc>
36686 <param name=
"res" type=
"XmlResource" default=
""/>
36689 <method name=
"GetFlags" type=
"int" overloaded=
"no">
36690 <autodoc>GetFlags() -
> int
</autodoc>
36692 <method name=
"SetFlags" type=
"" overloaded=
"no">
36693 <autodoc>SetFlags(int flags)
</autodoc>
36695 <param name=
"flags" type=
"int" default=
""/>
36701 return XmlResource_GetXRCID(str_id)
36703 def XRCCTRL(window, str_id, *ignoreargs):
36704 return window.FindWindowById(XRCID(str_id))
36707 #---------------------------------------------------------------------------
36709 <class name=
"XmlSubclassFactory" oldname=
"wxPyXmlSubclassFactory" module=
"xrc">
36710 <constructor name=
"wxPyXmlSubclassFactory" overloaded=
"no">
36711 <autodoc>__init__() -
> XmlSubclassFactory
</autodoc>
36713 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
36714 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
36716 <param name=
"self" type=
"PyObject" default=
""/>
36717 <param name=
"_class" type=
"PyObject" default=
""/>
36722 #---------------------------------------------------------------------------
36724 <class name=
"XmlProperty" oldname=
"wxXmlProperty" module=
"xrc">
36725 <constructor name=
"XmlProperty" overloaded=
"no">
36726 <autodoc>__init__(String name=EmptyString, String value=EmptyString,
36727 XmlProperty next=None) -
> XmlProperty
</autodoc>
36729 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
36730 <param name=
"value" type=
"String" default=
"wxPyEmptyString"/>
36731 <param name=
"next" type=
"XmlProperty" default=
"NULL"/>
36734 <method name=
"GetName" type=
"String" overloaded=
"no">
36735 <autodoc>GetName() -
> String
</autodoc>
36737 <method name=
"GetValue" type=
"String" overloaded=
"no">
36738 <autodoc>GetValue() -
> String
</autodoc>
36740 <method name=
"GetNext" type=
"XmlProperty" overloaded=
"no">
36741 <autodoc>GetNext() -
> XmlProperty
</autodoc>
36743 <method name=
"SetName" type=
"" overloaded=
"no">
36744 <autodoc>SetName(String name)
</autodoc>
36746 <param name=
"name" type=
"String" default=
""/>
36749 <method name=
"SetValue" type=
"" overloaded=
"no">
36750 <autodoc>SetValue(String value)
</autodoc>
36752 <param name=
"value" type=
"String" default=
""/>
36755 <method name=
"SetNext" type=
"" overloaded=
"no">
36756 <autodoc>SetNext(XmlProperty next)
</autodoc>
36758 <param name=
"next" type=
"XmlProperty" default=
""/>
36762 <class name=
"XmlNode" oldname=
"wxXmlNode" module=
"xrc">
36763 <constructor name=
"XmlNode" overloaded=
"no">
36764 <autodoc>__init__(XmlNode parent=None, int type=
0, String name=EmptyString,
36765 String content=EmptyString, XmlProperty props=None,
36766 XmlNode next=None) -
> XmlNode
</autodoc>
36768 <param name=
"parent" type=
"XmlNode" default=
"NULL"/>
36769 <param name=
"type" type=
"wxXmlNodeType" default=
"0"/>
36770 <param name=
"name" type=
"String" default=
"wxPyEmptyString"/>
36771 <param name=
"content" type=
"String" default=
"wxPyEmptyString"/>
36772 <param name=
"props" type=
"XmlProperty" default=
"NULL"/>
36773 <param name=
"next" type=
"XmlNode" default=
"NULL"/>
36776 <constructor name=
"XmlNodeEasy" overloaded=
"no">
36777 <autodoc>XmlNodeEasy(int type, String name, String content=EmptyString) -
> XmlNode
</autodoc>
36779 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
36780 <param name=
"name" type=
"String" default=
""/>
36781 <param name=
"content" type=
"String" default=
"wxPyEmptyString"/>
36784 <destructor name=
"~wxXmlNode" overloaded=
"no">
36785 <autodoc>__del__()
</autodoc>
36787 <method name=
"AddChild" type=
"" overloaded=
"no">
36788 <autodoc>AddChild(XmlNode child)
</autodoc>
36790 <param name=
"child" type=
"XmlNode" default=
""/>
36793 <method name=
"InsertChild" type=
"" overloaded=
"no">
36794 <autodoc>InsertChild(XmlNode child, XmlNode before_node)
</autodoc>
36796 <param name=
"child" type=
"XmlNode" default=
""/>
36797 <param name=
"before_node" type=
"XmlNode" default=
""/>
36800 <method name=
"RemoveChild" type=
"bool" overloaded=
"no">
36801 <autodoc>RemoveChild(XmlNode child) -
> bool
</autodoc>
36803 <param name=
"child" type=
"XmlNode" default=
""/>
36806 <method name=
"AddProperty" type=
"" overloaded=
"no">
36807 <autodoc>AddProperty(XmlProperty prop)
</autodoc>
36809 <param name=
"prop" type=
"XmlProperty" default=
""/>
36812 <method name=
"AddPropertyName" type=
"" overloaded=
"no">
36813 <autodoc>AddPropertyName(String name, String value)
</autodoc>
36815 <param name=
"name" type=
"String" default=
""/>
36816 <param name=
"value" type=
"String" default=
""/>
36819 <method name=
"DeleteProperty" type=
"bool" overloaded=
"no">
36820 <autodoc>DeleteProperty(String name) -
> bool
</autodoc>
36822 <param name=
"name" type=
"String" default=
""/>
36825 <method name=
"GetType" type=
"wxXmlNodeType" overloaded=
"no">
36826 <autodoc>GetType() -
> int
</autodoc>
36828 <method name=
"GetName" type=
"String" overloaded=
"no">
36829 <autodoc>GetName() -
> String
</autodoc>
36831 <method name=
"GetContent" type=
"String" overloaded=
"no">
36832 <autodoc>GetContent() -
> String
</autodoc>
36834 <method name=
"GetParent" type=
"XmlNode" overloaded=
"no">
36835 <autodoc>GetParent() -
> XmlNode
</autodoc>
36837 <method name=
"GetNext" type=
"XmlNode" overloaded=
"no">
36838 <autodoc>GetNext() -
> XmlNode
</autodoc>
36840 <method name=
"GetChildren" type=
"XmlNode" overloaded=
"no">
36841 <autodoc>GetChildren() -
> XmlNode
</autodoc>
36843 <method name=
"GetProperties" type=
"XmlProperty" overloaded=
"no">
36844 <autodoc>GetProperties() -
> XmlProperty
</autodoc>
36846 <method name=
"GetPropVal" type=
"String" overloaded=
"no">
36847 <autodoc>GetPropVal(String propName, String defaultVal) -
> String
</autodoc>
36849 <param name=
"propName" type=
"String" default=
""/>
36850 <param name=
"defaultVal" type=
"String" default=
""/>
36853 <method name=
"HasProp" type=
"bool" overloaded=
"no">
36854 <autodoc>HasProp(String propName) -
> bool
</autodoc>
36856 <param name=
"propName" type=
"String" default=
""/>
36859 <method name=
"SetType" type=
"" overloaded=
"no">
36860 <autodoc>SetType(int type)
</autodoc>
36862 <param name=
"type" type=
"wxXmlNodeType" default=
""/>
36865 <method name=
"SetName" type=
"" overloaded=
"no">
36866 <autodoc>SetName(String name)
</autodoc>
36868 <param name=
"name" type=
"String" default=
""/>
36871 <method name=
"SetContent" type=
"" overloaded=
"no">
36872 <autodoc>SetContent(String con)
</autodoc>
36874 <param name=
"con" type=
"String" default=
""/>
36877 <method name=
"SetParent" type=
"" overloaded=
"no">
36878 <autodoc>SetParent(XmlNode parent)
</autodoc>
36880 <param name=
"parent" type=
"XmlNode" default=
""/>
36883 <method name=
"SetNext" type=
"" overloaded=
"no">
36884 <autodoc>SetNext(XmlNode next)
</autodoc>
36886 <param name=
"next" type=
"XmlNode" default=
""/>
36889 <method name=
"SetChildren" type=
"" overloaded=
"no">
36890 <autodoc>SetChildren(XmlNode child)
</autodoc>
36892 <param name=
"child" type=
"XmlNode" default=
""/>
36895 <method name=
"SetProperties" type=
"" overloaded=
"no">
36896 <autodoc>SetProperties(XmlProperty prop)
</autodoc>
36898 <param name=
"prop" type=
"XmlProperty" default=
""/>
36902 <class name=
"XmlDocument" oldname=
"wxXmlDocument" module=
"xrc">
36903 <baseclass name=
"Object"/>
36904 <constructor name=
"XmlDocument" overloaded=
"no">
36905 <autodoc>__init__(String filename, String encoding=UTF8String) -
> XmlDocument
</autodoc>
36907 <param name=
"filename" type=
"String" default=
""/>
36908 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
36911 <constructor name=
"XmlDocumentFromStream" overloaded=
"no">
36912 <autodoc>XmlDocumentFromStream(InputStream stream, String encoding=UTF8String) -
> XmlDocument
</autodoc>
36914 <param name=
"stream" type=
"wxInputStream" default=
""/>
36915 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
36918 <constructor name=
"EmptyXmlDocument" overloaded=
"no">
36919 <autodoc>EmptyXmlDocument() -
> XmlDocument
</autodoc>
36921 <destructor name=
"~wxXmlDocument" overloaded=
"no">
36922 <autodoc>__del__()
</autodoc>
36924 <method name=
"Load" type=
"bool" overloaded=
"no">
36925 <autodoc>Load(String filename, String encoding=UTF8String) -
> bool
</autodoc>
36927 <param name=
"filename" type=
"String" default=
""/>
36928 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
36931 <method name=
"LoadFromStream" type=
"bool" overloaded=
"no">
36932 <autodoc>LoadFromStream(InputStream stream, String encoding=UTF8String) -
> bool
</autodoc>
36934 <param name=
"stream" type=
"wxInputStream" default=
""/>
36935 <param name=
"encoding" type=
"String" default=
"wxPyUTF8String"/>
36938 <method name=
"Save" type=
"bool" overloaded=
"no">
36939 <autodoc>Save(String filename) -
> bool
</autodoc>
36941 <param name=
"filename" type=
"String" default=
""/>
36944 <method name=
"SaveToStream" type=
"bool" overloaded=
"no">
36945 <autodoc>SaveToStream(OutputStream stream) -
> bool
</autodoc>
36947 <param name=
"stream" type=
"OutputStream" default=
""/>
36950 <method name=
"IsOk" type=
"bool" overloaded=
"no">
36951 <autodoc>IsOk() -
> bool
</autodoc>
36953 <method name=
"GetRoot" type=
"XmlNode" overloaded=
"no">
36954 <autodoc>GetRoot() -
> XmlNode
</autodoc>
36956 <method name=
"GetVersion" type=
"String" overloaded=
"no">
36957 <autodoc>GetVersion() -
> String
</autodoc>
36959 <method name=
"GetFileEncoding" type=
"String" overloaded=
"no">
36960 <autodoc>GetFileEncoding() -
> String
</autodoc>
36962 <method name=
"SetRoot" type=
"" overloaded=
"no">
36963 <autodoc>SetRoot(XmlNode node)
</autodoc>
36965 <param name=
"node" type=
"XmlNode" default=
""/>
36968 <method name=
"SetVersion" type=
"" overloaded=
"no">
36969 <autodoc>SetVersion(String version)
</autodoc>
36971 <param name=
"version" type=
"String" default=
""/>
36974 <method name=
"SetFileEncoding" type=
"" overloaded=
"no">
36975 <autodoc>SetFileEncoding(String encoding)
</autodoc>
36977 <param name=
"encoding" type=
"String" default=
""/>
36982 #---------------------------------------------------------------------------
36984 <class name=
"XmlResourceHandler" oldname=
"wxPyXmlResourceHandler" module=
"xrc">
36985 <baseclass name=
"Object"/>
36986 <constructor name=
"wxPyXmlResourceHandler" overloaded=
"no">
36987 <autodoc>__init__() -
> XmlResourceHandler
</autodoc>
36989 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
36990 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
36992 <param name=
"self" type=
"PyObject" default=
""/>
36993 <param name=
"_class" type=
"PyObject" default=
""/>
36996 <method name=
"CreateResource" type=
"Object" overloaded=
"no">
36997 <autodoc>CreateResource(XmlNode node, Object parent, Object instance) -
> Object
</autodoc>
36999 <param name=
"node" type=
"XmlNode" default=
""/>
37000 <param name=
"parent" type=
"Object" default=
""/>
37001 <param name=
"instance" type=
"Object" default=
""/>
37004 <method name=
"SetParentResource" type=
"" overloaded=
"no">
37005 <autodoc>SetParentResource(XmlResource res)
</autodoc>
37007 <param name=
"res" type=
"XmlResource" default=
""/>
37010 <method name=
"GetResource" type=
"XmlResource" overloaded=
"no">
37011 <autodoc>GetResource() -
> XmlResource
</autodoc>
37013 <method name=
"GetNode" type=
"XmlNode" overloaded=
"no">
37014 <autodoc>GetNode() -
> XmlNode
</autodoc>
37016 <method name=
"GetClass" type=
"String" overloaded=
"no">
37017 <autodoc>GetClass() -
> String
</autodoc>
37019 <method name=
"GetParent" type=
"Object" overloaded=
"no">
37020 <autodoc>GetParent() -
> Object
</autodoc>
37022 <method name=
"GetInstance" type=
"Object" overloaded=
"no">
37023 <autodoc>GetInstance() -
> Object
</autodoc>
37025 <method name=
"GetParentAsWindow" type=
"Window" overloaded=
"no">
37026 <autodoc>GetParentAsWindow() -
> Window
</autodoc>
37028 <method name=
"GetInstanceAsWindow" type=
"Window" overloaded=
"no">
37029 <autodoc>GetInstanceAsWindow() -
> Window
</autodoc>
37031 <method name=
"IsOfClass" type=
"bool" overloaded=
"no">
37032 <autodoc>IsOfClass(XmlNode node, String classname) -
> bool
</autodoc>
37034 <param name=
"node" type=
"XmlNode" default=
""/>
37035 <param name=
"classname" type=
"String" default=
""/>
37038 <method name=
"GetNodeContent" type=
"String" overloaded=
"no">
37039 <autodoc>GetNodeContent(XmlNode node) -
> String
</autodoc>
37041 <param name=
"node" type=
"XmlNode" default=
""/>
37044 <method name=
"HasParam" type=
"bool" overloaded=
"no">
37045 <autodoc>HasParam(String param) -
> bool
</autodoc>
37047 <param name=
"param" type=
"String" default=
""/>
37050 <method name=
"GetParamNode" type=
"XmlNode" overloaded=
"no">
37051 <autodoc>GetParamNode(String param) -
> XmlNode
</autodoc>
37053 <param name=
"param" type=
"String" default=
""/>
37056 <method name=
"GetParamValue" type=
"String" overloaded=
"no">
37057 <autodoc>GetParamValue(String param) -
> String
</autodoc>
37059 <param name=
"param" type=
"String" default=
""/>
37062 <method name=
"AddStyle" type=
"" overloaded=
"no">
37063 <autodoc>AddStyle(String name, int value)
</autodoc>
37065 <param name=
"name" type=
"String" default=
""/>
37066 <param name=
"value" type=
"int" default=
""/>
37069 <method name=
"AddWindowStyles" type=
"" overloaded=
"no">
37070 <autodoc>AddWindowStyles()
</autodoc>
37072 <method name=
"GetStyle" type=
"int" overloaded=
"no">
37073 <autodoc>GetStyle(String param=StyleString, int defaults=
0) -
> int
</autodoc>
37075 <param name=
"param" type=
"String" default=
"wxPyStyleString"/>
37076 <param name=
"defaults" type=
"int" default=
"0"/>
37079 <method name=
"GetText" type=
"String" overloaded=
"no">
37080 <autodoc>GetText(String param, bool translate=True) -
> String
</autodoc>
37082 <param name=
"param" type=
"String" default=
""/>
37083 <param name=
"translate" type=
"bool" default=
"True"/>
37086 <method name=
"GetID" type=
"int" overloaded=
"no">
37087 <autodoc>GetID() -
> int
</autodoc>
37089 <method name=
"GetName" type=
"String" overloaded=
"no">
37090 <autodoc>GetName() -
> String
</autodoc>
37092 <method name=
"GetBool" type=
"bool" overloaded=
"no">
37093 <autodoc>GetBool(String param, bool defaultv=False) -
> bool
</autodoc>
37095 <param name=
"param" type=
"String" default=
""/>
37096 <param name=
"defaultv" type=
"bool" default=
"False"/>
37099 <method name=
"GetLong" type=
"long" overloaded=
"no">
37100 <autodoc>GetLong(String param, long defaultv=
0) -
> long
</autodoc>
37102 <param name=
"param" type=
"String" default=
""/>
37103 <param name=
"defaultv" type=
"long" default=
"0"/>
37106 <method name=
"GetColour" type=
"Colour" overloaded=
"no">
37107 <autodoc>GetColour(String param) -
> Colour
</autodoc>
37109 <param name=
"param" type=
"String" default=
""/>
37112 <method name=
"GetSize" type=
"Size" overloaded=
"no">
37113 <autodoc>GetSize(String param=SizeString) -
> Size
</autodoc>
37115 <param name=
"param" type=
"String" default=
"wxPySizeString"/>
37118 <method name=
"GetPosition" type=
"Point" overloaded=
"no">
37119 <autodoc>GetPosition(String param=PosString) -
> Point
</autodoc>
37121 <param name=
"param" type=
"String" default=
"wxPyPosString"/>
37124 <method name=
"GetDimension" type=
"int" overloaded=
"no">
37125 <autodoc>GetDimension(String param, int defaultv=
0) -
> int
</autodoc>
37127 <param name=
"param" type=
"String" default=
""/>
37128 <param name=
"defaultv" type=
"int" default=
"0"/>
37131 <method name=
"GetBitmap" type=
"Bitmap" overloaded=
"no">
37132 <autodoc>GetBitmap(String param=BitmapString, wxArtClient defaultArtClient=wxART_OTHER,
37133 Size size=DefaultSize) -
> Bitmap
</autodoc>
37135 <param name=
"param" type=
"String" default=
"wxPyBitmapString"/>
37136 <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/>
37137 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37140 <method name=
"GetIcon" type=
"Icon" overloaded=
"no">
37141 <autodoc>GetIcon(String param=IconString, wxArtClient defaultArtClient=wxART_OTHER,
37142 Size size=DefaultSize) -
> Icon
</autodoc>
37144 <param name=
"param" type=
"String" default=
"wxPyIconString"/>
37145 <param name=
"defaultArtClient" type=
"wxArtClient" default=
"wxART_OTHER"/>
37146 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37149 <method name=
"GetFont" type=
"Font" overloaded=
"no">
37150 <autodoc>GetFont(String param=FontString) -
> Font
</autodoc>
37152 <param name=
"param" type=
"String" default=
"wxPyFontString"/>
37155 <method name=
"SetupWindow" type=
"" overloaded=
"no">
37156 <autodoc>SetupWindow(Window wnd)
</autodoc>
37158 <param name=
"wnd" type=
"Window" default=
""/>
37161 <method name=
"CreateChildren" type=
"" overloaded=
"no">
37162 <autodoc>CreateChildren(Object parent, bool this_hnd_only=False)
</autodoc>
37164 <param name=
"parent" type=
"Object" default=
""/>
37165 <param name=
"this_hnd_only" type=
"bool" default=
"False"/>
37168 <method name=
"CreateChildrenPrivately" type=
"" overloaded=
"no">
37169 <autodoc>CreateChildrenPrivately(Object parent, XmlNode rootnode=None)
</autodoc>
37171 <param name=
"parent" type=
"Object" default=
""/>
37172 <param name=
"rootnode" type=
"XmlNode" default=
"NULL"/>
37175 <method name=
"CreateResFromNode" type=
"Object" overloaded=
"no">
37176 <autodoc>CreateResFromNode(XmlNode node, Object parent, Object instance=None) -
> Object
</autodoc>
37178 <param name=
"node" type=
"XmlNode" default=
""/>
37179 <param name=
"parent" type=
"Object" default=
""/>
37180 <param name=
"instance" type=
"Object" default=
"NULL"/>
37183 <method name=
"GetCurFileSystem" type=
"FileSystem" overloaded=
"no">
37184 <autodoc>GetCurFileSystem() -
> FileSystem
</autodoc>
37187 <pythoncode>#----------------------------------------------------------------------------
37188 # The global was removed in favor of static accessor functions. This is for
37189 # backwards compatibility:
37191 TheXmlResource = XmlResource_Get()
37194 #----------------------------------------------------------------------------
37195 # Create a factory for handling the subclass property of the object tag.
37198 def _my_import(name):
37199 mod = __import__(name)
37200 components = name.split('.')
37201 for comp in components[
1:]:
37202 mod = getattr(mod, comp)
37206 class XmlSubclassFactory_Python(XmlSubclassFactory):
37207 def __init__(self):
37208 XmlSubclassFactory.__init__(self)
37210 def Create(self, className):
37211 assert className.find('.') != -
1, "Module name must be specified!"
37212 mname = className[:className.rfind('.')]
37213 cname = className[className.rfind('.')+
1:]
37214 module = _my_import(mname)
37215 klass = getattr(module, cname)
37220 XmlResource_AddSubclassFactory(XmlSubclassFactory_Python())
37222 #----------------------------------------------------------------------------
37225 <module name=
"gizmos">
37226 <import name=
"windows"/>
37227 <import name=
"controls"/>
37228 <pythoncode> wx = core
</pythoncode>
37229 <class name=
"DynamicSashSplitEvent" oldname=
"wxDynamicSashSplitEvent" module=
"gizmos">
37230 <baseclass name=
"CommandEvent"/>
37231 <constructor name=
"DynamicSashSplitEvent" overloaded=
"no">
37232 <autodoc>__init__(Object target) -
> DynamicSashSplitEvent
</autodoc>
37234 <param name=
"target" type=
"Object" default=
""/>
37238 <class name=
"DynamicSashUnifyEvent" oldname=
"wxDynamicSashUnifyEvent" module=
"gizmos">
37239 <baseclass name=
"CommandEvent"/>
37240 <constructor name=
"DynamicSashUnifyEvent" overloaded=
"no">
37241 <autodoc>__init__(Object target) -
> DynamicSashUnifyEvent
</autodoc>
37243 <param name=
"target" type=
"Object" default=
""/>
37247 <class name=
"DynamicSashWindow" oldname=
"wxDynamicSashWindow" module=
"gizmos">
37248 <baseclass name=
"Window"/>
37249 <constructor name=
"DynamicSashWindow" overloaded=
"no">
37250 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37251 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
37252 String name=DynamicSashNameStr) -
> DynamicSashWindow
</autodoc>
37254 <param name=
"parent" type=
"Window" default=
""/>
37255 <param name=
"id" type=
"int" default=
""/>
37256 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37257 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37258 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
37259 <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/>
37262 <constructor name=
"PreDynamicSashWindow" overloaded=
"no">
37263 <autodoc>PreDynamicSashWindow() -
> DynamicSashWindow
</autodoc>
37265 <method name=
"Create" type=
"bool" overloaded=
"no">
37266 <autodoc>Create(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37267 long style=wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER,
37268 String name=DynamicSashNameStr) -
> bool
</autodoc>
37270 <param name=
"parent" type=
"Window" default=
""/>
37271 <param name=
"id" type=
"int" default=
""/>
37272 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37273 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37274 <param name=
"style" type=
"long" default=
"wxCLIP_CHILDREN|wxDS_MANAGE_SCROLLBARS|wxDS_DRAG_CORNER"/>
37275 <param name=
"name" type=
"String" default=
"wxPyDynamicSashNameStr"/>
37278 <method name=
"GetHScrollBar" type=
"ScrollBar" overloaded=
"no">
37279 <autodoc>GetHScrollBar(Window child) -
> ScrollBar
</autodoc>
37281 <param name=
"child" type=
"Window" default=
""/>
37284 <method name=
"GetVScrollBar" type=
"ScrollBar" overloaded=
"no">
37285 <autodoc>GetVScrollBar(Window child) -
> ScrollBar
</autodoc>
37287 <param name=
"child" type=
"Window" default=
""/>
37292 EVT_DYNAMIC_SASH_SPLIT = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_SPLIT,
1 )
37293 EVT_DYNAMIC_SASH_UNIFY = wx.PyEventBinder( wxEVT_DYNAMIC_SASH_UNIFY,
1 )
37295 <class name=
"EditableListBox" oldname=
"wxEditableListBox" module=
"gizmos">
37296 <baseclass name=
"Panel"/>
37297 <constructor name=
"EditableListBox" overloaded=
"no">
37298 <autodoc>__init__(Window parent, int id, String label, Point pos=DefaultPosition,
37299 Size size=DefaultSize, long style=wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE,
37300 String name=EditableListBoxNameStr) -
> EditableListBox
</autodoc>
37302 <param name=
"parent" type=
"Window" default=
""/>
37303 <param name=
"id" type=
"int" default=
""/>
37304 <param name=
"label" type=
"String" default=
""/>
37305 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37306 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37307 <param name=
"style" type=
"long" default=
"wxEL_ALLOW_NEW|wxEL_ALLOW_EDIT|wxEL_ALLOW_DELETE"/>
37308 <param name=
"name" type=
"String" default=
"wxPyEditableListBoxNameStr"/>
37311 <method name=
"SetStrings" type=
"" overloaded=
"no">
37312 <autodoc>SetStrings(wxArrayString strings)
</autodoc>
37314 <param name=
"strings" type=
"wxArrayString" default=
""/>
37317 <method name=
"GetStrings" type=
"PyObject" overloaded=
"no">
37318 <autodoc>GetStrings() -
> PyObject
</autodoc>
37320 <method name=
"GetListCtrl" type=
"wxListCtrl" overloaded=
"no">
37321 <autodoc>GetListCtrl() -
> wxListCtrl
</autodoc>
37323 <method name=
"GetDelButton" type=
"BitmapButton" overloaded=
"no">
37324 <autodoc>GetDelButton() -
> BitmapButton
</autodoc>
37326 <method name=
"GetNewButton" type=
"BitmapButton" overloaded=
"no">
37327 <autodoc>GetNewButton() -
> BitmapButton
</autodoc>
37329 <method name=
"GetUpButton" type=
"BitmapButton" overloaded=
"no">
37330 <autodoc>GetUpButton() -
> BitmapButton
</autodoc>
37332 <method name=
"GetDownButton" type=
"BitmapButton" overloaded=
"no">
37333 <autodoc>GetDownButton() -
> BitmapButton
</autodoc>
37335 <method name=
"GetEditButton" type=
"BitmapButton" overloaded=
"no">
37336 <autodoc>GetEditButton() -
> BitmapButton
</autodoc>
37339 <class name=
"RemotelyScrolledTreeCtrl" oldname=
"wxRemotelyScrolledTreeCtrl" module=
"gizmos">
37340 <baseclass name=
"TreeCtrl"/>
37341 <constructor name=
"RemotelyScrolledTreeCtrl" overloaded=
"no">
37342 <autodoc>__init__(Window parent, int id, Point pos=DefaultPosition, Size size=DefaultSize,
37343 long style=TR_HAS_BUTTONS) -
> RemotelyScrolledTreeCtrl
</autodoc>
37345 <param name=
"parent" type=
"Window" default=
""/>
37346 <param name=
"id" type=
"int" default=
""/>
37347 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37348 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37349 <param name=
"style" type=
"long" default=
"wxTR_HAS_BUTTONS"/>
37352 <method name=
"HideVScrollbar" type=
"" overloaded=
"no">
37353 <autodoc>HideVScrollbar()
</autodoc>
37355 <method name=
"AdjustRemoteScrollbars" type=
"" overloaded=
"no">
37356 <autodoc>AdjustRemoteScrollbars()
</autodoc>
37358 <method name=
"GetScrolledWindow" type=
"ScrolledWindow" overloaded=
"no">
37359 <autodoc>GetScrolledWindow() -
> ScrolledWindow
</autodoc>
37361 <method name=
"ScrollToLine" type=
"" overloaded=
"no">
37362 <autodoc>ScrollToLine(int posHoriz, int posVert)
</autodoc>
37364 <param name=
"posHoriz" type=
"int" default=
""/>
37365 <param name=
"posVert" type=
"int" default=
""/>
37368 <method name=
"SetCompanionWindow" type=
"" overloaded=
"no">
37369 <autodoc>SetCompanionWindow(Window companion)
</autodoc>
37371 <param name=
"companion" type=
"Window" default=
""/>
37374 <method name=
"GetCompanionWindow" type=
"Window" overloaded=
"no">
37375 <autodoc>GetCompanionWindow() -
> Window
</autodoc>
37378 <class name=
"TreeCompanionWindow" oldname=
"wxPyTreeCompanionWindow" module=
"gizmos">
37379 <baseclass name=
"Window"/>
37380 <constructor name=
"wxPyTreeCompanionWindow" overloaded=
"no">
37381 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37382 Size size=DefaultSize, long style=
0) -
> TreeCompanionWindow
</autodoc>
37384 <param name=
"parent" type=
"Window" default=
""/>
37385 <param name=
"id" type=
"int" default=
"-1"/>
37386 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37387 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37388 <param name=
"style" type=
"long" default=
"0"/>
37391 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
37392 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
37394 <param name=
"self" type=
"PyObject" default=
""/>
37395 <param name=
"_class" type=
"PyObject" default=
""/>
37398 <method name=
"GetTreeCtrl" type=
"RemotelyScrolledTreeCtrl" overloaded=
"no">
37399 <autodoc>GetTreeCtrl() -
> RemotelyScrolledTreeCtrl
</autodoc>
37401 <method name=
"SetTreeCtrl" type=
"" overloaded=
"no">
37402 <autodoc>SetTreeCtrl(RemotelyScrolledTreeCtrl treeCtrl)
</autodoc>
37404 <param name=
"treeCtrl" type=
"RemotelyScrolledTreeCtrl" default=
""/>
37408 <class name=
"ThinSplitterWindow" oldname=
"wxThinSplitterWindow" module=
"gizmos">
37409 <baseclass name=
"SplitterWindow"/>
37410 <constructor name=
"ThinSplitterWindow" overloaded=
"no">
37411 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37412 Size size=DefaultSize, long style=wxSP_3D|wxCLIP_CHILDREN) -
> ThinSplitterWindow
</autodoc>
37414 <param name=
"parent" type=
"Window" default=
""/>
37415 <param name=
"id" type=
"int" default=
"-1"/>
37416 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37417 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37418 <param name=
"style" type=
"long" default=
"wxSP_3D|wxCLIP_CHILDREN"/>
37422 <class name=
"SplitterScrolledWindow" oldname=
"wxSplitterScrolledWindow" module=
"gizmos">
37423 <baseclass name=
"ScrolledWindow"/>
37424 <constructor name=
"SplitterScrolledWindow" overloaded=
"no">
37425 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37426 Size size=DefaultSize, long style=
0) -
> SplitterScrolledWindow
</autodoc>
37428 <param name=
"parent" type=
"Window" default=
""/>
37429 <param name=
"id" type=
"int" default=
"-1"/>
37430 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37431 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37432 <param name=
"style" type=
"long" default=
"0"/>
37436 <class name=
"LEDNumberCtrl" oldname=
"wxLEDNumberCtrl" module=
"gizmos">
37437 <baseclass name=
"Control"/>
37438 <constructor name=
"LEDNumberCtrl" overloaded=
"no">
37439 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37440 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> LEDNumberCtrl
</autodoc>
37442 <param name=
"parent" type=
"Window" default=
""/>
37443 <param name=
"id" type=
"int" default=
"-1"/>
37444 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37445 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37446 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
37449 <constructor name=
"PreLEDNumberCtrl" overloaded=
"no">
37450 <autodoc>PreLEDNumberCtrl() -
> LEDNumberCtrl
</autodoc>
37452 <method name=
"Create" type=
"bool" overloaded=
"no">
37453 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
37454 Size size=DefaultSize, long style=wxLED_ALIGN_LEFT|wxLED_DRAW_FADED) -
> bool
</autodoc>
37456 <param name=
"parent" type=
"Window" default=
""/>
37457 <param name=
"id" type=
"int" default=
"-1"/>
37458 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37459 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37460 <param name=
"style" type=
"long" default=
"wxLED_ALIGN_LEFT|wxLED_DRAW_FADED"/>
37463 <method name=
"GetAlignment" type=
"wxLEDValueAlign" overloaded=
"no">
37464 <autodoc>GetAlignment() -
> int
</autodoc>
37466 <method name=
"GetDrawFaded" type=
"bool" overloaded=
"no">
37467 <autodoc>GetDrawFaded() -
> bool
</autodoc>
37469 <method name=
"GetValue" type=
"String" overloaded=
"no">
37470 <autodoc>GetValue() -
> String
</autodoc>
37472 <method name=
"SetAlignment" type=
"" overloaded=
"no">
37473 <autodoc>SetAlignment(int Alignment, bool Redraw=true)
</autodoc>
37475 <param name=
"Alignment" type=
"wxLEDValueAlign" default=
""/>
37476 <param name=
"Redraw" type=
"bool" default=
"true"/>
37479 <method name=
"SetDrawFaded" type=
"" overloaded=
"no">
37480 <autodoc>SetDrawFaded(bool DrawFaded, bool Redraw=true)
</autodoc>
37482 <param name=
"DrawFaded" type=
"bool" default=
""/>
37483 <param name=
"Redraw" type=
"bool" default=
"true"/>
37486 <method name=
"SetValue" type=
"" overloaded=
"no">
37487 <autodoc>SetValue(String Value, bool Redraw=true)
</autodoc>
37489 <param name=
"Value" type=
"String" default=
""/>
37490 <param name=
"Redraw" type=
"bool" default=
"true"/>
37494 <class name=
"TreeListColumnInfo" oldname=
"wxTreeListColumnInfo" module=
"gizmos">
37495 <baseclass name=
"Object"/>
37496 <constructor name=
"TreeListColumnInfo" overloaded=
"no">
37497 <autodoc>__init__(String text=EmptyString, int image=-
1, size_t width=
100,
37498 int alignment=TL_ALIGN_LEFT) -
> TreeListColumnInfo
</autodoc>
37500 <param name=
"text" type=
"String" default=
"wxPyEmptyString"/>
37501 <param name=
"image" type=
"int" default=
"-1"/>
37502 <param name=
"width" type=
"size_t" default=
"100"/>
37503 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
"wxTL_ALIGN_LEFT"/>
37506 <method name=
"GetAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no">
37507 <autodoc>GetAlignment() -
> int
</autodoc>
37509 <method name=
"GetText" type=
"String" overloaded=
"no">
37510 <autodoc>GetText() -
> String
</autodoc>
37512 <method name=
"GetImage" type=
"int" overloaded=
"no">
37513 <autodoc>GetImage() -
> int
</autodoc>
37515 <method name=
"GetSelectedImage" type=
"int" overloaded=
"no">
37516 <autodoc>GetSelectedImage() -
> int
</autodoc>
37518 <method name=
"GetWidth" type=
"size_t" overloaded=
"no">
37519 <autodoc>GetWidth() -
> size_t
</autodoc>
37521 <method name=
"SetAlignment" type=
"" overloaded=
"no">
37522 <autodoc>SetAlignment(int alignment)
</autodoc>
37524 <param name=
"alignment" type=
"wxTreeListColumnAlign" default=
""/>
37527 <method name=
"SetText" type=
"" overloaded=
"no">
37528 <autodoc>SetText(String text)
</autodoc>
37530 <param name=
"text" type=
"String" default=
""/>
37533 <method name=
"SetImage" type=
"" overloaded=
"no">
37534 <autodoc>SetImage(int image)
</autodoc>
37536 <param name=
"image" type=
"int" default=
""/>
37539 <method name=
"SetSelectedImage" type=
"" overloaded=
"no">
37540 <autodoc>SetSelectedImage(int image)
</autodoc>
37542 <param name=
"image" type=
"int" default=
""/>
37545 <method name=
"SetWidth" type=
"" overloaded=
"no">
37546 <autodoc>SetWidth(size_t with)
</autodoc>
37548 <param name=
"with" type=
"size_t" default=
""/>
37552 <class name=
"TreeListCtrl" oldname=
"wxPyTreeListCtrl" module=
"gizmos">
37553 <baseclass name=
"Control"/>
37554 <constructor name=
"wxPyTreeListCtrl" overloaded=
"no">
37555 <autodoc>__init__(Window parent, int id=-
1, Point pos=DefaultPosition,
37556 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
37557 Validator validator=DefaultValidator,
37558 String name=TreeListCtrlNameStr) -
> TreeListCtrl
</autodoc>
37560 <param name=
"parent" type=
"Window" default=
""/>
37561 <param name=
"id" type=
"int" default=
"-1"/>
37562 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37563 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37564 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
37565 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
37566 <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/>
37569 <constructor name=
"PreTreeListCtrl" overloaded=
"no">
37570 <autodoc>PreTreeListCtrl() -
> TreeListCtrl
</autodoc>
37572 <method name=
"Create" type=
"bool" overloaded=
"no">
37573 <autodoc>Create(Window parent, int id=-
1, Point pos=DefaultPosition,
37574 Size size=DefaultSize, long style=TR_DEFAULT_STYLE,
37575 Validator validator=DefaultValidator,
37576 String name=TreeListCtrlNameStr) -
> bool
</autodoc>
37577 <docstring>Do the
2nd phase and create the GUI control.
</docstring>
37579 <param name=
"parent" type=
"Window" default=
""/>
37580 <param name=
"id" type=
"int" default=
"-1"/>
37581 <param name=
"pos" type=
"Point" default=
"wxDefaultPosition"/>
37582 <param name=
"size" type=
"Size" default=
"wxDefaultSize"/>
37583 <param name=
"style" type=
"long" default=
"wxTR_DEFAULT_STYLE"/>
37584 <param name=
"validator" type=
"Validator" default=
"wxDefaultValidator"/>
37585 <param name=
"name" type=
"String" default=
"wxPyTreeListCtrlNameStr"/>
37588 <method name=
"_setCallbackInfo" type=
"" overloaded=
"no">
37589 <autodoc>_setCallbackInfo(PyObject self, PyObject _class)
</autodoc>
37591 <param name=
"self" type=
"PyObject" default=
""/>
37592 <param name=
"_class" type=
"PyObject" default=
""/>
37595 <method name=
"GetCount" type=
"size_t" overloaded=
"no">
37596 <autodoc>GetCount() -
> size_t
</autodoc>
37598 <method name=
"GetIndent" type=
"unsigned int" overloaded=
"no">
37599 <autodoc>GetIndent() -
> unsigned int
</autodoc>
37601 <method name=
"SetIndent" type=
"" overloaded=
"no">
37602 <autodoc>SetIndent(unsigned int indent)
</autodoc>
37604 <param name=
"indent" type=
"unsigned int" default=
""/>
37607 <method name=
"GetSpacing" type=
"unsigned int" overloaded=
"no">
37608 <autodoc>GetSpacing() -
> unsigned int
</autodoc>
37610 <method name=
"SetSpacing" type=
"" overloaded=
"no">
37611 <autodoc>SetSpacing(unsigned int spacing)
</autodoc>
37613 <param name=
"spacing" type=
"unsigned int" default=
""/>
37616 <method name=
"GetLineSpacing" type=
"unsigned int" overloaded=
"no">
37617 <autodoc>GetLineSpacing() -
> unsigned int
</autodoc>
37619 <method name=
"SetLineSpacing" type=
"" overloaded=
"no">
37620 <autodoc>SetLineSpacing(unsigned int spacing)
</autodoc>
37622 <param name=
"spacing" type=
"unsigned int" default=
""/>
37625 <method name=
"GetImageList" type=
"ImageList" overloaded=
"no">
37626 <autodoc>GetImageList() -
> ImageList
</autodoc>
37628 <method name=
"GetStateImageList" type=
"ImageList" overloaded=
"no">
37629 <autodoc>GetStateImageList() -
> ImageList
</autodoc>
37631 <method name=
"GetButtonsImageList" type=
"ImageList" overloaded=
"no">
37632 <autodoc>GetButtonsImageList() -
> ImageList
</autodoc>
37634 <method name=
"SetImageList" type=
"" overloaded=
"no">
37635 <autodoc>SetImageList(ImageList imageList)
</autodoc>
37637 <param name=
"imageList" type=
"ImageList" default=
""/>
37640 <method name=
"SetStateImageList" type=
"" overloaded=
"no">
37641 <autodoc>SetStateImageList(ImageList imageList)
</autodoc>
37643 <param name=
"imageList" type=
"ImageList" default=
""/>
37646 <method name=
"SetButtonsImageList" type=
"" overloaded=
"no">
37647 <autodoc>SetButtonsImageList(ImageList imageList)
</autodoc>
37649 <param name=
"imageList" type=
"ImageList" default=
""/>
37652 <method name=
"AssignImageList" type=
"" overloaded=
"no">
37653 <autodoc>AssignImageList(ImageList imageList)
</autodoc>
37655 <param name=
"imageList" type=
"ImageList" default=
""/>
37658 <method name=
"AssignStateImageList" type=
"" overloaded=
"no">
37659 <autodoc>AssignStateImageList(ImageList imageList)
</autodoc>
37661 <param name=
"imageList" type=
"ImageList" default=
""/>
37664 <method name=
"AssignButtonsImageList" type=
"" overloaded=
"no">
37665 <autodoc>AssignButtonsImageList(ImageList imageList)
</autodoc>
37667 <param name=
"imageList" type=
"ImageList" default=
""/>
37670 <method name=
"AddColumn" type=
"" overloaded=
"no">
37671 <autodoc>AddColumn(String text)
</autodoc>
37673 <param name=
"text" type=
"String" default=
""/>
37676 <method name=
"AddColumnInfo" type=
"" overloaded=
"no">
37677 <autodoc>AddColumnInfo(TreeListColumnInfo col)
</autodoc>
37679 <param name=
"col" type=
"TreeListColumnInfo" default=
""/>
37682 <method name=
"InsertColumn" type=
"" overloaded=
"no">
37683 <autodoc>InsertColumn(size_t before, String text)
</autodoc>
37685 <param name=
"before" type=
"size_t" default=
""/>
37686 <param name=
"text" type=
"String" default=
""/>
37689 <method name=
"InsertColumnInfo" type=
"" overloaded=
"no">
37690 <autodoc>InsertColumnInfo(size_t before, TreeListColumnInfo col)
</autodoc>
37692 <param name=
"before" type=
"size_t" default=
""/>
37693 <param name=
"col" type=
"TreeListColumnInfo" default=
""/>
37696 <method name=
"RemoveColumn" type=
"" overloaded=
"no">
37697 <autodoc>RemoveColumn(size_t column)
</autodoc>
37699 <param name=
"column" type=
"size_t" default=
""/>
37702 <method name=
"GetColumnCount" type=
"size_t" overloaded=
"no">
37703 <autodoc>GetColumnCount() -
> size_t
</autodoc>
37705 <method name=
"SetColumnWidth" type=
"" overloaded=
"no">
37706 <autodoc>SetColumnWidth(size_t column, size_t width)
</autodoc>
37708 <param name=
"column" type=
"size_t" default=
""/>
37709 <param name=
"width" type=
"size_t" default=
""/>
37712 <method name=
"GetColumnWidth" type=
"int" overloaded=
"no">
37713 <autodoc>GetColumnWidth(size_t column) -
> int
</autodoc>
37715 <param name=
"column" type=
"size_t" default=
""/>
37718 <method name=
"SetMainColumn" type=
"" overloaded=
"no">
37719 <autodoc>SetMainColumn(size_t column)
</autodoc>
37721 <param name=
"column" type=
"size_t" default=
""/>
37724 <method name=
"GetMainColumn" type=
"size_t" overloaded=
"no">
37725 <autodoc>GetMainColumn() -
> size_t
</autodoc>
37727 <method name=
"SetColumnText" type=
"" overloaded=
"no">
37728 <autodoc>SetColumnText(size_t column, String text)
</autodoc>
37730 <param name=
"column" type=
"size_t" default=
""/>
37731 <param name=
"text" type=
"String" default=
""/>
37734 <method name=
"GetColumnText" type=
"String" overloaded=
"no">
37735 <autodoc>GetColumnText(size_t column) -
> String
</autodoc>
37737 <param name=
"column" type=
"size_t" default=
""/>
37740 <method name=
"SetColumn" type=
"" overloaded=
"no">
37741 <autodoc>SetColumn(size_t column, TreeListColumnInfo info)
</autodoc>
37743 <param name=
"column" type=
"size_t" default=
""/>
37744 <param name=
"info" type=
"TreeListColumnInfo" default=
""/>
37747 <method name=
"GetColumn" type=
"TreeListColumnInfo" overloaded=
"no">
37748 <autodoc>GetColumn(size_t column) -
> TreeListColumnInfo
</autodoc>
37750 <param name=
"column" type=
"size_t" default=
""/>
37753 <method name=
"SetColumnAlignment" type=
"" overloaded=
"no">
37754 <autodoc>SetColumnAlignment(size_t column, int align)
</autodoc>
37756 <param name=
"column" type=
"size_t" default=
""/>
37757 <param name=
"align" type=
"wxTreeListColumnAlign" default=
""/>
37760 <method name=
"GetColumnAlignment" type=
"wxTreeListColumnAlign" overloaded=
"no">
37761 <autodoc>GetColumnAlignment(size_t column) -
> int
</autodoc>
37763 <param name=
"column" type=
"size_t" default=
""/>
37766 <method name=
"SetColumnImage" type=
"" overloaded=
"no">
37767 <autodoc>SetColumnImage(size_t column, int image)
</autodoc>
37769 <param name=
"column" type=
"size_t" default=
""/>
37770 <param name=
"image" type=
"int" default=
""/>
37773 <method name=
"GetColumnImage" type=
"int" overloaded=
"no">
37774 <autodoc>GetColumnImage(size_t column) -
> int
</autodoc>
37776 <param name=
"column" type=
"size_t" default=
""/>
37779 <method name=
"GetItemText" type=
"String" overloaded=
"no">
37780 <autodoc>GetItemText(TreeItemId item, int column=-
1) -
> String
</autodoc>
37782 <param name=
"item" type=
"TreeItemId" default=
""/>
37783 <param name=
"column" type=
"int" default=
"-1"/>
37786 <method name=
"GetItemImage" type=
"int" overloaded=
"no">
37787 <autodoc>GetItemImage(TreeItemId item, int column=-
1, int which=TreeItemIcon_Normal) -
> int
</autodoc>
37789 <param name=
"item" type=
"TreeItemId" default=
""/>
37790 <param name=
"column" type=
"int" default=
"-1"/>
37791 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
37794 <method name=
"SetItemText" type=
"" overloaded=
"no">
37795 <autodoc>SetItemText(TreeItemId item, String text, int column=-
1)
</autodoc>
37797 <param name=
"item" type=
"TreeItemId" default=
""/>
37798 <param name=
"text" type=
"String" default=
""/>
37799 <param name=
"column" type=
"int" default=
"-1"/>
37802 <method name=
"SetItemImage" type=
"" overloaded=
"no">
37803 <autodoc>SetItemImage(TreeItemId item, int image, int column=-
1, int which=TreeItemIcon_Normal)
</autodoc>
37805 <param name=
"item" type=
"TreeItemId" default=
""/>
37806 <param name=
"image" type=
"int" default=
""/>
37807 <param name=
"column" type=
"int" default=
"-1"/>
37808 <param name=
"which" type=
"wxTreeItemIcon" default=
"wxTreeItemIcon_Normal"/>
37811 <method name=
"GetItemData" type=
"TreeItemData" overloaded=
"no">
37812 <autodoc>GetItemData(TreeItemId item) -
> TreeItemData
</autodoc>
37814 <param name=
"item" type=
"TreeItemId" default=
""/>
37817 <method name=
"SetItemData" type=
"" overloaded=
"no">
37818 <autodoc>SetItemData(TreeItemId item, TreeItemData data)
</autodoc>
37820 <param name=
"item" type=
"TreeItemId" default=
""/>
37821 <param name=
"data" type=
"TreeItemData" default=
""/>
37824 <method name=
"GetItemPyData" type=
"PyObject" overloaded=
"no">
37825 <autodoc>GetItemPyData(TreeItemId item) -
> PyObject
</autodoc>
37827 <param name=
"item" type=
"TreeItemId" default=
""/>
37830 <method name=
"SetItemPyData" type=
"" overloaded=
"no">
37831 <autodoc>SetItemPyData(TreeItemId item, PyObject obj)
</autodoc>
37833 <param name=
"item" type=
"TreeItemId" default=
""/>
37834 <param name=
"obj" type=
"PyObject" default=
""/>
37837 <method name=
"SetItemHasChildren" type=
"" overloaded=
"no">
37838 <autodoc>SetItemHasChildren(TreeItemId item, bool has=True)
</autodoc>
37840 <param name=
"item" type=
"TreeItemId" default=
""/>
37841 <param name=
"has" type=
"bool" default=
"True"/>
37844 <method name=
"SetItemBold" type=
"" overloaded=
"no">
37845 <autodoc>SetItemBold(TreeItemId item, bool bold=True)
</autodoc>
37847 <param name=
"item" type=
"TreeItemId" default=
""/>
37848 <param name=
"bold" type=
"bool" default=
"True"/>
37851 <method name=
"SetItemTextColour" type=
"" overloaded=
"no">
37852 <autodoc>SetItemTextColour(TreeItemId item, Colour col)
</autodoc>
37854 <param name=
"item" type=
"TreeItemId" default=
""/>
37855 <param name=
"col" type=
"Colour" default=
""/>
37858 <method name=
"SetItemBackgroundColour" type=
"" overloaded=
"no">
37859 <autodoc>SetItemBackgroundColour(TreeItemId item, Colour col)
</autodoc>
37861 <param name=
"item" type=
"TreeItemId" default=
""/>
37862 <param name=
"col" type=
"Colour" default=
""/>
37865 <method name=
"SetItemFont" type=
"" overloaded=
"no">
37866 <autodoc>SetItemFont(TreeItemId item, Font font)
</autodoc>
37868 <param name=
"item" type=
"TreeItemId" default=
""/>
37869 <param name=
"font" type=
"Font" default=
""/>
37872 <method name=
"GetItemBold" type=
"bool" overloaded=
"no">
37873 <autodoc>GetItemBold(TreeItemId item) -
> bool
</autodoc>
37875 <param name=
"item" type=
"TreeItemId" default=
""/>
37878 <method name=
"GetItemTextColour" type=
"Colour" overloaded=
"no">
37879 <autodoc>GetItemTextColour(TreeItemId item) -
> Colour
</autodoc>
37881 <param name=
"item" type=
"TreeItemId" default=
""/>
37884 <method name=
"GetItemBackgroundColour" type=
"Colour" overloaded=
"no">
37885 <autodoc>GetItemBackgroundColour(TreeItemId item) -
> Colour
</autodoc>
37887 <param name=
"item" type=
"TreeItemId" default=
""/>
37890 <method name=
"GetItemFont" type=
"Font" overloaded=
"no">
37891 <autodoc>GetItemFont(TreeItemId item) -
> Font
</autodoc>
37893 <param name=
"item" type=
"TreeItemId" default=
""/>
37896 <method name=
"IsVisible" type=
"bool" overloaded=
"no">
37897 <autodoc>IsVisible(TreeItemId item) -
> bool
</autodoc>
37899 <param name=
"item" type=
"TreeItemId" default=
""/>
37902 <method name=
"ItemHasChildren" type=
"bool" overloaded=
"no">
37903 <autodoc>ItemHasChildren(TreeItemId item) -
> bool
</autodoc>
37905 <param name=
"item" type=
"TreeItemId" default=
""/>
37908 <method name=
"IsExpanded" type=
"bool" overloaded=
"no">
37909 <autodoc>IsExpanded(TreeItemId item) -
> bool
</autodoc>
37911 <param name=
"item" type=
"TreeItemId" default=
""/>
37914 <method name=
"IsSelected" type=
"bool" overloaded=
"no">
37915 <autodoc>IsSelected(TreeItemId item) -
> bool
</autodoc>
37917 <param name=
"item" type=
"TreeItemId" default=
""/>
37920 <method name=
"IsBold" type=
"bool" overloaded=
"no">
37921 <autodoc>IsBold(TreeItemId item) -
> bool
</autodoc>
37923 <param name=
"item" type=
"TreeItemId" default=
""/>
37926 <method name=
"GetChildrenCount" type=
"size_t" overloaded=
"no">
37927 <autodoc>GetChildrenCount(TreeItemId item, bool recursively=True) -
> size_t
</autodoc>
37929 <param name=
"item" type=
"TreeItemId" default=
""/>
37930 <param name=
"recursively" type=
"bool" default=
"True"/>
37933 <method name=
"GetRootItem" type=
"TreeItemId" overloaded=
"no">
37934 <autodoc>GetRootItem() -
> TreeItemId
</autodoc>
37936 <method name=
"GetSelection" type=
"TreeItemId" overloaded=
"no">
37937 <autodoc>GetSelection() -
> TreeItemId
</autodoc>
37939 <method name=
"GetSelections" type=
"PyObject" overloaded=
"no">
37940 <autodoc>GetSelections() -
> PyObject
</autodoc>
37942 <method name=
"GetItemParent" type=
"TreeItemId" overloaded=
"no">
37943 <autodoc>GetItemParent(TreeItemId item) -
> TreeItemId
</autodoc>
37945 <param name=
"item" type=
"TreeItemId" default=
""/>
37948 <method name=
"GetFirstChild" type=
"PyObject" overloaded=
"no">
37949 <autodoc>GetFirstChild(TreeItemId item) -
> PyObject
</autodoc>
37951 <param name=
"item" type=
"TreeItemId" default=
""/>
37954 <method name=
"GetNextChild" type=
"PyObject" overloaded=
"no">
37955 <autodoc>GetNextChild(TreeItemId item, long cookie) -
> PyObject
</autodoc>
37957 <param name=
"item" type=
"TreeItemId" default=
""/>
37958 <param name=
"cookie" type=
"long" default=
""/>
37961 <method name=
"GetLastChild" type=
"TreeItemId" overloaded=
"no">
37962 <autodoc>GetLastChild(TreeItemId item) -
> TreeItemId
</autodoc>
37964 <param name=
"item" type=
"TreeItemId" default=
""/>
37967 <method name=
"GetNextSibling" type=
"TreeItemId" overloaded=
"no">
37968 <autodoc>GetNextSibling(TreeItemId item) -
> TreeItemId
</autodoc>
37970 <param name=
"item" type=
"TreeItemId" default=
""/>
37973 <method name=
"GetPrevSibling" type=
"TreeItemId" overloaded=
"no">
37974 <autodoc>GetPrevSibling(TreeItemId item) -
> TreeItemId
</autodoc>
37976 <param name=
"item" type=
"TreeItemId" default=
""/>
37979 <method name=
"GetFirstVisibleItem" type=
"TreeItemId" overloaded=
"no">
37980 <autodoc>GetFirstVisibleItem() -
> TreeItemId
</autodoc>
37982 <method name=
"GetNextVisible" type=
"TreeItemId" overloaded=
"no">
37983 <autodoc>GetNextVisible(TreeItemId item) -
> TreeItemId
</autodoc>
37985 <param name=
"item" type=
"TreeItemId" default=
""/>
37988 <method name=
"GetPrevVisible" type=
"TreeItemId" overloaded=
"no">
37989 <autodoc>GetPrevVisible(TreeItemId item) -
> TreeItemId
</autodoc>
37991 <param name=
"item" type=
"TreeItemId" default=
""/>
37994 <method name=
"GetNext" type=
"TreeItemId" overloaded=
"no">
37995 <autodoc>GetNext(TreeItemId item) -
> TreeItemId
</autodoc>
37997 <param name=
"item" type=
"TreeItemId" default=
""/>
38000 <method name=
"AddRoot" type=
"TreeItemId" overloaded=
"no">
38001 <autodoc>AddRoot(String text, int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38003 <param name=
"text" type=
"String" default=
""/>
38004 <param name=
"image" type=
"int" default=
"-1"/>
38005 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38006 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38009 <method name=
"PrependItem" type=
"TreeItemId" overloaded=
"no">
38010 <autodoc>PrependItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
38011 TreeItemData data=None) -
> TreeItemId
</autodoc>
38013 <param name=
"parent" type=
"TreeItemId" default=
""/>
38014 <param name=
"text" type=
"String" default=
""/>
38015 <param name=
"image" type=
"int" default=
"-1"/>
38016 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38017 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38020 <method name=
"InsertItem" type=
"TreeItemId" overloaded=
"no">
38021 <autodoc>InsertItem(TreeItemId parent, TreeItemId idPrevious, String text,
38022 int image=-
1, int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38024 <param name=
"parent" type=
"TreeItemId" default=
""/>
38025 <param name=
"idPrevious" type=
"TreeItemId" default=
""/>
38026 <param name=
"text" type=
"String" default=
""/>
38027 <param name=
"image" type=
"int" default=
"-1"/>
38028 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38029 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38032 <method name=
"InsertItemBefore" type=
"TreeItemId" overloaded=
"no">
38033 <autodoc>InsertItemBefore(TreeItemId parent, size_t index, String text, int image=-
1,
38034 int selectedImage=-
1, TreeItemData data=None) -
> TreeItemId
</autodoc>
38036 <param name=
"parent" type=
"TreeItemId" default=
""/>
38037 <param name=
"index" type=
"size_t" default=
""/>
38038 <param name=
"text" type=
"String" default=
""/>
38039 <param name=
"image" type=
"int" default=
"-1"/>
38040 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38041 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38044 <method name=
"AppendItem" type=
"TreeItemId" overloaded=
"no">
38045 <autodoc>AppendItem(TreeItemId parent, String text, int image=-
1, int selectedImage=-
1,
38046 TreeItemData data=None) -
> TreeItemId
</autodoc>
38048 <param name=
"parent" type=
"TreeItemId" default=
""/>
38049 <param name=
"text" type=
"String" default=
""/>
38050 <param name=
"image" type=
"int" default=
"-1"/>
38051 <param name=
"selectedImage" type=
"int" default=
"-1"/>
38052 <param name=
"data" type=
"TreeItemData" default=
"NULL"/>
38055 <method name=
"Delete" type=
"" overloaded=
"no">
38056 <autodoc>Delete(TreeItemId item)
</autodoc>
38058 <param name=
"item" type=
"TreeItemId" default=
""/>
38061 <method name=
"DeleteChildren" type=
"" overloaded=
"no">
38062 <autodoc>DeleteChildren(TreeItemId item)
</autodoc>
38064 <param name=
"item" type=
"TreeItemId" default=
""/>
38067 <method name=
"DeleteAllItems" type=
"" overloaded=
"no">
38068 <autodoc>DeleteAllItems()
</autodoc>
38070 <method name=
"Expand" type=
"" overloaded=
"no">
38071 <autodoc>Expand(TreeItemId item)
</autodoc>
38073 <param name=
"item" type=
"TreeItemId" default=
""/>
38076 <method name=
"ExpandAll" type=
"" overloaded=
"no">
38077 <autodoc>ExpandAll(TreeItemId item)
</autodoc>
38079 <param name=
"item" type=
"TreeItemId" default=
""/>
38082 <method name=
"Collapse" type=
"" overloaded=
"no">
38083 <autodoc>Collapse(TreeItemId item)
</autodoc>
38085 <param name=
"item" type=
"TreeItemId" default=
""/>
38088 <method name=
"CollapseAndReset" type=
"" overloaded=
"no">
38089 <autodoc>CollapseAndReset(TreeItemId item)
</autodoc>
38091 <param name=
"item" type=
"TreeItemId" default=
""/>
38094 <method name=
"Toggle" type=
"" overloaded=
"no">
38095 <autodoc>Toggle(TreeItemId item)
</autodoc>
38097 <param name=
"item" type=
"TreeItemId" default=
""/>
38100 <method name=
"Unselect" type=
"" overloaded=
"no">
38101 <autodoc>Unselect()
</autodoc>
38103 <method name=
"UnselectAll" type=
"" overloaded=
"no">
38104 <autodoc>UnselectAll()
</autodoc>
38106 <method name=
"SelectItem" type=
"" overloaded=
"no">
38107 <autodoc>SelectItem(TreeItemId item, bool unselect_others=True, bool extended_select=False)
</autodoc>
38109 <param name=
"item" type=
"TreeItemId" default=
""/>
38110 <param name=
"unselect_others" type=
"bool" default=
"True"/>
38111 <param name=
"extended_select" type=
"bool" default=
"False"/>
38114 <method name=
"EnsureVisible" type=
"" overloaded=
"no">
38115 <autodoc>EnsureVisible(TreeItemId item)
</autodoc>
38117 <param name=
"item" type=
"TreeItemId" default=
""/>
38120 <method name=
"ScrollTo" type=
"" overloaded=
"no">
38121 <autodoc>ScrollTo(TreeItemId item)
</autodoc>
38123 <param name=
"item" type=
"TreeItemId" default=
""/>
38126 <method name=
"HitTest" type=
"TreeItemId" overloaded=
"no">
38127 <autodoc>HitTest(Point point, int OUTPUT, int OUTPUT) -
> TreeItemId
</autodoc>
38129 <param name=
"point" type=
"Point" default=
""/>
38130 <param name=
"OUTPUT" type=
"int" default=
""/>
38131 <param name=
"OUTPUT" type=
"int" default=
""/>
38134 <method name=
"GetBoundingRect" type=
"PyObject" overloaded=
"no">
38135 <autodoc>GetBoundingRect(TreeItemId item, bool textOnly=False) -
> PyObject
</autodoc>
38137 <param name=
"item" type=
"TreeItemId" default=
""/>
38138 <param name=
"textOnly" type=
"bool" default=
"False"/>
38141 <method name=
"EditLabel" type=
"" overloaded=
"no">
38142 <autodoc>EditLabel(TreeItemId item)
</autodoc>
38144 <param name=
"item" type=
"TreeItemId" default=
""/>
38147 <method name=
"Edit" type=
"" overloaded=
"no">
38148 <autodoc>Edit(TreeItemId item)
</autodoc>
38150 <param name=
"item" type=
"TreeItemId" default=
""/>
38153 <method name=
"SortChildren" type=
"" overloaded=
"no">
38154 <autodoc>SortChildren(TreeItemId item)
</autodoc>
38156 <param name=
"item" type=
"TreeItemId" default=
""/>
38159 <method name=
"GetItemSelectedImage" type=
"int" overloaded=
"no">
38160 <autodoc>GetItemSelectedImage(TreeItemId item) -
> int
</autodoc>
38162 <param name=
"item" type=
"TreeItemId" default=
""/>
38165 <method name=
"SetItemSelectedImage" type=
"" overloaded=
"no">
38166 <autodoc>SetItemSelectedImage(TreeItemId item, int image)
</autodoc>
38168 <param name=
"item" type=
"TreeItemId" default=
""/>
38169 <param name=
"image" type=
"int" default=
""/>
38172 <method name=
"GetHeaderWindow" type=
"Window" overloaded=
"no">
38173 <autodoc>GetHeaderWindow() -
> Window
</autodoc>
38175 <method name=
"GetMainWindow" type=
"Window" overloaded=
"no">
38176 <autodoc>GetMainWindow() -
> Window
</autodoc>
38180 </wxPython-metadata>